- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
58 lines
1.9 KiB
TypeScript
58 lines
1.9 KiB
TypeScript
import { GraphQLSchema } from '../type/schema';
|
|
|
|
export const BreakingChangeType: {
|
|
TYPE_REMOVED: 'TYPE_REMOVED';
|
|
TYPE_CHANGED_KIND: 'TYPE_CHANGED_KIND';
|
|
TYPE_REMOVED_FROM_UNION: 'TYPE_REMOVED_FROM_UNION';
|
|
VALUE_REMOVED_FROM_ENUM: 'VALUE_REMOVED_FROM_ENUM';
|
|
REQUIRED_INPUT_FIELD_ADDED: 'REQUIRED_INPUT_FIELD_ADDED';
|
|
IMPLEMENTED_INTERFACE_REMOVED: 'IMPLEMENTED_INTERFACE_REMOVED';
|
|
FIELD_REMOVED: 'FIELD_REMOVED';
|
|
FIELD_CHANGED_KIND: 'FIELD_CHANGED_KIND';
|
|
REQUIRED_ARG_ADDED: 'REQUIRED_ARG_ADDED';
|
|
ARG_REMOVED: 'ARG_REMOVED';
|
|
ARG_CHANGED_KIND: 'ARG_CHANGED_KIND';
|
|
DIRECTIVE_REMOVED: 'DIRECTIVE_REMOVED';
|
|
DIRECTIVE_ARG_REMOVED: 'DIRECTIVE_ARG_REMOVED';
|
|
REQUIRED_DIRECTIVE_ARG_ADDED: 'REQUIRED_DIRECTIVE_ARG_ADDED';
|
|
DIRECTIVE_REPEATABLE_REMOVED: 'DIRECTIVE_REPEATABLE_REMOVED';
|
|
DIRECTIVE_LOCATION_REMOVED: 'DIRECTIVE_LOCATION_REMOVED';
|
|
};
|
|
|
|
export const DangerousChangeType: {
|
|
VALUE_ADDED_TO_ENUM: 'VALUE_ADDED_TO_ENUM';
|
|
TYPE_ADDED_TO_UNION: 'TYPE_ADDED_TO_UNION';
|
|
OPTIONAL_INPUT_FIELD_ADDED: 'OPTIONAL_INPUT_FIELD_ADDED';
|
|
OPTIONAL_ARG_ADDED: 'OPTIONAL_ARG_ADDED';
|
|
IMPLEMENTED_INTERFACE_ADDED: 'IMPLEMENTED_INTERFACE_ADDED';
|
|
ARG_DEFAULT_VALUE_CHANGE: 'ARG_DEFAULT_VALUE_CHANGE';
|
|
};
|
|
|
|
export interface BreakingChange {
|
|
type: keyof typeof BreakingChangeType;
|
|
description: string;
|
|
}
|
|
|
|
export interface DangerousChange {
|
|
type: keyof typeof DangerousChangeType;
|
|
description: string;
|
|
}
|
|
|
|
/**
|
|
* Given two schemas, returns an Array containing descriptions of all the types
|
|
* of breaking changes covered by the other functions down below.
|
|
*/
|
|
export function findBreakingChanges(
|
|
oldSchema: GraphQLSchema,
|
|
newSchema: GraphQLSchema,
|
|
): Array<BreakingChange>;
|
|
|
|
/**
|
|
* Given two schemas, returns an Array containing descriptions of all the types
|
|
* of potentially dangerous changes covered by the other functions down below.
|
|
*/
|
|
export function findDangerousChanges(
|
|
oldSchema: GraphQLSchema,
|
|
newSchema: GraphQLSchema,
|
|
): Array<DangerousChange>;
|