@secrecy/lib 1.0.0-dev.47 → 1.0.0-dev.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/BaseClient.js +1 -1
  2. package/dist/client/index.js +50 -1
  3. package/dist/index.js +1 -1
  4. package/dist/{BaseClient.d.ts → src/BaseClient.d.ts} +0 -4
  5. package/dist/{PopupTools.d.ts → src/PopupTools.d.ts} +0 -0
  6. package/dist/{ZeusThunder.d.ts → src/ZeusThunder.d.ts} +0 -0
  7. package/dist/{cache.d.ts → src/cache.d.ts} +0 -0
  8. package/dist/{client → src/client}/admin/index.d.ts +0 -0
  9. package/dist/{client → src/client}/convert/file.d.ts +0 -0
  10. package/dist/{client → src/client}/convert/mail.d.ts +0 -0
  11. package/dist/{client → src/client}/convert/node.d.ts +0 -0
  12. package/dist/{client → src/client}/helpers.d.ts +0 -0
  13. package/dist/{client → src/client}/index.d.ts +1 -0
  14. package/dist/{client → src/client}/storage.d.ts +0 -0
  15. package/dist/{client → src/client}/types/File.d.ts +0 -0
  16. package/dist/{client → src/client}/types/Inputs.d.ts +0 -0
  17. package/dist/{client → src/client}/types/Node.d.ts +0 -0
  18. package/dist/{client → src/client}/types/UserAppNotifications.d.ts +0 -0
  19. package/dist/{client → src/client}/types/UserAppSettings.d.ts +0 -0
  20. package/dist/{client → src/client}/types/index.d.ts +0 -0
  21. package/dist/{client → src/client}/types/selectors.d.ts +0 -0
  22. package/dist/{crypto → src/crypto}/file.d.ts +0 -0
  23. package/dist/{crypto → src/crypto}/index.d.ts +0 -0
  24. package/dist/{error.d.ts → src/error.d.ts} +0 -0
  25. package/dist/src/index.d.ts +12 -0
  26. package/dist/{minify → src/minify}/index.d.ts +0 -0
  27. package/dist/{minify → src/minify}/lz4.d.ts +0 -0
  28. package/dist/{sodium.d.ts → src/sodium.d.ts} +0 -0
  29. package/dist/{utils → src/utils}/store-buddy.d.ts +0 -0
  30. package/dist/{utils → src/utils}/time.d.ts +0 -0
  31. package/dist/{utils → src/utils}/utils.d.ts +0 -0
  32. package/dist/{worker → src/worker}/__mock__/sodium.worker.d.ts +0 -0
  33. package/dist/{worker → src/worker}/md5.d.ts +0 -0
  34. package/dist/{worker → src/worker}/sodium.d.ts +0 -0
  35. package/dist/{worker → src/worker}/workerCodes.d.ts +0 -0
  36. package/dist/{zeus → src/zeus}/const.d.ts +0 -0
  37. package/dist/{zeus → src/zeus}/index.d.ts +2423 -591
  38. package/dist/zeus/const.js +10 -1
  39. package/dist/zeus/index.js +61 -44
  40. package/package.json +17 -16
  41. package/dist/index.d.ts +0 -12
@@ -13,13 +13,24 @@ export declare const InternalsBuildQuery: ({ ops, props, returns, options, scala
13
13
  props: AllTypesPropsType;
14
14
  returns: ReturnTypesType;
15
15
  ops: Operations;
16
- options?: OperationOptions<Record<string, unknown>> | undefined;
16
+ options?: OperationOptions | undefined;
17
17
  scalars?: ScalarDefinition | undefined;
18
- }) => (k: string, o: InputValueType | VType, p?: string, root?: boolean) => string;
19
- export declare const Thunder: (fn: FetchFunction) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions) => Promise<InputType<GraphQLTypes[R], Z, SCLR>>;
20
- export declare const Chain: (...options: chainOptions) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions) => Promise<InputType<GraphQLTypes[R], Z, SCLR>>;
21
- export declare const SubscriptionThunder: (fn: SubscriptionFunction) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions) => SubscriptionToGraphQL<Z, GraphQLTypes[R], SCLR>;
22
- export declare const Subscription: (...options: chainOptions) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions) => SubscriptionToGraphQL<Z, GraphQLTypes[R], SCLR>;
18
+ }) => (k: string, o: InputValueType | VType, p?: string, root?: boolean, vars?: Array<{
19
+ name: string;
20
+ graphQLType: string;
21
+ }>) => string;
22
+ export declare const Thunder: (fn: FetchFunction) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions & {
23
+ variables?: Record<string, unknown>;
24
+ }) => Promise<InputType<GraphQLTypes[R], Z, SCLR>>;
25
+ export declare const Chain: (...options: chainOptions) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions & {
26
+ variables?: Record<string, unknown>;
27
+ }) => Promise<InputType<GraphQLTypes[R], Z, SCLR>>;
28
+ export declare const SubscriptionThunder: (fn: SubscriptionFunction) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: (OperationOptions & {
29
+ variables?: ExtractVariables<Z> | undefined;
30
+ }) | undefined) => SubscriptionToGraphQL<Z, GraphQLTypes[R], SCLR>;
31
+ export declare const Subscription: (...options: chainOptions) => <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: (OperationOptions & {
32
+ variables?: ExtractVariables<Z> | undefined;
33
+ }) | undefined) => SubscriptionToGraphQL<Z, GraphQLTypes[R], SCLR>;
23
34
  export declare const Zeus: <Z extends ValueTypes[R], O extends "query" | "mutation" | "subscription", R extends keyof ValueTypes = GenericOperation<O>>(operation: O, o: Z | ValueTypes[R], ops?: {
24
35
  operationOptions?: OperationOptions;
25
36
  scalars?: ScalarDefinition;
@@ -27,7 +38,9 @@ export declare const Zeus: <Z extends ValueTypes[R], O extends "query" | "mutati
27
38
  export declare const ZeusSelect: <T>() => SelectionFunction<T>;
28
39
  export declare const Selector: <T extends keyof ValueTypes>(key: T) => SelectionFunction<ValueTypes[T]>;
29
40
  export declare const TypeFromSelector: <T extends keyof ValueTypes>(key: T) => SelectionFunction<ValueTypes[T]>;
30
- export declare const Gql: <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions) => Promise<InputType<GraphQLTypes[R], Z, SCLR>>;
41
+ export declare const Gql: <O extends "query" | "mutation" | "subscription", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions & {
42
+ variables?: Record<string, unknown>;
43
+ }) => Promise<InputType<GraphQLTypes[R], Z, SCLR>>;
31
44
  export declare const ZeusScalars: SelectionFunction<ScalarCoders>;
