|
|
@@ -4,16 +4,66 @@
|
|
|
// This file was automatically generated and should not be edited.
|
|
|
|
|
|
// ====================================================
|
|
|
-// GraphQL query operation: GetInFlightRequests
|
|
|
+// GraphQL mutation operation: RequestStarted
|
|
|
// ====================================================
|
|
|
|
|
|
-export interface GetInFlightRequests_network {
|
|
|
- __typename: "Network";
|
|
|
- inFlightRequests: number;
|
|
|
+export interface RequestStarted {
|
|
|
+ requestStarted: number;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* tslint:disable */
|
|
|
+// This file was automatically generated and should not be edited.
|
|
|
+
|
|
|
+// ====================================================
|
|
|
+// GraphQL mutation operation: RequestCompleted
|
|
|
+// ====================================================
|
|
|
+
|
|
|
+export interface RequestCompleted {
|
|
|
+ requestCompleted: number;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* tslint:disable */
|
|
|
+// This file was automatically generated and should not be edited.
|
|
|
+
|
|
|
+// ====================================================
|
|
|
+// GraphQL mutation operation: LogIn
|
|
|
+// ====================================================
|
|
|
+
|
|
|
+export interface LogIn_logIn {
|
|
|
+ __typename: "UserStatus";
|
|
|
+ username: string;
|
|
|
+ isLoggedIn: boolean;
|
|
|
+ loginTime: string;
|
|
|
+}
|
|
|
+
|
|
|
+export interface LogIn {
|
|
|
+ logIn: LogIn_logIn | null;
|
|
|
}
|
|
|
|
|
|
-export interface GetInFlightRequests {
|
|
|
- network: GetInFlightRequests_network | null;
|
|
|
+export interface LogInVariables {
|
|
|
+ username: string;
|
|
|
+ loginTime: string;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* tslint:disable */
|
|
|
+// This file was automatically generated and should not be edited.
|
|
|
+
|
|
|
+// ====================================================
|
|
|
+// GraphQL mutation operation: LogOut
|
|
|
+// ====================================================
|
|
|
+
|
|
|
+export interface LogOut_logOut {
|
|
|
+ __typename: "UserStatus";
|
|
|
+ username: string;
|
|
|
+ isLoggedIn: boolean;
|
|
|
+ loginTime: string;
|
|
|
+}
|
|
|
+
|
|
|
+export interface LogOut {
|
|
|
+ logOut: LogOut_logOut | null;
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -84,6 +134,42 @@ export interface GetProductListVariables {
|
|
|
languageCode?: LanguageCode | null;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+/* tslint:disable */
|
|
|
+// This file was automatically generated and should not be edited.
|
|
|
+
|
|
|
+// ====================================================
|
|
|
+// GraphQL query operation: GetNetworkStatus
|
|
|
+// ====================================================
|
|
|
+
|
|
|
+export interface GetNetworkStatus_networkStatus {
|
|
|
+ __typename: "NetworkStatus";
|
|
|
+ inFlightRequests: number;
|
|
|
+}
|
|
|
+
|
|
|
+export interface GetNetworkStatus {
|
|
|
+ networkStatus: GetNetworkStatus_networkStatus;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* tslint:disable */
|
|
|
+// This file was automatically generated and should not be edited.
|
|
|
+
|
|
|
+// ====================================================
|
|
|
+// GraphQL query operation: GetUserStatus
|
|
|
+// ====================================================
|
|
|
+
|
|
|
+export interface GetUserStatus_userStatus {
|
|
|
+ __typename: "UserStatus";
|
|
|
+ username: string;
|
|
|
+ isLoggedIn: boolean;
|
|
|
+ loginTime: string;
|
|
|
+}
|
|
|
+
|
|
|
+export interface GetUserStatus {
|
|
|
+ userStatus: GetUserStatus_userStatus;
|
|
|
+}
|
|
|
+
|
|
|
/* tslint:disable */
|
|
|
// This file was automatically generated and should not be edited.
|
|
|
|