32
45
  export declare const decodeScalarsInResponse: <O extends Operations>({ response, scalars, returns, ops, initialZeusQuery, initialOp }: {
33
46
  ops: O;
@@ -75,12 +88,11 @@ declare type websocketOptions = typeof WebSocket extends new (...args: infer R)
75
88
  export declare type chainOptions = [fetchOptions[0], fetchOptions[1] & {
76
89
  websocket?: websocketOptions;
77
90
  }] | [fetchOptions[0]];
78
- export declare type FetchFunction = (query: string, variables?: Record<string, any>) => Promise<any>;
91
+ export declare type FetchFunction = (query: string, variables?: Record<string, unknown>) => Promise<any>;
79
92
  export declare type SubscriptionFunction = (query: string) => any;
80
93
  declare type NotUndefined<T> = T extends undefined ? never : T;
81
94
  export declare type ResolverType<F> = NotUndefined<F extends [infer ARGS, any] ? ARGS : undefined>;
82
- export declare type OperationOptions<Z extends Record<string, unknown> = Record<string, unknown>> = {
83
- variables?: VariableInput<Z>;
95
+ export declare type OperationOptions = {
84
96
  operationName?: string;
85
97
  };
86
98
  export declare type ScalarCoder = Record<string, (s: unknown) => string>;
@@ -107,14 +119,17 @@ export declare const PrepareScalarPaths: ({ ops, returns }: {
107
119
  } | undefined;
108
120
  export declare const purifyGraphQLKey: (k: string) => string;
109
121
  export declare const ResolveFromPath: (props: AllTypesPropsType, returns: ReturnTypesType, ops: Operations) => (path: string) => "enum" | "not" | `scalar.${string}`;
110
- export declare const InternalArgsBuilt: ({ props, ops, returns, scalars, variables }: {
122
+ export declare const InternalArgsBuilt: ({ props, ops, returns, scalars, vars }: {
111
123
  props: AllTypesPropsType;
112
124
  returns: ReturnTypesType;
113
125
  ops: Operations;
114
- variables?: Record<string, unknown> | undefined;
115
126
  scalars?: ScalarDefinition | undefined;
127
+ vars: Array<{
128
+ name: string;
129
+ graphQLType: string;
130
+ }>;
116
131
  }) => (a: ZeusArgsType, p?: string, root?: boolean) => string;
117
- export declare const resolverFor: <X, T extends keyof ValueTypes, Z extends keyof ValueTypes[T]>(_type: T, _field: Z, fn: (args: Required<ValueTypes[T]>[Z] extends [infer Input, any] ? Input : any, source: any) => Z extends keyof ModelTypes[T] ? X | ModelTypes[T][Z] | Promise<ModelTypes[T][Z]> : any) => (args?: any, source?: any) => any;
132
+ export declare const resolverFor: <X, T extends keyof ResolverInputTypes, Z extends keyof ResolverInputTypes[T]>(_type: T, _field: Z, fn: (args: Required<ResolverInputTypes[T]>[Z] extends [infer Input, any] ? Input : any, source: any) => Z extends keyof ModelTypes[T] ? X | ModelTypes[T][Z] | Promise<ModelTypes[T][Z]> : any) => (args?: any, source?: any) => any;
118
133
  export declare type UnwrapPromise<T> = T extends Promise<infer R> ? R : T;
119
134
  export declare type ZeusState<T extends (...args: any[]) => Promise<any>> = NonNullable<UnwrapPromise<ReturnType<T>>>;
120
135
  export declare type ZeusHook<T extends (...args: any[]) => Record<string, (...args: any[]) => Promise<any>>, N extends keyof ReturnType<T>> = ZeusState<ReturnType<T>[N]>;
@@ -135,7 +150,7 @@ declare type IsScalar<S, SCLR extends ScalarDefinition> = S extends "scalar" & {
135
150
  } ? T extends keyof SCLR ? SCLR[T]["decode"] extends (s: unknown) => unknown ? ReturnType<SCLR[T]["decode"]> : unknown : unknown : S;
136
151
  declare type IsArray<T, U, SCLR extends ScalarDefinition> = T extends Array<infer R> ? InputType<R, U, SCLR>[] : InputType<T, U, SCLR>;
137
152
  declare type FlattenArray<T> = T extends Array<infer R> ? R : T;
138
- declare type BaseZeusResolver = boolean | 1 | string;
153
+ declare type BaseZeusResolver = boolean | 1 | string | Variable<any, string>;
139
154
  declare type IsInterfaced<SRC extends DeepAnify<DST>, DST, SCLR extends ScalarDefinition> = FlattenArray<SRC> extends ZEUS_INTERFACES | ZEUS_UNIONS ? {
140
155
  [P in keyof SRC]: SRC[P] extends "__union" & infer R ? P extends keyof DST ? IsArray<R, "__typename" extends keyof DST ? DST[P] & {
141
156
  __typename: true;
@@ -174,15 +189,43 @@ export declare type ScalarResolver = {
174
189
  decode?: (s: unknown) => unknown;
175
190
  };
176
191
  export declare type SelectionFunction<V> = <T>(t: T | V) => T;
177
- export declare const useZeusVariables: <T>(variables: T) => <Z extends { [P in keyof T]: unknown; }>(values: Z) => {
178
- $params: string;
179
- $: <U extends keyof Z>(variable: U) => Z[U];
180
- values: Z;
192
+ declare type BuiltInVariableTypes = {
193
+ ["String"]: string;
194
+ ["Int"]: number;
195
+ ["Float"]: number;
196
+ ["ID"]: unknown;
197
+ ["Boolean"]: boolean;
181
198
  };
182
- export declare type VariableInput<Z extends Record<string, unknown>> = {
183
- $params: ReturnType<ReturnType<typeof useZeusVariables>>["$params"];
184
- values: Z;
199
+ declare type AllVariableTypes = keyof BuiltInVariableTypes | keyof ZEUS_VARIABLES;
200
+ declare type VariableRequired<T extends string> = `${T}!` | T | `[${T}]` | `[${T}]!` | `[${T}!]` | `[${T}!]!`;
201
+ declare type VR<T extends string> = VariableRequired<VariableRequired<T>>;
202
+ export declare type GraphQLVariableType = VR<AllVariableTypes>;
203
+ declare type ExtractVariableTypeString<T extends string> = T extends VR<infer R1> ? R1 extends VR<infer R2> ? R2 extends VR<infer R3> ? R3 extends VR<infer R4> ? R4 extends VR<infer R5> ? R5 : R4 : R3 : R2 : R1 : T;
204
+ declare type DecomposeType<T, Type> = T extends `[${infer R}]` ? Array<DecomposeType<R, Type>> | undefined : T extends `${infer R}!` ? NonNullable<DecomposeType<R, Type>> : Type | undefined;
205
+ declare type ExtractTypeFromGraphQLType<T extends string> = T extends keyof ZEUS_VARIABLES ? ZEUS_VARIABLES[T] : T extends keyof BuiltInVariableTypes ? BuiltInVariableTypes[T] : any;
206
+ export declare type GetVariableType<T extends string> = DecomposeType<T, ExtractTypeFromGraphQLType<ExtractVariableTypeString<T>>>;
207
+ declare type UndefinedKeys<T> = {
208
+ [K in keyof T]-?: T[K] extends NonNullable<T[K]> ? never : K;
209
+ }[keyof T];
210
+ declare type WithNullableKeys<T> = Pick<T, UndefinedKeys<T>>;
211
+ declare type WithNonNullableKeys<T> = Omit<T, UndefinedKeys<T>>;
212
+ declare type OptionalKeys<T> = {
213
+ [P in keyof T]?: T[P];
185
214
  };
215
+ export declare type WithOptionalNullables<T> = OptionalKeys<WithNullableKeys<T>> & WithNonNullableKeys<T>;
216
+ export declare type Variable<T extends GraphQLVariableType, Name extends string> = {
217
+ " __zeus_name": Name;
218
+ " __zeus_type": T;
219
+ };
220
+ export declare type ExtractVariables<Query> = Query extends Variable<infer VType, infer VName> ? {
221
+ [key in VName]: GetVariableType<VType>;
222
+ } : Query extends [infer Inputs, infer Outputs] ? ExtractVariables<Inputs> & ExtractVariables<Outputs> : Query extends string | number | boolean ? {} : UnionToIntersection<{
223
+ [K in keyof Query]: WithOptionalNullables<ExtractVariables<Query[K]>>;
224
+ }[keyof Query]>;
225
+ declare type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
226
+ export declare const START_VAR_NAME = "$ZEUS_VAR";
227
+ export declare const GRAPHQL_TYPE_SEPARATOR = "__$GRAPHQL__";
228
+ export declare const $: <Type extends GraphQLVariableType, Name extends string>(name: Name, graphqlType: Type) => Variable<Type, Name>;
186
229
  declare type ZEUS_INTERFACES = GraphQLTypes["ErrorBase"] | GraphQLTypes["FileContentBase"];
187
230
  export declare type ScalarCoders = {
188
231
  BigInt?: ScalarResolver;
@@ -190,7 +233,7 @@ export declare type ScalarCoders = {
190
233
  Json?: ScalarResolver;
191
234
  Bytes?: ScalarResolver;
192
235
  };
193
- declare type ZEUS_UNIONS = GraphQLTypes["AppNotificationsResult"] | GraphQLTypes["BlogResult"] | GraphQLTypes["DbConfigResult"] | GraphQLTypes["DbGetResult"] | GraphQLTypes["DbSearchResult"] | GraphQLTypes["DeletedMailsResult"] | GraphQLTypes["DeletedNodesResult"] | GraphQLTypes["FaqResult"] | GraphQLTypes["FileResult"] | GraphQLTypes["FileContentResult"] | GraphQLTypes["FilesContentResult"] | GraphQLTypes["LimitsResult"] | GraphQLTypes["MailResult"] | GraphQLTypes["NodeResult"] | GraphQLTypes["NodesSharedWithMeResult"] | GraphQLTypes["PaymentInfosResult"] | GraphQLTypes["PlansResult"] | GraphQLTypes["SharedNodesResult"] | GraphQLTypes["UnreadReceivedMailsCountResult"] | GraphQLTypes["UserResult"] | GraphQLTypes["UserListResult"] | GraphQLTypes["AddFileToHistoryResult"] | GraphQLTypes["CancelPaymentResult"] | GraphQLTypes["CreateApplicationResult"] | GraphQLTypes["CreateDraftMailResult"] | GraphQLTypes["CreateFolderResult"] | GraphQLTypes["DbConfigMutationResult"] | GraphQLTypes["DbSetResult"] | GraphQLTypes["DeleteDraftMailResult"] | GraphQLTypes["DeleteFileResult"] | GraphQLTypes["DeleteMailResult"] | GraphQLTypes["DeleteMailTrashResult"] | GraphQLTypes["DeleteNodeResult"] | GraphQLTypes["DeleteNodeCloudTrashResult"] | GraphQLTypes["DeleteNodeSharingResult"] | GraphQLTypes["DeleteUserResult"] | GraphQLTypes["DuplicateNodeResult"] | GraphQLTypes["EmptyCloudTrashResult"] | GraphQLTypes["EmptyMailTrashResult"] | GraphQLTypes["LogoutResult"] | GraphQLTypes["MoveNodesResult"] | GraphQLTypes["PayResult"] | GraphQLTypes["ReadMailResult"] | GraphQLTypes["RecoverMailResult"] | GraphQLTypes["RecoverNodeResult"] | GraphQLTypes["SaveInCloudResult"] | GraphQLTypes["SendAppMailResult"] | GraphQLTypes["SendDraftMailResult"] | GraphQLTypes["SendOneMailResult"] | GraphQLTypes["SendReportResult"] | GraphQLTypes["ShareFileInHistoryResult"] | GraphQLTypes["ShareNodeResult"] | GraphQLTypes["ShareNodeFinishResult"] | GraphQLTypes["UnreadMailResult"] | GraphQLTypes["UpdateAppNotificationsResult"] | GraphQLTypes["UpdateAppSettingsResult"] | GraphQLTypes["UpdateAutoDisconnectDelayResult"] | GraphQLTypes["UpdateDraftMailResult"] | GraphQLTypes["UpdateNodeResult"] | GraphQLTypes["UpdateProfileResult"] | GraphQLTypes["UploadFileResult"] | GraphQLTypes["UploadFileEndResult"] | GraphQLTypes["UploadFilePartEndResult"] | GraphQLTypes["UploadLiteFileResult"] | GraphQLTypes["ChangeUserPlanResult"] | GraphQLTypes["Error"] | GraphQLTypes["FileContent"];
236
+ declare type ZEUS_UNIONS = GraphQLTypes["AppNotificationsResult"] | GraphQLTypes["BlogResult"] | GraphQLTypes["DbConfigResult"] | GraphQLTypes["DbGetResult"] | GraphQLTypes["DbSearchResult"] | GraphQLTypes["DeletedMailsResult"] | GraphQLTypes["DeletedNodesResult"] | GraphQLTypes["FaqResult"] | GraphQLTypes["FileResult"] | GraphQLTypes["FileContentResult"] | GraphQLTypes["FilesContentResult"] | GraphQLTypes["GetJwtResult"] | GraphQLTypes["LimitsResult"] | GraphQLTypes["MailResult"] | GraphQLTypes["NodeResult"] | GraphQLTypes["NodesSharedWithMeResult"] | GraphQLTypes["PaymentInfosResult"] | GraphQLTypes["PlansResult"] | GraphQLTypes["SharedNodesResult"] | GraphQLTypes["UnreadReceivedMailsCountResult"] | GraphQLTypes["UserResult"] | GraphQLTypes["UserListResult"] | GraphQLTypes["AddFileToHistoryResult"] | GraphQLTypes["CancelPaymentResult"] | GraphQLTypes["CreateApplicationResult"] | GraphQLTypes["CreateDraftMailResult"] | GraphQLTypes["CreateFolderResult"] | GraphQLTypes["DbConfigMutationResult"] | GraphQLTypes["DbSetResult"] | GraphQLTypes["DeleteDraftMailResult"] | GraphQLTypes["DeleteFileResult"] | GraphQLTypes["DeleteMailResult"] | GraphQLTypes["DeleteMailTrashResult"] | GraphQLTypes["DeleteNodeResult"] | GraphQLTypes["DeleteNodeCloudTrashResult"] | GraphQLTypes["DeleteNodeSharingResult"] | GraphQLTypes["DeleteUserResult"] | GraphQLTypes["DuplicateNodeResult"] | GraphQLTypes["EmptyCloudTrashResult"] | GraphQLTypes["EmptyMailTrashResult"] | GraphQLTypes["LogoutResult"] | GraphQLTypes["MoveNodesResult"] | GraphQLTypes["PayResult"] | GraphQLTypes["ReadMailResult"] | GraphQLTypes["RecoverMailResult"] | GraphQLTypes["RecoverNodeResult"] | GraphQLTypes["SaveInCloudResult"] | GraphQLTypes["SendAppMailResult"] | GraphQLTypes["SendDraftMailResult"] | GraphQLTypes["SendOneMailResult"] | GraphQLTypes["SendReportResult"] | GraphQLTypes["ShareFileInHistoryResult"] | GraphQLTypes["ShareNodeResult"] | GraphQLTypes["ShareNodeFinishResult"] | GraphQLTypes["UnreadMailResult"] | GraphQLTypes["UpdateAppNotificationsResult"] | GraphQLTypes["UpdateAppSettingsResult"] | GraphQLTypes["UpdateAutoDisconnectDelayResult"] | GraphQLTypes["UpdateDraftMailResult"] | GraphQLTypes["UpdateNodeResult"] | GraphQLTypes["UpdateProfileResult"] | GraphQLTypes["UploadFileResult"] | GraphQLTypes["UploadFileEndResult"] | GraphQLTypes["UploadFilePartEndResult"] | GraphQLTypes["UploadLiteFileResult"] | GraphQLTypes["ChangeUserPlanResult"] | GraphQLTypes["Error"] | GraphQLTypes["FileContent"];
194
237
  export declare type ValueTypes = {
195
238
  ["BigInt"]: unknown;
196
239
  ["DateTime"]: unknown;
@@ -267,6 +310,11 @@ export declare type ValueTypes = {
267
310
  ["...on ErrorNotFound"]: ValueTypes["ErrorNotFound"];
268
311
  __typename?: boolean | `@${string}`;
269
312
  }>;
313
+ ["GetJwtResult"]: AliasType<{
314
+ ["...on JwtResponse"]: ValueTypes["JwtResponse"];
315
+ ["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
316
+ __typename?: boolean | `@${string}`;
317
+ }>;
270
318
  ["LimitsResult"]: AliasType<{
271
319
  ["...on QueryLimits"]: ValueTypes["QueryLimits"];
272
320
  ["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
@@ -880,46 +928,46 @@ export declare type ValueTypes = {
880
928
  __typename?: boolean | `@${string}`;
881
929
  }>;
882
930
  ["MailFileInput"]: {
883
- id: string;
884
- name: string;
885
- fileKey: string;
931
+ id: string | Variable<any, string>;
932
+ name: string | Variable<any, string>;
933
+ fileKey: string | Variable<any, string>;
886
934
  };
887
935
  ["MailRecipientInput"]: {
888
- body: string;
889
- subject: string;
890
- recipientId: string;
891
- files: Array<ValueTypes["MailFileInput"]>;
936
+ body: string | Variable<any, string>;
937
+ subject: string | Variable<any, string>;
938
+ recipientId: string | Variable<any, string>;
939
+ files: Array<ValueTypes["MailFileInput"]> | Variable<any, string>;
892
940
  };
893
941
  ["NameKeyInput"]: {
894
- id: string;
895
- nameKey: string;
896
- files: Array<ValueTypes["ShareFileKeyInput"]>;
942
+ id: string | Variable<any, string>;
943
+ nameKey: string | Variable<any, string>;
944
+ files: Array<ValueTypes["ShareFileKeyInput"]> | Variable<any, string>;
897
945
  };
898
946
  ["PayInput"]: {
899
- type: ValueTypes["PayInputType"];
900
- token: string;
901
- firstName: string;
902
- lastName: string;
903
- street: string;
904
- postalCode: string;
905
- city: string;
906
- country: string;
907
- number: string;
908
- month: string;
909
- year: string;
910
- cvv: string;
947
+ type: ValueTypes["PayInputType"] | Variable<any, string>;
948
+ token: string | Variable<any, string>;
949
+ firstName: string | Variable<any, string>;
950
+ lastName: string | Variable<any, string>;
951
+ street: string | Variable<any, string>;
952
+ postalCode: string | Variable<any, string>;
953
+ city: string | Variable<any, string>;
954
+ country: string | Variable<any, string>;
955
+ number: string | Variable<any, string>;
956
+ month: string | Variable<any, string>;
957
+ year: string | Variable<any, string>;
958
+ cvv: string | Variable<any, string>;
911
959
  };
912
960
  ["PayInputType"]: PayInputType;
913
961
  ["ShareFileInHistoryInput"]: {
914
- fileId: string;
915
- users: Array<ValueTypes["ShareFileKeyInput"]>;
962
+ fileId: string | Variable<any, string>;
963
+ users: Array<ValueTypes["ShareFileKeyInput"]> | Variable<any, string>;
916
964
  };
917
965
  ["ShareFileKeyInput"]: {
918
- id: string;
919
- key: string;
966
+ id: string | Variable<any, string>;
967
+ key: string | Variable<any, string>;
920
968
  };
921
969
  ["ShareNodesInput"]: {
922
- nodes: Array<ValueTypes["NameKeyInput"]>;
970
+ nodes: Array<ValueTypes["NameKeyInput"]> | Variable<any, string>;
923
971
  };
924
972
  ["Limits"]: AliasType<{
925
973
  downloadBandwidth?: boolean | `@${string}`;
@@ -1287,6 +1335,10 @@ export declare type ValueTypes = {
1287
1335
  file?: ValueTypes["FileContent"];
1288
1336
  __typename?: boolean | `@${string}`;
1289
1337
  }>;
1338
+ ["JwtResponse"]: AliasType<{
1339
+ jwt?: boolean | `@${string}`;
1340
+ __typename?: boolean | `@${string}`;
1341
+ }>;
1290
1342
  ["QueryMailResponse"]: AliasType<{
1291
1343
  mail?: ValueTypes["Mail"];
1292
1344
  __typename?: boolean | `@${string}`;
@@ -1445,72 +1497,84 @@ export declare type ValueTypes = {
1445
1497
  appNotifications?: ValueTypes["AppNotificationsResult"];
1446
1498
  blog?: [
1447
1499
  {
1448
- lang?: ValueTypes["Lang"] | undefined | null;
1500
+ lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
1449
1501
  },
1450
1502
  ValueTypes["BlogResult"]
1451
1503
  ];
1452
- dbConfig?: [{
1453
- appCode: string;
1454
- }, ValueTypes["DbConfigResult"]];
1504
+ dbConfig?: [
1505
+ {
1506
+ appCode: string | Variable<any, string>;
1507
+ },
1508
+ ValueTypes["DbConfigResult"]
1509
+ ];
1455
1510
  dbGet?: [
1456
1511
  {
1457
- field: string;
1458
- userId?: string | undefined | null;
1512
+ field: string | Variable<any, string>;
1513
+ userId?: string | undefined | null | Variable<any, string>;
1459
1514
  },
1460
1515
  ValueTypes["DbGetResult"]
1461
1516
  ];
1462
1517
  dbSearch?: [
1463
1518
  {
1464
- search: string;
1465
- field: string;
1519
+ search: string | Variable<any, string>;
1520
+ field: string | Variable<any, string>;
1466
1521
  },
1467
1522
  ValueTypes["DbSearchResult"]
1468
1523
  ];
1469
1524
  deletedMails?: [
1470
1525
  {
1471
- mailType: ValueTypes["MailType"];
1526
+ mailType: ValueTypes["MailType"] | Variable<any, string>;
1472
1527
  },
1473
1528
  ValueTypes["DeletedMailsResult"]
1474
1529
  ];
1475
1530
  deletedNodes?: ValueTypes["DeletedNodesResult"];
1476
1531
  faq?: [
1477
1532
  {
1478
- lang?: ValueTypes["Lang"] | undefined | null;
1533
+ lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
1479
1534
  },
1480
1535
  ValueTypes["FaqResult"]
1481
1536
  ];
1482
1537
  file?: [{
1483
- id: string;
1538
+ id: string | Variable<any, string>;
1484
1539
  }, ValueTypes["FileResult"]];
1485
- fileContent?: [{
1486
- fileId: string;
1487
- }, ValueTypes["FileContentResult"]];
1540
+ fileContent?: [
1541
+ {
1542
+ fileId: string | Variable<any, string>;
1543
+ },
1544
+ ValueTypes["FileContentResult"]
1545
+ ];
1488
1546
  filesContent?: [
1489
1547
  {
1490
- fileIds: Array<string>;
1548
+ fileIds: Array<string> | Variable<any, string>;
1491
1549
  },
1492
1550
  ValueTypes["FilesContentResult"]
1493
1551
  ];
1494
1552
  filesSharedWithMe?: [
1495
1553
  {
1496
- accepted?: boolean | undefined | null;
1554
+ accepted?: boolean | undefined | null | Variable<any, string>;
1497
1555
  },
1498
1556
  ValueTypes["FileSharedContent"]
1499
1557
  ];
1558
+ getJwt?: [
1559
+ {
1560
+ includeEmail?: boolean | undefined | null | Variable<any, string>;
1561
+ },
1562
+ ValueTypes["GetJwtResult"]
1563
+ ];
1500
1564
  limits?: ValueTypes["LimitsResult"];
1501
1565
  mail?: [{
1502
- id: string;
1566
+ id: string | Variable<any, string>;
1503
1567
  }, ValueTypes["MailResult"]];
1504
1568
  node?: [
1505
1569
  {
1506
- id?: string | undefined | null;
1507
- deleted?: boolean | undefined | null;
1570
+ id?: string | undefined | null | Variable<any, string>;
1571
+ deleted?: boolean | undefined | null | Variable<any, string>;
1508
1572
  },
1509
1573
  ValueTypes["NodeResult"]
1510
1574
  ];
1511
1575
  nodesSharedWithMe?: [
1512
1576
  {
1513
- type?: ValueTypes["NodeType"] | undefined | null;
1577
+ type?: ValueTypes["NodeType"] | undefined | null | Variable<any, string>;
1514
1578
  },
1515
1579
  ValueTypes["NodesSharedWithMeResult"]
1516
1580
  ];
@@ -1519,12 +1583,15 @@ export declare type ValueTypes = {
1519
1583
  serverTime?: boolean | `@${string}`;
1520
1584
  sharedNodes?: ValueTypes["SharedNodesResult"];
1521
1585
  unreadReceivedMailsCount?: ValueTypes["UnreadReceivedMailsCountResult"];
1522
- user?: [{
1523
- userId?: string | undefined | null;
1524
- }, ValueTypes["UserResult"]];
1586
+ user?: [
1587
+ {
1588
+ userId?: string | undefined | null | Variable<any, string>;
1589
+ },
1590
+ ValueTypes["UserResult"]
1591
+ ];
1525
1592
  userList?: [
1526
1593
  {
1527
- search?: string | undefined | null;
1594
+ search?: string | undefined | null | Variable<any, string>;
1528
1595
  },
1529
1596
  ValueTypes["UserListResult"]
1530
1597
  ];
@@ -1533,104 +1600,110 @@ export declare type ValueTypes = {
1533
1600
  ["Mutation"]: AliasType<{
1534
1601
  addFileToHistory?: [
1535
1602
  {
1536
- nodeId: string;
1537
- fileId: string;
1603
+ nodeId: string | Variable<any, string>;
1604
+ fileId: string | Variable<any, string>;
1538
1605
  },
1539
1606
  ValueTypes["AddFileToHistoryResult"]
1540
1607
  ];
1541
1608
  cancelPayment?: ValueTypes["CancelPaymentResult"];
1542
1609
  createApplication?: [
1543
1610
  {
1544
- name: string;
1545
- origin: string;
1546
- developerId: string;
1611
+ name: string | Variable<any, string>;
1612
+ origin: string | Variable<any, string>;
1613
+ developerId: string | Variable<any, string>;
1547
1614
  },
1548
1615
  ValueTypes["CreateApplicationResult"]
1549
1616
  ];
1550
1617
  createDraftMail?: [
1551
1618
  {
1552
- hash: string;
1553
- hashKey: string;
1554
- body: string;
1555
- subject: string;
1556
- replyTo?: string | undefined | null;
1557
- senderFiles: Array<ValueTypes["MailFileInput"]>;
1558
- recipients: Array<string>;
1619
+ hash: string | Variable<any, string>;
1620
+ hashKey: string | Variable<any, string>;
1621
+ body: string | Variable<any, string>;
1622
+ subject: string | Variable<any, string>;
1623
+ replyTo?: string | undefined | null | Variable<any, string>;
1624
+ senderFiles: Array<ValueTypes["MailFileInput"]> | Variable<any, string>;
1625
+ recipients: Array<string> | Variable<any, string>;
1559
1626
  },
1560
1627
  ValueTypes["CreateDraftMailResult"]
1561
1628
  ];
1562
1629
  createFolder?: [
1563
1630
  {
1564
- name: string;
1565
- key: string;
1566
- parentFolderId?: string | undefined | null;
1631
+ name: string | Variable<any, string>;
1632
+ key: string | Variable<any, string>;
1633
+ parentFolderId?: string | undefined | null | Variable<any, string>;
1567
1634
  },
1568
1635
  ValueTypes["CreateFolderResult"]
1569
1636
  ];
1570
1637
  dbConfigMutation?: [
1571
1638
  {
1572
- appCode: string;
1573
- config: string;
1639
+ appCode: string | Variable<any, string>;
1640
+ config: string | Variable<any, string>;
1574
1641
  },
1575
1642
  ValueTypes["DbConfigMutationResult"]
1576
1643
  ];
1577
1644
  dbSet?: [
1578
1645
  {
1579
- value: string;
1580
- userId?: string | undefined | null;
1646
+ value: string | Variable<any, string>;
1647
+ userId?: string | undefined | null | Variable<any, string>;
1581
1648
  },
1582
1649
  ValueTypes["DbSetResult"]
1583
1650
  ];
1584
1651
  deleteAllData?: boolean | `@${string}`;
1585
1652
  deleteDraftMail?: [
1586
1653
  {
1587
- draftId: string;
1654
+ draftId: string | Variable<any, string>;
1588
1655
  },
1589
1656
  ValueTypes["DeleteDraftMailResult"]
1590
1657
  ];
1591
1658
  deleteFile?: [
1592
1659
  {
1593
- fileId: string;
1594
- nodeId: string;
1660
+ fileId: string | Variable<any, string>;
1661
+ nodeId: string | Variable<any, string>;
1595
1662
  },
1596
1663
  ValueTypes["DeleteFileResult"]
1597
1664
  ];
1598
- deleteMail?: [{
1599
- mailId: string;
1600
- }, ValueTypes["DeleteMailResult"]];
1665
+ deleteMail?: [
1666
+ {
1667
+ mailId: string | Variable<any, string>;
1668
+ },
1669
+ ValueTypes["DeleteMailResult"]
1670
+ ];
1601
1671
  deleteMailTrash?: [
1602
1672
  {
1603
- ids: Array<string>;
1673
+ ids: Array<string> | Variable<any, string>;
1604
1674
  },
1605
1675
  ValueTypes["DeleteMailTrashResult"]
1606
1676
  ];
1607
- deleteNode?: [{
1608
- id: string;
1609
- }, ValueTypes["DeleteNodeResult"]];
1677
+ deleteNode?: [
1678
+ {
1679
+ id: string | Variable<any, string>;
1680
+ },
1681
+ ValueTypes["DeleteNodeResult"]
1682
+ ];
1610
1683
  deleteNodeCloudTrash?: [
1611
1684
  {
1612
- ids: Array<string>;
1685
+ ids: Array<string> | Variable<any, string>;
1613
1686
  },
1614
1687
  ValueTypes["DeleteNodeCloudTrashResult"]
1615
1688
  ];
1616
1689
  deleteNodeSharing?: [
1617
1690
  {
1618
- nodeId: string;
1619
- userId: string;
1691
+ nodeId: string | Variable<any, string>;
1692
+ userId: string | Variable<any, string>;
1620
1693
  },
1621
1694
  ValueTypes["DeleteNodeSharingResult"]
1622
1695
  ];
1623
1696
  deleteUser?: [
1624
1697
  {
1625
- userId?: string | undefined | null;
1698
+ userId?: string | undefined | null | Variable<any, string>;
1626
1699
  },
1627
1700
  ValueTypes["DeleteUserResult"]
1628
1701
  ];
1629
1702
  duplicateNode?: [
1630
1703
  {
1631
- nodeId: string;
1632
- folderId?: string | undefined | null;
1633
- customName?: string | undefined | null;
1704
+ nodeId: string | Variable<any, string>;
1705
+ folderId?: string | undefined | null | Variable<any, string>;
1706
+ customName?: string | undefined | null | Variable<any, string>;
1634
1707
  },
1635
1708
  ValueTypes["DuplicateNodeResult"]
1636
1709
  ];
@@ -1638,202 +1711,217 @@ export declare type ValueTypes = {
1638
1711
  emptyMailTrash?: ValueTypes["EmptyMailTrashResult"];
1639
1712
  logout?: [
1640
1713
  {
1641
- sessionId?: string | undefined | null;
1714
+ sessionId?: string | undefined | null | Variable<any, string>;
1642
1715
  },
1643
1716
  ValueTypes["LogoutResult"]
1644
1717
  ];
1645
1718
  moveNodes?: [
1646
1719
  {
1647
- nodeIds: Array<string>;
1648
- parentNodeId?: string | undefined | null;
1720
+ nodeIds: Array<string> | Variable<any, string>;
1721
+ parentNodeId?: string | undefined | null | Variable<any, string>;
1649
1722
  },
1650
1723
  ValueTypes["MoveNodesResult"]
1651
1724
  ];
1652
1725
  pay?: [
1653
1726
  {
1654
- planCode: string;
1655
- input: ValueTypes["PayInput"];
1656
- autoRenew?: boolean | undefined | null;
1727
+ planCode: string | Variable<any, string>;
1728
+ input: ValueTypes["PayInput"] | Variable<any, string>;
1729
+ autoRenew?: boolean | undefined | null | Variable<any, string>;
1657
1730
  },
1658
1731
  ValueTypes["PayResult"]
1659
1732
  ];
1660
- readMail?: [{
1661
- mailId: string;
1662
- }, ValueTypes["ReadMailResult"]];
1663
- recoverMail?: [{
1664
- mailId: string;
1665
- }, ValueTypes["RecoverMailResult"]];
1666
- recoverNode?: [{
1667
- id: string;
1668
- }, ValueTypes["RecoverNodeResult"]];
1733
+ readMail?: [
1734
+ {
1735
+ mailId: string | Variable<any, string>;
1736
+ },
1737
+ ValueTypes["ReadMailResult"]
1738
+ ];
1739
+ recoverMail?: [
1740
+ {
1741
+ mailId: string | Variable<any, string>;
1742
+ },
1743
+ ValueTypes["RecoverMailResult"]
1744
+ ];
1745
+ recoverNode?: [
1746
+ {
1747
+ id: string | Variable<any, string>;
1748
+ },
1749
+ ValueTypes["RecoverNodeResult"]
1750
+ ];
1669
1751
  saveInCloud?: [
1670
1752
  {
1671
- fileId: string;
1672
- key: string;
1673
- nodeId?: string | undefined | null;
1674
- filename: string;
1675
- nameKey: string;
1753
+ fileId: string | Variable<any, string>;
1754
+ key: string | Variable<any, string>;
1755
+ nodeId?: string | undefined | null | Variable<any, string>;
1756
+ filename: string | Variable<any, string>;
1757
+ nameKey: string | Variable<any, string>;
1676
1758
  },
1677
1759
  ValueTypes["SaveInCloudResult"]
1678
1760
  ];
1679
1761
  sendAppMail?: [
1680
1762
  {
1681
- fakeUserIds: Array<string>;
1682
- subject: string;
1683
- html: string;
1763
+ fakeUserIds: Array<string> | Variable<any, string>;
1764
+ subject: string | Variable<any, string>;
1765
+ html: string | Variable<any, string>;
1684
1766
  },
1685
1767
  ValueTypes["SendAppMailResult"]
1686
1768
  ];
1687
1769
  sendDraftMail?: [
1688
1770
  {
1689
- draftMailId: string;
1690
- temporaryRecipients: Array<string>;
1691
- recipients: Array<ValueTypes["MailRecipientInput"]>;
1692
- customMessage?: string | undefined | null;
1771
+ draftMailId: string | Variable<any, string>;
1772
+ temporaryRecipients: Array<string> | Variable<any, string>;
1773
+ recipients: Array<ValueTypes["MailRecipientInput"]> | Variable<any, string>;
1774
+ customMessage?: string | undefined | null | Variable<any, string>;
1693
1775
  },
1694
1776
  ValueTypes["SendDraftMailResult"]
1695
1777
  ];
1696
1778
  sendOneMail?: [
1697
1779
  {
1698
- mailIntegrityId: string;
1699
- recipient: ValueTypes["MailRecipientInput"];
1780
+ mailIntegrityId: string | Variable<any, string>;
1781
+ recipient: ValueTypes["MailRecipientInput"] | Variable<any, string>;
1700
1782
  },
1701
1783
  ValueTypes["SendOneMailResult"]
1702
1784
  ];
1703
1785
  sendReport?: [
1704
1786
  {
1705
- reportedUserId: string;
1706
- customMessage?: string | undefined | null;
1787
+ reportedUserId: string | Variable<any, string>;
1788
+ customMessage?: string | undefined | null | Variable<any, string>;
1707
1789
  },
1708
1790
  ValueTypes["SendReportResult"]
1709
1791
  ];
1710
1792
  shareFileInHistory?: [
1711
1793
  {
1712
- input: ValueTypes["ShareFileInHistoryInput"];
1713
- nodeId: string;
1794
+ input: ValueTypes["ShareFileInHistoryInput"] | Variable<any, string>;
1795
+ nodeId: string | Variable<any, string>;
1714
1796
  },
1715
1797
  ValueTypes["ShareFileInHistoryResult"]
1716
1798
  ];
1717
1799
  shareNode?: [
1718
1800
  {
1719
- nodeId: string;
1720
- userId: string;
1801
+ nodeId: string | Variable<any, string>;
1802
+ userId: string | Variable<any, string>;
1721
1803
  },
1722
1804
  ValueTypes["ShareNodeResult"]
1723
1805
  ];
1724
1806
  shareNodeFinish?: [
1725
1807
  {
1726
- shareNodes: ValueTypes["ShareNodesInput"];
1727
- userId: string;
1728
- rights: ValueTypes["Rights"];
1808
+ shareNodes: ValueTypes["ShareNodesInput"] | Variable<any, string>;
1809
+ userId: string | Variable<any, string>;
1810
+ rights: ValueTypes["Rights"] | Variable<any, string>;
1729
1811
  },
1730
1812
  ValueTypes["ShareNodeFinishResult"]
1731
1813
  ];
1732
- unreadMail?: [{
1733
- mailId: string;
1734
- }, ValueTypes["UnreadMailResult"]];
1814
+ unreadMail?: [
1815
+ {
1816
+ mailId: string | Variable<any, string>;
1817
+ },
1818
+ ValueTypes["UnreadMailResult"]
1819
+ ];
1735
1820
  updateAppNotifications?: [
1736
1821
  {
1737
- enableAll?: boolean | undefined | null;
1738
- mail?: boolean | undefined | null;
1739
- cloud?: boolean | undefined | null;
1740
- disableAllUntil?: ValueTypes["DateTime"] | undefined | null;
1822
+ enableAll?: boolean | undefined | null | Variable<any, string>;
1823
+ mail?: boolean | undefined | null | Variable<any, string>;
1824
+ cloud?: boolean | undefined | null | Variable<any, string>;
1825
+ disableAllUntil?: ValueTypes["DateTime"] | undefined | null | Variable<any, string>;
1741
1826
  },
1742
1827
  ValueTypes["UpdateAppNotificationsResult"]
1743
1828
  ];
1744
1829
  updateAppSettings?: [
1745
1830
  {
1746
- cloudFileDaysForDelete?: number | undefined | null;
1747
- cloudFolderDaysForDelete?: number | undefined | null;
1748
- historyFileDaysForDelete?: number | undefined | null;
1749
- historyMaxFileCount?: number | undefined | null;
1831
+ cloudFileDaysForDelete?: number | undefined | null | Variable<any, string>;
1832
+ cloudFolderDaysForDelete?: number | undefined | null | Variable<any, string>;
1833
+ historyFileDaysForDelete?: number | undefined | null | Variable<any, string>;
1834
+ historyMaxFileCount?: number | undefined | null | Variable<any, string>;
1750
1835
  },
1751
1836
  ValueTypes["UpdateAppSettingsResult"]
1752
1837
  ];
1753
1838
  updateAutoDisconnectDelay?: [
1754
1839
  {
1755
- userId?: string | undefined | null;
1756
- delay?: number | undefined | null;
1840
+ userId?: string | undefined | null | Variable<any, string>;
1841
+ delay?: number | undefined | null | Variable<any, string>;
1757
1842
  },
1758
1843
  ValueTypes["UpdateAutoDisconnectDelayResult"]
1759
1844
  ];
1760
1845
  updateDraftMail?: [
1761
1846
  {
1762
- draftId: string;
1763
- hash?: string | undefined | null;
1764
- hashKey?: string | undefined | null;
1765
- body?: string | undefined | null;
1766
- subject?: string | undefined | null;
1767
- replyTo?: string | undefined | null;
1768
- senderFiles?: Array<ValueTypes["MailFileInput"]> | undefined | null;
1769
- recipients?: Array<string> | undefined | null;
1847
+ draftId: string | Variable<any, string>;
1848
+ hash?: string | undefined | null | Variable<any, string>;
1849
+ hashKey?: string | undefined | null | Variable<any, string>;
1850
+ body?: string | undefined | null | Variable<any, string>;
1851
+ subject?: string | undefined | null | Variable<any, string>;
1852
+ replyTo?: string | undefined | null | Variable<any, string>;
1853
+ senderFiles?: Array<ValueTypes["MailFileInput"]> | undefined | null | Variable<any, string>;
1854
+ recipients?: Array<string> | undefined | null | Variable<any, string>;
1770
1855
  },
1771
1856
  ValueTypes["UpdateDraftMailResult"]
1772
1857
  ];
1773
1858
  updateNode?: [
1774
1859
  {
1775
- nodeId: string;
1776
- name?: string | undefined | null;
1777
- isFavorite?: boolean | undefined | null;
1778
- deletedAt?: ValueTypes["DateTime"] | undefined | null;
1860
+ nodeId: string | Variable<any, string>;
1861
+ name?: string | undefined | null | Variable<any, string>;
1862
+ isFavorite?: boolean | undefined | null | Variable<any, string>;
1863
+ deletedAt?: ValueTypes["DateTime"] | undefined | null | Variable<any, string>;
1779
1864
  },
1780
1865
  ValueTypes["UpdateNodeResult"]
1781
1866
  ];
1782
1867
  updateProfile?: [
1783
1868
  {
1784
- firstname?: string | undefined | null;
1785
- lastname?: string | undefined | null;
1786
- lang?: ValueTypes["Lang"] | undefined | null;
1869
+ firstname?: string | undefined | null | Variable<any, string>;
1870
+ lastname?: string | undefined | null | Variable<any, string>;
1871
+ lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
1787
1872
  },
1788
1873
  ValueTypes["UpdateProfileResult"]
1789
1874
  ];
1790
1875
  uploadAnonymous?: [
1791
1876
  {
1792
- fileName: string;
1793
- fileSize: number;
1794
- fileSizeBefore: number;
1795
- message?: string | undefined | null;
1796
- pubKey: string;
1797
- token: string;
1877
+ fileName: string | Variable<any, string>;
1878
+ fileSize: number | Variable<any, string>;
1879
+ fileSizeBefore: number | Variable<any, string>;
1880
+ message?: string | undefined | null | Variable<any, string>;
1881
+ pubKey: string | Variable<any, string>;
1882
+ token: string | Variable<any, string>;
1798
1883
  },
1799
1884
  ValueTypes["FileResponse"]
1800
1885
  ];
1801
1886
  uploadFile?: [
1802
1887
  {
1803
- fileSize: ValueTypes["BigInt"];
1804
- fileSizeBefore: ValueTypes["BigInt"];
1805
- fileKey: string;
1806
- md5: string;
1807
- md5Encrypted: string;
1888
+ fileSize: ValueTypes["BigInt"] | Variable<any, string>;
1889
+ fileSizeBefore: ValueTypes["BigInt"] | Variable<any, string>;
1890
+ fileKey: string | Variable<any, string>;
1891
+ md5: string | Variable<any, string>;
1892
+ md5Encrypted: string | Variable<any, string>;
1808
1893
  },
1809
1894
  ValueTypes["UploadFileResult"]
1810
1895
  ];
1811
- uploadFileEnd?: [{
1812
- fileId: string;
1813
- }, ValueTypes["UploadFileEndResult"]];
1896
+ uploadFileEnd?: [
1897
+ {
1898
+ fileId: string | Variable<any, string>;
1899
+ },
1900
+ ValueTypes["UploadFileEndResult"]
1901
+ ];
1814
1902
  uploadFilePartEnd?: [
1815
1903
  {
1816
- fileId: string;
1817
- md5: string;
1818
- order: number;
1904
+ fileId: string | Variable<any, string>;
1905
+ md5: string | Variable<any, string>;
1906
+ order: number | Variable<any, string>;
1819
1907
  },
1820
1908
  ValueTypes["UploadFilePartEndResult"]
1821
1909
  ];
1822
1910
  uploadLiteFile?: [
1823
1911
  {
1824
- content: ValueTypes["Bytes"];
1825
- fileSize: ValueTypes["BigInt"];
1826
- fileSizeBefore: ValueTypes["BigInt"];
1827
- fileKey: string;
1828
- md5: string;
1829
- md5Encrypted: string;
1912
+ content: ValueTypes["Bytes"] | Variable<any, string>;
1913
+ fileSize: ValueTypes["BigInt"] | Variable<any, string>;
1914
+ fileSizeBefore: ValueTypes["BigInt"] | Variable<any, string>;
1915
+ fileKey: string | Variable<any, string>;
1916
+ md5: string | Variable<any, string>;
1917
+ md5Encrypted: string | Variable<any, string>;
1830
1918
  },
1831
1919
  ValueTypes["UploadLiteFileResult"]
1832
1920
  ];
1833
1921
  changeUserPlan?: [
1834
1922
  {
1835
- userId: string;
1836
- plan: ValueTypes["PlanKind"];
1923
+ userId: string | Variable<any, string>;
1924
+ plan: ValueTypes["PlanKind"] | Variable<any, string>;
1837
1925
  },
1838
1926
  ValueTypes["ChangeUserPlanResult"]
1839
1927
  ];
@@ -1844,95 +1932,1770 @@ export declare type ValueTypes = {
1844
1932
  __typename?: boolean | `@${string}`;
1845
1933
  }>;
1846
1934
  };
1847
- export declare type ModelTypes = {
1848
- ["BigInt"]: any;
1849
- ["DateTime"]: any;
1850
- ["Json"]: any;
1851
- ["Bytes"]: any;
1852
- ["Lang"]: GraphQLTypes["Lang"];
1853
- ["PlanKind"]: GraphQLTypes["PlanKind"];
1854
- ["UserRole"]: GraphQLTypes["UserRole"];
1855
- ["MailType"]: GraphQLTypes["MailType"];
1856
- ["Rights"]: GraphQLTypes["Rights"];
1857
- ["NodeType"]: GraphQLTypes["NodeType"];
1858
- ["AppNotificationsResult"]: ModelTypes["UserAppNotifications"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1859
- ["BlogResult"]: ModelTypes["BlogResponse"] | ModelTypes["ErrorLangNotExist"];
1860
- ["DbConfigResult"]: ModelTypes["DbConfigResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorNotFound"];
1861
- ["DbGetResult"]: ModelTypes["DbGetResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorNotExist"];
1862
- ["DbSearchResult"]: ModelTypes["DbSearchResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorBasic"];
1863
- ["DeletedMailsResult"]: ModelTypes["DeletedMailsResponse"] | ModelTypes["ErrorAccessDenied"];
1864
- ["DeletedNodesResult"]: ModelTypes["DeletedNodesResponse"] | ModelTypes["ErrorAccessDenied"];
1865
- ["FaqResult"]: ModelTypes["FaqResponse"] | ModelTypes["ErrorAccessDenied"];
1866
- ["FileResult"]: ModelTypes["FileQueryResponse"] | ModelTypes["ErrorAccessDenied"];
1867
- ["FileContentResult"]: ModelTypes["FileContentResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1868
- ["FilesContentResult"]: ModelTypes["FilesContentResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"];
1869
- ["LimitsResult"]: ModelTypes["QueryLimits"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorLimit"];
1870
- ["MailResult"]: ModelTypes["QueryMailResponse"] | ModelTypes["ErrorAccessDenied"];
1871
- ["NodeResult"]: ModelTypes["NodeResponse"] | ModelTypes["ErrorAccessDenied"];
1872
- ["NodesSharedWithMeResult"]: ModelTypes["NodesSharedWithMeResponse"] | ModelTypes["ErrorAccessDenied"];
1873
- ["PaymentInfosResult"]: ModelTypes["PaymentInfosResponse"] | ModelTypes["ErrorAccessDenied"];
1874
- ["PlansResult"]: ModelTypes["PlanResponse"];
1875
- ["SharedNodesResult"]: ModelTypes["SharedNodesResponse"] | ModelTypes["ErrorAccessDenied"];
1876
- ["UnreadReceivedMailsCountResult"]: ModelTypes["UnreadReceivedMailsCountResponse"] | ModelTypes["ErrorAccessDenied"];
1877
- ["UserResult"]: ModelTypes["UserResponse"] | ModelTypes["ErrorNotFound"];
1878
- ["UserListResult"]: ModelTypes["UserListResponse"] | ModelTypes["ErrorAccessDenied"];
1879
- ["AddFileToHistoryResult"]: ModelTypes["AddFileToHistoryResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
1880
- ["CancelPaymentResult"]: ModelTypes["CancelPaymentResponse"] | ModelTypes["ErrorAccessDenied"];
1881
- ["CreateApplicationResult"]: ModelTypes["CreateApplicationResponse"] | ModelTypes["ErrorNotExist"];
1882
- ["CreateDraftMailResult"]: ModelTypes["CreateDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1883
- ["CreateFolderResult"]: ModelTypes["CreateFolderResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
1884
- ["DbConfigMutationResult"]: ModelTypes["DbConfigMutationResponse"] | ModelTypes["ErrorAccessDenied"];
1885
- ["DbSetResult"]: ModelTypes["DbSetResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1886
- ["DeleteDraftMailResult"]: ModelTypes["DeleteDraftMailResponse"] | ModelTypes["ErrorAccessDenied"];
1887
- ["DeleteFileResult"]: ModelTypes["DeleteFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
1888
- ["DeleteMailResult"]: ModelTypes["DeleteMailResponse"] | ModelTypes["ErrorAccessDenied"];
1889
- ["DeleteMailTrashResult"]: ModelTypes["DeleteMailTrashResponse"] | ModelTypes["ErrorAccessDenied"];
1890
- ["DeleteNodeResult"]: ModelTypes["DeleteNodeResponse"] | ModelTypes["ErrorAccessDenied"];
1891
- ["DeleteNodeCloudTrashResult"]: ModelTypes["DeleteNodeCloudTrashResponse"] | ModelTypes["ErrorAccessDenied"];
1892
- ["DeleteNodeSharingResult"]: ModelTypes["DeleteNodeSharingResponse"] | ModelTypes["ErrorAccessDenied"];
1893
- ["DeleteUserResult"]: ModelTypes["DeleteUserResponse"] | ModelTypes["ErrorAccessDenied"];
1894
- ["DuplicateNodeResult"]: ModelTypes["DuplicateNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1895
- ["EmptyCloudTrashResult"]: ModelTypes["EmptyCloudTrashResponse"] | ModelTypes["ErrorAccessDenied"];
1896
- ["EmptyMailTrashResult"]: ModelTypes["EmptyMailTrashResponse"] | ModelTypes["ErrorAccessDenied"];
1897
- ["LogoutResult"]: ModelTypes["LogoutResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1898
- ["MoveNodesResult"]: ModelTypes["MoveNodesResponse"] | ModelTypes["ErrorAccessDenied"];
1899
- ["PayResult"]: ModelTypes["PayResponse"] | ModelTypes["ErrorAccessDenied"];
1900
- ["ReadMailResult"]: ModelTypes["ReadMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"];
1901
- ["RecoverMailResult"]: ModelTypes["RecoverMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1902
- ["RecoverNodeResult"]: ModelTypes["RecoverNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
1903
- ["SaveInCloudResult"]: ModelTypes["SaveInCloudResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
1904
- ["SendAppMailResult"]: ModelTypes["SendAppMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"];
1905
- ["SendDraftMailResult"]: ModelTypes["SendDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1906
- ["SendOneMailResult"]: ModelTypes["RecoverNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1907
- ["SendReportResult"]: ModelTypes["SendReportResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1908
- ["ShareFileInHistoryResult"]: ModelTypes["ShareFileInHistoryResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1909
- ["ShareNodeResult"]: ModelTypes["ShareNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1910
- ["ShareNodeFinishResult"]: ModelTypes["ShareNodeFinishResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1911
- ["UnreadMailResult"]: ModelTypes["UnreadMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorBasic"];
1912
- ["UpdateAppNotificationsResult"]: ModelTypes["UpdateAppNotificationsResponse"] | ModelTypes["ErrorAccessDenied"];
1913
- ["UpdateAppSettingsResult"]: ModelTypes["UpdateAppSettingsResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1914
- ["UpdateAutoDisconnectDelayResult"]: ModelTypes["UpdateAutoDisconnectDelayResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorBasic"];
1915
- ["UpdateDraftMailResult"]: ModelTypes["UpdateDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
1916
- ["UpdateNodeResult"]: ModelTypes["UpdateNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
1917
- ["UpdateProfileResult"]: ModelTypes["UpdateProfileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1918
- ["UploadFileResult"]: ModelTypes["UploadFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
1919
- ["UploadFileEndResult"]: ModelTypes["UploadFileEndResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
1920
- ["UploadFilePartEndResult"]: ModelTypes["UploadFilePartEndResponse"] | ModelTypes["ErrorAccessDenied"];
1921
- ["UploadLiteFileResult"]: ModelTypes["UploadLiteFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
1922
- ["ChangeUserPlanResult"]: ModelTypes["ChangeUserPlanResponse"] | ModelTypes["ErrorAccessDenied"];
1923
- ["AppKeyPair"]: {
1924
- pub: string;
1925
- };
1926
- ["AppSession"]: {
1927
- id: string;
1928
- lastActivity?: GraphQLTypes["DateTime"] | undefined;
1935
+ export declare type ResolverInputTypes = {
1936
+ ["BigInt"]: unknown;
1937
+ ["DateTime"]: unknown;
1938
+ ["Json"]: unknown;
1939
+ ["Bytes"]: unknown;
1940
+ ["Lang"]: Lang;
1941
+ ["PlanKind"]: PlanKind;
1942
+ ["UserRole"]: UserRole;
1943
+ ["MailType"]: MailType;
1944
+ ["Rights"]: Rights;
1945
+ ["NodeType"]: NodeType;
1946
+ ["AppNotificationsResult"]: AliasType<{
1947
+ UserAppNotifications?: ResolverInputTypes["UserAppNotifications"];
1948
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1949
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
1950
+ __typename?: boolean | `@${string}`;
1951
+ }>;
1952
+ ["BlogResult"]: AliasType<{
1953
+ BlogResponse?: ResolverInputTypes["BlogResponse"];
1954
+ ErrorLangNotExist?: ResolverInputTypes["ErrorLangNotExist"];
1955
+ __typename?: boolean | `@${string}`;
1956
+ }>;
1957
+ ["DbConfigResult"]: AliasType<{
1958
+ DbConfigResponse?: ResolverInputTypes["DbConfigResponse"];
1959
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1960
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
1961
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
1962
+ __typename?: boolean | `@${string}`;
1963
+ }>;
1964
+ ["DbGetResult"]: AliasType<{
1965
+ DbGetResponse?: ResolverInputTypes["DbGetResponse"];
1966
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1967
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
1968
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
1969
+ __typename?: boolean | `@${string}`;
1970
+ }>;
1971
+ ["DbSearchResult"]: AliasType<{
1972
+ DbSearchResponse?: ResolverInputTypes["DbSearchResponse"];
1973
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1974
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
1975
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
1976
+ __typename?: boolean | `@${string}`;
1977
+ }>;
1978
+ ["DeletedMailsResult"]: AliasType<{
1979
+ DeletedMailsResponse?: ResolverInputTypes["DeletedMailsResponse"];
1980
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1981
+ __typename?: boolean | `@${string}`;
1982
+ }>;
1983
+ ["DeletedNodesResult"]: AliasType<{
1984
+ DeletedNodesResponse?: ResolverInputTypes["DeletedNodesResponse"];
1985
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1986
+ __typename?: boolean | `@${string}`;
1987
+ }>;
1988
+ ["FaqResult"]: AliasType<{
1989
+ FaqResponse?: ResolverInputTypes["FaqResponse"];
1990
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1991
+ __typename?: boolean | `@${string}`;
1992
+ }>;
1993
+ ["FileResult"]: AliasType<{
1994
+ FileQueryResponse?: ResolverInputTypes["FileQueryResponse"];
1995
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
1996
+ __typename?: boolean | `@${string}`;
1997
+ }>;
1998
+ ["FileContentResult"]: AliasType<{
1999
+ FileContentResponse?: ResolverInputTypes["FileContentResponse"];
2000
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2001
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2002
+ __typename?: boolean | `@${string}`;
2003
+ }>;
2004
+ ["FilesContentResult"]: AliasType<{
2005
+ FilesContentResponse?: ResolverInputTypes["FilesContentResponse"];
2006
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2007
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2008
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2009
+ __typename?: boolean | `@${string}`;
2010
+ }>;
2011
+ ["GetJwtResult"]: AliasType<{
2012
+ JwtResponse?: ResolverInputTypes["JwtResponse"];
2013
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2014
+ __typename?: boolean | `@${string}`;
2015
+ }>;
2016
+ ["LimitsResult"]: AliasType<{
2017
+ QueryLimits?: ResolverInputTypes["QueryLimits"];
2018
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2019
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2020
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2021
+ ErrorLimit?: ResolverInputTypes["ErrorLimit"];
2022
+ __typename?: boolean | `@${string}`;
2023
+ }>;
2024
+ ["MailResult"]: AliasType<{
2025
+ QueryMailResponse?: ResolverInputTypes["QueryMailResponse"];
2026
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2027
+ __typename?: boolean | `@${string}`;
2028
+ }>;
2029
+ ["NodeResult"]: AliasType<{
2030
+ NodeResponse?: ResolverInputTypes["NodeResponse"];
2031
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2032
+ __typename?: boolean | `@${string}`;
2033
+ }>;
2034
+ ["NodesSharedWithMeResult"]: AliasType<{
2035
+ NodesSharedWithMeResponse?: ResolverInputTypes["NodesSharedWithMeResponse"];
2036
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2037
+ __typename?: boolean | `@${string}`;
2038
+ }>;
2039
+ ["PaymentInfosResult"]: AliasType<{
2040
+ PaymentInfosResponse?: ResolverInputTypes["PaymentInfosResponse"];
2041
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2042
+ __typename?: boolean | `@${string}`;
2043
+ }>;
2044
+ ["PlansResult"]: AliasType<{
2045
+ PlanResponse?: ResolverInputTypes["PlanResponse"];
2046
+ __typename?: boolean | `@${string}`;
2047
+ }>;
2048
+ ["SharedNodesResult"]: AliasType<{
2049
+ SharedNodesResponse?: ResolverInputTypes["SharedNodesResponse"];
2050
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2051
+ __typename?: boolean | `@${string}`;
2052
+ }>;
2053
+ ["UnreadReceivedMailsCountResult"]: AliasType<{
2054
+ UnreadReceivedMailsCountResponse?: ResolverInputTypes["UnreadReceivedMailsCountResponse"];
2055
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2056
+ __typename?: boolean | `@${string}`;
2057
+ }>;
2058
+ ["UserResult"]: AliasType<{
2059
+ UserResponse?: ResolverInputTypes["UserResponse"];
2060
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2061
+ __typename?: boolean | `@${string}`;
2062
+ }>;
2063
+ ["UserListResult"]: AliasType<{
2064
+ UserListResponse?: ResolverInputTypes["UserListResponse"];
2065
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2066
+ __typename?: boolean | `@${string}`;
2067
+ }>;
2068
+ ["AddFileToHistoryResult"]: AliasType<{
2069
+ AddFileToHistoryResponse?: ResolverInputTypes["AddFileToHistoryResponse"];
2070
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2071
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2072
+ __typename?: boolean | `@${string}`;
2073
+ }>;
2074
+ ["CancelPaymentResult"]: AliasType<{
2075
+ CancelPaymentResponse?: ResolverInputTypes["CancelPaymentResponse"];
2076
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2077
+ __typename?: boolean | `@${string}`;
2078
+ }>;
2079
+ ["CreateApplicationResult"]: AliasType<{
2080
+ CreateApplicationResponse?: ResolverInputTypes["CreateApplicationResponse"];
2081
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2082
+ __typename?: boolean | `@${string}`;
2083
+ }>;
2084
+ ["CreateDraftMailResult"]: AliasType<{
2085
+ CreateDraftMailResponse?: ResolverInputTypes["CreateDraftMailResponse"];
2086
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2087
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2088
+ __typename?: boolean | `@${string}`;
2089
+ }>;
2090
+ ["CreateFolderResult"]: AliasType<{
2091
+ CreateFolderResponse?: ResolverInputTypes["CreateFolderResponse"];
2092
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2093
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2094
+ __typename?: boolean | `@${string}`;
2095
+ }>;
2096
+ ["DbConfigMutationResult"]: AliasType<{
2097
+ DbConfigMutationResponse?: ResolverInputTypes["DbConfigMutationResponse"];
2098
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2099
+ __typename?: boolean | `@${string}`;
2100
+ }>;
2101
+ ["DbSetResult"]: AliasType<{
2102
+ DbSetResponse?: ResolverInputTypes["DbSetResponse"];
2103
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2104
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2105
+ __typename?: boolean | `@${string}`;
2106
+ }>;
2107
+ ["DeleteDraftMailResult"]: AliasType<{
2108
+ DeleteDraftMailResponse?: ResolverInputTypes["DeleteDraftMailResponse"];
2109
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2110
+ __typename?: boolean | `@${string}`;
2111
+ }>;
2112
+ ["DeleteFileResult"]: AliasType<{
2113
+ DeleteFileResponse?: ResolverInputTypes["DeleteFileResponse"];
2114
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2115
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2116
+ __typename?: boolean | `@${string}`;
2117
+ }>;
2118
+ ["DeleteMailResult"]: AliasType<{
2119
+ DeleteMailResponse?: ResolverInputTypes["DeleteMailResponse"];
2120
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2121
+ __typename?: boolean | `@${string}`;
2122
+ }>;
2123
+ ["DeleteMailTrashResult"]: AliasType<{
2124
+ DeleteMailTrashResponse?: ResolverInputTypes["DeleteMailTrashResponse"];
2125
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2126
+ __typename?: boolean | `@${string}`;
2127
+ }>;
2128
+ ["DeleteNodeResult"]: AliasType<{
2129
+ DeleteNodeResponse?: ResolverInputTypes["DeleteNodeResponse"];
2130
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2131
+ __typename?: boolean | `@${string}`;
2132
+ }>;
2133
+ ["DeleteNodeCloudTrashResult"]: AliasType<{
2134
+ DeleteNodeCloudTrashResponse?: ResolverInputTypes["DeleteNodeCloudTrashResponse"];
2135
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2136
+ __typename?: boolean | `@${string}`;
2137
+ }>;
2138
+ ["DeleteNodeSharingResult"]: AliasType<{
2139
+ DeleteNodeSharingResponse?: ResolverInputTypes["DeleteNodeSharingResponse"];
2140
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2141
+ __typename?: boolean | `@${string}`;
2142
+ }>;
2143
+ ["DeleteUserResult"]: AliasType<{
2144
+ DeleteUserResponse?: ResolverInputTypes["DeleteUserResponse"];
2145
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2146
+ __typename?: boolean | `@${string}`;
2147
+ }>;
2148
+ ["DuplicateNodeResult"]: AliasType<{
2149
+ DuplicateNodeResponse?: ResolverInputTypes["DuplicateNodeResponse"];
2150
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2151
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2152
+ __typename?: boolean | `@${string}`;
2153
+ }>;
2154
+ ["EmptyCloudTrashResult"]: AliasType<{
2155
+ EmptyCloudTrashResponse?: ResolverInputTypes["EmptyCloudTrashResponse"];
2156
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2157
+ __typename?: boolean | `@${string}`;
2158
+ }>;
2159
+ ["EmptyMailTrashResult"]: AliasType<{
2160
+ EmptyMailTrashResponse?: ResolverInputTypes["EmptyMailTrashResponse"];
2161
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2162
+ __typename?: boolean | `@${string}`;
2163
+ }>;
2164
+ ["LogoutResult"]: AliasType<{
2165
+ LogoutResponse?: ResolverInputTypes["LogoutResponse"];
2166
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2167
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2168
+ __typename?: boolean | `@${string}`;
2169
+ }>;
2170
+ ["MoveNodesResult"]: AliasType<{
2171
+ MoveNodesResponse?: ResolverInputTypes["MoveNodesResponse"];
2172
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2173
+ __typename?: boolean | `@${string}`;
2174
+ }>;
2175
+ ["PayResult"]: AliasType<{
2176
+ PayResponse?: ResolverInputTypes["PayResponse"];
2177
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2178
+ __typename?: boolean | `@${string}`;
2179
+ }>;
2180
+ ["ReadMailResult"]: AliasType<{
2181
+ ReadMailResponse?: ResolverInputTypes["ReadMailResponse"];
2182
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2183
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2184
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2185
+ __typename?: boolean | `@${string}`;
2186
+ }>;
2187
+ ["RecoverMailResult"]: AliasType<{
2188
+ RecoverMailResponse?: ResolverInputTypes["RecoverMailResponse"];
2189
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2190
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2191
+ __typename?: boolean | `@${string}`;
2192
+ }>;
2193
+ ["RecoverNodeResult"]: AliasType<{
2194
+ RecoverNodeResponse?: ResolverInputTypes["RecoverNodeResponse"];
2195
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2196
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2197
+ __typename?: boolean | `@${string}`;
2198
+ }>;
2199
+ ["SaveInCloudResult"]: AliasType<{
2200
+ SaveInCloudResponse?: ResolverInputTypes["SaveInCloudResponse"];
2201
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2202
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2203
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2204
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2205
+ ErrorLimit?: ResolverInputTypes["ErrorLimit"];
2206
+ __typename?: boolean | `@${string}`;
2207
+ }>;
2208
+ ["SendAppMailResult"]: AliasType<{
2209
+ SendAppMailResponse?: ResolverInputTypes["SendAppMailResponse"];
2210
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2211
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2212
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2213
+ __typename?: boolean | `@${string}`;
2214
+ }>;
2215
+ ["SendDraftMailResult"]: AliasType<{
2216
+ SendDraftMailResponse?: ResolverInputTypes["SendDraftMailResponse"];
2217
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2218
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2219
+ __typename?: boolean | `@${string}`;
2220
+ }>;
2221
+ ["SendOneMailResult"]: AliasType<{
2222
+ RecoverNodeResponse?: ResolverInputTypes["RecoverNodeResponse"];
2223
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2224
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2225
+ __typename?: boolean | `@${string}`;
2226
+ }>;
2227
+ ["SendReportResult"]: AliasType<{
2228
+ SendReportResponse?: ResolverInputTypes["SendReportResponse"];
2229
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2230
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2231
+ __typename?: boolean | `@${string}`;
2232
+ }>;
2233
+ ["ShareFileInHistoryResult"]: AliasType<{
2234
+ ShareFileInHistoryResponse?: ResolverInputTypes["ShareFileInHistoryResponse"];
2235
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2236
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2237
+ __typename?: boolean | `@${string}`;
2238
+ }>;
2239
+ ["ShareNodeResult"]: AliasType<{
2240
+ ShareNodeResponse?: ResolverInputTypes["ShareNodeResponse"];
2241
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2242
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2243
+ __typename?: boolean | `@${string}`;
2244
+ }>;
2245
+ ["ShareNodeFinishResult"]: AliasType<{
2246
+ ShareNodeFinishResponse?: ResolverInputTypes["ShareNodeFinishResponse"];
2247
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2248
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2249
+ __typename?: boolean | `@${string}`;
2250
+ }>;
2251
+ ["UnreadMailResult"]: AliasType<{
2252
+ UnreadMailResponse?: ResolverInputTypes["UnreadMailResponse"];
2253
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2254
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2255
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2256
+ __typename?: boolean | `@${string}`;
2257
+ }>;
2258
+ ["UpdateAppNotificationsResult"]: AliasType<{
2259
+ UpdateAppNotificationsResponse?: ResolverInputTypes["UpdateAppNotificationsResponse"];
2260
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2261
+ __typename?: boolean | `@${string}`;
2262
+ }>;
2263
+ ["UpdateAppSettingsResult"]: AliasType<{
2264
+ UpdateAppSettingsResponse?: ResolverInputTypes["UpdateAppSettingsResponse"];
2265
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2266
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2267
+ __typename?: boolean | `@${string}`;
2268
+ }>;
2269
+ ["UpdateAutoDisconnectDelayResult"]: AliasType<{
2270
+ UpdateAutoDisconnectDelayResponse?: ResolverInputTypes["UpdateAutoDisconnectDelayResponse"];
2271
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2272
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2273
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2274
+ __typename?: boolean | `@${string}`;
2275
+ }>;
2276
+ ["UpdateDraftMailResult"]: AliasType<{
2277
+ UpdateDraftMailResponse?: ResolverInputTypes["UpdateDraftMailResponse"];
2278
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2279
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2280
+ __typename?: boolean | `@${string}`;
2281
+ }>;
2282
+ ["UpdateNodeResult"]: AliasType<{
2283
+ UpdateNodeResponse?: ResolverInputTypes["UpdateNodeResponse"];
2284
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2285
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2286
+ __typename?: boolean | `@${string}`;
2287
+ }>;
2288
+ ["UpdateProfileResult"]: AliasType<{
2289
+ UpdateProfileResponse?: ResolverInputTypes["UpdateProfileResponse"];
2290
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2291
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2292
+ __typename?: boolean | `@${string}`;
2293
+ }>;
2294
+ ["UploadFileResult"]: AliasType<{
2295
+ UploadFileResponse?: ResolverInputTypes["UploadFileResponse"];
2296
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2297
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2298
+ ErrorLimit?: ResolverInputTypes["ErrorLimit"];
2299
+ __typename?: boolean | `@${string}`;
2300
+ }>;
2301
+ ["UploadFileEndResult"]: AliasType<{
2302
+ UploadFileEndResponse?: ResolverInputTypes["UploadFileEndResponse"];
2303
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2304
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2305
+ __typename?: boolean | `@${string}`;
2306
+ }>;
2307
+ ["UploadFilePartEndResult"]: AliasType<{
2308
+ UploadFilePartEndResponse?: ResolverInputTypes["UploadFilePartEndResponse"];
2309
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2310
+ __typename?: boolean | `@${string}`;
2311
+ }>;
2312
+ ["UploadLiteFileResult"]: AliasType<{
2313
+ UploadLiteFileResponse?: ResolverInputTypes["UploadLiteFileResponse"];
2314
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2315
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2316
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2317
+ ErrorLimit?: ResolverInputTypes["ErrorLimit"];
2318
+ __typename?: boolean | `@${string}`;
2319
+ }>;
2320
+ ["ChangeUserPlanResult"]: AliasType<{
2321
+ ChangeUserPlanResponse?: ResolverInputTypes["ChangeUserPlanResponse"];
2322
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2323
+ __typename?: boolean | `@${string}`;
2324
+ }>;
2325
+ ["AppKeyPair"]: AliasType<{
2326
+ pub?: boolean | `@${string}`;
2327
+ __typename?: boolean | `@${string}`;
2328
+ }>;
2329
+ ["AppSession"]: AliasType<{
2330
+ id?: boolean | `@${string}`;
2331
+ lastActivity?: boolean | `@${string}`;
2332
+ userAgent?: boolean | `@${string}`;
2333
+ ip?: boolean | `@${string}`;
2334
+ city?: boolean | `@${string}`;
2335
+ country?: boolean | `@${string}`;
2336
+ userSession?: ResolverInputTypes["UserSession"];
2337
+ userApp?: ResolverInputTypes["ApplicationsOnUsers"];
2338
+ createdAt?: boolean | `@${string}`;
2339
+ __typename?: boolean | `@${string}`;
2340
+ }>;
2341
+ ["Application"]: AliasType<{
2342
+ id?: boolean | `@${string}`;
2343
+ name?: boolean | `@${string}`;
2344
+ __typename?: boolean | `@${string}`;
2345
+ }>;
2346
+ ["ApplicationsOnUsers"]: AliasType<{
2347
+ fakeUserId?: boolean | `@${string}`;
2348
+ keyPair?: ResolverInputTypes["AppKeyPair"];
2349
+ sessions?: ResolverInputTypes["AppSession"];
2350
+ app?: ResolverInputTypes["Application"];
2351
+ appId?: boolean | `@${string}`;
2352
+ user?: ResolverInputTypes["User"];
2353
+ userId?: boolean | `@${string}`;
2354
+ settings?: ResolverInputTypes["UserAppSettings"];
2355
+ filesAccesses?: ResolverInputTypes["FileAccess"];
2356
+ filesSharedAccesses?: ResolverInputTypes["FileAccess"];
2357
+ nodesAccesses?: ResolverInputTypes["NodeAccess"];
2358
+ nodesSharedAccesses?: ResolverInputTypes["NodeAccess"];
2359
+ createdNodes?: ResolverInputTypes["Node"];
2360
+ __typename?: boolean | `@${string}`;
2361
+ }>;
2362
+ ["Blog"]: AliasType<{
2363
+ id?: boolean | `@${string}`;
2364
+ order?: boolean | `@${string}`;
2365
+ entries?: ResolverInputTypes["BlogEntry"];
2366
+ __typename?: boolean | `@${string}`;
2367
+ }>;
2368
+ ["BlogEntry"]: AliasType<{
2369
+ id?: boolean | `@${string}`;
2370
+ lang?: boolean | `@${string}`;
2371
+ author?: boolean | `@${string}`;
2372
+ body?: boolean | `@${string}`;
2373
+ date?: boolean | `@${string}`;
2374
+ image?: boolean | `@${string}`;
2375
+ summary?: boolean | `@${string}`;
2376
+ title?: boolean | `@${string}`;
2377
+ __typename?: boolean | `@${string}`;
2378
+ }>;
2379
+ ["BlogItem"]: AliasType<{
2380
+ id?: boolean | `@${string}`;
2381
+ blogId?: boolean | `@${string}`;
2382
+ order?: boolean | `@${string}`;
2383
+ title?: boolean | `@${string}`;
2384
+ body?: boolean | `@${string}`;
2385
+ author?: boolean | `@${string}`;
2386
+ image?: boolean | `@${string}`;
2387
+ imageAlt?: boolean | `@${string}`;
2388
+ summary?: boolean | `@${string}`;
2389
+ date?: boolean | `@${string}`;
2390
+ __typename?: boolean | `@${string}`;
2391
+ }>;
2392
+ ["CloudLimits"]: AliasType<{
2393
+ size?: boolean | `@${string}`;
2394
+ maxSize?: boolean | `@${string}`;
2395
+ count?: boolean | `@${string}`;
2396
+ maxCount?: boolean | `@${string}`;
2397
+ __typename?: boolean | `@${string}`;
2398
+ }>;
2399
+ ["Error"]: AliasType<{
2400
+ ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
2401
+ ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
2402
+ ErrorUpgradePlan?: ResolverInputTypes["ErrorUpgradePlan"];
2403
+ ErrorLangNotExist?: ResolverInputTypes["ErrorLangNotExist"];
2404
+ ErrorNotExist?: ResolverInputTypes["ErrorNotExist"];
2405
+ ErrorLimit?: ResolverInputTypes["ErrorLimit"];
2406
+ ErrorBasic?: ResolverInputTypes["ErrorBasic"];
2407
+ __typename?: boolean | `@${string}`;
2408
+ }>;
2409
+ ["ErrorAccessDenied"]: AliasType<{
2410
+ message?: boolean | `@${string}`;
2411
+ __typename?: boolean | `@${string}`;
2412
+ }>;
2413
+ ["ErrorBase"]: AliasType<{
2414
+ message?: boolean | `@${string}`;
2415
+ ["...on ErrorAccessDenied"]?: Omit<ResolverInputTypes["ErrorAccessDenied"], keyof ResolverInputTypes["ErrorBase"]>;
2416
+ ["...on ErrorBasic"]?: Omit<ResolverInputTypes["ErrorBasic"], keyof ResolverInputTypes["ErrorBase"]>;
2417
+ ["...on ErrorLangNotExist"]?: Omit<ResolverInputTypes["ErrorLangNotExist"], keyof ResolverInputTypes["ErrorBase"]>;
2418
+ ["...on ErrorLimit"]?: Omit<ResolverInputTypes["ErrorLimit"], keyof ResolverInputTypes["ErrorBase"]>;
2419
+ ["...on ErrorNotExist"]?: Omit<ResolverInputTypes["ErrorNotExist"], keyof ResolverInputTypes["ErrorBase"]>;
2420
+ ["...on ErrorNotFound"]?: Omit<ResolverInputTypes["ErrorNotFound"], keyof ResolverInputTypes["ErrorBase"]>;
2421
+ ["...on ErrorUpgradePlan"]?: Omit<ResolverInputTypes["ErrorUpgradePlan"], keyof ResolverInputTypes["ErrorBase"]>;
2422
+ __typename?: boolean | `@${string}`;
2423
+ }>;
2424
+ ["ErrorBasic"]: AliasType<{
2425
+ message?: boolean | `@${string}`;
2426
+ __typename?: boolean | `@${string}`;
2427
+ }>;
2428
+ ["ErrorLangNotExist"]: AliasType<{
2429
+ message?: boolean | `@${string}`;
2430
+ __typename?: boolean | `@${string}`;
2431
+ }>;
2432
+ ["ErrorLimit"]: AliasType<{
2433
+ message?: boolean | `@${string}`;
2434
+ field?: boolean | `@${string}`;
2435
+ __typename?: boolean | `@${string}`;
2436
+ }>;
2437
+ ["ErrorNotExist"]: AliasType<{
2438
+ message?: boolean | `@${string}`;
2439
+ field?: boolean | `@${string}`;
2440
+ __typename?: boolean | `@${string}`;
2441
+ }>;
2442
+ ["ErrorNotFound"]: AliasType<{
2443
+ message?: boolean | `@${string}`;
2444
+ field?: boolean | `@${string}`;
2445
+ __typename?: boolean | `@${string}`;
2446
+ }>;
2447
+ ["ErrorUpgradePlan"]: AliasType<{
2448
+ message?: boolean | `@${string}`;
2449
+ __typename?: boolean | `@${string}`;
2450
+ }>;
2451
+ ["Faq"]: AliasType<{
2452
+ id?: boolean | `@${string}`;
2453
+ order?: boolean | `@${string}`;
2454
+ entries?: ResolverInputTypes["FaqEntry"];
2455
+ __typename?: boolean | `@${string}`;
2456
+ }>;
2457
+ ["FaqEntry"]: AliasType<{
2458
+ id?: boolean | `@${string}`;
2459
+ lang?: boolean | `@${string}`;
2460
+ question?: boolean | `@${string}`;
2461
+ answer?: boolean | `@${string}`;
2462
+ faq?: ResolverInputTypes["Faq"];
2463
+ __typename?: boolean | `@${string}`;
2464
+ }>;
2465
+ ["FaqItem"]: AliasType<{
2466
+ order?: boolean | `@${string}`;
2467
+ question?: boolean | `@${string}`;
2468
+ answer?: boolean | `@${string}`;
2469
+ __typename?: boolean | `@${string}`;
2470
+ }>;
2471
+ ["File"]: AliasType<{
2472
+ id?: boolean | `@${string}`;
2473
+ size?: boolean | `@${string}`;
2474
+ sizeBefore?: boolean | `@${string}`;
2475
+ createdAt?: boolean | `@${string}`;
2476
+ md5?: boolean | `@${string}`;
2477
+ nodes?: ResolverInputTypes["Node"];
2478
+ accesses?: ResolverInputTypes["FileAccess"];
2479
+ md5Encrypted?: boolean | `@${string}`;
2480
+ deletedAt?: boolean | `@${string}`;
2481
+ userApp?: ResolverInputTypes["ApplicationsOnUsers"];
2482
+ mails?: ResolverInputTypes["FilesOnMails"];
2483
+ validatedAt?: boolean | `@${string}`;
2484
+ access?: ResolverInputTypes["FileAccess"];
2485
+ __typename?: boolean | `@${string}`;
2486
+ }>;
2487
+ ["FileAccess"]: AliasType<{
2488
+ userApp?: ResolverInputTypes["ApplicationsOnUsers"];
2489
+ userAppUserId?: boolean | `@${string}`;
2490
+ userAppAppId?: boolean | `@${string}`;
2491
+ file?: ResolverInputTypes["File"];
2492
+ fileId?: boolean | `@${string}`;
2493
+ key?: boolean | `@${string}`;
2494
+ sharedBy?: ResolverInputTypes["ApplicationsOnUsers"];
2495
+ sharedByUserId?: boolean | `@${string}`;
2496
+ sharedByAppId?: boolean | `@${string}`;
2497
+ __typename?: boolean | `@${string}`;
2498
+ }>;
2499
+ ["FileContent"]: AliasType<{
2500
+ FileContentCloud?: ResolverInputTypes["FileContentCloud"];
2501
+ FileContentLite?: ResolverInputTypes["FileContentLite"];
2502
+ FileContentReceivedMail?: ResolverInputTypes["FileContentReceivedMail"];
2503
+ FileContentSentMail?: ResolverInputTypes["FileContentSentMail"];
2504
+ __typename?: boolean | `@${string}`;
2505
+ }>;
2506
+ ["FileContentBase"]: AliasType<{
2507
+ id?: boolean | `@${string}`;
2508
+ key?: boolean | `@${string}`;
2509
+ md5?: boolean | `@${string}`;
2510
+ md5Encrypted?: boolean | `@${string}`;
2511
+ totalSize?: boolean | `@${string}`;
2512
+ type?: boolean | `@${string}`;
2513
+ ["...on FileContentCloud"]?: Omit<ResolverInputTypes["FileContentCloud"], keyof ResolverInputTypes["FileContentBase"]>;
2514
+ ["...on FileContentLite"]?: Omit<ResolverInputTypes["FileContentLite"], keyof ResolverInputTypes["FileContentBase"]>;
2515
+ ["...on FileContentReceivedMail"]?: Omit<ResolverInputTypes["FileContentReceivedMail"], keyof ResolverInputTypes["FileContentBase"]>;
2516
+ ["...on FileContentSentMail"]?: Omit<ResolverInputTypes["FileContentSentMail"], keyof ResolverInputTypes["FileContentBase"]>;
2517
+ __typename?: boolean | `@${string}`;
2518
+ }>;
2519
+ ["FileContentCloud"]: AliasType<{
2520
+ id?: boolean | `@${string}`;
2521
+ key?: boolean | `@${string}`;
2522
+ md5?: boolean | `@${string}`;
2523
+ md5Encrypted?: boolean | `@${string}`;
2524
+ totalSize?: boolean | `@${string}`;
2525
+ type?: boolean | `@${string}`;
2526
+ parts?: ResolverInputTypes["FileContentPart"];
2527
+ publicKey?: boolean | `@${string}`;
2528
+ __typename?: boolean | `@${string}`;
2529
+ }>;
2530
+ ["FileContentLite"]: AliasType<{
2531
+ id?: boolean | `@${string}`;
2532
+ key?: boolean | `@${string}`;
2533
+ md5?: boolean | `@${string}`;
2534
+ md5Encrypted?: boolean | `@${string}`;
2535
+ totalSize?: boolean | `@${string}`;
2536
+ type?: boolean | `@${string}`;
2537
+ content?: boolean | `@${string}`;
2538
+ publicKey?: boolean | `@${string}`;
2539
+ __typename?: boolean | `@${string}`;
2540
+ }>;
2541
+ ["FileContentPart"]: AliasType<{
2542
+ contentUrl?: boolean | `@${string}`;
2543
+ order?: boolean | `@${string}`;
2544
+ md5?: boolean | `@${string}`;
2545
+ __typename?: boolean | `@${string}`;
2546
+ }>;
2547
+ ["FileContentReceivedMail"]: AliasType<{
2548
+ id?: boolean | `@${string}`;
2549
+ key?: boolean | `@${string}`;
2550
+ md5?: boolean | `@${string}`;
2551
+ md5Encrypted?: boolean | `@${string}`;
2552
+ totalSize?: boolean | `@${string}`;
2553
+ type?: boolean | `@${string}`;
2554
+ maybeParts?: ResolverInputTypes["FileContentPart"];
2555
+ maybeContent?: boolean | `@${string}`;
2556
+ senderPublicKey?: boolean | `@${string}`;
2557
+ __typename?: boolean | `@${string}`;
2558
+ }>;
2559
+ ["FileContentSentMail"]: AliasType<{
2560
+ id?: boolean | `@${string}`;
2561
+ key?: boolean | `@${string}`;
2562
+ md5?: boolean | `@${string}`;
2563
+ md5Encrypted?: boolean | `@${string}`;
2564
+ totalSize?: boolean | `@${string}`;
2565
+ type?: boolean | `@${string}`;
2566
+ maybeParts?: ResolverInputTypes["FileContentPart"];
2567
+ maybeContent?: boolean | `@${string}`;
2568
+ __typename?: boolean | `@${string}`;
2569
+ }>;
2570
+ ["FileContentType"]: FileContentType;
2571
+ ["FilePart"]: AliasType<{
2572
+ id?: boolean | `@${string}`;
2573
+ file?: ResolverInputTypes["File"];
2574
+ fileId?: boolean | `@${string}`;
2575
+ size?: boolean | `@${string}`;
2576
+ order?: boolean | `@${string}`;
2577
+ md5?: boolean | `@${string}`;
2578
+ validatedAt?: boolean | `@${string}`;
2579
+ __typename?: boolean | `@${string}`;
2580
+ }>;
2581
+ ["FilePartResponse"]: AliasType<{
2582
+ fields?: boolean | `@${string}`;
2583
+ url?: boolean | `@${string}`;
2584
+ order?: boolean | `@${string}`;
2585
+ __typename?: boolean | `@${string}`;
2586
+ }>;
2587
+ ["FileResponse"]: AliasType<{
2588
+ fileId?: boolean | `@${string}`;
2589
+ parts?: ResolverInputTypes["FilePartResponse"];
2590
+ filePartSize?: boolean | `@${string}`;
2591
+ __typename?: boolean | `@${string}`;
2592
+ }>;
2593
+ ["FileShared"]: AliasType<{
2594
+ userId?: boolean | `@${string}`;
2595
+ message?: boolean | `@${string}`;
2596
+ appId?: boolean | `@${string}`;
2597
+ id?: boolean | `@${string}`;
2598
+ filename?: boolean | `@${string}`;
2599
+ size?: boolean | `@${string}`;
2600
+ sizeBefore?: boolean | `@${string}`;
2601
+ __typename?: boolean | `@${string}`;
2602
+ }>;
2603
+ ["FileSharedContent"]: AliasType<{
2604
+ ownerId?: boolean | `@${string}`;
2605
+ pubKey?: boolean | `@${string}`;
2606
+ message?: boolean | `@${string}`;
2607
+ appId?: boolean | `@${string}`;
2608
+ id?: boolean | `@${string}`;
2609
+ type?: boolean | `@${string}`;
2610
+ filename?: boolean | `@${string}`;
2611
+ contentUrl?: boolean | `@${string}`;
2612
+ key?: boolean | `@${string}`;
2613
+ size?: boolean | `@${string}`;
2614
+ sizeBefore?: boolean | `@${string}`;
2615
+ __typename?: boolean | `@${string}`;
2616
+ }>;
2617
+ ["FilesContentResponse"]: AliasType<{
2618
+ files?: ResolverInputTypes["FileContent"];
2619
+ __typename?: boolean | `@${string}`;
2620
+ }>;
2621
+ ["FilesOnMails"]: AliasType<{
2622
+ file?: ResolverInputTypes["File"];
2623
+ fileKey?: boolean | `@${string}`;
2624
+ filename?: boolean | `@${string}`;
2625
+ mail?: ResolverInputTypes["Mail"];
2626
+ __typename?: boolean | `@${string}`;
2627
+ }>;
2628
+ ["MailFileInput"]: {
2629
+ id: string;
2630
+ name: string;
2631
+ fileKey: string;
2632
+ };
2633
+ ["MailRecipientInput"]: {
2634
+ body: string;
2635
+ subject: string;
2636
+ recipientId: string;
2637
+ files: Array<ResolverInputTypes["MailFileInput"]>;
2638
+ };
2639
+ ["NameKeyInput"]: {
2640
+ id: string;
2641
+ nameKey: string;
2642
+ files: Array<ResolverInputTypes["ShareFileKeyInput"]>;
2643
+ };
2644
+ ["PayInput"]: {
2645
+ type: ResolverInputTypes["PayInputType"];
2646
+ token: string;
2647
+ firstName: string;
2648
+ lastName: string;
2649
+ street: string;
2650
+ postalCode: string;
2651
+ city: string;
2652
+ country: string;
2653
+ number: string;
2654
+ month: string;
2655
+ year: string;
2656
+ cvv: string;
2657
+ };
2658
+ ["PayInputType"]: PayInputType;
2659
+ ["ShareFileInHistoryInput"]: {
2660
+ fileId: string;
2661
+ users: Array<ResolverInputTypes["ShareFileKeyInput"]>;
2662
+ };
2663
+ ["ShareFileKeyInput"]: {
2664
+ id: string;
2665
+ key: string;
2666
+ };
2667
+ ["ShareNodesInput"]: {
2668
+ nodes: Array<ResolverInputTypes["NameKeyInput"]>;
2669
+ };
2670
+ ["Limits"]: AliasType<{
2671
+ downloadBandwidth?: boolean | `@${string}`;
2672
+ downloadCount?: boolean | `@${string}`;
2673
+ hardFileCount?: boolean | `@${string}`;
2674
+ hardFileSize?: boolean | `@${string}`;
2675
+ perFileSize?: boolean | `@${string}`;
2676
+ receivedMails?: ResolverInputTypes["MailLimits"];
2677
+ sentMails?: ResolverInputTypes["MailLimits"];
2678
+ uploadBandwidth?: boolean | `@${string}`;
2679
+ uploadCount?: boolean | `@${string}`;
2680
+ __typename?: boolean | `@${string}`;
2681
+ }>;
2682
+ ["MailLimits"]: AliasType<{
2683
+ count?: boolean | `@${string}`;
2684
+ fileCount?: boolean | `@${string}`;
2685
+ fileSize?: boolean | `@${string}`;
2686
+ hardCount?: boolean | `@${string}`;
2687
+ hardFileCount?: boolean | `@${string}`;
2688
+ hardFileSize?: boolean | `@${string}`;
2689
+ perFileSize?: boolean | `@${string}`;
2690
+ __typename?: boolean | `@${string}`;
2691
+ }>;
2692
+ ["MailLimitsValues"]: AliasType<{
2693
+ count?: boolean | `@${string}`;
2694
+ maxCount?: boolean | `@${string}`;
2695
+ fileCount?: boolean | `@${string}`;
2696
+ maxFileCount?: boolean | `@${string}`;
2697
+ fileSize?: boolean | `@${string}`;
2698
+ maxFileSize?: boolean | `@${string}`;
2699
+ __typename?: boolean | `@${string}`;
2700
+ }>;
2701
+ ["QueryLimits"]: AliasType<{
2702
+ cloud?: ResolverInputTypes["CloudLimits"];
2703
+ mail?: ResolverInputTypes["UserMailLimits"];
2704
+ __typename?: boolean | `@${string}`;
2705
+ }>;
2706
+ ["UserMailLimits"]: AliasType<{
2707
+ sent?: ResolverInputTypes["MailLimitsValues"];
2708
+ received?: ResolverInputTypes["MailLimitsValues"];
2709
+ __typename?: boolean | `@${string}`;
2710
+ }>;
2711
+ ["LiteFileResponse"]: AliasType<{
2712
+ fileId?: boolean | `@${string}`;
2713
+ content?: boolean | `@${string}`;
2714
+ __typename?: boolean | `@${string}`;
2715
+ }>;
2716
+ ["Mail"]: AliasType<{
2717
+ id?: boolean | `@${string}`;
2718
+ app?: ResolverInputTypes["Application"];
2719
+ body?: boolean | `@${string}`;
2720
+ createdAt?: boolean | `@${string}`;
2721
+ deletedAt?: boolean | `@${string}`;
2722
+ files?: ResolverInputTypes["FilesOnMails"];
2723
+ mailIntegrity?: ResolverInputTypes["MailIntegrity"];
2724
+ mailIntegrityId?: boolean | `@${string}`;
2725
+ mailIntegrityDraft?: ResolverInputTypes["MailIntegrityDraft"];
2726
+ openedAt?: boolean | `@${string}`;
2727
+ recipient?: ResolverInputTypes["User"];
2728
+ sender?: ResolverInputTypes["User"];
2729
+ subject?: boolean | `@${string}`;
2730
+ type?: boolean | `@${string}`;
2731
+ recipients?: ResolverInputTypes["User"];
2732
+ __typename?: boolean | `@${string}`;
2733
+ }>;
2734
+ ["MailIntegrity"]: AliasType<{
2735
+ id?: boolean | `@${string}`;
2736
+ hash?: boolean | `@${string}`;
2737
+ hashKey?: boolean | `@${string}`;
2738
+ answers?: ResolverInputTypes["MailIntegrity"];
2739
+ app?: ResolverInputTypes["Application"];
2740
+ mails?: ResolverInputTypes["Mail"];
2741
+ recipients?: ResolverInputTypes["User"];
2742
+ temporaryRecipients?: ResolverInputTypes["TemporaryUser"];
2743
+ replyTo?: ResolverInputTypes["MailIntegrity"];
2744
+ __typename?: boolean | `@${string}`;
2745
+ }>;
2746
+ ["MailIntegrityDraft"]: AliasType<{
2747
+ id?: boolean | `@${string}`;
2748
+ hash?: boolean | `@${string}`;
2749
+ hashKey?: boolean | `@${string}`;
2750
+ app?: ResolverInputTypes["Application"];
2751
+ mail?: ResolverInputTypes["Mail"];
2752
+ recipients?: ResolverInputTypes["User"];
2753
+ temporaryRecipients?: ResolverInputTypes["TemporaryUser"];
2754
+ replyTo?: ResolverInputTypes["MailIntegrity"];
2755
+ __typename?: boolean | `@${string}`;
2756
+ }>;
2757
+ ["Node"]: AliasType<{
2758
+ id?: boolean | `@${string}`;
2759
+ isFavorite?: boolean | `@${string}`;
2760
+ type?: boolean | `@${string}`;
2761
+ createdAt?: boolean | `@${string}`;
2762
+ deletedAt?: boolean | `@${string}`;
2763
+ parentId?: boolean | `@${string}`;
2764
+ createdBy?: ResolverInputTypes["ApplicationsOnUsers"];
2765
+ children?: ResolverInputTypes["Node"];
2766
+ history?: ResolverInputTypes["File"];
2767
+ updatedAt?: boolean | `@${string}`;
2768
+ createdByAppId?: boolean | `@${string}`;
2769
+ createdByUserId?: boolean | `@${string}`;
2770
+ name?: boolean | `@${string}`;
2771
+ parent?: ResolverInputTypes["Node"];
2772
+ accesses?: ResolverInputTypes["NodeAccess"];
2773
+ current?: ResolverInputTypes["File"];
2774
+ currentFileId?: boolean | `@${string}`;
2775
+ sizes?: ResolverInputTypes["NodeSize"];
2776
+ access?: ResolverInputTypes["NodeAccess"];
2777
+ breadcrumb?: ResolverInputTypes["NodeBreadcrumbItem"];
2778
+ __typename?: boolean | `@${string}`;
2779
+ }>;
2780
+ ["NodeBreadcrumbItem"]: AliasType<{
2781
+ id?: boolean | `@${string}`;
2782
+ name?: boolean | `@${string}`;
2783
+ pubKey?: boolean | `@${string}`;
2784
+ nameKey?: boolean | `@${string}`;
2785
+ __typename?: boolean | `@${string}`;
2786
+ }>;
2787
+ ["NodeAccess"]: AliasType<{
2788
+ node?: ResolverInputTypes["Node"];
2789
+ nodeId?: boolean | `@${string}`;
2790
+ userApp?: ResolverInputTypes["ApplicationsOnUsers"];
2791
+ userAppUserId?: boolean | `@${string}`;
2792
+ userAppAppId?: boolean | `@${string}`;
2793
+ rights?: boolean | `@${string}`;
2794
+ nameKey?: boolean | `@${string}`;
2795
+ isRoot?: boolean | `@${string}`;
2796
+ sharedBy?: ResolverInputTypes["ApplicationsOnUsers"];
2797
+ sharedByUserId?: boolean | `@${string}`;
2798
+ sharedByAppId?: boolean | `@${string}`;
2799
+ __typename?: boolean | `@${string}`;
2800
+ }>;
2801
+ ["NodeSize"]: AliasType<{
2802
+ size?: boolean | `@${string}`;
2803
+ sizeBefore?: boolean | `@${string}`;
2804
+ __typename?: boolean | `@${string}`;
2805
+ }>;
2806
+ ["Plan"]: AliasType<{
2807
+ id?: boolean | `@${string}`;
2808
+ kind?: boolean | `@${string}`;
2809
+ codes?: boolean | `@${string}`;
2810
+ limits?: ResolverInputTypes["Limits"];
2811
+ __typename?: boolean | `@${string}`;
2812
+ }>;
2813
+ ["Report"]: AliasType<{
2814
+ id?: boolean | `@${string}`;
2815
+ user?: ResolverInputTypes["User"];
2816
+ reportedUser?: ResolverInputTypes["User"];
2817
+ customMessage?: boolean | `@${string}`;
2818
+ __typename?: boolean | `@${string}`;
2819
+ }>;
2820
+ ["AddFileToHistoryResponse"]: AliasType<{
2821
+ addFileToHistory?: ResolverInputTypes["Node"];
2822
+ __typename?: boolean | `@${string}`;
2823
+ }>;
2824
+ ["CancelPaymentResponse"]: AliasType<{
2825
+ cancelPayment?: boolean | `@${string}`;
2826
+ __typename?: boolean | `@${string}`;
2827
+ }>;
2828
+ ["ChangeUserPlanResponse"]: AliasType<{
2829
+ changeUserPlan?: ResolverInputTypes["User"];
2830
+ __typename?: boolean | `@${string}`;
2831
+ }>;
2832
+ ["CreateApplicationResponse"]: AliasType<{
2833
+ createApplication?: boolean | `@${string}`;
2834
+ __typename?: boolean | `@${string}`;
2835
+ }>;
2836
+ ["CreateDraftMailResponse"]: AliasType<{
2837
+ createDraftMail?: ResolverInputTypes["Mail"];
2838
+ __typename?: boolean | `@${string}`;
2839
+ }>;
2840
+ ["CreateFolderResponse"]: AliasType<{
2841
+ createFolder?: ResolverInputTypes["Node"];
2842
+ __typename?: boolean | `@${string}`;
2843
+ }>;
2844
+ ["DbConfigMutationResponse"]: AliasType<{
2845
+ dbConfigMutation?: boolean | `@${string}`;
2846
+ __typename?: boolean | `@${string}`;
2847
+ }>;
2848
+ ["DbSetResponse"]: AliasType<{
2849
+ dbSet?: boolean | `@${string}`;
2850
+ __typename?: boolean | `@${string}`;
2851
+ }>;
2852
+ ["DeleteDraftMailResponse"]: AliasType<{
2853
+ deleteDraftMail?: boolean | `@${string}`;
2854
+ __typename?: boolean | `@${string}`;
2855
+ }>;
2856
+ ["DeleteFileResponse"]: AliasType<{
2857
+ deleteFile?: boolean | `@${string}`;
2858
+ __typename?: boolean | `@${string}`;
2859
+ }>;
2860
+ ["DeleteMailResponse"]: AliasType<{
2861
+ deleteMail?: boolean | `@${string}`;
2862
+ __typename?: boolean | `@${string}`;
2863
+ }>;
2864
+ ["DeleteMailTrashResponse"]: AliasType<{
2865
+ deleteMailTrash?: boolean | `@${string}`;
2866
+ __typename?: boolean | `@${string}`;
2867
+ }>;
2868
+ ["DeleteNodeResponse"]: AliasType<{
2869
+ deleteNode?: boolean | `@${string}`;
2870
+ __typename?: boolean | `@${string}`;
2871
+ }>;
2872
+ ["DeleteNodeCloudTrashResponse"]: AliasType<{
2873
+ deleteNodeCloudTrash?: boolean | `@${string}`;
2874
+ __typename?: boolean | `@${string}`;
2875
+ }>;
2876
+ ["DeleteNodeSharingResponse"]: AliasType<{
2877
+ deleteNodeSharing?: boolean | `@${string}`;
2878
+ __typename?: boolean | `@${string}`;
2879
+ }>;
2880
+ ["DeleteUserResponse"]: AliasType<{
2881
+ deleteUser?: boolean | `@${string}`;
2882
+ __typename?: boolean | `@${string}`;
2883
+ }>;
2884
+ ["DuplicateNodeResponse"]: AliasType<{
2885
+ duplicateNode?: boolean | `@${string}`;
2886
+ __typename?: boolean | `@${string}`;
2887
+ }>;
2888
+ ["EmptyCloudTrashResponse"]: AliasType<{
2889
+ emptyCloudTrash?: boolean | `@${string}`;
2890
+ __typename?: boolean | `@${string}`;
2891
+ }>;
2892
+ ["EmptyMailTrashResponse"]: AliasType<{
2893
+ emptyMailTrash?: boolean | `@${string}`;
2894
+ __typename?: boolean | `@${string}`;
2895
+ }>;
2896
+ ["LogoutResponse"]: AliasType<{
2897
+ logout?: boolean | `@${string}`;
2898
+ __typename?: boolean | `@${string}`;
2899
+ }>;
2900
+ ["MoveNodesResponse"]: AliasType<{
2901
+ moveNodes?: boolean | `@${string}`;
2902
+ __typename?: boolean | `@${string}`;
2903
+ }>;
2904
+ ["PayResponse"]: AliasType<{
2905
+ pay?: boolean | `@${string}`;
2906
+ __typename?: boolean | `@${string}`;
2907
+ }>;
2908
+ ["ReadMailResponse"]: AliasType<{
2909
+ readMail?: boolean | `@${string}`;
2910
+ __typename?: boolean | `@${string}`;
2911
+ }>;
2912
+ ["RecoverMailResponse"]: AliasType<{
2913
+ recoverMail?: boolean | `@${string}`;
2914
+ __typename?: boolean | `@${string}`;
2915
+ }>;
2916
+ ["RecoverNodeResponse"]: AliasType<{
2917
+ recoverNode?: boolean | `@${string}`;
2918
+ __typename?: boolean | `@${string}`;
2919
+ }>;
2920
+ ["SaveInCloudResponse"]: AliasType<{
2921
+ saveInCloud?: ResolverInputTypes["Node"];
2922
+ __typename?: boolean | `@${string}`;
2923
+ }>;
2924
+ ["SendAppMailResponse"]: AliasType<{
2925
+ sendAppMail?: boolean | `@${string}`;
2926
+ __typename?: boolean | `@${string}`;
2927
+ }>;
2928
+ ["SendDraftMailResponse"]: AliasType<{
2929
+ sendDraftMail?: boolean | `@${string}`;
2930
+ __typename?: boolean | `@${string}`;
2931
+ }>;
2932
+ ["SendOneMailResponse"]: AliasType<{
2933
+ sendOneMail?: boolean | `@${string}`;
2934
+ __typename?: boolean | `@${string}`;
2935
+ }>;
2936
+ ["SendReportResponse"]: AliasType<{
2937
+ sendReport?: ResolverInputTypes["Report"];
2938
+ __typename?: boolean | `@${string}`;
2939
+ }>;
2940
+ ["ShareFileInHistoryResponse"]: AliasType<{
2941
+ shareFileInHistory?: boolean | `@${string}`;
2942
+ __typename?: boolean | `@${string}`;
2943
+ }>;
2944
+ ["ShareNodeQueryResponse"]: AliasType<{
2945
+ shareNode?: ResolverInputTypes["ShareNodeResponse"];
2946
+ __typename?: boolean | `@${string}`;
2947
+ }>;
2948
+ ["ShareNodeFinishResponse"]: AliasType<{
2949
+ shareNodeFinish?: boolean | `@${string}`;
2950
+ __typename?: boolean | `@${string}`;
2951
+ }>;
2952
+ ["UnreadMailResponse"]: AliasType<{
2953
+ unreadMail?: boolean | `@${string}`;
2954
+ __typename?: boolean | `@${string}`;
2955
+ }>;
2956
+ ["UpdateAppNotificationsResponse"]: AliasType<{
2957
+ updateAppNotifications?: ResolverInputTypes["UserAppNotifications"];
2958
+ __typename?: boolean | `@${string}`;
2959
+ }>;
2960
+ ["UpdateAppSettingsResponse"]: AliasType<{
2961
+ updateAppSettings?: ResolverInputTypes["UserAppSettings"];
2962
+ __typename?: boolean | `@${string}`;
2963
+ }>;
2964
+ ["UpdateAutoDisconnectDelayResponse"]: AliasType<{
2965
+ updateAutoDisconnectDelay?: boolean | `@${string}`;
2966
+ __typename?: boolean | `@${string}`;
2967
+ }>;
2968
+ ["UpdateDraftMailResponse"]: AliasType<{
2969
+ updateDraftMail?: ResolverInputTypes["Mail"];
2970
+ __typename?: boolean | `@${string}`;
2971
+ }>;
2972
+ ["UpdateNodeResponse"]: AliasType<{
2973
+ updateNode?: ResolverInputTypes["Node"];
2974
+ __typename?: boolean | `@${string}`;
2975
+ }>;
2976
+ ["UpdateProfileResponse"]: AliasType<{
2977
+ updateProfile?: ResolverInputTypes["User"];
2978
+ __typename?: boolean | `@${string}`;
2979
+ }>;
2980
+ ["UploadAnonymousResponse"]: AliasType<{
2981
+ uploadAnonymous?: ResolverInputTypes["FileResponse"];
2982
+ __typename?: boolean | `@${string}`;
2983
+ }>;
2984
+ ["UploadFileResponse"]: AliasType<{
2985
+ uploadFile?: ResolverInputTypes["FileResponse"];
2986
+ __typename?: boolean | `@${string}`;
2987
+ }>;
2988
+ ["UploadFileEndResponse"]: AliasType<{
2989
+ uploadFileEnd?: boolean | `@${string}`;
2990
+ __typename?: boolean | `@${string}`;
2991
+ }>;
2992
+ ["UploadFilePartEndResponse"]: AliasType<{
2993
+ uploadFilePartEnd?: boolean | `@${string}`;
2994
+ __typename?: boolean | `@${string}`;
2995
+ }>;
2996
+ ["UploadLiteFileResponse"]: AliasType<{
2997
+ uploadLiteFile?: ResolverInputTypes["LiteFileResponse"];
2998
+ __typename?: boolean | `@${string}`;
2999
+ }>;
3000
+ ["BlogResponse"]: AliasType<{
3001
+ blogItems?: ResolverInputTypes["BlogItem"];
3002
+ __typename?: boolean | `@${string}`;
3003
+ }>;
3004
+ ["DbConfigResponse"]: AliasType<{
3005
+ json?: boolean | `@${string}`;
3006
+ __typename?: boolean | `@${string}`;
3007
+ }>;
3008
+ ["DbGetResponse"]: AliasType<{
3009
+ json?: boolean | `@${string}`;
3010
+ __typename?: boolean | `@${string}`;
3011
+ }>;
3012
+ ["DbSearchResponse"]: AliasType<{
3013
+ json?: boolean | `@${string}`;
3014
+ __typename?: boolean | `@${string}`;
3015
+ }>;
3016
+ ["DeletedMailsResponse"]: AliasType<{
3017
+ deletedMails?: ResolverInputTypes["Mail"];
3018
+ __typename?: boolean | `@${string}`;
3019
+ }>;
3020
+ ["DeletedNodesResponse"]: AliasType<{
3021
+ deletedNodes?: ResolverInputTypes["Node"];
3022
+ __typename?: boolean | `@${string}`;
3023
+ }>;
3024
+ ["FaqResponse"]: AliasType<{
3025
+ faq?: ResolverInputTypes["FaqItem"];
3026
+ __typename?: boolean | `@${string}`;
3027
+ }>;
3028
+ ["FileQueryResponse"]: AliasType<{
3029
+ file?: ResolverInputTypes["File"];
3030
+ __typename?: boolean | `@${string}`;
3031
+ }>;
3032
+ ["FileContentResponse"]: AliasType<{
3033
+ file?: ResolverInputTypes["FileContent"];
3034
+ __typename?: boolean | `@${string}`;
3035
+ }>;
3036
+ ["JwtResponse"]: AliasType<{
3037
+ jwt?: boolean | `@${string}`;
3038
+ __typename?: boolean | `@${string}`;
3039
+ }>;
3040
+ ["QueryMailResponse"]: AliasType<{
3041
+ mail?: ResolverInputTypes["Mail"];
3042
+ __typename?: boolean | `@${string}`;
3043
+ }>;
3044
+ ["NodeResponse"]: AliasType<{
3045
+ node?: ResolverInputTypes["Node"];
3046
+ __typename?: boolean | `@${string}`;
3047
+ }>;
3048
+ ["NodesSharedWithMeResponse"]: AliasType<{
3049
+ nodesSharedWithMe?: ResolverInputTypes["Node"];
3050
+ __typename?: boolean | `@${string}`;
3051
+ }>;
3052
+ ["PaymentInfosResponse"]: AliasType<{
3053
+ paymentInfos?: ResolverInputTypes["PaymentInfos"];
3054
+ __typename?: boolean | `@${string}`;
3055
+ }>;
3056
+ ["PlanResponse"]: AliasType<{
3057
+ plan?: ResolverInputTypes["Plan"];
3058
+ __typename?: boolean | `@${string}`;
3059
+ }>;
3060
+ ["SharedNodesResponse"]: AliasType<{
3061
+ sharedNodes?: ResolverInputTypes["Node"];
3062
+ __typename?: boolean | `@${string}`;
3063
+ }>;
3064
+ ["UnreadReceivedMailsCountResponse"]: AliasType<{
3065
+ count?: boolean | `@${string}`;
3066
+ __typename?: boolean | `@${string}`;
3067
+ }>;
3068
+ ["UserResponse"]: AliasType<{
3069
+ user?: ResolverInputTypes["User"];
3070
+ __typename?: boolean | `@${string}`;
3071
+ }>;
3072
+ ["UserListResponse"]: AliasType<{
3073
+ userList?: ResolverInputTypes["User"];
3074
+ __typename?: boolean | `@${string}`;
3075
+ }>;
3076
+ ["TemporaryUser"]: AliasType<{
3077
+ id?: boolean | `@${string}`;
3078
+ mails?: ResolverInputTypes["MailIntegrity"];
3079
+ draftMails?: ResolverInputTypes["MailIntegrityDraft"];
3080
+ email?: boolean | `@${string}`;
3081
+ __typename?: boolean | `@${string}`;
3082
+ }>;
3083
+ ["User"]: AliasType<{
3084
+ id?: boolean | `@${string}`;
3085
+ deletedAt?: boolean | `@${string}`;
3086
+ lang?: boolean | `@${string}`;
3087
+ reportSent?: ResolverInputTypes["Report"];
3088
+ godFather?: ResolverInputTypes["User"];
3089
+ godChildren?: ResolverInputTypes["User"];
3090
+ infos?: ResolverInputTypes["UserInfos"];
3091
+ infosId?: boolean | `@${string}`;
3092
+ firstname?: boolean | `@${string}`;
3093
+ lastname?: boolean | `@${string}`;
3094
+ email?: boolean | `@${string}`;
3095
+ phone?: boolean | `@${string}`;
3096
+ lastLogin?: boolean | `@${string}`;
3097
+ role?: boolean | `@${string}`;
3098
+ sessions?: ResolverInputTypes["UserSession"];
3099
+ createdAt?: boolean | `@${string}`;
3100
+ receivedMails?: ResolverInputTypes["Mail"];
3101
+ waitingReceivedMails?: ResolverInputTypes["WaitingReceivedMail"];
3102
+ sentMails?: ResolverInputTypes["Mail"];
3103
+ draftMails?: ResolverInputTypes["Mail"];
3104
+ appSettings?: ResolverInputTypes["UserAppSettings"];
3105
+ applications?: ResolverInputTypes["ApplicationsOnUsers"];
3106
+ publicKey?: boolean | `@${string}`;
3107
+ __typename?: boolean | `@${string}`;
3108
+ }>;
3109
+ ["UserAppNotifications"]: AliasType<{
3110
+ id?: boolean | `@${string}`;
3111
+ enableAll?: boolean | `@${string}`;
3112
+ mail?: boolean | `@${string}`;
3113
+ cloud?: boolean | `@${string}`;
3114
+ disableAllUntil?: boolean | `@${string}`;
3115
+ __typename?: boolean | `@${string}`;
3116
+ }>;
3117
+ ["UserAppSettings"]: AliasType<{
3118
+ id?: boolean | `@${string}`;
3119
+ cloudFileDaysForDelete?: boolean | `@${string}`;
3120
+ cloudFolderDaysForDelete?: boolean | `@${string}`;
3121
+ historyFileDaysForDelete?: boolean | `@${string}`;
3122
+ historyMaxFileCount?: boolean | `@${string}`;
3123
+ __typename?: boolean | `@${string}`;
3124
+ }>;
3125
+ ["UserInfos"]: AliasType<{
3126
+ id?: boolean | `@${string}`;
3127
+ emails?: boolean | `@${string}`;
3128
+ email?: boolean | `@${string}`;
3129
+ phones?: boolean | `@${string}`;
3130
+ lastname?: boolean | `@${string}`;
3131
+ firstname?: boolean | `@${string}`;
3132
+ user?: ResolverInputTypes["User"];
3133
+ updatedAt?: boolean | `@${string}`;
3134
+ __typename?: boolean | `@${string}`;
3135
+ }>;
3136
+ ["UserSession"]: AliasType<{
3137
+ id?: boolean | `@${string}`;
3138
+ appSessions?: ResolverInputTypes["AppSession"];
3139
+ lastActivity?: boolean | `@${string}`;
3140
+ userAgent?: boolean | `@${string}`;
3141
+ ip?: boolean | `@${string}`;
3142
+ city?: boolean | `@${string}`;
3143
+ country?: boolean | `@${string}`;
3144
+ createdAt?: boolean | `@${string}`;
3145
+ __typename?: boolean | `@${string}`;
3146
+ }>;
3147
+ ["WaitingReceivedMail"]: AliasType<{
3148
+ sender?: ResolverInputTypes["User"];
3149
+ date?: boolean | `@${string}`;
3150
+ recipients?: ResolverInputTypes["User"];
3151
+ temporaryRecipients?: ResolverInputTypes["TemporaryUser"];
3152
+ attachmentsCount?: boolean | `@${string}`;
3153
+ __typename?: boolean | `@${string}`;
3154
+ }>;
3155
+ ["PaymentInfos"]: AliasType<{
3156
+ hostedUrl?: boolean | `@${string}`;
3157
+ currentSubscription?: ResolverInputTypes["RecurlySubscription"];
3158
+ invoices?: ResolverInputTypes["RecurlyInvoices"];
3159
+ __typename?: boolean | `@${string}`;
3160
+ }>;
3161
+ ["RecurlyInvoices"]: AliasType<{
3162
+ pdf?: boolean | `@${string}`;
3163
+ date?: boolean | `@${string}`;
3164
+ due?: boolean | `@${string}`;
3165
+ status?: boolean | `@${string}`;
3166
+ total?: boolean | `@${string}`;
3167
+ name?: boolean | `@${string}`;
3168
+ currency?: boolean | `@${string}`;
3169
+ __typename?: boolean | `@${string}`;
3170
+ }>;
3171
+ ["RecurlySubscription"]: AliasType<{
3172
+ autorenew?: boolean | `@${string}`;
3173
+ activatedAt?: boolean | `@${string}`;
3174
+ currentPeriodEndsAt?: boolean | `@${string}`;
3175
+ currentPeriodStartedAt?: boolean | `@${string}`;
3176
+ canceledAt?: boolean | `@${string}`;
3177
+ createdAt?: boolean | `@${string}`;
3178
+ expiresAt?: boolean | `@${string}`;
3179
+ pausedAt?: boolean | `@${string}`;
3180
+ trialEndsAt?: boolean | `@${string}`;
3181
+ trialStartedAt?: boolean | `@${string}`;
3182
+ updatedAt?: boolean | `@${string}`;
3183
+ state?: boolean | `@${string}`;
3184
+ collectionMethod?: boolean | `@${string}`;
3185
+ plan?: boolean | `@${string}`;
3186
+ planCode?: boolean | `@${string}`;
3187
+ total?: boolean | `@${string}`;
3188
+ __typename?: boolean | `@${string}`;
3189
+ }>;
3190
+ ["ShareNodeResponse"]: AliasType<{
3191
+ nodes?: boolean | `@${string}`;
3192
+ __typename?: boolean | `@${string}`;
3193
+ }>;
3194
+ ["Query"]: AliasType<{
3195
+ appNotifications?: ResolverInputTypes["AppNotificationsResult"];
3196
+ blog?: [
3197
+ {
3198
+ lang?: ResolverInputTypes["Lang"] | undefined | null;
3199
+ },
3200
+ ResolverInputTypes["BlogResult"]
3201
+ ];
3202
+ dbConfig?: [{
3203
+ appCode: string;
3204
+ }, ResolverInputTypes["DbConfigResult"]];
3205
+ dbGet?: [
3206
+ {
3207
+ field: string;
3208
+ userId?: string | undefined | null;
3209
+ },
3210
+ ResolverInputTypes["DbGetResult"]
3211
+ ];
3212
+ dbSearch?: [
3213
+ {
3214
+ search: string;
3215
+ field: string;
3216
+ },
3217
+ ResolverInputTypes["DbSearchResult"]
3218
+ ];
3219
+ deletedMails?: [
3220
+ {
3221
+ mailType: ResolverInputTypes["MailType"];
3222
+ },
3223
+ ResolverInputTypes["DeletedMailsResult"]
3224
+ ];
3225
+ deletedNodes?: ResolverInputTypes["DeletedNodesResult"];
3226
+ faq?: [
3227
+ {
3228
+ lang?: ResolverInputTypes["Lang"] | undefined | null;
3229
+ },
3230
+ ResolverInputTypes["FaqResult"]
3231
+ ];
3232
+ file?: [{
3233
+ id: string;
3234
+ }, ResolverInputTypes["FileResult"]];
3235
+ fileContent?: [{
3236
+ fileId: string;
3237
+ }, ResolverInputTypes["FileContentResult"]];
3238
+ filesContent?: [
3239
+ {
3240
+ fileIds: Array<string>;
3241
+ },
3242
+ ResolverInputTypes["FilesContentResult"]
3243
+ ];
3244
+ filesSharedWithMe?: [
3245
+ {
3246
+ accepted?: boolean | undefined | null;
3247
+ },
3248
+ ResolverInputTypes["FileSharedContent"]
3249
+ ];
3250
+ getJwt?: [
3251
+ {
3252
+ includeEmail?: boolean | undefined | null;
3253
+ },
3254
+ ResolverInputTypes["GetJwtResult"]
3255
+ ];
3256
+ limits?: ResolverInputTypes["LimitsResult"];
3257
+ mail?: [{
3258
+ id: string;
3259
+ }, ResolverInputTypes["MailResult"]];
3260
+ node?: [
3261
+ {
3262
+ id?: string | undefined | null;
3263
+ deleted?: boolean | undefined | null;
3264
+ },
3265
+ ResolverInputTypes["NodeResult"]
3266
+ ];
3267
+ nodesSharedWithMe?: [
3268
+ {
3269
+ type?: ResolverInputTypes["NodeType"] | undefined | null;
3270
+ },
3271
+ ResolverInputTypes["NodesSharedWithMeResult"]
3272
+ ];
3273
+ paymentInfos?: ResolverInputTypes["PaymentInfosResult"];
3274
+ plans?: ResolverInputTypes["PlansResult"];
3275
+ serverTime?: boolean | `@${string}`;
3276
+ sharedNodes?: ResolverInputTypes["SharedNodesResult"];
3277
+ unreadReceivedMailsCount?: ResolverInputTypes["UnreadReceivedMailsCountResult"];
3278
+ user?: [
3279
+ {
3280
+ userId?: string | undefined | null;
3281
+ },
3282
+ ResolverInputTypes["UserResult"]
3283
+ ];
3284
+ userList?: [
3285
+ {
3286
+ search?: string | undefined | null;
3287
+ },
3288
+ ResolverInputTypes["UserListResult"]
3289
+ ];
3290
+ __typename?: boolean | `@${string}`;
3291
+ }>;
3292
+ ["Mutation"]: AliasType<{
3293
+ addFileToHistory?: [
3294
+ {
3295
+ nodeId: string;
3296
+ fileId: string;
3297
+ },
3298
+ ResolverInputTypes["AddFileToHistoryResult"]
3299
+ ];
3300
+ cancelPayment?: ResolverInputTypes["CancelPaymentResult"];
3301
+ createApplication?: [
3302
+ {
3303
+ name: string;
3304
+ origin: string;
3305
+ developerId: string;
3306
+ },
3307
+ ResolverInputTypes["CreateApplicationResult"]
3308
+ ];
3309
+ createDraftMail?: [
3310
+ {
3311
+ hash: string;
3312
+ hashKey: string;
3313
+ body: string;
3314
+ subject: string;
3315
+ replyTo?: string | undefined | null;
3316
+ senderFiles: Array<ResolverInputTypes["MailFileInput"]>;
3317
+ recipients: Array<string>;
3318
+ },
3319
+ ResolverInputTypes["CreateDraftMailResult"]
3320
+ ];
3321
+ createFolder?: [
3322
+ {
3323
+ name: string;
3324
+ key: string;
3325
+ parentFolderId?: string | undefined | null;
3326
+ },
3327
+ ResolverInputTypes["CreateFolderResult"]
3328
+ ];
3329
+ dbConfigMutation?: [
3330
+ {
3331
+ appCode: string;
3332
+ config: string;
3333
+ },
3334
+ ResolverInputTypes["DbConfigMutationResult"]
3335
+ ];
3336
+ dbSet?: [
3337
+ {
3338
+ value: string;
3339
+ userId?: string | undefined | null;
3340
+ },
3341
+ ResolverInputTypes["DbSetResult"]
3342
+ ];
3343
+ deleteAllData?: boolean | `@${string}`;
3344
+ deleteDraftMail?: [
3345
+ {
3346
+ draftId: string;
3347
+ },
3348
+ ResolverInputTypes["DeleteDraftMailResult"]
3349
+ ];
3350
+ deleteFile?: [
3351
+ {
3352
+ fileId: string;
3353
+ nodeId: string;
3354
+ },
3355
+ ResolverInputTypes["DeleteFileResult"]
3356
+ ];
3357
+ deleteMail?: [{
3358
+ mailId: string;
3359
+ }, ResolverInputTypes["DeleteMailResult"]];
3360
+ deleteMailTrash?: [
3361
+ {
3362
+ ids: Array<string>;
3363
+ },
3364
+ ResolverInputTypes["DeleteMailTrashResult"]
3365
+ ];
3366
+ deleteNode?: [{
3367
+ id: string;
3368
+ }, ResolverInputTypes["DeleteNodeResult"]];
3369
+ deleteNodeCloudTrash?: [
3370
+ {
3371
+ ids: Array<string>;
3372
+ },
3373
+ ResolverInputTypes["DeleteNodeCloudTrashResult"]
3374
+ ];
3375
+ deleteNodeSharing?: [
3376
+ {
3377
+ nodeId: string;
3378
+ userId: string;
3379
+ },
3380
+ ResolverInputTypes["DeleteNodeSharingResult"]
3381
+ ];
3382
+ deleteUser?: [
3383
+ {
3384
+ userId?: string | undefined | null;
3385
+ },
3386
+ ResolverInputTypes["DeleteUserResult"]
3387
+ ];
3388
+ duplicateNode?: [
3389
+ {
3390
+ nodeId: string;
3391
+ folderId?: string | undefined | null;
3392
+ customName?: string | undefined | null;
3393
+ },
3394
+ ResolverInputTypes["DuplicateNodeResult"]
3395
+ ];
3396
+ emptyCloudTrash?: ResolverInputTypes["EmptyCloudTrashResult"];
3397
+ emptyMailTrash?: ResolverInputTypes["EmptyMailTrashResult"];
3398
+ logout?: [
3399
+ {
3400
+ sessionId?: string | undefined | null;
3401
+ },
3402
+ ResolverInputTypes["LogoutResult"]
3403
+ ];
3404
+ moveNodes?: [
3405
+ {
3406
+ nodeIds: Array<string>;
3407
+ parentNodeId?: string | undefined | null;
3408
+ },
3409
+ ResolverInputTypes["MoveNodesResult"]
3410
+ ];
3411
+ pay?: [
3412
+ {
3413
+ planCode: string;
3414
+ input: ResolverInputTypes["PayInput"];
3415
+ autoRenew?: boolean | undefined | null;
3416
+ },
3417
+ ResolverInputTypes["PayResult"]
3418
+ ];
3419
+ readMail?: [{
3420
+ mailId: string;
3421
+ }, ResolverInputTypes["ReadMailResult"]];
3422
+ recoverMail?: [{
3423
+ mailId: string;
3424
+ }, ResolverInputTypes["RecoverMailResult"]];
3425
+ recoverNode?: [{
3426
+ id: string;
3427
+ }, ResolverInputTypes["RecoverNodeResult"]];
3428
+ saveInCloud?: [
3429
+ {
3430
+ fileId: string;
3431
+ key: string;
3432
+ nodeId?: string | undefined | null;
3433
+ filename: string;
3434
+ nameKey: string;
3435
+ },
3436
+ ResolverInputTypes["SaveInCloudResult"]
3437
+ ];
3438
+ sendAppMail?: [
3439
+ {
3440
+ fakeUserIds: Array<string>;
3441
+ subject: string;
3442
+ html: string;
3443
+ },
3444
+ ResolverInputTypes["SendAppMailResult"]
3445
+ ];
3446
+ sendDraftMail?: [
3447
+ {
3448
+ draftMailId: string;
3449
+ temporaryRecipients: Array<string>;
3450
+ recipients: Array<ResolverInputTypes["MailRecipientInput"]>;
3451
+ customMessage?: string | undefined | null;
3452
+ },
3453
+ ResolverInputTypes["SendDraftMailResult"]
3454
+ ];
3455
+ sendOneMail?: [
3456
+ {
3457
+ mailIntegrityId: string;
3458
+ recipient: ResolverInputTypes["MailRecipientInput"];
3459
+ },
3460
+ ResolverInputTypes["SendOneMailResult"]
3461
+ ];
3462
+ sendReport?: [
3463
+ {
3464
+ reportedUserId: string;
3465
+ customMessage?: string | undefined | null;
3466
+ },
3467
+ ResolverInputTypes["SendReportResult"]
3468
+ ];
3469
+ shareFileInHistory?: [
3470
+ {
3471
+ input: ResolverInputTypes["ShareFileInHistoryInput"];
3472
+ nodeId: string;
3473
+ },
3474
+ ResolverInputTypes["ShareFileInHistoryResult"]
3475
+ ];
3476
+ shareNode?: [
3477
+ {
3478
+ nodeId: string;
3479
+ userId: string;
3480
+ },
3481
+ ResolverInputTypes["ShareNodeResult"]
3482
+ ];
3483
+ shareNodeFinish?: [
3484
+ {
3485
+ shareNodes: ResolverInputTypes["ShareNodesInput"];
3486
+ userId: string;
3487
+ rights: ResolverInputTypes["Rights"];
3488
+ },
3489
+ ResolverInputTypes["ShareNodeFinishResult"]
3490
+ ];
3491
+ unreadMail?: [{
3492
+ mailId: string;
3493
+ }, ResolverInputTypes["UnreadMailResult"]];
3494
+ updateAppNotifications?: [
3495
+ {
3496
+ enableAll?: boolean | undefined | null;
3497
+ mail?: boolean | undefined | null;
3498
+ cloud?: boolean | undefined | null;
3499
+ disableAllUntil?: ResolverInputTypes["DateTime"] | undefined | null;
3500
+ },
3501
+ ResolverInputTypes["UpdateAppNotificationsResult"]
3502
+ ];
3503
+ updateAppSettings?: [
3504
+ {
3505
+ cloudFileDaysForDelete?: number | undefined | null;
3506
+ cloudFolderDaysForDelete?: number | undefined | null;
3507
+ historyFileDaysForDelete?: number | undefined | null;
3508
+ historyMaxFileCount?: number | undefined | null;
3509
+ },
3510
+ ResolverInputTypes["UpdateAppSettingsResult"]
3511
+ ];
3512
+ updateAutoDisconnectDelay?: [
3513
+ {
3514
+ userId?: string | undefined | null;
3515
+ delay?: number | undefined | null;
3516
+ },
3517
+ ResolverInputTypes["UpdateAutoDisconnectDelayResult"]
3518
+ ];
3519
+ updateDraftMail?: [
3520
+ {
3521
+ draftId: string;
3522
+ hash?: string | undefined | null;
3523
+ hashKey?: string | undefined | null;
3524
+ body?: string | undefined | null;
3525
+ subject?: string | undefined | null;
3526
+ replyTo?: string | undefined | null;
3527
+ senderFiles?: Array<ResolverInputTypes["MailFileInput"]> | undefined | null;
3528
+ recipients?: Array<string> | undefined | null;
3529
+ },
3530
+ ResolverInputTypes["UpdateDraftMailResult"]
3531
+ ];
3532
+ updateNode?: [
3533
+ {
3534
+ nodeId: string;
3535
+ name?: string | undefined | null;
3536
+ isFavorite?: boolean | undefined | null;
3537
+ deletedAt?: ResolverInputTypes["DateTime"] | undefined | null;
3538
+ },
3539
+ ResolverInputTypes["UpdateNodeResult"]
3540
+ ];
3541
+ updateProfile?: [
3542
+ {
3543
+ firstname?: string | undefined | null;
3544
+ lastname?: string | undefined | null;
3545
+ lang?: ResolverInputTypes["Lang"] | undefined | null;
3546
+ },
3547
+ ResolverInputTypes["UpdateProfileResult"]
3548
+ ];
3549
+ uploadAnonymous?: [
3550
+ {
3551
+ fileName: string;
3552
+ fileSize: number;
3553
+ fileSizeBefore: number;
3554
+ message?: string | undefined | null;
3555
+ pubKey: string;
3556
+ token: string;
3557
+ },
3558
+ ResolverInputTypes["FileResponse"]
3559
+ ];
3560
+ uploadFile?: [
3561
+ {
3562
+ fileSize: ResolverInputTypes["BigInt"];
3563
+ fileSizeBefore: ResolverInputTypes["BigInt"];
3564
+ fileKey: string;
3565
+ md5: string;
3566
+ md5Encrypted: string;
3567
+ },
3568
+ ResolverInputTypes["UploadFileResult"]
3569
+ ];
3570
+ uploadFileEnd?: [
3571
+ {
3572
+ fileId: string;
3573
+ },
3574
+ ResolverInputTypes["UploadFileEndResult"]
3575
+ ];
3576
+ uploadFilePartEnd?: [
3577
+ {
3578
+ fileId: string;
3579
+ md5: string;
3580
+ order: number;
3581
+ },
3582
+ ResolverInputTypes["UploadFilePartEndResult"]
3583
+ ];
3584
+ uploadLiteFile?: [
3585
+ {
3586
+ content: ResolverInputTypes["Bytes"];
3587
+ fileSize: ResolverInputTypes["BigInt"];
3588
+ fileSizeBefore: ResolverInputTypes["BigInt"];
3589
+ fileKey: string;
3590
+ md5: string;
3591
+ md5Encrypted: string;
3592
+ },
3593
+ ResolverInputTypes["UploadLiteFileResult"]
3594
+ ];
3595
+ changeUserPlan?: [
3596
+ {
3597
+ userId: string;
3598
+ plan: ResolverInputTypes["PlanKind"];
3599
+ },
3600
+ ResolverInputTypes["ChangeUserPlanResult"]
3601
+ ];
3602
+ __typename?: boolean | `@${string}`;
3603
+ }>;
3604
+ ["Subscription"]: AliasType<{
3605
+ test?: boolean | `@${string}`;
3606
+ __typename?: boolean | `@${string}`;
3607
+ }>;
3608
+ };
3609
+ export declare type ModelTypes = {
3610
+ ["BigInt"]: any;
3611
+ ["DateTime"]: any;
3612
+ ["Json"]: any;
3613
+ ["Bytes"]: any;
3614
+ ["Lang"]: Lang;
3615
+ ["PlanKind"]: PlanKind;
3616
+ ["UserRole"]: UserRole;
3617
+ ["MailType"]: MailType;
3618
+ ["Rights"]: Rights;
3619
+ ["NodeType"]: NodeType;
3620
+ ["AppNotificationsResult"]: ModelTypes["UserAppNotifications"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3621
+ ["BlogResult"]: ModelTypes["BlogResponse"] | ModelTypes["ErrorLangNotExist"];
3622
+ ["DbConfigResult"]: ModelTypes["DbConfigResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorNotFound"];
3623
+ ["DbGetResult"]: ModelTypes["DbGetResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorNotExist"];
3624
+ ["DbSearchResult"]: ModelTypes["DbSearchResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorBasic"];
3625
+ ["DeletedMailsResult"]: ModelTypes["DeletedMailsResponse"] | ModelTypes["ErrorAccessDenied"];
3626
+ ["DeletedNodesResult"]: ModelTypes["DeletedNodesResponse"] | ModelTypes["ErrorAccessDenied"];
3627
+ ["FaqResult"]: ModelTypes["FaqResponse"] | ModelTypes["ErrorAccessDenied"];
3628
+ ["FileResult"]: ModelTypes["FileQueryResponse"] | ModelTypes["ErrorAccessDenied"];
3629
+ ["FileContentResult"]: ModelTypes["FileContentResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3630
+ ["FilesContentResult"]: ModelTypes["FilesContentResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"];
3631
+ ["GetJwtResult"]: ModelTypes["JwtResponse"] | ModelTypes["ErrorAccessDenied"];
3632
+ ["LimitsResult"]: ModelTypes["QueryLimits"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorLimit"];
3633
+ ["MailResult"]: ModelTypes["QueryMailResponse"] | ModelTypes["ErrorAccessDenied"];
3634
+ ["NodeResult"]: ModelTypes["NodeResponse"] | ModelTypes["ErrorAccessDenied"];
3635
+ ["NodesSharedWithMeResult"]: ModelTypes["NodesSharedWithMeResponse"] | ModelTypes["ErrorAccessDenied"];
3636
+ ["PaymentInfosResult"]: ModelTypes["PaymentInfosResponse"] | ModelTypes["ErrorAccessDenied"];
3637
+ ["PlansResult"]: ModelTypes["PlanResponse"];
3638
+ ["SharedNodesResult"]: ModelTypes["SharedNodesResponse"] | ModelTypes["ErrorAccessDenied"];
3639
+ ["UnreadReceivedMailsCountResult"]: ModelTypes["UnreadReceivedMailsCountResponse"] | ModelTypes["ErrorAccessDenied"];
3640
+ ["UserResult"]: ModelTypes["UserResponse"] | ModelTypes["ErrorNotFound"];
3641
+ ["UserListResult"]: ModelTypes["UserListResponse"] | ModelTypes["ErrorAccessDenied"];
3642
+ ["AddFileToHistoryResult"]: ModelTypes["AddFileToHistoryResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
3643
+ ["CancelPaymentResult"]: ModelTypes["CancelPaymentResponse"] | ModelTypes["ErrorAccessDenied"];
3644
+ ["CreateApplicationResult"]: ModelTypes["CreateApplicationResponse"] | ModelTypes["ErrorNotExist"];
3645
+ ["CreateDraftMailResult"]: ModelTypes["CreateDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3646
+ ["CreateFolderResult"]: ModelTypes["CreateFolderResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
3647
+ ["DbConfigMutationResult"]: ModelTypes["DbConfigMutationResponse"] | ModelTypes["ErrorAccessDenied"];
3648
+ ["DbSetResult"]: ModelTypes["DbSetResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3649
+ ["DeleteDraftMailResult"]: ModelTypes["DeleteDraftMailResponse"] | ModelTypes["ErrorAccessDenied"];
3650
+ ["DeleteFileResult"]: ModelTypes["DeleteFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
3651
+ ["DeleteMailResult"]: ModelTypes["DeleteMailResponse"] | ModelTypes["ErrorAccessDenied"];
3652
+ ["DeleteMailTrashResult"]: ModelTypes["DeleteMailTrashResponse"] | ModelTypes["ErrorAccessDenied"];
3653
+ ["DeleteNodeResult"]: ModelTypes["DeleteNodeResponse"] | ModelTypes["ErrorAccessDenied"];
3654
+ ["DeleteNodeCloudTrashResult"]: ModelTypes["DeleteNodeCloudTrashResponse"] | ModelTypes["ErrorAccessDenied"];
3655
+ ["DeleteNodeSharingResult"]: ModelTypes["DeleteNodeSharingResponse"] | ModelTypes["ErrorAccessDenied"];
3656
+ ["DeleteUserResult"]: ModelTypes["DeleteUserResponse"] | ModelTypes["ErrorAccessDenied"];
3657
+ ["DuplicateNodeResult"]: ModelTypes["DuplicateNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3658
+ ["EmptyCloudTrashResult"]: ModelTypes["EmptyCloudTrashResponse"] | ModelTypes["ErrorAccessDenied"];
3659
+ ["EmptyMailTrashResult"]: ModelTypes["EmptyMailTrashResponse"] | ModelTypes["ErrorAccessDenied"];
3660
+ ["LogoutResult"]: ModelTypes["LogoutResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3661
+ ["MoveNodesResult"]: ModelTypes["MoveNodesResponse"] | ModelTypes["ErrorAccessDenied"];
3662
+ ["PayResult"]: ModelTypes["PayResponse"] | ModelTypes["ErrorAccessDenied"];
3663
+ ["ReadMailResult"]: ModelTypes["ReadMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"];
3664
+ ["RecoverMailResult"]: ModelTypes["RecoverMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3665
+ ["RecoverNodeResult"]: ModelTypes["RecoverNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
3666
+ ["SaveInCloudResult"]: ModelTypes["SaveInCloudResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
3667
+ ["SendAppMailResult"]: ModelTypes["SendAppMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"];
3668
+ ["SendDraftMailResult"]: ModelTypes["SendDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3669
+ ["SendOneMailResult"]: ModelTypes["RecoverNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3670
+ ["SendReportResult"]: ModelTypes["SendReportResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3671
+ ["ShareFileInHistoryResult"]: ModelTypes["ShareFileInHistoryResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3672
+ ["ShareNodeResult"]: ModelTypes["ShareNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3673
+ ["ShareNodeFinishResult"]: ModelTypes["ShareNodeFinishResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3674
+ ["UnreadMailResult"]: ModelTypes["UnreadMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorBasic"];
3675
+ ["UpdateAppNotificationsResult"]: ModelTypes["UpdateAppNotificationsResponse"] | ModelTypes["ErrorAccessDenied"];
3676
+ ["UpdateAppSettingsResult"]: ModelTypes["UpdateAppSettingsResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3677
+ ["UpdateAutoDisconnectDelayResult"]: ModelTypes["UpdateAutoDisconnectDelayResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorBasic"];
3678
+ ["UpdateDraftMailResult"]: ModelTypes["UpdateDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
3679
+ ["UpdateNodeResult"]: ModelTypes["UpdateNodeResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
3680
+ ["UpdateProfileResult"]: ModelTypes["UpdateProfileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3681
+ ["UploadFileResult"]: ModelTypes["UploadFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
3682
+ ["UploadFileEndResult"]: ModelTypes["UploadFileEndResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
3683
+ ["UploadFilePartEndResult"]: ModelTypes["UploadFilePartEndResponse"] | ModelTypes["ErrorAccessDenied"];
3684
+ ["UploadLiteFileResult"]: ModelTypes["UploadLiteFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
3685
+ ["ChangeUserPlanResult"]: ModelTypes["ChangeUserPlanResponse"] | ModelTypes["ErrorAccessDenied"];
3686
+ ["AppKeyPair"]: {
3687
+ pub: string;
3688
+ };
3689
+ ["AppSession"]: {
3690
+ id: string;
3691
+ lastActivity?: ModelTypes["DateTime"] | undefined;
1929
3692
  userAgent?: string | undefined;
1930
3693
  ip?: string | undefined;
1931
3694
  city?: string | undefined;
1932
3695
  country?: string | undefined;
1933
- userSession: GraphQLTypes["UserSession"];
1934
- userApp?: GraphQLTypes["ApplicationsOnUsers"] | undefined;
1935
- createdAt: GraphQLTypes["DateTime"];
3696
+ userSession: ModelTypes["UserSession"];
3697
+ userApp?: ModelTypes["ApplicationsOnUsers"] | undefined;
3698
+ createdAt: ModelTypes["DateTime"];
1936
3699
  };
1937
3700
  ["Application"]: {
1938
3701
  id: string;
@@ -1940,30 +3703,30 @@ export declare type ModelTypes = {
1940
3703
  };
1941
3704
  ["ApplicationsOnUsers"]: {
1942
3705
  fakeUserId: string;
1943
- keyPair?: GraphQLTypes["AppKeyPair"] | undefined;
1944
- sessions: Array<GraphQLTypes["AppSession"]>;
1945
- app: GraphQLTypes["Application"];
3706
+ keyPair?: ModelTypes["AppKeyPair"] | undefined;
3707
+ sessions: Array<ModelTypes["AppSession"]>;
3708
+ app: ModelTypes["Application"];
1946
3709
  appId: string;
1947
- user: GraphQLTypes["User"];
3710
+ user: ModelTypes["User"];
1948
3711
  userId: string;
1949
- settings: GraphQLTypes["UserAppSettings"];
1950
- filesAccesses: Array<GraphQLTypes["FileAccess"]>;
1951
- filesSharedAccesses: Array<GraphQLTypes["FileAccess"]>;
1952
- nodesAccesses: Array<GraphQLTypes["NodeAccess"]>;
1953
- nodesSharedAccesses: Array<GraphQLTypes["NodeAccess"]>;
1954
- createdNodes: Array<GraphQLTypes["Node"]>;
3712
+ settings: ModelTypes["UserAppSettings"];
3713
+ filesAccesses: Array<ModelTypes["FileAccess"]>;
3714
+ filesSharedAccesses: Array<ModelTypes["FileAccess"]>;
3715
+ nodesAccesses: Array<ModelTypes["NodeAccess"]>;
3716
+ nodesSharedAccesses: Array<ModelTypes["NodeAccess"]>;
3717
+ createdNodes: Array<ModelTypes["Node"]>;
1955
3718
  };
1956
3719
  ["Blog"]: {
1957
3720
  id: string;
1958
3721
  order: number;
1959
- entries: Array<GraphQLTypes["BlogEntry"]>;
3722
+ entries: Array<ModelTypes["BlogEntry"]>;
1960
3723
  };
1961
3724
  ["BlogEntry"]: {
1962
3725
  id: string;
1963
- lang: GraphQLTypes["Lang"];
3726
+ lang: ModelTypes["Lang"];
1964
3727
  author: string;
1965
3728
  body: string;
1966
- date: GraphQLTypes["DateTime"];
3729
+ date: ModelTypes["DateTime"];
1967
3730
  image: string;
1968
3731
  summary: string;
1969
3732
  title: string;
@@ -1978,13 +3741,13 @@ export declare type ModelTypes = {
1978
3741
  image: string;
1979
3742
  imageAlt: string;
1980
3743
  summary: string;
1981
- date: GraphQLTypes["DateTime"];
3744
+ date: ModelTypes["DateTime"];
1982
3745
  };
1983
3746
  ["CloudLimits"]: {
1984
- size: GraphQLTypes["BigInt"];
1985
- maxSize?: GraphQLTypes["BigInt"] | undefined;
1986
- count: GraphQLTypes["BigInt"];
1987
- maxCount?: GraphQLTypes["BigInt"] | undefined;
3747
+ size: ModelTypes["BigInt"];
3748
+ maxSize?: ModelTypes["BigInt"] | undefined;
3749
+ count: ModelTypes["BigInt"];
3750
+ maxCount?: ModelTypes["BigInt"] | undefined;
1988
3751
  };
1989
3752
  ["Error"]: ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorUpgradePlan"] | ModelTypes["ErrorLangNotExist"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorLimit"] | ModelTypes["ErrorBasic"];
1990
3753
  ["ErrorAccessDenied"]: {
@@ -2015,14 +3778,14 @@ export declare type ModelTypes = {
2015
3778
  ["Faq"]: {
2016
3779
  id: string;
2017
3780
  order: number;
2018
- entries: Array<GraphQLTypes["FaqEntry"]>;
3781
+ entries: Array<ModelTypes["FaqEntry"]>;
2019
3782
  };
2020
3783
  ["FaqEntry"]: {
2021
3784
  id: string;
2022
- lang: GraphQLTypes["Lang"];
3785
+ lang: ModelTypes["Lang"];
2023
3786
  question: string;
2024
3787
  answer: string;
2025
- faq: GraphQLTypes["Faq"];
3788
+ faq: ModelTypes["Faq"];
2026
3789
  };
2027
3790
  ["FaqItem"]: {
2028
3791
  order: number;
@@ -2031,27 +3794,27 @@ export declare type ModelTypes = {
2031
3794
  };
2032
3795
  ["File"]: {
2033
3796
  id: string;
2034
- size: GraphQLTypes["BigInt"];
2035
- sizeBefore: GraphQLTypes["BigInt"];
2036
- createdAt: GraphQLTypes["DateTime"];
3797
+ size: ModelTypes["BigInt"];
3798
+ sizeBefore: ModelTypes["BigInt"];
3799
+ createdAt: ModelTypes["DateTime"];
2037
3800
  md5: string;
2038
- nodes: Array<GraphQLTypes["Node"]>;
2039
- accesses: Array<GraphQLTypes["FileAccess"]>;
3801
+ nodes: Array<ModelTypes["Node"]>;
3802
+ accesses: Array<ModelTypes["FileAccess"]>;
2040
3803
  md5Encrypted: string;
2041
- deletedAt?: GraphQLTypes["DateTime"] | undefined;
2042
- userApp: GraphQLTypes["ApplicationsOnUsers"];
2043
- mails: Array<GraphQLTypes["FilesOnMails"]>;
2044
- validatedAt?: GraphQLTypes["DateTime"] | undefined;
2045
- access?: GraphQLTypes["FileAccess"] | undefined;
3804
+ deletedAt?: ModelTypes["DateTime"] | undefined;
3805
+ userApp: ModelTypes["ApplicationsOnUsers"];
3806
+ mails: Array<ModelTypes["FilesOnMails"]>;
3807
+ validatedAt?: ModelTypes["DateTime"] | undefined;
3808
+ access?: ModelTypes["FileAccess"] | undefined;
2046
3809
  };
2047
3810
  ["FileAccess"]: {
2048
- userApp: GraphQLTypes["ApplicationsOnUsers"];
3811
+ userApp: ModelTypes["ApplicationsOnUsers"];
2049
3812
  userAppUserId: string;
2050
3813
  userAppAppId: string;
2051
- file: GraphQLTypes["File"];
3814
+ file: ModelTypes["File"];
2052
3815
  fileId: string;
2053
3816
  key: string;
2054
- sharedBy: GraphQLTypes["ApplicationsOnUsers"];
3817
+ sharedBy: ModelTypes["ApplicationsOnUsers"];
2055
3818
  sharedByUserId: string;
2056
3819
  sharedByAppId: string;
2057
3820
  };
@@ -2062,9 +3825,9 @@ export declare type ModelTypes = {
2062
3825
  key: string;
2063
3826
  md5: string;
2064
3827
  md5Encrypted: string;
2065
- totalSize: GraphQLTypes["BigInt"];
2066
- type: GraphQLTypes["FileContentType"];
2067
- parts: Array<GraphQLTypes["FileContentPart"]>;
3828
+ totalSize: ModelTypes["BigInt"];
3829
+ type: ModelTypes["FileContentType"];
3830
+ parts: Array<ModelTypes["FileContentPart"]>;
2068
3831
  publicKey: string;
2069
3832
  };
2070
3833
  ["FileContentLite"]: {
@@ -2072,9 +3835,9 @@ export declare type ModelTypes = {
2072
3835
  key: string;
2073
3836
  md5: string;
2074
3837
  md5Encrypted: string;
2075
- totalSize: GraphQLTypes["BigInt"];
2076
- type: GraphQLTypes["FileContentType"];
2077
- content: GraphQLTypes["Bytes"];
3838
+ totalSize: ModelTypes["BigInt"];
3839
+ type: ModelTypes["FileContentType"];
3840
+ content: ModelTypes["Bytes"];
2078
3841
  publicKey: string;
2079
3842
  };
2080
3843
  ["FileContentPart"]: {
@@ -2087,10 +3850,10 @@ export declare type ModelTypes = {
2087
3850
  key: string;
2088
3851
  md5: string;
2089
3852
  md5Encrypted: string;
2090
- totalSize: GraphQLTypes["BigInt"];
2091
- type: GraphQLTypes["FileContentType"];
2092
- maybeParts?: Array<GraphQLTypes["FileContentPart"]> | undefined;
2093
- maybeContent?: GraphQLTypes["Bytes"] | undefined;
3853
+ totalSize: ModelTypes["BigInt"];
3854
+ type: ModelTypes["FileContentType"];
3855
+ maybeParts?: Array<ModelTypes["FileContentPart"]> | undefined;
3856
+ maybeContent?: ModelTypes["Bytes"] | undefined;
2094
3857
  senderPublicKey: string;
2095
3858
  };
2096
3859
  ["FileContentSentMail"]: {
@@ -2098,169 +3861,203 @@ export declare type ModelTypes = {
2098
3861
  key: string;
2099
3862
  md5: string;
2100
3863
  md5Encrypted: string;
2101
- totalSize: GraphQLTypes["BigInt"];
2102
- type: GraphQLTypes["FileContentType"];
2103
- maybeParts?: Array<GraphQLTypes["FileContentPart"]> | undefined;
2104
- maybeContent?: GraphQLTypes["Bytes"] | undefined;
3864
+ totalSize: ModelTypes["BigInt"];
3865
+ type: ModelTypes["FileContentType"];
3866
+ maybeParts?: Array<ModelTypes["FileContentPart"]> | undefined;
3867
+ maybeContent?: ModelTypes["Bytes"] | undefined;
2105
3868
  };
2106
- ["FileContentType"]: GraphQLTypes["FileContentType"];
3869
+ ["FileContentType"]: FileContentType;
2107
3870
  ["FilePart"]: {
2108
3871
  id: string;
2109
- file: GraphQLTypes["File"];
3872
+ file: ModelTypes["File"];
2110
3873
  fileId: string;
2111
- size: GraphQLTypes["BigInt"];
3874
+ size: ModelTypes["BigInt"];
2112
3875
  order: number;
2113
3876
  md5: string;
2114
- validatedAt?: GraphQLTypes["DateTime"] | undefined;
3877
+ validatedAt?: ModelTypes["DateTime"] | undefined;
2115
3878
  };
2116
3879
  ["FilePartResponse"]: {
2117
- fields: GraphQLTypes["Json"];
3880
+ fields: ModelTypes["Json"];
2118
3881
  url: string;
2119
3882
  order: number;
2120
3883
  };
2121
- ["FileResponse"]: {
3884
+ ["FileResponse"]: {
3885
+ fileId: string;
3886
+ parts: Array<ModelTypes["FilePartResponse"]>;
3887
+ filePartSize: ModelTypes["BigInt"];
3888
+ };
3889
+ ["FileShared"]: {
3890
+ userId: string;
3891
+ message?: string | undefined;
3892
+ appId: string;
3893
+ id: string;
3894
+ filename: string;
3895
+ size: number;
3896
+ sizeBefore: number;
3897
+ };
3898
+ ["FileSharedContent"]: {
3899
+ ownerId?: string | undefined;
3900
+ pubKey?: string | undefined;
3901
+ message?: string | undefined;
3902
+ appId: string;
3903
+ id: string;
3904
+ type: string;
3905
+ filename: string;
3906
+ contentUrl: string;
3907
+ key: string;
3908
+ size: number;
3909
+ sizeBefore: number;
3910
+ };
3911
+ ["FilesContentResponse"]: {
3912
+ files: Array<ModelTypes["FileContent"] | undefined>;
3913
+ };
3914
+ ["FilesOnMails"]: {
3915
+ file: ModelTypes["File"];
3916
+ fileKey: string;
3917
+ filename: string;
3918
+ mail: ModelTypes["Mail"];
3919
+ };
3920
+ ["MailFileInput"]: {
3921
+ id: string;
3922
+ name: string;
3923
+ fileKey: string;
3924
+ };
3925
+ ["MailRecipientInput"]: {
3926
+ body: string;
3927
+ subject: string;
3928
+ recipientId: string;
3929
+ files: Array<ModelTypes["MailFileInput"]>;
3930
+ };
3931
+ ["NameKeyInput"]: {
3932
+ id: string;
3933
+ nameKey: string;
3934
+ files: Array<ModelTypes["ShareFileKeyInput"]>;
3935
+ };
3936
+ ["PayInput"]: {
3937
+ type: ModelTypes["PayInputType"];
3938
+ token: string;
3939
+ firstName: string;
3940
+ lastName: string;
3941
+ street: string;
3942
+ postalCode: string;
3943
+ city: string;
3944
+ country: string;
3945
+ number: string;
3946
+ month: string;
3947
+ year: string;
3948
+ cvv: string;
3949
+ };
3950
+ ["PayInputType"]: PayInputType;
3951
+ ["ShareFileInHistoryInput"]: {
2122
3952
  fileId: string;
2123
- parts: Array<GraphQLTypes["FilePartResponse"]>;
2124
- filePartSize: GraphQLTypes["BigInt"];
2125
- };
2126
- ["FileShared"]: {
2127
- userId: string;
2128
- message?: string | undefined;
2129
- appId: string;
2130
- id: string;
2131
- filename: string;
2132
- size: number;
2133
- sizeBefore: number;
3953
+ users: Array<ModelTypes["ShareFileKeyInput"]>;
2134
3954
  };
2135
- ["FileSharedContent"]: {
2136
- ownerId?: string | undefined;
2137
- pubKey?: string | undefined;
2138
- message?: string | undefined;
2139
- appId: string;
3955
+ ["ShareFileKeyInput"]: {
2140
3956
  id: string;
2141
- type: string;
2142
- filename: string;
2143
- contentUrl: string;
2144
3957
  key: string;
2145
- size: number;
2146
- sizeBefore: number;
2147
- };
2148
- ["FilesContentResponse"]: {
2149
- files: Array<GraphQLTypes["FileContent"] | undefined>;
2150
3958
  };
2151
- ["FilesOnMails"]: {
2152
- file: GraphQLTypes["File"];
2153
- fileKey: string;
2154
- filename: string;
2155
- mail: GraphQLTypes["Mail"];
3959
+ ["ShareNodesInput"]: {
3960
+ nodes: Array<ModelTypes["NameKeyInput"]>;
2156
3961
  };
2157
- ["MailFileInput"]: GraphQLTypes["MailFileInput"];
2158
- ["MailRecipientInput"]: GraphQLTypes["MailRecipientInput"];
2159
- ["NameKeyInput"]: GraphQLTypes["NameKeyInput"];
2160
- ["PayInput"]: GraphQLTypes["PayInput"];
2161
- ["PayInputType"]: GraphQLTypes["PayInputType"];
2162
- ["ShareFileInHistoryInput"]: GraphQLTypes["ShareFileInHistoryInput"];
2163
- ["ShareFileKeyInput"]: GraphQLTypes["ShareFileKeyInput"];
2164
- ["ShareNodesInput"]: GraphQLTypes["ShareNodesInput"];
2165
3962
  ["Limits"]: {
2166
- downloadBandwidth?: GraphQLTypes["BigInt"] | undefined;
2167
- downloadCount?: GraphQLTypes["BigInt"] | undefined;
2168
- hardFileCount?: GraphQLTypes["BigInt"] | undefined;
2169
- hardFileSize?: GraphQLTypes["BigInt"] | undefined;
2170
- perFileSize?: GraphQLTypes["BigInt"] | undefined;
2171
- receivedMails: GraphQLTypes["MailLimits"];
2172
- sentMails: GraphQLTypes["MailLimits"];
2173
- uploadBandwidth?: GraphQLTypes["BigInt"] | undefined;
2174
- uploadCount?: GraphQLTypes["BigInt"] | undefined;
3963
+ downloadBandwidth?: ModelTypes["BigInt"] | undefined;
3964
+ downloadCount?: ModelTypes["BigInt"] | undefined;
3965
+ hardFileCount?: ModelTypes["BigInt"] | undefined;
3966
+ hardFileSize?: ModelTypes["BigInt"] | undefined;
3967
+ perFileSize?: ModelTypes["BigInt"] | undefined;
3968
+ receivedMails: ModelTypes["MailLimits"];
3969
+ sentMails: ModelTypes["MailLimits"];
3970
+ uploadBandwidth?: ModelTypes["BigInt"] | undefined;
3971
+ uploadCount?: ModelTypes["BigInt"] | undefined;
2175
3972
  };
2176
3973
  ["MailLimits"]: {
2177
- count?: GraphQLTypes["BigInt"] | undefined;
2178
- fileCount?: GraphQLTypes["BigInt"] | undefined;
2179
- fileSize?: GraphQLTypes["BigInt"] | undefined;
2180
- hardCount?: GraphQLTypes["BigInt"] | undefined;
2181
- hardFileCount?: GraphQLTypes["BigInt"] | undefined;
2182
- hardFileSize?: GraphQLTypes["BigInt"] | undefined;
2183
- perFileSize?: GraphQLTypes["BigInt"] | undefined;
3974
+ count?: ModelTypes["BigInt"] | undefined;
3975
+ fileCount?: ModelTypes["BigInt"] | undefined;
3976
+ fileSize?: ModelTypes["BigInt"] | undefined;
3977
+ hardCount?: ModelTypes["BigInt"] | undefined;
3978
+ hardFileCount?: ModelTypes["BigInt"] | undefined;
3979
+ hardFileSize?: ModelTypes["BigInt"] | undefined;
3980
+ perFileSize?: ModelTypes["BigInt"] | undefined;
2184
3981
  };
2185
3982
  ["MailLimitsValues"]: {
2186
- count: GraphQLTypes["BigInt"];
2187
- maxCount?: GraphQLTypes["BigInt"] | undefined;
2188
- fileCount: GraphQLTypes["BigInt"];
2189
- maxFileCount?: GraphQLTypes["BigInt"] | undefined;
2190
- fileSize: GraphQLTypes["BigInt"];
2191
- maxFileSize?: GraphQLTypes["BigInt"] | undefined;
3983
+ count: ModelTypes["BigInt"];
3984
+ maxCount?: ModelTypes["BigInt"] | undefined;
3985
+ fileCount: ModelTypes["BigInt"];
3986
+ maxFileCount?: ModelTypes["BigInt"] | undefined;
3987
+ fileSize: ModelTypes["BigInt"];
3988
+ maxFileSize?: ModelTypes["BigInt"] | undefined;
2192
3989
  };
2193
3990
  ["QueryLimits"]: {
2194
- cloud: GraphQLTypes["CloudLimits"];
2195
- mail: GraphQLTypes["UserMailLimits"];
3991
+ cloud: ModelTypes["CloudLimits"];
3992
+ mail: ModelTypes["UserMailLimits"];
2196
3993
  };
2197
3994
  ["UserMailLimits"]: {
2198
- sent: GraphQLTypes["MailLimitsValues"];
2199
- received: GraphQLTypes["MailLimitsValues"];
3995
+ sent: ModelTypes["MailLimitsValues"];
3996
+ received: ModelTypes["MailLimitsValues"];
2200
3997
  };
2201
3998
  ["LiteFileResponse"]: {
2202
3999
  fileId: string;
2203
- content: GraphQLTypes["Bytes"];
4000
+ content: ModelTypes["Bytes"];
2204
4001
  };
2205
4002
  ["Mail"]: {
2206
4003
  id: string;
2207
- app: GraphQLTypes["Application"];
4004
+ app: ModelTypes["Application"];
2208
4005
  body: string;
2209
- createdAt: GraphQLTypes["DateTime"];
2210
- deletedAt?: GraphQLTypes["DateTime"] | undefined;
2211
- files: Array<GraphQLTypes["FilesOnMails"]>;
2212
- mailIntegrity?: GraphQLTypes["MailIntegrity"] | undefined;
4006
+ createdAt: ModelTypes["DateTime"];
4007
+ deletedAt?: ModelTypes["DateTime"] | undefined;
4008
+ files: Array<ModelTypes["FilesOnMails"]>;
4009
+ mailIntegrity?: ModelTypes["MailIntegrity"] | undefined;
2213
4010
  mailIntegrityId?: string | undefined;
2214
- mailIntegrityDraft?: GraphQLTypes["MailIntegrityDraft"] | undefined;
2215
- openedAt?: GraphQLTypes["DateTime"] | undefined;
2216
- recipient: GraphQLTypes["User"];
2217
- sender: GraphQLTypes["User"];
4011
+ mailIntegrityDraft?: ModelTypes["MailIntegrityDraft"] | undefined;
4012
+ openedAt?: ModelTypes["DateTime"] | undefined;
4013
+ recipient: ModelTypes["User"];
4014
+ sender: ModelTypes["User"];
2218
4015
  subject: string;
2219
- type: GraphQLTypes["MailType"];
2220
- recipients: Array<GraphQLTypes["User"]>;
4016
+ type: ModelTypes["MailType"];
4017
+ recipients: Array<ModelTypes["User"]>;
2221
4018
  };
2222
4019
  ["MailIntegrity"]: {
2223
4020
  id: string;
2224
4021
  hash: string;
2225
4022
  hashKey: string;
2226
- answers: Array<GraphQLTypes["MailIntegrity"]>;
2227
- app: GraphQLTypes["Application"];
2228
- mails: Array<GraphQLTypes["Mail"]>;
2229
- recipients: Array<GraphQLTypes["User"]>;
2230
- temporaryRecipients: Array<GraphQLTypes["TemporaryUser"]>;
2231
- replyTo?: GraphQLTypes["MailIntegrity"] | undefined;
4023
+ answers: Array<ModelTypes["MailIntegrity"]>;
4024
+ app: ModelTypes["Application"];
4025
+ mails: Array<ModelTypes["Mail"]>;
4026
+ recipients: Array<ModelTypes["User"]>;
4027
+ temporaryRecipients: Array<ModelTypes["TemporaryUser"]>;
4028
+ replyTo?: ModelTypes["MailIntegrity"] | undefined;
2232
4029
  };
2233
4030
  ["MailIntegrityDraft"]: {
2234
4031
  id: string;
2235
4032
  hash: string;
2236
4033
  hashKey: string;
2237
- app: GraphQLTypes["Application"];
2238
- mail: GraphQLTypes["Mail"];
2239
- recipients: Array<GraphQLTypes["User"]>;
2240
- temporaryRecipients: Array<GraphQLTypes["TemporaryUser"]>;
2241
- replyTo?: GraphQLTypes["MailIntegrity"] | undefined;
4034
+ app: ModelTypes["Application"];
4035
+ mail: ModelTypes["Mail"];
4036
+ recipients: Array<ModelTypes["User"]>;
4037
+ temporaryRecipients: Array<ModelTypes["TemporaryUser"]>;
4038
+ replyTo?: ModelTypes["MailIntegrity"] | undefined;
2242
4039
  };
2243
4040
  ["Node"]: {
2244
4041
  id: string;
2245
4042
  isFavorite: boolean;
2246
- type: GraphQLTypes["NodeType"];
2247
- createdAt: GraphQLTypes["DateTime"];
2248
- deletedAt?: GraphQLTypes["DateTime"] | undefined;
4043
+ type: ModelTypes["NodeType"];
4044
+ createdAt: ModelTypes["DateTime"];
4045
+ deletedAt?: ModelTypes["DateTime"] | undefined;
2249
4046
  parentId?: string | undefined;
2250
- createdBy: GraphQLTypes["ApplicationsOnUsers"];
2251
- children: Array<GraphQLTypes["Node"]>;
2252
- history: Array<GraphQLTypes["File"]>;
2253
- updatedAt: GraphQLTypes["DateTime"];
4047
+ createdBy: ModelTypes["ApplicationsOnUsers"];
4048
+ children: Array<ModelTypes["Node"]>;
4049
+ history: Array<ModelTypes["File"]>;
4050
+ updatedAt: ModelTypes["DateTime"];
2254
4051
  createdByAppId: string;
2255
4052
  createdByUserId: string;
2256
4053
  name: string;
2257
- parent?: GraphQLTypes["Node"] | undefined;
2258
- accesses: Array<GraphQLTypes["NodeAccess"]>;
2259
- current?: GraphQLTypes["File"] | undefined;
4054
+ parent?: ModelTypes["Node"] | undefined;
4055
+ accesses: Array<ModelTypes["NodeAccess"]>;
4056
+ current?: ModelTypes["File"] | undefined;
2260
4057
  currentFileId?: string | undefined;
2261
- sizes: GraphQLTypes["NodeSize"];
2262
- access?: GraphQLTypes["NodeAccess"] | undefined;
2263
- breadcrumb: Array<GraphQLTypes["NodeBreadcrumbItem"]>;
4058
+ sizes: ModelTypes["NodeSize"];
4059
+ access?: ModelTypes["NodeAccess"] | undefined;
4060
+ breadcrumb: Array<ModelTypes["NodeBreadcrumbItem"]>;
2264
4061
  };
2265
4062
  ["NodeBreadcrumbItem"]: {
2266
4063
  id: string;
@@ -2269,57 +4066,57 @@ export declare type ModelTypes = {
2269
4066
  nameKey?: string | undefined;
2270
4067
  };
2271
4068
  ["NodeAccess"]: {
2272
- node: GraphQLTypes["Node"];
4069
+ node: ModelTypes["Node"];
2273
4070
  nodeId: string;
2274
- userApp: GraphQLTypes["ApplicationsOnUsers"];
4071
+ userApp: ModelTypes["ApplicationsOnUsers"];
2275
4072
  userAppUserId: string;
2276
4073
  userAppAppId: string;
2277
- rights: GraphQLTypes["Rights"];
4074
+ rights: ModelTypes["Rights"];
2278
4075
  nameKey?: string | undefined;
2279
4076
  isRoot: boolean;
2280
- sharedBy: GraphQLTypes["ApplicationsOnUsers"];
4077
+ sharedBy: ModelTypes["ApplicationsOnUsers"];
2281
4078
  sharedByUserId: string;
2282
4079
  sharedByAppId: string;
2283
4080
  };
2284
4081
  ["NodeSize"]: {
2285
- size: GraphQLTypes["BigInt"];
2286
- sizeBefore: GraphQLTypes["BigInt"];
4082
+ size: ModelTypes["BigInt"];
4083
+ sizeBefore: ModelTypes["BigInt"];
2287
4084
  };
2288
4085
  ["Plan"]: {
2289
4086
  id: string;
2290
- kind: GraphQLTypes["PlanKind"];
4087
+ kind: ModelTypes["PlanKind"];
2291
4088
  codes: Array<string>;
2292
- limits: GraphQLTypes["Limits"];
4089
+ limits: ModelTypes["Limits"];
2293
4090
  };
2294
4091
  ["Report"]: {
2295
4092
  id: string;
2296
- user: GraphQLTypes["User"];
2297
- reportedUser: GraphQLTypes["User"];
4093
+ user: ModelTypes["User"];
4094
+ reportedUser: ModelTypes["User"];
2298
4095
  customMessage?: string | undefined;
2299
4096
  };
2300
4097
  ["AddFileToHistoryResponse"]: {
2301
- addFileToHistory: GraphQLTypes["Node"];
4098
+ addFileToHistory: ModelTypes["Node"];
2302
4099
  };
2303
4100
  ["CancelPaymentResponse"]: {
2304
4101
  cancelPayment?: boolean | undefined;
2305
4102
  };
2306
4103
  ["ChangeUserPlanResponse"]: {
2307
- changeUserPlan?: GraphQLTypes["User"] | undefined;
4104
+ changeUserPlan?: ModelTypes["User"] | undefined;
2308
4105
  };
2309
4106
  ["CreateApplicationResponse"]: {
2310
4107
  createApplication?: string | undefined;
2311
4108
  };
2312
4109
  ["CreateDraftMailResponse"]: {
2313
- createDraftMail?: GraphQLTypes["Mail"] | undefined;
4110
+ createDraftMail?: ModelTypes["Mail"] | undefined;
2314
4111
  };
2315
4112
  ["CreateFolderResponse"]: {
2316
- createFolder?: GraphQLTypes["Node"] | undefined;
4113
+ createFolder?: ModelTypes["Node"] | undefined;
2317
4114
  };
2318
4115
  ["DbConfigMutationResponse"]: {
2319
- dbConfigMutation: GraphQLTypes["Json"];
4116
+ dbConfigMutation: ModelTypes["Json"];
2320
4117
  };
2321
4118
  ["DbSetResponse"]: {
2322
- dbSet?: GraphQLTypes["Json"] | undefined;
4119
+ dbSet?: ModelTypes["Json"] | undefined;
2323
4120
  };
2324
4121
  ["DeleteDraftMailResponse"]: {
2325
4122
  deleteDraftMail?: boolean | undefined;
@@ -2373,7 +4170,7 @@ export declare type ModelTypes = {
2373
4170
  recoverNode?: boolean | undefined;
2374
4171
  };
2375
4172
  ["SaveInCloudResponse"]: {
2376
- saveInCloud?: GraphQLTypes["Node"] | undefined;
4173
+ saveInCloud?: ModelTypes["Node"] | undefined;
2377
4174
  };
2378
4175
  ["SendAppMailResponse"]: {
2379
4176
  sendAppMail: boolean;
@@ -2385,13 +4182,13 @@ export declare type ModelTypes = {
2385
4182
  sendOneMail?: boolean | undefined;
2386
4183
  };
2387
4184
  ["SendReportResponse"]: {
2388
- sendReport?: GraphQLTypes["Report"] | undefined;
4185
+ sendReport?: ModelTypes["Report"] | undefined;
2389
4186
  };
2390
4187
  ["ShareFileInHistoryResponse"]: {
2391
4188
  shareFileInHistory: boolean;
2392
4189
  };
2393
4190
  ["ShareNodeQueryResponse"]: {
2394
- shareNode: GraphQLTypes["ShareNodeResponse"];
4191
+ shareNode: ModelTypes["ShareNodeResponse"];
2395
4192
  };
2396
4193
  ["ShareNodeFinishResponse"]: {
2397
4194
  shareNodeFinish?: boolean | undefined;
@@ -2400,28 +4197,28 @@ export declare type ModelTypes = {
2400
4197
  unreadMail?: boolean | undefined;
2401
4198
  };
2402
4199
  ["UpdateAppNotificationsResponse"]: {
2403
- updateAppNotifications?: GraphQLTypes["UserAppNotifications"] | undefined;
4200
+ updateAppNotifications?: ModelTypes["UserAppNotifications"] | undefined;
2404
4201
  };
2405
4202
  ["UpdateAppSettingsResponse"]: {
2406
- updateAppSettings: GraphQLTypes["UserAppSettings"];
4203
+ updateAppSettings: ModelTypes["UserAppSettings"];
2407
4204
  };
2408
4205
  ["UpdateAutoDisconnectDelayResponse"]: {
2409
4206
  updateAutoDisconnectDelay?: boolean | undefined;
2410
4207
  };
2411
4208
  ["UpdateDraftMailResponse"]: {
2412
- updateDraftMail?: GraphQLTypes["Mail"] | undefined;
4209
+ updateDraftMail?: ModelTypes["Mail"] | undefined;
2413
4210
  };
2414
4211
  ["UpdateNodeResponse"]: {
2415
- updateNode?: GraphQLTypes["Node"] | undefined;
4212
+ updateNode?: ModelTypes["Node"] | undefined;
2416
4213
  };
2417
4214
  ["UpdateProfileResponse"]: {
2418
- updateProfile?: GraphQLTypes["User"] | undefined;
4215
+ updateProfile?: ModelTypes["User"] | undefined;
2419
4216
  };
2420
4217
  ["UploadAnonymousResponse"]: {
2421
- uploadAnonymous?: GraphQLTypes["FileResponse"] | undefined;
4218
+ uploadAnonymous?: ModelTypes["FileResponse"] | undefined;
2422
4219
  };
2423
4220
  ["UploadFileResponse"]: {
2424
- uploadFile?: GraphQLTypes["FileResponse"] | undefined;
4221
+ uploadFile?: ModelTypes["FileResponse"] | undefined;
2425
4222
  };
2426
4223
  ["UploadFileEndResponse"]: {
2427
4224
  uploadFileEnd?: string | undefined;
@@ -2430,91 +4227,94 @@ export declare type ModelTypes = {
2430
4227
  uploadFilePartEnd: boolean;
2431
4228
  };
2432
4229
  ["UploadLiteFileResponse"]: {
2433
- uploadLiteFile: GraphQLTypes["LiteFileResponse"];
4230
+ uploadLiteFile: ModelTypes["LiteFileResponse"];
2434
4231
  };
2435
4232
  ["BlogResponse"]: {
2436
- blogItems: Array<GraphQLTypes["BlogItem"]>;
4233
+ blogItems: Array<ModelTypes["BlogItem"]>;
2437
4234
  };
2438
4235
  ["DbConfigResponse"]: {
2439
- json: GraphQLTypes["Json"];
4236
+ json: ModelTypes["Json"];
2440
4237
  };
2441
4238
  ["DbGetResponse"]: {
2442
- json?: GraphQLTypes["Json"] | undefined;
4239
+ json?: ModelTypes["Json"] | undefined;
2443
4240
  };
2444
4241
  ["DbSearchResponse"]: {
2445
- json: Array<GraphQLTypes["Json"]>;
4242
+ json: Array<ModelTypes["Json"]>;
2446
4243
  };
2447
4244
  ["DeletedMailsResponse"]: {
2448
- deletedMails: Array<GraphQLTypes["Mail"]>;
4245
+ deletedMails: Array<ModelTypes["Mail"]>;
2449
4246
  };
2450
4247
  ["DeletedNodesResponse"]: {
2451
- deletedNodes: Array<GraphQLTypes["Node"]>;
4248
+ deletedNodes: Array<ModelTypes["Node"]>;
2452
4249
  };
2453
4250
  ["FaqResponse"]: {
2454
- faq: Array<GraphQLTypes["FaqItem"]>;
4251
+ faq: Array<ModelTypes["FaqItem"]>;
2455
4252
  };
2456
4253
  ["FileQueryResponse"]: {
2457
- file?: GraphQLTypes["File"] | undefined;
4254
+ file?: ModelTypes["File"] | undefined;
2458
4255
  };
2459
4256
  ["FileContentResponse"]: {
2460
- file?: GraphQLTypes["FileContent"] | undefined;
4257
+ file?: ModelTypes["FileContent"] | undefined;
4258
+ };
4259
+ ["JwtResponse"]: {
4260
+ jwt: string;
2461
4261
  };
2462
4262
  ["QueryMailResponse"]: {
2463
- mail?: GraphQLTypes["Mail"] | undefined;
4263
+ mail?: ModelTypes["Mail"] | undefined;
2464
4264
  };
2465
4265
  ["NodeResponse"]: {
2466
- node?: GraphQLTypes["Node"] | undefined;
4266
+ node?: ModelTypes["Node"] | undefined;
2467
4267
  };
2468
4268
  ["NodesSharedWithMeResponse"]: {
2469
- nodesSharedWithMe: Array<GraphQLTypes["Node"]>;
4269
+ nodesSharedWithMe: Array<ModelTypes["Node"]>;
2470
4270
  };
2471
4271
  ["PaymentInfosResponse"]: {
2472
- paymentInfos?: GraphQLTypes["PaymentInfos"] | undefined;
4272
+ paymentInfos?: ModelTypes["PaymentInfos"] | undefined;
2473
4273
  };
2474
4274
  ["PlanResponse"]: {
2475
- plan: Array<GraphQLTypes["Plan"]>;
4275
+ plan: Array<ModelTypes["Plan"]>;
2476
4276
  };
2477
4277
  ["SharedNodesResponse"]: {
2478
- sharedNodes: Array<GraphQLTypes["Node"]>;
4278
+ sharedNodes: Array<ModelTypes["Node"]>;
2479
4279
  };
2480
4280
  ["UnreadReceivedMailsCountResponse"]: {
2481
4281
  count: number;
2482
4282
  };
2483
4283
  ["UserResponse"]: {
2484
- user?: GraphQLTypes["User"] | undefined;
4284
+ user?: ModelTypes["User"] | undefined;
2485
4285
  };
2486
4286
  ["UserListResponse"]: {
2487
- userList: Array<GraphQLTypes["User"]>;
4287
+ userList: Array<ModelTypes["User"]>;
2488
4288
  };
2489
4289
  ["TemporaryUser"]: {
2490
4290
  id: string;
2491
- mails: Array<GraphQLTypes["MailIntegrity"]>;
2492
- draftMails: Array<GraphQLTypes["MailIntegrityDraft"]>;
4291
+ mails: Array<ModelTypes["MailIntegrity"]>;
4292
+ draftMails: Array<ModelTypes["MailIntegrityDraft"]>;
2493
4293
  email?: string | undefined;
2494
4294
  };
2495
4295
  ["User"]: {
2496
4296
  id: string;
2497
- deletedAt?: GraphQLTypes["DateTime"] | undefined;
2498
- lang: GraphQLTypes["Lang"];
2499
- reportSent: Array<GraphQLTypes["Report"]>;
2500
- godFather?: GraphQLTypes["User"] | undefined;
2501
- godChildren: Array<GraphQLTypes["User"]>;
2502
- infos: GraphQLTypes["UserInfos"];
4297
+ deletedAt?: ModelTypes["DateTime"] | undefined;
4298
+ lang: ModelTypes["Lang"];
4299
+ reportSent: Array<ModelTypes["Report"]>;
4300
+ godFather?: ModelTypes["User"] | undefined;
4301
+ godChildren: Array<ModelTypes["User"]>;
4302
+ infos: ModelTypes["UserInfos"];
2503
4303
  infosId: string;
2504
4304
  firstname: string;
2505
4305
  lastname: string;
2506
4306
  email: string;
2507
4307
  phone: string;
2508
- lastLogin: GraphQLTypes["DateTime"];
2509
- role: GraphQLTypes["UserRole"];
2510
- sessions: Array<GraphQLTypes["UserSession"]>;
2511
- createdAt: GraphQLTypes["DateTime"];
2512
- receivedMails: Array<GraphQLTypes["Mail"]>;
2513
- waitingReceivedMails: Array<GraphQLTypes["WaitingReceivedMail"]>;
2514
- sentMails: Array<GraphQLTypes["Mail"]>;
2515
- draftMails: Array<GraphQLTypes["Mail"]>;
2516
- appSettings?: GraphQLTypes["UserAppSettings"] | undefined;
2517
- applications: Array<GraphQLTypes["ApplicationsOnUsers"]>;
4308
+ lastLogin: ModelTypes["DateTime"];
4309
+ role: ModelTypes["UserRole"];
4310
+ sessions: Array<ModelTypes["UserSession"]>;
4311
+ createdAt: ModelTypes["DateTime"];
4312
+ receivedMails: Array<ModelTypes["Mail"]>;
4313
+ waitingReceivedMails: Array<ModelTypes["WaitingReceivedMail"]>;
4314
+ sentMails: Array<ModelTypes["Mail"]>;
4315
+ draftMails: Array<ModelTypes["Mail"]>;
4316
+ appSettings?: ModelTypes["UserAppSettings"] | undefined;
4317
+ applications: Array<ModelTypes["ApplicationsOnUsers"]>;
2518
4318
  publicKey: string;
2519
4319
  };
2520
4320
  ["UserAppNotifications"]: {
@@ -2522,7 +4322,7 @@ export declare type ModelTypes = {
2522
4322
  enableAll: boolean;
2523
4323
  mail: boolean;
2524
4324
  cloud: boolean;
2525
- disableAllUntil?: GraphQLTypes["DateTime"] | undefined;
4325
+ disableAllUntil?: ModelTypes["DateTime"] | undefined;
2526
4326
  };
2527
4327
  ["UserAppSettings"]: {
2528
4328
  id: string;
@@ -2538,35 +4338,35 @@ export declare type ModelTypes = {
2538
4338
  phones: Array<string>;
2539
4339
  lastname: string;
2540
4340
  firstname: string;
2541
- user?: GraphQLTypes["User"] | undefined;
2542
- updatedAt: GraphQLTypes["DateTime"];
4341
+ user?: ModelTypes["User"] | undefined;
4342
+ updatedAt: ModelTypes["DateTime"];
2543
4343
  };
2544
4344
  ["UserSession"]: {
2545
4345
  id: string;
2546
- appSessions: Array<GraphQLTypes["AppSession"]>;
2547
- lastActivity?: GraphQLTypes["DateTime"] | undefined;
4346
+ appSessions: Array<ModelTypes["AppSession"]>;
4347
+ lastActivity?: ModelTypes["DateTime"] | undefined;
2548
4348
  userAgent?: string | undefined;
2549
4349
  ip?: string | undefined;
2550
4350
  city?: string | undefined;
2551
4351
  country?: string | undefined;
2552
- createdAt: GraphQLTypes["DateTime"];
4352
+ createdAt: ModelTypes["DateTime"];
2553
4353
  };
2554
4354
  ["WaitingReceivedMail"]: {
2555
- sender: GraphQLTypes["User"];
2556
- date: GraphQLTypes["DateTime"];
2557
- recipients: Array<GraphQLTypes["User"]>;
2558
- temporaryRecipients: Array<GraphQLTypes["TemporaryUser"]>;
4355
+ sender: ModelTypes["User"];
4356
+ date: ModelTypes["DateTime"];
4357
+ recipients: Array<ModelTypes["User"]>;
4358
+ temporaryRecipients: Array<ModelTypes["TemporaryUser"]>;
2559
4359
  attachmentsCount: number;
2560
4360
  };
2561
4361
  ["PaymentInfos"]: {
2562
4362
  hostedUrl: string;
2563
- currentSubscription: GraphQLTypes["RecurlySubscription"];
2564
- invoices: Array<GraphQLTypes["RecurlyInvoices"]>;
4363
+ currentSubscription: ModelTypes["RecurlySubscription"];
4364
+ invoices: Array<ModelTypes["RecurlyInvoices"]>;
2565
4365
  };
2566
4366
  ["RecurlyInvoices"]: {
2567
4367
  pdf: string;
2568
- date: GraphQLTypes["DateTime"];
2569
- due: GraphQLTypes["DateTime"];
4368
+ date: ModelTypes["DateTime"];
4369
+ due: ModelTypes["DateTime"];
2570
4370
  status: string;
2571
4371
  total: number;
2572
4372
  name: string;
@@ -2574,16 +4374,16 @@ export declare type ModelTypes = {
2574
4374
  };
2575
4375
  ["RecurlySubscription"]: {
2576
4376
  autorenew: boolean;
2577
- activatedAt?: GraphQLTypes["DateTime"] | undefined;
2578
- currentPeriodEndsAt?: GraphQLTypes["DateTime"] | undefined;
2579
- currentPeriodStartedAt?: GraphQLTypes["DateTime"] | undefined;
2580
- canceledAt?: GraphQLTypes["DateTime"] | undefined;
2581
- createdAt?: GraphQLTypes["DateTime"] | undefined;
2582
- expiresAt?: GraphQLTypes["DateTime"] | undefined;
2583
- pausedAt?: GraphQLTypes["DateTime"] | undefined;
2584
- trialEndsAt?: GraphQLTypes["DateTime"] | undefined;
2585
- trialStartedAt?: GraphQLTypes["DateTime"] | undefined;
2586
- updatedAt?: GraphQLTypes["DateTime"] | undefined;
4377
+ activatedAt?: ModelTypes["DateTime"] | undefined;
4378
+ currentPeriodEndsAt?: ModelTypes["DateTime"] | undefined;
4379
+ currentPeriodStartedAt?: ModelTypes["DateTime"] | undefined;
4380
+ canceledAt?: ModelTypes["DateTime"] | undefined;
4381
+ createdAt?: ModelTypes["DateTime"] | undefined;
4382
+ expiresAt?: ModelTypes["DateTime"] | undefined;
4383
+ pausedAt?: ModelTypes["DateTime"] | undefined;
4384
+ trialEndsAt?: ModelTypes["DateTime"] | undefined;
4385
+ trialStartedAt?: ModelTypes["DateTime"] | undefined;
4386
+ updatedAt?: ModelTypes["DateTime"] | undefined;
2587
4387
  state: string;
2588
4388
  collectionMethod: string;
2589
4389
  plan?: string | undefined;
@@ -2594,77 +4394,78 @@ export declare type ModelTypes = {
2594
4394
  nodes: Array<string>;
2595
4395
  };
2596
4396
  ["Query"]: {
2597
- appNotifications?: GraphQLTypes["AppNotificationsResult"] | undefined;
2598
- blog?: GraphQLTypes["BlogResult"] | undefined;
2599
- dbConfig?: GraphQLTypes["DbConfigResult"] | undefined;
2600
- dbGet?: GraphQLTypes["DbGetResult"] | undefined;
2601
- dbSearch?: GraphQLTypes["DbSearchResult"] | undefined;
2602
- deletedMails?: GraphQLTypes["DeletedMailsResult"] | undefined;
2603
- deletedNodes?: GraphQLTypes["DeletedNodesResult"] | undefined;
2604
- faq?: GraphQLTypes["FaqResult"] | undefined;
2605
- file?: GraphQLTypes["FileResult"] | undefined;
2606
- fileContent?: GraphQLTypes["FileContentResult"] | undefined;
2607
- filesContent?: GraphQLTypes["FilesContentResult"] | undefined;
2608
- filesSharedWithMe: Array<GraphQLTypes["FileSharedContent"]>;
2609
- limits?: GraphQLTypes["LimitsResult"] | undefined;
2610
- mail?: GraphQLTypes["MailResult"] | undefined;
2611
- node?: GraphQLTypes["NodeResult"] | undefined;
2612
- nodesSharedWithMe?: GraphQLTypes["NodesSharedWithMeResult"] | undefined;
2613
- paymentInfos?: GraphQLTypes["PaymentInfosResult"] | undefined;
2614
- plans?: GraphQLTypes["PlansResult"] | undefined;
4397
+ appNotifications?: ModelTypes["AppNotificationsResult"] | undefined;
4398
+ blog?: ModelTypes["BlogResult"] | undefined;
4399
+ dbConfig?: ModelTypes["DbConfigResult"] | undefined;
4400
+ dbGet?: ModelTypes["DbGetResult"] | undefined;
4401
+ dbSearch?: ModelTypes["DbSearchResult"] | undefined;
4402
+ deletedMails?: ModelTypes["DeletedMailsResult"] | undefined;
4403
+ deletedNodes?: ModelTypes["DeletedNodesResult"] | undefined;
4404
+ faq?: ModelTypes["FaqResult"] | undefined;
4405
+ file?: ModelTypes["FileResult"] | undefined;
4406
+ fileContent?: ModelTypes["FileContentResult"] | undefined;
4407
+ filesContent?: ModelTypes["FilesContentResult"] | undefined;
4408
+ filesSharedWithMe: Array<ModelTypes["FileSharedContent"]>;
4409
+ getJwt?: ModelTypes["GetJwtResult"] | undefined;
4410
+ limits?: ModelTypes["LimitsResult"] | undefined;
4411
+ mail?: ModelTypes["MailResult"] | undefined;
4412
+ node?: ModelTypes["NodeResult"] | undefined;
4413
+ nodesSharedWithMe?: ModelTypes["NodesSharedWithMeResult"] | undefined;
4414
+ paymentInfos?: ModelTypes["PaymentInfosResult"] | undefined;
4415
+ plans?: ModelTypes["PlansResult"] | undefined;
2615
4416
  serverTime?: number | undefined;
2616
- sharedNodes?: GraphQLTypes["SharedNodesResult"] | undefined;
2617
- unreadReceivedMailsCount?: GraphQLTypes["UnreadReceivedMailsCountResult"] | undefined;
2618
- user?: GraphQLTypes["UserResult"] | undefined;
2619
- userList?: GraphQLTypes["UserListResult"] | undefined;
4417
+ sharedNodes?: ModelTypes["SharedNodesResult"] | undefined;
4418
+ unreadReceivedMailsCount?: ModelTypes["UnreadReceivedMailsCountResult"] | undefined;
4419
+ user?: ModelTypes["UserResult"] | undefined;
4420
+ userList?: ModelTypes["UserListResult"] | undefined;
2620
4421
  };
2621
4422
  ["Mutation"]: {
2622
- addFileToHistory?: GraphQLTypes["AddFileToHistoryResult"] | undefined;
2623
- cancelPayment?: GraphQLTypes["CancelPaymentResult"] | undefined;
2624
- createApplication?: GraphQLTypes["CreateApplicationResult"] | undefined;
2625
- createDraftMail?: GraphQLTypes["CreateDraftMailResult"] | undefined;
2626
- createFolder?: GraphQLTypes["CreateFolderResult"] | undefined;
2627
- dbConfigMutation?: GraphQLTypes["DbConfigMutationResult"] | undefined;
2628
- dbSet?: GraphQLTypes["DbSetResult"] | undefined;
4423
+ addFileToHistory?: ModelTypes["AddFileToHistoryResult"] | undefined;
4424
+ cancelPayment?: ModelTypes["CancelPaymentResult"] | undefined;
4425
+ createApplication?: ModelTypes["CreateApplicationResult"] | undefined;
4426
+ createDraftMail?: ModelTypes["CreateDraftMailResult"] | undefined;
4427
+ createFolder?: ModelTypes["CreateFolderResult"] | undefined;
4428
+ dbConfigMutation?: ModelTypes["DbConfigMutationResult"] | undefined;
4429
+ dbSet?: ModelTypes["DbSetResult"] | undefined;
2629
4430
  deleteAllData: boolean;
2630
- deleteDraftMail?: GraphQLTypes["DeleteDraftMailResult"] | undefined;
2631
- deleteFile?: GraphQLTypes["DeleteFileResult"] | undefined;
2632
- deleteMail?: GraphQLTypes["DeleteMailResult"] | undefined;
2633
- deleteMailTrash?: GraphQLTypes["DeleteMailTrashResult"] | undefined;
2634
- deleteNode?: GraphQLTypes["DeleteNodeResult"] | undefined;
2635
- deleteNodeCloudTrash?: GraphQLTypes["DeleteNodeCloudTrashResult"] | undefined;
2636
- deleteNodeSharing?: GraphQLTypes["DeleteNodeSharingResult"] | undefined;
2637
- deleteUser?: GraphQLTypes["DeleteUserResult"] | undefined;
2638
- duplicateNode?: GraphQLTypes["DuplicateNodeResult"] | undefined;
2639
- emptyCloudTrash?: GraphQLTypes["EmptyCloudTrashResult"] | undefined;
2640
- emptyMailTrash?: GraphQLTypes["EmptyMailTrashResult"] | undefined;
2641
- logout?: GraphQLTypes["LogoutResult"] | undefined;
2642
- moveNodes?: GraphQLTypes["MoveNodesResult"] | undefined;
2643
- pay?: GraphQLTypes["PayResult"] | undefined;
2644
- readMail?: GraphQLTypes["ReadMailResult"] | undefined;
2645
- recoverMail?: GraphQLTypes["RecoverMailResult"] | undefined;
2646
- recoverNode?: GraphQLTypes["RecoverNodeResult"] | undefined;
2647
- saveInCloud?: GraphQLTypes["SaveInCloudResult"] | undefined;
2648
- sendAppMail?: GraphQLTypes["SendAppMailResult"] | undefined;
2649
- sendDraftMail?: GraphQLTypes["SendDraftMailResult"] | undefined;
2650
- sendOneMail?: GraphQLTypes["SendOneMailResult"] | undefined;
2651
- sendReport?: GraphQLTypes["SendReportResult"] | undefined;
2652
- shareFileInHistory?: GraphQLTypes["ShareFileInHistoryResult"] | undefined;
2653
- shareNode?: GraphQLTypes["ShareNodeResult"] | undefined;
2654
- shareNodeFinish?: GraphQLTypes["ShareNodeFinishResult"] | undefined;
2655
- unreadMail?: GraphQLTypes["UnreadMailResult"] | undefined;
2656
- updateAppNotifications?: GraphQLTypes["UpdateAppNotificationsResult"] | undefined;
2657
- updateAppSettings?: GraphQLTypes["UpdateAppSettingsResult"] | undefined;
2658
- updateAutoDisconnectDelay?: GraphQLTypes["UpdateAutoDisconnectDelayResult"] | undefined;
2659
- updateDraftMail?: GraphQLTypes["UpdateDraftMailResult"] | undefined;
2660
- updateNode?: GraphQLTypes["UpdateNodeResult"] | undefined;
2661
- updateProfile?: GraphQLTypes["UpdateProfileResult"] | undefined;
2662
- uploadAnonymous?: GraphQLTypes["FileResponse"] | undefined;
2663
- uploadFile?: GraphQLTypes["UploadFileResult"] | undefined;
2664
- uploadFileEnd?: GraphQLTypes["UploadFileEndResult"] | undefined;
2665
- uploadFilePartEnd?: GraphQLTypes["UploadFilePartEndResult"] | undefined;
2666
- uploadLiteFile?: GraphQLTypes["UploadLiteFileResult"] | undefined;
2667
- changeUserPlan?: GraphQLTypes["ChangeUserPlanResult"] | undefined;
4431
+ deleteDraftMail?: ModelTypes["DeleteDraftMailResult"] | undefined;
4432
+ deleteFile?: ModelTypes["DeleteFileResult"] | undefined;
4433
+ deleteMail?: ModelTypes["DeleteMailResult"] | undefined;
4434
+ deleteMailTrash?: ModelTypes["DeleteMailTrashResult"] | undefined;
4435
+ deleteNode?: ModelTypes["DeleteNodeResult"] | undefined;
4436
+ deleteNodeCloudTrash?: ModelTypes["DeleteNodeCloudTrashResult"] | undefined;
4437
+ deleteNodeSharing?: ModelTypes["DeleteNodeSharingResult"] | undefined;
4438
+ deleteUser?: ModelTypes["DeleteUserResult"] | undefined;
4439
+ duplicateNode?: ModelTypes["DuplicateNodeResult"] | undefined;
4440
+ emptyCloudTrash?: ModelTypes["EmptyCloudTrashResult"] | undefined;
4441
+ emptyMailTrash?: ModelTypes["EmptyMailTrashResult"] | undefined;
4442
+ logout?: ModelTypes["LogoutResult"] | undefined;
4443
+ moveNodes?: ModelTypes["MoveNodesResult"] | undefined;
4444
+ pay?: ModelTypes["PayResult"] | undefined;
4445
+ readMail?: ModelTypes["ReadMailResult"] | undefined;
4446
+ recoverMail?: ModelTypes["RecoverMailResult"] | undefined;
4447
+ recoverNode?: ModelTypes["RecoverNodeResult"] | undefined;
4448
+ saveInCloud?: ModelTypes["SaveInCloudResult"] | undefined;
4449
+ sendAppMail?: ModelTypes["SendAppMailResult"] | undefined;
4450
+ sendDraftMail?: ModelTypes["SendDraftMailResult"] | undefined;
4451
+ sendOneMail?: ModelTypes["SendOneMailResult"] | undefined;
4452
+ sendReport?: ModelTypes["SendReportResult"] | undefined;
4453
+ shareFileInHistory?: ModelTypes["ShareFileInHistoryResult"] | undefined;
4454
+ shareNode?: ModelTypes["ShareNodeResult"] | undefined;
4455
+ shareNodeFinish?: ModelTypes["ShareNodeFinishResult"] | undefined;
4456
+ unreadMail?: ModelTypes["UnreadMailResult"] | undefined;
4457
+ updateAppNotifications?: ModelTypes["UpdateAppNotificationsResult"] | undefined;
4458
+ updateAppSettings?: ModelTypes["UpdateAppSettingsResult"] | undefined;
4459
+ updateAutoDisconnectDelay?: ModelTypes["UpdateAutoDisconnectDelayResult"] | undefined;
4460
+ updateDraftMail?: ModelTypes["UpdateDraftMailResult"] | undefined;
4461
+ updateNode?: ModelTypes["UpdateNodeResult"] | undefined;
4462
+ updateProfile?: ModelTypes["UpdateProfileResult"] | undefined;
4463
+ uploadAnonymous?: ModelTypes["FileResponse"] | undefined;
4464
+ uploadFile?: ModelTypes["UploadFileResult"] | undefined;
4465
+ uploadFileEnd?: ModelTypes["UploadFileEndResult"] | undefined;
4466
+ uploadFilePartEnd?: ModelTypes["UploadFilePartEndResult"] | undefined;
4467
+ uploadLiteFile?: ModelTypes["UploadLiteFileResult"] | undefined;
4468
+ changeUserPlan?: ModelTypes["ChangeUserPlanResult"] | undefined;
2668
4469
  };
2669
4470
  ["Subscription"]: {
2670
4471
  test: boolean;
@@ -2754,6 +4555,11 @@ export declare type GraphQLTypes = {
2754
4555
  ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2755
4556
  ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2756
4557
  };
4558
+ ["GetJwtResult"]: {
4559
+ __typename: "JwtResponse" | "ErrorAccessDenied";
4560
+ ["...on JwtResponse"]: "__union" & GraphQLTypes["JwtResponse"];
4561
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
4562
+ };
2757
4563
  ["LimitsResult"]: {
2758
4564
  __typename: "QueryLimits" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorNotExist" | "ErrorLimit";
2759
4565
  ["...on QueryLimits"]: "__union" & GraphQLTypes["QueryLimits"];
@@ -3774,6 +5580,10 @@ export declare type GraphQLTypes = {
3774
5580
  __typename: "FileContentResponse";
3775
5581
  file?: GraphQLTypes["FileContent"] | undefined;
3776
5582
  };
5583
+ ["JwtResponse"]: {
5584
+ __typename: "JwtResponse";
5585
+ jwt: string;
5586
+ };
3777
5587
  ["QueryMailResponse"]: {
3778
5588
  __typename: "QueryMailResponse";
3779
5589
  mail?: GraphQLTypes["Mail"] | undefined;
@@ -3942,6 +5752,7 @@ export declare type GraphQLTypes = {
3942
5752
  fileContent?: GraphQLTypes["FileContentResult"] | undefined;
3943
5753
  filesContent?: GraphQLTypes["FilesContentResult"] | undefined;
3944
5754
  filesSharedWithMe: Array<GraphQLTypes["FileSharedContent"]>;
5755
+ getJwt?: GraphQLTypes["GetJwtResult"] | undefined;
3945
5756
  limits?: GraphQLTypes["LimitsResult"] | undefined;
3946
5757
  mail?: GraphQLTypes["MailResult"] | undefined;
3947
5758
  node?: GraphQLTypes["NodeResult"] | undefined;
@@ -4058,4 +5869,25 @@ export declare enum PayInputType {
4058
5869
  secure = "secure",
4059
5870
  classic = "classic"
4060
5871
  }
5872
+ declare type ZEUS_VARIABLES = {
5873
+ ["BigInt"]: ValueTypes["BigInt"];
5874
+ ["DateTime"]: ValueTypes["DateTime"];
5875
+ ["Json"]: ValueTypes["Json"];
5876
+ ["Bytes"]: ValueTypes["Bytes"];
5877
+ ["Lang"]: ValueTypes["Lang"];
5878
+ ["PlanKind"]: ValueTypes["PlanKind"];
5879
+ ["UserRole"]: ValueTypes["UserRole"];
5880
+ ["MailType"]: ValueTypes["MailType"];
5881
+ ["Rights"]: ValueTypes["Rights"];
5882
+ ["NodeType"]: ValueTypes["NodeType"];
5883
+ ["FileContentType"]: ValueTypes["FileContentType"];
5884
+ ["MailFileInput"]: ValueTypes["MailFileInput"];
5885
+ ["MailRecipientInput"]: ValueTypes["MailRecipientInput"];
5886
+ ["NameKeyInput"]: ValueTypes["NameKeyInput"];
5887
+ ["PayInput"]: ValueTypes["PayInput"];
5888
+ ["PayInputType"]: ValueTypes["PayInputType"];
5889
+ ["ShareFileInHistoryInput"]: ValueTypes["ShareFileInHistoryInput"];
5890
+ ["ShareFileKeyInput"]: ValueTypes["ShareFileKeyInput"];
5891
+ ["ShareNodesInput"]: ValueTypes["ShareNodesInput"];
5892
+ };
4061
5893
  export {};