@secrecy/lib 1.0.0-dev.46 → 1.0.0-dev.49
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.
- package/dist/BaseClient.d.ts +0 -4
- package/dist/BaseClient.js +1 -1
- package/dist/client/convert/node.js +5 -1
- package/dist/client/index.d.ts +2 -4
- package/dist/client/index.js +78 -75
- package/dist/client/types/Node.d.ts +5 -0
- package/dist/client/types/Node.js +1 -1
- package/dist/client/types/selectors.d.ts +16 -0
- package/dist/client/types/selectors.js +5 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/zeus/const.js +16 -12
- package/dist/zeus/index.d.ts +2431 -607
- package/dist/zeus/index.js +71 -47
- package/package.json +17 -16
package/dist/zeus/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Ops } from "./const.js";
|
|
2
2
|
export declare const HOST = "http://localhost:4000/graphql";
|
|
3
|
+
export declare const HEADERS: {};
|
|
3
4
|
export declare const apiFetch: (options: [input: RequestInfo | URL, init?: RequestInit | undefined]) => (query: string, variables?: Record<string, unknown>) => Promise<Record<string, any> | undefined>;
|
|
4
5
|
export declare const apiSubscription: (options: chainOptions) => (query: string) => {
|
|
5
6
|
ws: WebSocket;
|
|
@@ -12,19 +13,35 @@ export declare const InternalsBuildQuery: ({ ops, props, returns, options, scala
|
|
|
12
13
|
props: AllTypesPropsType;
|
|
13
14
|
returns: ReturnTypesType;
|
|
14
15
|
ops: Operations;
|
|
15
|
-
options?: OperationOptions
|
|
16
|
+
options?: OperationOptions | undefined;
|
|
16
17
|
scalars?: ScalarDefinition | undefined;
|
|
17
|
-
}) => (k: string, o: InputValueType | VType, p?: string, root?: boolean
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export declare const
|
|
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>;
|
|
22
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?: {
|
|
23
35
|
operationOptions?: OperationOptions;
|
|
24
36
|
scalars?: ScalarDefinition;
|
|
25
37
|
}) => string;
|
|
38
|
+
export declare const ZeusSelect: <T>() => SelectionFunction<T>;
|
|
26
39
|
export declare const Selector: <T extends keyof ValueTypes>(key: T) => SelectionFunction<ValueTypes[T]>;
|
|
27
|
-
export declare const
|
|
40
|
+
export declare const TypeFromSelector: <T extends keyof ValueTypes>(key: T) => SelectionFunction<ValueTypes[T]>;
|
|
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>>;
|
|
44
|
+
export declare const ZeusScalars: SelectionFunction<ScalarCoders>;
|
|
28
45
|
export declare const decodeScalarsInResponse: <O extends Operations>({ response, scalars, returns, ops, initialZeusQuery, initialOp }: {
|
|
29
46
|
ops: O;
|
|
30
47
|
response: any;
|
|
@@ -71,12 +88,11 @@ declare type websocketOptions = typeof WebSocket extends new (...args: infer R)
|
|
|
71
88
|
export declare type chainOptions = [fetchOptions[0], fetchOptions[1] & {
|
|
72
89
|
websocket?: websocketOptions;
|
|
73
90
|
}] | [fetchOptions[0]];
|
|
74
|
-
export declare type FetchFunction = (query: string, variables?: Record<string,
|
|
91
|
+
export declare type FetchFunction = (query: string, variables?: Record<string, unknown>) => Promise<any>;
|
|
75
92
|
export declare type SubscriptionFunction = (query: string) => any;
|
|
76
93
|
declare type NotUndefined<T> = T extends undefined ? never : T;
|
|
77
94
|
export declare type ResolverType<F> = NotUndefined<F extends [infer ARGS, any] ? ARGS : undefined>;
|
|
78
|
-
export declare type OperationOptions
|
|
79
|
-
variables?: VariableInput<Z>;
|
|
95
|
+
export declare type OperationOptions = {
|
|
80
96
|
operationName?: string;
|
|
81
97
|
};
|
|
82
98
|
export declare type ScalarCoder = Record<string, (s: unknown) => string>;
|
|
@@ -93,7 +109,7 @@ export declare class GraphQLError extends Error {
|
|
|
93
109
|
}
|
|
94
110
|
export declare type GenericOperation<O> = O extends keyof typeof Ops ? typeof Ops[O] : never;
|
|
95
111
|
export declare type ThunderGraphQLOptions<SCLR extends ScalarDefinition> = {
|
|
96
|
-
scalars?: SCLR;
|
|
112
|
+
scalars?: SCLR | ScalarCoders;
|
|
97
113
|
};
|
|
98
114
|
export declare const PrepareScalarPaths: ({ ops, returns }: {
|
|
99
115
|
returns: ReturnTypesType;
|
|
@@ -103,16 +119,17 @@ export declare const PrepareScalarPaths: ({ ops, returns }: {
|
|
|
103
119
|
} | undefined;
|
|
104
120
|
export declare const purifyGraphQLKey: (k: string) => string;
|
|
105
121
|
export declare const ResolveFromPath: (props: AllTypesPropsType, returns: ReturnTypesType, ops: Operations) => (path: string) => "enum" | "not" | `scalar.${string}`;
|
|
106
|
-
export declare const InternalArgsBuilt: ({ props, ops, returns, scalars,
|
|
122
|
+
export declare const InternalArgsBuilt: ({ props, ops, returns, scalars, vars }: {
|
|
107
123
|
props: AllTypesPropsType;
|
|
108
124
|
returns: ReturnTypesType;
|
|
109
125
|
ops: Operations;
|
|
110
|
-
variables?: Record<string, unknown> | undefined;
|
|
111
126
|
scalars?: ScalarDefinition | undefined;
|
|
127
|
+
vars: Array<{
|
|
128
|
+
name: string;
|
|
129
|
+
graphQLType: string;
|
|
130
|
+
}>;
|
|
112
131
|
}) => (a: ZeusArgsType, p?: string, root?: boolean) => string;
|
|
113
|
-
export declare const resolverFor: <X, T extends keyof
|
|
114
|
-
export declare type SelectionFunction<V> = <T>(t: T | V) => T;
|
|
115
|
-
export declare const ZeusSelect: <T>() => SelectionFunction<T>;
|
|
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;
|
|
116
133
|
export declare type UnwrapPromise<T> = T extends Promise<infer R> ? R : T;
|
|
117
134
|
export declare type ZeusState<T extends (...args: any[]) => Promise<any>> = NonNullable<UnwrapPromise<ReturnType<T>>>;
|
|
118
135
|
export declare type ZeusHook<T extends (...args: any[]) => Record<string, (...args: any[]) => Promise<any>>, N extends keyof ReturnType<T>> = ZeusState<ReturnType<T>[N]>;
|
|
@@ -133,7 +150,7 @@ declare type IsScalar<S, SCLR extends ScalarDefinition> = S extends "scalar" & {
|
|
|
133
150
|
} ? T extends keyof SCLR ? SCLR[T]["decode"] extends (s: unknown) => unknown ? ReturnType<SCLR[T]["decode"]> : unknown : unknown : S;
|
|
134
151
|
declare type IsArray<T, U, SCLR extends ScalarDefinition> = T extends Array<infer R> ? InputType<R, U, SCLR>[] : InputType<T, U, SCLR>;
|
|
135
152
|
declare type FlattenArray<T> = T extends Array<infer R> ? R : T;
|
|
136
|
-
declare type BaseZeusResolver = boolean | 1 | string
|
|
153
|
+
declare type BaseZeusResolver = boolean | 1 | string | Variable<any, string>;
|
|
137
154
|
declare type IsInterfaced<SRC extends DeepAnify<DST>, DST, SCLR extends ScalarDefinition> = FlattenArray<SRC> extends ZEUS_INTERFACES | ZEUS_UNIONS ? {
|
|
138
155
|
[P in keyof SRC]: SRC[P] extends "__union" & infer R ? P extends keyof DST ? IsArray<R, "__typename" extends keyof DST ? DST[P] & {
|
|
139
156
|
__typename: true;
|
|
@@ -166,21 +183,57 @@ export declare type SubscriptionToGraphQL<Z, T, SCLR extends ScalarDefinition> =
|
|
|
166
183
|
}) => void) => void;
|
|
167
184
|
open: () => void;
|
|
168
185
|
};
|
|
186
|
+
export declare type FromSelector<SELECTOR, NAME extends keyof GraphQLTypes, SCLR extends ScalarDefinition = {}> = InputType<GraphQLTypes[NAME], SELECTOR, SCLR>;
|
|
169
187
|
export declare type ScalarResolver = {
|
|
170
188
|
encode?: (s: unknown) => string;
|
|
171
189
|
decode?: (s: unknown) => unknown;
|
|
172
190
|
};
|
|
173
|
-
export declare
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
191
|
+
export declare type SelectionFunction<V> = <T>(t: T | V) => T;
|
|
192
|
+
declare type BuiltInVariableTypes = {
|
|
193
|
+
["String"]: string;
|
|
194
|
+
["Int"]: number;
|
|
195
|
+
["Float"]: number;
|
|
196
|
+
["ID"]: unknown;
|
|
197
|
+
["Boolean"]: boolean;
|
|
198
|
+
};
|
|
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];
|
|
177
214
|
};
|
|
178
|
-
export declare type
|
|
179
|
-
|
|
180
|
-
|
|
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;
|
|
181
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>;
|
|
182
229
|
declare type ZEUS_INTERFACES = GraphQLTypes["ErrorBase"] | GraphQLTypes["FileContentBase"];
|
|
183
|
-
declare type
|
|
230
|
+
export declare type ScalarCoders = {
|
|
231
|
+
BigInt?: ScalarResolver;
|
|
232
|
+
DateTime?: ScalarResolver;
|
|
233
|
+
Json?: ScalarResolver;
|
|
234
|
+
Bytes?: ScalarResolver;
|
|
235
|
+
};
|
|
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"];
|
|
184
237
|
export declare type ValueTypes = {
|
|
185
238
|
["BigInt"]: unknown;
|
|
186
239
|
["DateTime"]: unknown;
|
|
@@ -257,8 +310,8 @@ export declare type ValueTypes = {
|
|
|
257
310
|
["...on ErrorNotFound"]: ValueTypes["ErrorNotFound"];
|
|
258
311
|
__typename?: boolean | `@${string}`;
|
|
259
312
|
}>;
|
|
260
|
-
["
|
|
261
|
-
["...on
|
|
313
|
+
["GetJwtResult"]: AliasType<{
|
|
314
|
+
["...on JwtResponse"]: ValueTypes["JwtResponse"];
|
|
262
315
|
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
263
316
|
__typename?: boolean | `@${string}`;
|
|
264
317
|
}>;
|
|
@@ -597,7 +650,9 @@ export declare type ValueTypes = {
|
|
|
597
650
|
keyPair?: ValueTypes["AppKeyPair"];
|
|
598
651
|
sessions?: ValueTypes["AppSession"];
|
|
599
652
|
app?: ValueTypes["Application"];
|
|
653
|
+
appId?: boolean | `@${string}`;
|
|
600
654
|
user?: ValueTypes["User"];
|
|
655
|
+
userId?: boolean | `@${string}`;
|
|
601
656
|
settings?: ValueTypes["UserAppSettings"];
|
|
602
657
|
filesAccesses?: ValueTypes["FileAccess"];
|
|
603
658
|
filesSharedAccesses?: ValueTypes["FileAccess"];
|
|
@@ -872,52 +927,47 @@ export declare type ValueTypes = {
|
|
|
872
927
|
mail?: ValueTypes["Mail"];
|
|
873
928
|
__typename?: boolean | `@${string}`;
|
|
874
929
|
}>;
|
|
875
|
-
["FolderSize"]: AliasType<{
|
|
876
|
-
size?: boolean | `@${string}`;
|
|
877
|
-
sizeBefore?: boolean | `@${string}`;
|
|
878
|
-
__typename?: boolean | `@${string}`;
|
|
879
|
-
}>;
|
|
880
930
|
["MailFileInput"]: {
|
|
881
|
-
id: string
|
|
882
|
-
name: string
|
|
883
|
-
fileKey: string
|
|
931
|
+
id: string | Variable<any, string>;
|
|
932
|
+
name: string | Variable<any, string>;
|
|
933
|
+
fileKey: string | Variable<any, string>;
|
|
884
934
|
};
|
|
885
935
|
["MailRecipientInput"]: {
|
|
886
|
-
body: string
|
|
887
|
-
subject: string
|
|
888
|
-
recipientId: string
|
|
889
|
-
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>;
|
|
890
940
|
};
|
|
891
941
|
["NameKeyInput"]: {
|
|
892
|
-
id: string
|
|
893
|
-
nameKey: string
|
|
894
|
-
files: Array<ValueTypes["ShareFileKeyInput"]>;
|
|
942
|
+
id: string | Variable<any, string>;
|
|
943
|
+
nameKey: string | Variable<any, string>;
|
|
944
|
+
files: Array<ValueTypes["ShareFileKeyInput"]> | Variable<any, string>;
|
|
895
945
|
};
|
|
896
946
|
["PayInput"]: {
|
|
897
|
-
type: ValueTypes["PayInputType"]
|
|
898
|
-
token: string
|
|
899
|
-
firstName: string
|
|
900
|
-
lastName: string
|
|
901
|
-
street: string
|
|
902
|
-
postalCode: string
|
|
903
|
-
city: string
|
|
904
|
-
country: string
|
|
905
|
-
number: string
|
|
906
|
-
month: string
|
|
907
|
-
year: string
|
|
908
|
-
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>;
|
|
909
959
|
};
|
|
910
960
|
["PayInputType"]: PayInputType;
|
|
911
961
|
["ShareFileInHistoryInput"]: {
|
|
912
|
-
fileId: string
|
|
913
|
-
users: Array<ValueTypes["ShareFileKeyInput"]>;
|
|
962
|
+
fileId: string | Variable<any, string>;
|
|
963
|
+
users: Array<ValueTypes["ShareFileKeyInput"]> | Variable<any, string>;
|
|
914
964
|
};
|
|
915
965
|
["ShareFileKeyInput"]: {
|
|
916
|
-
id: string
|
|
917
|
-
key: string
|
|
966
|
+
id: string | Variable<any, string>;
|
|
967
|
+
key: string | Variable<any, string>;
|
|
918
968
|
};
|
|
919
969
|
["ShareNodesInput"]: {
|
|
920
|
-
nodes: Array<ValueTypes["NameKeyInput"]>;
|
|
970
|
+
nodes: Array<ValueTypes["NameKeyInput"]> | Variable<any, string>;
|
|
921
971
|
};
|
|
922
972
|
["Limits"]: AliasType<{
|
|
923
973
|
downloadBandwidth?: boolean | `@${string}`;
|
|
@@ -973,6 +1023,7 @@ export declare type ValueTypes = {
|
|
|
973
1023
|
deletedAt?: boolean | `@${string}`;
|
|
974
1024
|
files?: ValueTypes["FilesOnMails"];
|
|
975
1025
|
mailIntegrity?: ValueTypes["MailIntegrity"];
|
|
1026
|
+
mailIntegrityId?: boolean | `@${string}`;
|
|
976
1027
|
mailIntegrityDraft?: ValueTypes["MailIntegrityDraft"];
|
|
977
1028
|
openedAt?: boolean | `@${string}`;
|
|
978
1029
|
recipient?: ValueTypes["User"];
|
|
@@ -1023,6 +1074,7 @@ export declare type ValueTypes = {
|
|
|
1023
1074
|
accesses?: ValueTypes["NodeAccess"];
|
|
1024
1075
|
current?: ValueTypes["File"];
|
|
1025
1076
|
currentFileId?: boolean | `@${string}`;
|
|
1077
|
+
sizes?: ValueTypes["NodeSize"];
|
|
1026
1078
|
access?: ValueTypes["NodeAccess"];
|
|
1027
1079
|
breadcrumb?: ValueTypes["NodeBreadcrumbItem"];
|
|
1028
1080
|
__typename?: boolean | `@${string}`;
|
|
@@ -1048,6 +1100,11 @@ export declare type ValueTypes = {
|
|
|
1048
1100
|
sharedByAppId?: boolean | `@${string}`;
|
|
1049
1101
|
__typename?: boolean | `@${string}`;
|
|
1050
1102
|
}>;
|
|
1103
|
+
["NodeSize"]: AliasType<{
|
|
1104
|
+
size?: boolean | `@${string}`;
|
|
1105
|
+
sizeBefore?: boolean | `@${string}`;
|
|
1106
|
+
__typename?: boolean | `@${string}`;
|
|
1107
|
+
}>;
|
|
1051
1108
|
["Plan"]: AliasType<{
|
|
1052
1109
|
id?: boolean | `@${string}`;
|
|
1053
1110
|
kind?: boolean | `@${string}`;
|
|
@@ -1278,9 +1335,8 @@ export declare type ValueTypes = {
|
|
|
1278
1335
|
file?: ValueTypes["FileContent"];
|
|
1279
1336
|
__typename?: boolean | `@${string}`;
|
|
1280
1337
|
}>;
|
|
1281
|
-
["
|
|
1282
|
-
|
|
1283
|
-
sizeBefore?: boolean | `@${string}`;
|
|
1338
|
+
["JwtResponse"]: AliasType<{
|
|
1339
|
+
jwt?: boolean | `@${string}`;
|
|
1284
1340
|
__typename?: boolean | `@${string}`;
|
|
1285
1341
|
}>;
|
|
1286
1342
|
["QueryMailResponse"]: AliasType<{
|
|
@@ -1334,6 +1390,7 @@ export declare type ValueTypes = {
|
|
|
1334
1390
|
godFather?: ValueTypes["User"];
|
|
1335
1391
|
godChildren?: ValueTypes["User"];
|
|
1336
1392
|
infos?: ValueTypes["UserInfos"];
|
|
1393
|
+
infosId?: boolean | `@${string}`;
|
|
1337
1394
|
firstname?: boolean | `@${string}`;
|
|
1338
1395
|
lastname?: boolean | `@${string}`;
|
|
1339
1396
|
email?: boolean | `@${string}`;
|
|
@@ -1440,78 +1497,84 @@ export declare type ValueTypes = {
|
|
|
1440
1497
|
appNotifications?: ValueTypes["AppNotificationsResult"];
|
|
1441
1498
|
blog?: [
|
|
1442
1499
|
{
|
|
1443
|
-
lang?: ValueTypes["Lang"] | undefined | null
|
|
1500
|
+
lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
|
|
1444
1501
|
},
|
|
1445
1502
|
ValueTypes["BlogResult"]
|
|
1446
1503
|
];
|
|
1447
|
-
dbConfig?: [
|
|
1448
|
-
|
|
1449
|
-
|
|
1504
|
+
dbConfig?: [
|
|
1505
|
+
{
|
|
1506
|
+
appCode: string | Variable<any, string>;
|
|
1507
|
+
},
|
|
1508
|
+
ValueTypes["DbConfigResult"]
|
|
1509
|
+
];
|
|
1450
1510
|
dbGet?: [
|
|
1451
1511
|
{
|
|
1452
|
-
field: string
|
|
1453
|
-
userId?: string | undefined | null
|
|
1512
|
+
field: string | Variable<any, string>;
|
|
1513
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
1454
1514
|
},
|
|
1455
1515
|
ValueTypes["DbGetResult"]
|
|
1456
1516
|
];
|
|
1457
1517
|
dbSearch?: [
|
|
1458
1518
|
{
|
|
1459
|
-
search: string
|
|
1460
|
-
field: string
|
|
1519
|
+
search: string | Variable<any, string>;
|
|
1520
|
+
field: string | Variable<any, string>;
|
|
1461
1521
|
},
|
|
1462
1522
|
ValueTypes["DbSearchResult"]
|
|
1463
1523
|
];
|
|
1464
1524
|
deletedMails?: [
|
|
1465
1525
|
{
|
|
1466
|
-
mailType: ValueTypes["MailType"]
|
|
1526
|
+
mailType: ValueTypes["MailType"] | Variable<any, string>;
|
|
1467
1527
|
},
|
|
1468
1528
|
ValueTypes["DeletedMailsResult"]
|
|
1469
1529
|
];
|
|
1470
1530
|
deletedNodes?: ValueTypes["DeletedNodesResult"];
|
|
1471
1531
|
faq?: [
|
|
1472
1532
|
{
|
|
1473
|
-
lang?: ValueTypes["Lang"] | undefined | null
|
|
1533
|
+
lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
|
|
1474
1534
|
},
|
|
1475
1535
|
ValueTypes["FaqResult"]
|
|
1476
1536
|
];
|
|
1477
1537
|
file?: [{
|
|
1478
|
-
id: string
|
|
1538
|
+
id: string | Variable<any, string>;
|
|
1479
1539
|
}, ValueTypes["FileResult"]];
|
|
1480
|
-
fileContent?: [
|
|
1481
|
-
|
|
1482
|
-
|
|
1540
|
+
fileContent?: [
|
|
1541
|
+
{
|
|
1542
|
+
fileId: string | Variable<any, string>;
|
|
1543
|
+
},
|
|
1544
|
+
ValueTypes["FileContentResult"]
|
|
1545
|
+
];
|
|
1483
1546
|
filesContent?: [
|
|
1484
1547
|
{
|
|
1485
|
-
fileIds: Array<string>;
|
|
1548
|
+
fileIds: Array<string> | Variable<any, string>;
|
|
1486
1549
|
},
|
|
1487
1550
|
ValueTypes["FilesContentResult"]
|
|
1488
1551
|
];
|
|
1489
1552
|
filesSharedWithMe?: [
|
|
1490
1553
|
{
|
|
1491
|
-
accepted?: boolean | undefined | null
|
|
1554
|
+
accepted?: boolean | undefined | null | Variable<any, string>;
|
|
1492
1555
|
},
|
|
1493
1556
|
ValueTypes["FileSharedContent"]
|
|
1494
1557
|
];
|
|
1495
|
-
|
|
1558
|
+
getJwt?: [
|
|
1496
1559
|
{
|
|
1497
|
-
|
|
1560
|
+
includeEmail?: boolean | undefined | null | Variable<any, string>;
|
|
1498
1561
|
},
|
|
1499
|
-
ValueTypes["
|
|
1562
|
+
ValueTypes["GetJwtResult"]
|
|
1500
1563
|
];
|
|
1501
1564
|
limits?: ValueTypes["LimitsResult"];
|
|
1502
1565
|
mail?: [{
|
|
1503
|
-
id: string
|
|
1566
|
+
id: string | Variable<any, string>;
|
|
1504
1567
|
}, ValueTypes["MailResult"]];
|
|
1505
1568
|
node?: [
|
|
1506
1569
|
{
|
|
1507
|
-
id?: string | undefined | null
|
|
1508
|
-
deleted?: boolean | undefined | null
|
|
1570
|
+
id?: string | undefined | null | Variable<any, string>;
|
|
1571
|
+
deleted?: boolean | undefined | null | Variable<any, string>;
|
|
1509
1572
|
},
|
|
1510
1573
|
ValueTypes["NodeResult"]
|
|
1511
1574
|
];
|
|
1512
1575
|
nodesSharedWithMe?: [
|
|
1513
1576
|
{
|
|
1514
|
-
type?: ValueTypes["NodeType"] | undefined | null
|
|
1577
|
+
type?: ValueTypes["NodeType"] | undefined | null | Variable<any, string>;
|
|
1515
1578
|
},
|
|
1516
1579
|
ValueTypes["NodesSharedWithMeResult"]
|
|
1517
1580
|
];
|
|
@@ -1520,12 +1583,15 @@ export declare type ValueTypes = {
|
|
|
1520
1583
|
serverTime?: boolean | `@${string}`;
|
|
1521
1584
|
sharedNodes?: ValueTypes["SharedNodesResult"];
|
|
1522
1585
|
unreadReceivedMailsCount?: ValueTypes["UnreadReceivedMailsCountResult"];
|
|
1523
|
-
user?: [
|
|
1524
|
-
|
|
1525
|
-
|
|
1586
|
+
user?: [
|
|
1587
|
+
{
|
|
1588
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
1589
|
+
},
|
|
1590
|
+
ValueTypes["UserResult"]
|
|
1591
|
+
];
|
|
1526
1592
|
userList?: [
|
|
1527
1593
|
{
|
|
1528
|
-
search?: string | undefined | null
|
|
1594
|
+
search?: string | undefined | null | Variable<any, string>;
|
|
1529
1595
|
},
|
|
1530
1596
|
ValueTypes["UserListResult"]
|
|
1531
1597
|
];
|
|
@@ -1534,104 +1600,110 @@ export declare type ValueTypes = {
|
|
|
1534
1600
|
["Mutation"]: AliasType<{
|
|
1535
1601
|
addFileToHistory?: [
|
|
1536
1602
|
{
|
|
1537
|
-
nodeId: string
|
|
1538
|
-
fileId: string
|
|
1603
|
+
nodeId: string | Variable<any, string>;
|
|
1604
|
+
fileId: string | Variable<any, string>;
|
|
1539
1605
|
},
|
|
1540
1606
|
ValueTypes["AddFileToHistoryResult"]
|
|
1541
1607
|
];
|
|
1542
1608
|
cancelPayment?: ValueTypes["CancelPaymentResult"];
|
|
1543
1609
|
createApplication?: [
|
|
1544
1610
|
{
|
|
1545
|
-
name: string
|
|
1546
|
-
origin: string
|
|
1547
|
-
developerId: string
|
|
1611
|
+
name: string | Variable<any, string>;
|
|
1612
|
+
origin: string | Variable<any, string>;
|
|
1613
|
+
developerId: string | Variable<any, string>;
|
|
1548
1614
|
},
|
|
1549
1615
|
ValueTypes["CreateApplicationResult"]
|
|
1550
1616
|
];
|
|
1551
1617
|
createDraftMail?: [
|
|
1552
1618
|
{
|
|
1553
|
-
hash: string
|
|
1554
|
-
hashKey: string
|
|
1555
|
-
body: string
|
|
1556
|
-
subject: string
|
|
1557
|
-
replyTo?: string | undefined | null
|
|
1558
|
-
senderFiles: Array<ValueTypes["MailFileInput"]>;
|
|
1559
|
-
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>;
|
|
1560
1626
|
},
|
|
1561
1627
|
ValueTypes["CreateDraftMailResult"]
|
|
1562
1628
|
];
|
|
1563
1629
|
createFolder?: [
|
|
1564
1630
|
{
|
|
1565
|
-
name: string
|
|
1566
|
-
key: string
|
|
1567
|
-
parentFolderId?: string | undefined | null
|
|
1631
|
+
name: string | Variable<any, string>;
|
|
1632
|
+
key: string | Variable<any, string>;
|
|
1633
|
+
parentFolderId?: string | undefined | null | Variable<any, string>;
|
|
1568
1634
|
},
|
|
1569
1635
|
ValueTypes["CreateFolderResult"]
|
|
1570
1636
|
];
|
|
1571
1637
|
dbConfigMutation?: [
|
|
1572
1638
|
{
|
|
1573
|
-
appCode: string
|
|
1574
|
-
config: string
|
|
1639
|
+
appCode: string | Variable<any, string>;
|
|
1640
|
+
config: string | Variable<any, string>;
|
|
1575
1641
|
},
|
|
1576
1642
|
ValueTypes["DbConfigMutationResult"]
|
|
1577
1643
|
];
|
|
1578
1644
|
dbSet?: [
|
|
1579
1645
|
{
|
|
1580
|
-
value: string
|
|
1581
|
-
userId?: string | undefined | null
|
|
1646
|
+
value: string | Variable<any, string>;
|
|
1647
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
1582
1648
|
},
|
|
1583
1649
|
ValueTypes["DbSetResult"]
|
|
1584
1650
|
];
|
|
1585
1651
|
deleteAllData?: boolean | `@${string}`;
|
|
1586
1652
|
deleteDraftMail?: [
|
|
1587
1653
|
{
|
|
1588
|
-
draftId: string
|
|
1654
|
+
draftId: string | Variable<any, string>;
|
|
1589
1655
|
},
|
|
1590
1656
|
ValueTypes["DeleteDraftMailResult"]
|
|
1591
1657
|
];
|
|
1592
1658
|
deleteFile?: [
|
|
1593
1659
|
{
|
|
1594
|
-
fileId: string
|
|
1595
|
-
nodeId: string
|
|
1660
|
+
fileId: string | Variable<any, string>;
|
|
1661
|
+
nodeId: string | Variable<any, string>;
|
|
1596
1662
|
},
|
|
1597
1663
|
ValueTypes["DeleteFileResult"]
|
|
1598
1664
|
];
|
|
1599
|
-
deleteMail?: [
|
|
1600
|
-
|
|
1601
|
-
|
|
1665
|
+
deleteMail?: [
|
|
1666
|
+
{
|
|
1667
|
+
mailId: string | Variable<any, string>;
|
|
1668
|
+
},
|
|
1669
|
+
ValueTypes["DeleteMailResult"]
|
|
1670
|
+
];
|
|
1602
1671
|
deleteMailTrash?: [
|
|
1603
1672
|
{
|
|
1604
|
-
ids: Array<string>;
|
|
1673
|
+
ids: Array<string> | Variable<any, string>;
|
|
1605
1674
|
},
|
|
1606
1675
|
ValueTypes["DeleteMailTrashResult"]
|
|
1607
1676
|
];
|
|
1608
|
-
deleteNode?: [
|
|
1609
|
-
|
|
1610
|
-
|
|
1677
|
+
deleteNode?: [
|
|
1678
|
+
{
|
|
1679
|
+
id: string | Variable<any, string>;
|
|
1680
|
+
},
|
|
1681
|
+
ValueTypes["DeleteNodeResult"]
|
|
1682
|
+
];
|
|
1611
1683
|
deleteNodeCloudTrash?: [
|
|
1612
1684
|
{
|
|
1613
|
-
ids: Array<string>;
|
|
1685
|
+
ids: Array<string> | Variable<any, string>;
|
|
1614
1686
|
},
|
|
1615
1687
|
ValueTypes["DeleteNodeCloudTrashResult"]
|
|
1616
1688
|
];
|
|
1617
1689
|
deleteNodeSharing?: [
|
|
1618
1690
|
{
|
|
1619
|
-
nodeId: string
|
|
1620
|
-
userId: string
|
|
1691
|
+
nodeId: string | Variable<any, string>;
|
|
1692
|
+
userId: string | Variable<any, string>;
|
|
1621
1693
|
},
|
|
1622
1694
|
ValueTypes["DeleteNodeSharingResult"]
|
|
1623
1695
|
];
|
|
1624
1696
|
deleteUser?: [
|
|
1625
1697
|
{
|
|
1626
|
-
userId?: string | undefined | null
|
|
1698
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
1627
1699
|
},
|
|
1628
1700
|
ValueTypes["DeleteUserResult"]
|
|
1629
1701
|
];
|
|
1630
1702
|
duplicateNode?: [
|
|
1631
1703
|
{
|
|
1632
|
-
nodeId: string
|
|
1633
|
-
folderId?: string | undefined | null
|
|
1634
|
-
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>;
|
|
1635
1707
|
},
|
|
1636
1708
|
ValueTypes["DuplicateNodeResult"]
|
|
1637
1709
|
];
|
|
@@ -1639,202 +1711,217 @@ export declare type ValueTypes = {
|
|
|
1639
1711
|
emptyMailTrash?: ValueTypes["EmptyMailTrashResult"];
|
|
1640
1712
|
logout?: [
|
|
1641
1713
|
{
|
|
1642
|
-
sessionId?: string | undefined | null
|
|
1714
|
+
sessionId?: string | undefined | null | Variable<any, string>;
|
|
1643
1715
|
},
|
|
1644
1716
|
ValueTypes["LogoutResult"]
|
|
1645
1717
|
];
|
|
1646
1718
|
moveNodes?: [
|
|
1647
1719
|
{
|
|
1648
|
-
nodeIds: Array<string>;
|
|
1649
|
-
parentNodeId?: string | undefined | null
|
|
1720
|
+
nodeIds: Array<string> | Variable<any, string>;
|
|
1721
|
+
parentNodeId?: string | undefined | null | Variable<any, string>;
|
|
1650
1722
|
},
|
|
1651
1723
|
ValueTypes["MoveNodesResult"]
|
|
1652
1724
|
];
|
|
1653
1725
|
pay?: [
|
|
1654
1726
|
{
|
|
1655
|
-
planCode: string
|
|
1656
|
-
input: ValueTypes["PayInput"]
|
|
1657
|
-
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>;
|
|
1658
1730
|
},
|
|
1659
1731
|
ValueTypes["PayResult"]
|
|
1660
1732
|
];
|
|
1661
|
-
readMail?: [
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
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
|
+
];
|
|
1670
1751
|
saveInCloud?: [
|
|
1671
1752
|
{
|
|
1672
|
-
fileId: string
|
|
1673
|
-
key: string
|
|
1674
|
-
nodeId?: string | undefined | null
|
|
1675
|
-
filename: string
|
|
1676
|
-
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>;
|
|
1677
1758
|
},
|
|
1678
1759
|
ValueTypes["SaveInCloudResult"]
|
|
1679
1760
|
];
|
|
1680
1761
|
sendAppMail?: [
|
|
1681
1762
|
{
|
|
1682
|
-
fakeUserIds: Array<string>;
|
|
1683
|
-
subject: string
|
|
1684
|
-
html: string
|
|
1763
|
+
fakeUserIds: Array<string> | Variable<any, string>;
|
|
1764
|
+
subject: string | Variable<any, string>;
|
|
1765
|
+
html: string | Variable<any, string>;
|
|
1685
1766
|
},
|
|
1686
1767
|
ValueTypes["SendAppMailResult"]
|
|
1687
1768
|
];
|
|
1688
1769
|
sendDraftMail?: [
|
|
1689
1770
|
{
|
|
1690
|
-
draftMailId: string
|
|
1691
|
-
temporaryRecipients: Array<string>;
|
|
1692
|
-
recipients: Array<ValueTypes["MailRecipientInput"]>;
|
|
1693
|
-
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>;
|
|
1694
1775
|
},
|
|
1695
1776
|
ValueTypes["SendDraftMailResult"]
|
|
1696
1777
|
];
|
|
1697
1778
|
sendOneMail?: [
|
|
1698
1779
|
{
|
|
1699
|
-
mailIntegrityId: string
|
|
1700
|
-
recipient: ValueTypes["MailRecipientInput"]
|
|
1780
|
+
mailIntegrityId: string | Variable<any, string>;
|
|
1781
|
+
recipient: ValueTypes["MailRecipientInput"] | Variable<any, string>;
|
|
1701
1782
|
},
|
|
1702
1783
|
ValueTypes["SendOneMailResult"]
|
|
1703
1784
|
];
|
|
1704
1785
|
sendReport?: [
|
|
1705
1786
|
{
|
|
1706
|
-
reportedUserId: string
|
|
1707
|
-
customMessage?: string | undefined | null
|
|
1787
|
+
reportedUserId: string | Variable<any, string>;
|
|
1788
|
+
customMessage?: string | undefined | null | Variable<any, string>;
|
|
1708
1789
|
},
|
|
1709
1790
|
ValueTypes["SendReportResult"]
|
|
1710
1791
|
];
|
|
1711
1792
|
shareFileInHistory?: [
|
|
1712
1793
|
{
|
|
1713
|
-
input: ValueTypes["ShareFileInHistoryInput"]
|
|
1714
|
-
nodeId: string
|
|
1794
|
+
input: ValueTypes["ShareFileInHistoryInput"] | Variable<any, string>;
|
|
1795
|
+
nodeId: string | Variable<any, string>;
|
|
1715
1796
|
},
|
|
1716
1797
|
ValueTypes["ShareFileInHistoryResult"]
|
|
1717
1798
|
];
|
|
1718
1799
|
shareNode?: [
|
|
1719
1800
|
{
|
|
1720
|
-
nodeId: string
|
|
1721
|
-
userId: string
|
|
1801
|
+
nodeId: string | Variable<any, string>;
|
|
1802
|
+
userId: string | Variable<any, string>;
|
|
1722
1803
|
},
|
|
1723
1804
|
ValueTypes["ShareNodeResult"]
|
|
1724
1805
|
];
|
|
1725
1806
|
shareNodeFinish?: [
|
|
1726
1807
|
{
|
|
1727
|
-
shareNodes: ValueTypes["ShareNodesInput"]
|
|
1728
|
-
userId: string
|
|
1729
|
-
rights: ValueTypes["Rights"]
|
|
1808
|
+
shareNodes: ValueTypes["ShareNodesInput"] | Variable<any, string>;
|
|
1809
|
+
userId: string | Variable<any, string>;
|
|
1810
|
+
rights: ValueTypes["Rights"] | Variable<any, string>;
|
|
1730
1811
|
},
|
|
1731
1812
|
ValueTypes["ShareNodeFinishResult"]
|
|
1732
1813
|
];
|
|
1733
|
-
unreadMail?: [
|
|
1734
|
-
|
|
1735
|
-
|
|
1814
|
+
unreadMail?: [
|
|
1815
|
+
{
|
|
1816
|
+
mailId: string | Variable<any, string>;
|
|
1817
|
+
},
|
|
1818
|
+
ValueTypes["UnreadMailResult"]
|
|
1819
|
+
];
|
|
1736
1820
|
updateAppNotifications?: [
|
|
1737
1821
|
{
|
|
1738
|
-
enableAll?: boolean | undefined | null
|
|
1739
|
-
mail?: boolean | undefined | null
|
|
1740
|
-
cloud?: boolean | undefined | null
|
|
1741
|
-
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>;
|
|
1742
1826
|
},
|
|
1743
1827
|
ValueTypes["UpdateAppNotificationsResult"]
|
|
1744
1828
|
];
|
|
1745
1829
|
updateAppSettings?: [
|
|
1746
1830
|
{
|
|
1747
|
-
cloudFileDaysForDelete?: number | undefined | null
|
|
1748
|
-
cloudFolderDaysForDelete?: number | undefined | null
|
|
1749
|
-
historyFileDaysForDelete?: number | undefined | null
|
|
1750
|
-
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>;
|
|
1751
1835
|
},
|
|
1752
1836
|
ValueTypes["UpdateAppSettingsResult"]
|
|
1753
1837
|
];
|
|
1754
1838
|
updateAutoDisconnectDelay?: [
|
|
1755
1839
|
{
|
|
1756
|
-
userId?: string | undefined | null
|
|
1757
|
-
delay?: number | undefined | null
|
|
1840
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
1841
|
+
delay?: number | undefined | null | Variable<any, string>;
|
|
1758
1842
|
},
|
|
1759
1843
|
ValueTypes["UpdateAutoDisconnectDelayResult"]
|
|
1760
1844
|
];
|
|
1761
1845
|
updateDraftMail?: [
|
|
1762
1846
|
{
|
|
1763
|
-
draftId: string
|
|
1764
|
-
hash?: string | undefined | null
|
|
1765
|
-
hashKey?: string | undefined | null
|
|
1766
|
-
body?: string | undefined | null
|
|
1767
|
-
subject?: string | undefined | null
|
|
1768
|
-
replyTo?: string | undefined | null
|
|
1769
|
-
senderFiles?: Array<ValueTypes["MailFileInput"]> | undefined | null
|
|
1770
|
-
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>;
|
|
1771
1855
|
},
|
|
1772
1856
|
ValueTypes["UpdateDraftMailResult"]
|
|
1773
1857
|
];
|
|
1774
1858
|
updateNode?: [
|
|
1775
1859
|
{
|
|
1776
|
-
nodeId: string
|
|
1777
|
-
name?: string | undefined | null
|
|
1778
|
-
isFavorite?: boolean | undefined | null
|
|
1779
|
-
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>;
|
|
1780
1864
|
},
|
|
1781
1865
|
ValueTypes["UpdateNodeResult"]
|
|
1782
1866
|
];
|
|
1783
1867
|
updateProfile?: [
|
|
1784
1868
|
{
|
|
1785
|
-
firstname?: string | undefined | null
|
|
1786
|
-
lastname?: string | undefined | null
|
|
1787
|
-
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>;
|
|
1788
1872
|
},
|
|
1789
1873
|
ValueTypes["UpdateProfileResult"]
|
|
1790
1874
|
];
|
|
1791
1875
|
uploadAnonymous?: [
|
|
1792
1876
|
{
|
|
1793
|
-
fileName: string
|
|
1794
|
-
fileSize: number
|
|
1795
|
-
fileSizeBefore: number
|
|
1796
|
-
message?: string | undefined | null
|
|
1797
|
-
pubKey: string
|
|
1798
|
-
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>;
|
|
1799
1883
|
},
|
|
1800
1884
|
ValueTypes["FileResponse"]
|
|
1801
1885
|
];
|
|
1802
1886
|
uploadFile?: [
|
|
1803
1887
|
{
|
|
1804
|
-
fileSize: ValueTypes["BigInt"]
|
|
1805
|
-
fileSizeBefore: ValueTypes["BigInt"]
|
|
1806
|
-
fileKey: string
|
|
1807
|
-
md5: string
|
|
1808
|
-
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>;
|
|
1809
1893
|
},
|
|
1810
1894
|
ValueTypes["UploadFileResult"]
|
|
1811
1895
|
];
|
|
1812
|
-
uploadFileEnd?: [
|
|
1813
|
-
|
|
1814
|
-
|
|
1896
|
+
uploadFileEnd?: [
|
|
1897
|
+
{
|
|
1898
|
+
fileId: string | Variable<any, string>;
|
|
1899
|
+
},
|
|
1900
|
+
ValueTypes["UploadFileEndResult"]
|
|
1901
|
+
];
|
|
1815
1902
|
uploadFilePartEnd?: [
|
|
1816
1903
|
{
|
|
1817
|
-
fileId: string
|
|
1818
|
-
md5: string
|
|
1819
|
-
order: number
|
|
1904
|
+
fileId: string | Variable<any, string>;
|
|
1905
|
+
md5: string | Variable<any, string>;
|
|
1906
|
+
order: number | Variable<any, string>;
|
|
1820
1907
|
},
|
|
1821
1908
|
ValueTypes["UploadFilePartEndResult"]
|
|
1822
1909
|
];
|
|
1823
1910
|
uploadLiteFile?: [
|
|
1824
1911
|
{
|
|
1825
|
-
content: ValueTypes["Bytes"]
|
|
1826
|
-
fileSize: ValueTypes["BigInt"]
|
|
1827
|
-
fileSizeBefore: ValueTypes["BigInt"]
|
|
1828
|
-
fileKey: string
|
|
1829
|
-
md5: string
|
|
1830
|
-
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>;
|
|
1831
1918
|
},
|
|
1832
1919
|
ValueTypes["UploadLiteFileResult"]
|
|
1833
1920
|
];
|
|
1834
1921
|
changeUserPlan?: [
|
|
1835
1922
|
{
|
|
1836
|
-
userId: string
|
|
1837
|
-
plan: ValueTypes["PlanKind"]
|
|
1923
|
+
userId: string | Variable<any, string>;
|
|
1924
|
+
plan: ValueTypes["PlanKind"] | Variable<any, string>;
|
|
1838
1925
|
},
|
|
1839
1926
|
ValueTypes["ChangeUserPlanResult"]
|
|
1840
1927
|
];
|
|
@@ -1845,79 +1932,1753 @@ export declare type ValueTypes = {
|
|
|
1845
1932
|
__typename?: boolean | `@${string}`;
|
|
1846
1933
|
}>;
|
|
1847
1934
|
};
|
|
1848
|
-
export declare type
|
|
1849
|
-
["BigInt"]:
|
|
1850
|
-
["DateTime"]:
|
|
1851
|
-
["Json"]:
|
|
1852
|
-
["Bytes"]:
|
|
1853
|
-
["Lang"]:
|
|
1854
|
-
["PlanKind"]:
|
|
1855
|
-
["UserRole"]:
|
|
1856
|
-
["MailType"]:
|
|
1857
|
-
["Rights"]:
|
|
1858
|
-
["NodeType"]:
|
|
1859
|
-
["AppNotificationsResult"]:
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
["
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
["
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
["
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
["
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
["
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
["
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
["
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
["
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
["
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
["
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
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"];
|
|
1921
3682
|
["UploadFileEndResult"]: ModelTypes["UploadFileEndResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
|
|
1922
3683
|
["UploadFilePartEndResult"]: ModelTypes["UploadFilePartEndResponse"] | ModelTypes["ErrorAccessDenied"];
|
|
1923
3684
|
["UploadLiteFileResult"]: ModelTypes["UploadLiteFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
|
|
@@ -1927,14 +3688,14 @@ export declare type ModelTypes = {
|
|
|
1927
3688
|
};
|
|
1928
3689
|
["AppSession"]: {
|
|
1929
3690
|
id: string;
|
|
1930
|
-
lastActivity?:
|
|
3691
|
+
lastActivity?: ModelTypes["DateTime"] | undefined;
|
|
1931
3692
|
userAgent?: string | undefined;
|
|
1932
3693
|
ip?: string | undefined;
|
|
1933
3694
|
city?: string | undefined;
|
|
1934
3695
|
country?: string | undefined;
|
|
1935
|
-
userSession:
|
|
1936
|
-
userApp?:
|
|
1937
|
-
createdAt:
|
|
3696
|
+
userSession: ModelTypes["UserSession"];
|
|
3697
|
+
userApp?: ModelTypes["ApplicationsOnUsers"] | undefined;
|
|
3698
|
+
createdAt: ModelTypes["DateTime"];
|
|
1938
3699
|
};
|
|
1939
3700
|
["Application"]: {
|
|
1940
3701
|
id: string;
|
|
@@ -1942,28 +3703,30 @@ export declare type ModelTypes = {
|
|
|
1942
3703
|
};
|
|
1943
3704
|
["ApplicationsOnUsers"]: {
|
|
1944
3705
|
fakeUserId: string;
|
|
1945
|
-
keyPair?:
|
|
1946
|
-
sessions: Array<
|
|
1947
|
-
app:
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
3706
|
+
keyPair?: ModelTypes["AppKeyPair"] | undefined;
|
|
3707
|
+
sessions: Array<ModelTypes["AppSession"]>;
|
|
3708
|
+
app: ModelTypes["Application"];
|
|
3709
|
+
appId: string;
|
|
3710
|
+
user: ModelTypes["User"];
|
|
3711
|
+
userId: string;
|
|
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<
|
|
3722
|
+
entries: Array<ModelTypes["BlogEntry"]>;
|
|
1960
3723
|
};
|
|
1961
3724
|
["BlogEntry"]: {
|
|
1962
3725
|
id: string;
|
|
1963
|
-
lang:
|
|
3726
|
+
lang: ModelTypes["Lang"];
|
|
1964
3727
|
author: string;
|
|
1965
3728
|
body: string;
|
|
1966
|
-
date:
|
|
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:
|
|
3744
|
+
date: ModelTypes["DateTime"];
|
|
1982
3745
|
};
|
|
1983
3746
|
["CloudLimits"]: {
|
|
1984
|
-
size:
|
|
1985
|
-
maxSize?:
|
|
1986
|
-
count:
|
|
1987
|
-
maxCount?:
|
|
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<
|
|
3781
|
+
entries: Array<ModelTypes["FaqEntry"]>;
|
|
2019
3782
|
};
|
|
2020
3783
|
["FaqEntry"]: {
|
|
2021
3784
|
id: string;
|
|
2022
|
-
lang:
|
|
3785
|
+
lang: ModelTypes["Lang"];
|
|
2023
3786
|
question: string;
|
|
2024
3787
|
answer: string;
|
|
2025
|
-
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:
|
|
2035
|
-
sizeBefore:
|
|
2036
|
-
createdAt:
|
|
3797
|
+
size: ModelTypes["BigInt"];
|
|
3798
|
+
sizeBefore: ModelTypes["BigInt"];
|
|
3799
|
+
createdAt: ModelTypes["DateTime"];
|
|
2037
3800
|
md5: string;
|
|
2038
|
-
nodes: Array<
|
|
2039
|
-
accesses: Array<
|
|
3801
|
+
nodes: Array<ModelTypes["Node"]>;
|
|
3802
|
+
accesses: Array<ModelTypes["FileAccess"]>;
|
|
2040
3803
|
md5Encrypted: string;
|
|
2041
|
-
deletedAt?:
|
|
2042
|
-
userApp:
|
|
2043
|
-
mails: Array<
|
|
2044
|
-
validatedAt?:
|
|
2045
|
-
access?:
|
|
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:
|
|
3811
|
+
userApp: ModelTypes["ApplicationsOnUsers"];
|
|
2049
3812
|
userAppUserId: string;
|
|
2050
3813
|
userAppAppId: string;
|
|
2051
|
-
file:
|
|
3814
|
+
file: ModelTypes["File"];
|
|
2052
3815
|
fileId: string;
|
|
2053
3816
|
key: string;
|
|
2054
|
-
sharedBy:
|
|
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:
|
|
2066
|
-
type:
|
|
2067
|
-
parts: Array<
|
|
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:
|
|
2076
|
-
type:
|
|
2077
|
-
content:
|
|
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:
|
|
2091
|
-
type:
|
|
2092
|
-
maybeParts?: Array<
|
|
2093
|
-
maybeContent?:
|
|
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,30 +3861,30 @@ export declare type ModelTypes = {
|
|
|
2098
3861
|
key: string;
|
|
2099
3862
|
md5: string;
|
|
2100
3863
|
md5Encrypted: string;
|
|
2101
|
-
totalSize:
|
|
2102
|
-
type:
|
|
2103
|
-
maybeParts?: Array<
|
|
2104
|
-
maybeContent?:
|
|
3864
|
+
totalSize: ModelTypes["BigInt"];
|
|
3865
|
+
type: ModelTypes["FileContentType"];
|
|
3866
|
+
maybeParts?: Array<ModelTypes["FileContentPart"]> | undefined;
|
|
3867
|
+
maybeContent?: ModelTypes["Bytes"] | undefined;
|
|
2105
3868
|
};
|
|
2106
|
-
["FileContentType"]:
|
|
3869
|
+
["FileContentType"]: FileContentType;
|
|
2107
3870
|
["FilePart"]: {
|
|
2108
3871
|
id: string;
|
|
2109
|
-
file:
|
|
3872
|
+
file: ModelTypes["File"];
|
|
2110
3873
|
fileId: string;
|
|
2111
|
-
size:
|
|
3874
|
+
size: ModelTypes["BigInt"];
|
|
2112
3875
|
order: number;
|
|
2113
3876
|
md5: string;
|
|
2114
|
-
validatedAt?:
|
|
3877
|
+
validatedAt?: ModelTypes["DateTime"] | undefined;
|
|
2115
3878
|
};
|
|
2116
3879
|
["FilePartResponse"]: {
|
|
2117
|
-
fields:
|
|
3880
|
+
fields: ModelTypes["Json"];
|
|
2118
3881
|
url: string;
|
|
2119
3882
|
order: number;
|
|
2120
3883
|
};
|
|
2121
3884
|
["FileResponse"]: {
|
|
2122
3885
|
fileId: string;
|
|
2123
|
-
parts: Array<
|
|
2124
|
-
filePartSize:
|
|
3886
|
+
parts: Array<ModelTypes["FilePartResponse"]>;
|
|
3887
|
+
filePartSize: ModelTypes["BigInt"];
|
|
2125
3888
|
};
|
|
2126
3889
|
["FileShared"]: {
|
|
2127
3890
|
userId: string;
|
|
@@ -2132,137 +3895,169 @@ export declare type ModelTypes = {
|
|
|
2132
3895
|
size: number;
|
|
2133
3896
|
sizeBefore: number;
|
|
2134
3897
|
};
|
|
2135
|
-
["FileSharedContent"]: {
|
|
2136
|
-
ownerId?: string | undefined;
|
|
2137
|
-
pubKey?: string | undefined;
|
|
2138
|
-
message?: string | undefined;
|
|
2139
|
-
appId: string;
|
|
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"]: {
|
|
3952
|
+
fileId: string;
|
|
3953
|
+
users: Array<ModelTypes["ShareFileKeyInput"]>;
|
|
3954
|
+
};
|
|
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
|
-
};
|
|
2151
|
-
["FilesOnMails"]: {
|
|
2152
|
-
file: GraphQLTypes["File"];
|
|
2153
|
-
fileKey: string;
|
|
2154
|
-
filename: string;
|
|
2155
|
-
mail: GraphQLTypes["Mail"];
|
|
2156
3958
|
};
|
|
2157
|
-
["
|
|
2158
|
-
|
|
2159
|
-
sizeBefore: GraphQLTypes["BigInt"];
|
|
3959
|
+
["ShareNodesInput"]: {
|
|
3960
|
+
nodes: Array<ModelTypes["NameKeyInput"]>;
|
|
2160
3961
|
};
|
|
2161
|
-
["MailFileInput"]: GraphQLTypes["MailFileInput"];
|
|
2162
|
-
["MailRecipientInput"]: GraphQLTypes["MailRecipientInput"];
|
|
2163
|
-
["NameKeyInput"]: GraphQLTypes["NameKeyInput"];
|
|
2164
|
-
["PayInput"]: GraphQLTypes["PayInput"];
|
|
2165
|
-
["PayInputType"]: GraphQLTypes["PayInputType"];
|
|
2166
|
-
["ShareFileInHistoryInput"]: GraphQLTypes["ShareFileInHistoryInput"];
|
|
2167
|
-
["ShareFileKeyInput"]: GraphQLTypes["ShareFileKeyInput"];
|
|
2168
|
-
["ShareNodesInput"]: GraphQLTypes["ShareNodesInput"];
|
|
2169
3962
|
["Limits"]: {
|
|
2170
|
-
downloadBandwidth?:
|
|
2171
|
-
downloadCount?:
|
|
2172
|
-
hardFileCount?:
|
|
2173
|
-
hardFileSize?:
|
|
2174
|
-
perFileSize?:
|
|
2175
|
-
receivedMails:
|
|
2176
|
-
sentMails:
|
|
2177
|
-
uploadBandwidth?:
|
|
2178
|
-
uploadCount?:
|
|
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;
|
|
2179
3972
|
};
|
|
2180
3973
|
["MailLimits"]: {
|
|
2181
|
-
count?:
|
|
2182
|
-
fileCount?:
|
|
2183
|
-
fileSize?:
|
|
2184
|
-
hardCount?:
|
|
2185
|
-
hardFileCount?:
|
|
2186
|
-
hardFileSize?:
|
|
2187
|
-
perFileSize?:
|
|
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;
|
|
2188
3981
|
};
|
|
2189
3982
|
["MailLimitsValues"]: {
|
|
2190
|
-
count:
|
|
2191
|
-
maxCount?:
|
|
2192
|
-
fileCount:
|
|
2193
|
-
maxFileCount?:
|
|
2194
|
-
fileSize:
|
|
2195
|
-
maxFileSize?:
|
|
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;
|
|
2196
3989
|
};
|
|
2197
3990
|
["QueryLimits"]: {
|
|
2198
|
-
cloud:
|
|
2199
|
-
mail:
|
|
3991
|
+
cloud: ModelTypes["CloudLimits"];
|
|
3992
|
+
mail: ModelTypes["UserMailLimits"];
|
|
2200
3993
|
};
|
|
2201
3994
|
["UserMailLimits"]: {
|
|
2202
|
-
sent:
|
|
2203
|
-
received:
|
|
3995
|
+
sent: ModelTypes["MailLimitsValues"];
|
|
3996
|
+
received: ModelTypes["MailLimitsValues"];
|
|
2204
3997
|
};
|
|
2205
3998
|
["LiteFileResponse"]: {
|
|
2206
3999
|
fileId: string;
|
|
2207
|
-
content:
|
|
4000
|
+
content: ModelTypes["Bytes"];
|
|
2208
4001
|
};
|
|
2209
4002
|
["Mail"]: {
|
|
2210
4003
|
id: string;
|
|
2211
|
-
app:
|
|
4004
|
+
app: ModelTypes["Application"];
|
|
2212
4005
|
body: string;
|
|
2213
|
-
createdAt:
|
|
2214
|
-
deletedAt?:
|
|
2215
|
-
files: Array<
|
|
2216
|
-
mailIntegrity?:
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
4006
|
+
createdAt: ModelTypes["DateTime"];
|
|
4007
|
+
deletedAt?: ModelTypes["DateTime"] | undefined;
|
|
4008
|
+
files: Array<ModelTypes["FilesOnMails"]>;
|
|
4009
|
+
mailIntegrity?: ModelTypes["MailIntegrity"] | undefined;
|
|
4010
|
+
mailIntegrityId?: string | undefined;
|
|
4011
|
+
mailIntegrityDraft?: ModelTypes["MailIntegrityDraft"] | undefined;
|
|
4012
|
+
openedAt?: ModelTypes["DateTime"] | undefined;
|
|
4013
|
+
recipient: ModelTypes["User"];
|
|
4014
|
+
sender: ModelTypes["User"];
|
|
2221
4015
|
subject: string;
|
|
2222
|
-
type:
|
|
2223
|
-
recipients: Array<
|
|
4016
|
+
type: ModelTypes["MailType"];
|
|
4017
|
+
recipients: Array<ModelTypes["User"]>;
|
|
2224
4018
|
};
|
|
2225
4019
|
["MailIntegrity"]: {
|
|
2226
4020
|
id: string;
|
|
2227
4021
|
hash: string;
|
|
2228
4022
|
hashKey: string;
|
|
2229
|
-
answers: Array<
|
|
2230
|
-
app:
|
|
2231
|
-
mails: Array<
|
|
2232
|
-
recipients: Array<
|
|
2233
|
-
temporaryRecipients: Array<
|
|
2234
|
-
replyTo?:
|
|
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;
|
|
2235
4029
|
};
|
|
2236
4030
|
["MailIntegrityDraft"]: {
|
|
2237
4031
|
id: string;
|
|
2238
4032
|
hash: string;
|
|
2239
4033
|
hashKey: string;
|
|
2240
|
-
app:
|
|
2241
|
-
mail:
|
|
2242
|
-
recipients: Array<
|
|
2243
|
-
temporaryRecipients: Array<
|
|
2244
|
-
replyTo?:
|
|
4034
|
+
app: ModelTypes["Application"];
|
|
4035
|
+
mail: ModelTypes["Mail"];
|
|
4036
|
+
recipients: Array<ModelTypes["User"]>;
|
|
4037
|
+
temporaryRecipients: Array<ModelTypes["TemporaryUser"]>;
|
|
4038
|
+
replyTo?: ModelTypes["MailIntegrity"] | undefined;
|
|
2245
4039
|
};
|
|
2246
4040
|
["Node"]: {
|
|
2247
4041
|
id: string;
|
|
2248
4042
|
isFavorite: boolean;
|
|
2249
|
-
type:
|
|
2250
|
-
createdAt:
|
|
2251
|
-
deletedAt?:
|
|
4043
|
+
type: ModelTypes["NodeType"];
|
|
4044
|
+
createdAt: ModelTypes["DateTime"];
|
|
4045
|
+
deletedAt?: ModelTypes["DateTime"] | undefined;
|
|
2252
4046
|
parentId?: string | undefined;
|
|
2253
|
-
createdBy:
|
|
2254
|
-
children: Array<
|
|
2255
|
-
history: Array<
|
|
2256
|
-
updatedAt:
|
|
4047
|
+
createdBy: ModelTypes["ApplicationsOnUsers"];
|
|
4048
|
+
children: Array<ModelTypes["Node"]>;
|
|
4049
|
+
history: Array<ModelTypes["File"]>;
|
|
4050
|
+
updatedAt: ModelTypes["DateTime"];
|
|
2257
4051
|
createdByAppId: string;
|
|
2258
4052
|
createdByUserId: string;
|
|
2259
4053
|
name: string;
|
|
2260
|
-
parent?:
|
|
2261
|
-
accesses: Array<
|
|
2262
|
-
current?:
|
|
4054
|
+
parent?: ModelTypes["Node"] | undefined;
|
|
4055
|
+
accesses: Array<ModelTypes["NodeAccess"]>;
|
|
4056
|
+
current?: ModelTypes["File"] | undefined;
|
|
2263
4057
|
currentFileId?: string | undefined;
|
|
2264
|
-
|
|
2265
|
-
|
|
4058
|
+
sizes: ModelTypes["NodeSize"];
|
|
4059
|
+
access?: ModelTypes["NodeAccess"] | undefined;
|
|
4060
|
+
breadcrumb: Array<ModelTypes["NodeBreadcrumbItem"]>;
|
|
2266
4061
|
};
|
|
2267
4062
|
["NodeBreadcrumbItem"]: {
|
|
2268
4063
|
id: string;
|
|
@@ -2271,53 +4066,57 @@ export declare type ModelTypes = {
|
|
|
2271
4066
|
nameKey?: string | undefined;
|
|
2272
4067
|
};
|
|
2273
4068
|
["NodeAccess"]: {
|
|
2274
|
-
node:
|
|
4069
|
+
node: ModelTypes["Node"];
|
|
2275
4070
|
nodeId: string;
|
|
2276
|
-
userApp:
|
|
4071
|
+
userApp: ModelTypes["ApplicationsOnUsers"];
|
|
2277
4072
|
userAppUserId: string;
|
|
2278
4073
|
userAppAppId: string;
|
|
2279
|
-
rights:
|
|
4074
|
+
rights: ModelTypes["Rights"];
|
|
2280
4075
|
nameKey?: string | undefined;
|
|
2281
4076
|
isRoot: boolean;
|
|
2282
|
-
sharedBy:
|
|
4077
|
+
sharedBy: ModelTypes["ApplicationsOnUsers"];
|
|
2283
4078
|
sharedByUserId: string;
|
|
2284
4079
|
sharedByAppId: string;
|
|
2285
4080
|
};
|
|
4081
|
+
["NodeSize"]: {
|
|
4082
|
+
size: ModelTypes["BigInt"];
|
|
4083
|
+
sizeBefore: ModelTypes["BigInt"];
|
|
4084
|
+
};
|
|
2286
4085
|
["Plan"]: {
|
|
2287
4086
|
id: string;
|
|
2288
|
-
kind:
|
|
4087
|
+
kind: ModelTypes["PlanKind"];
|
|
2289
4088
|
codes: Array<string>;
|
|
2290
|
-
limits:
|
|
4089
|
+
limits: ModelTypes["Limits"];
|
|
2291
4090
|
};
|
|
2292
4091
|
["Report"]: {
|
|
2293
4092
|
id: string;
|
|
2294
|
-
user:
|
|
2295
|
-
reportedUser:
|
|
4093
|
+
user: ModelTypes["User"];
|
|
4094
|
+
reportedUser: ModelTypes["User"];
|
|
2296
4095
|
customMessage?: string | undefined;
|
|
2297
4096
|
};
|
|
2298
4097
|
["AddFileToHistoryResponse"]: {
|
|
2299
|
-
addFileToHistory:
|
|
4098
|
+
addFileToHistory: ModelTypes["Node"];
|
|
2300
4099
|
};
|
|
2301
4100
|
["CancelPaymentResponse"]: {
|
|
2302
4101
|
cancelPayment?: boolean | undefined;
|
|
2303
4102
|
};
|
|
2304
4103
|
["ChangeUserPlanResponse"]: {
|
|
2305
|
-
changeUserPlan?:
|
|
4104
|
+
changeUserPlan?: ModelTypes["User"] | undefined;
|
|
2306
4105
|
};
|
|
2307
4106
|
["CreateApplicationResponse"]: {
|
|
2308
4107
|
createApplication?: string | undefined;
|
|
2309
4108
|
};
|
|
2310
4109
|
["CreateDraftMailResponse"]: {
|
|
2311
|
-
createDraftMail?:
|
|
4110
|
+
createDraftMail?: ModelTypes["Mail"] | undefined;
|
|
2312
4111
|
};
|
|
2313
4112
|
["CreateFolderResponse"]: {
|
|
2314
|
-
createFolder?:
|
|
4113
|
+
createFolder?: ModelTypes["Node"] | undefined;
|
|
2315
4114
|
};
|
|
2316
4115
|
["DbConfigMutationResponse"]: {
|
|
2317
|
-
dbConfigMutation:
|
|
4116
|
+
dbConfigMutation: ModelTypes["Json"];
|
|
2318
4117
|
};
|
|
2319
4118
|
["DbSetResponse"]: {
|
|
2320
|
-
dbSet?:
|
|
4119
|
+
dbSet?: ModelTypes["Json"] | undefined;
|
|
2321
4120
|
};
|
|
2322
4121
|
["DeleteDraftMailResponse"]: {
|
|
2323
4122
|
deleteDraftMail?: boolean | undefined;
|
|
@@ -2371,7 +4170,7 @@ export declare type ModelTypes = {
|
|
|
2371
4170
|
recoverNode?: boolean | undefined;
|
|
2372
4171
|
};
|
|
2373
4172
|
["SaveInCloudResponse"]: {
|
|
2374
|
-
saveInCloud?:
|
|
4173
|
+
saveInCloud?: ModelTypes["Node"] | undefined;
|
|
2375
4174
|
};
|
|
2376
4175
|
["SendAppMailResponse"]: {
|
|
2377
4176
|
sendAppMail: boolean;
|
|
@@ -2383,13 +4182,13 @@ export declare type ModelTypes = {
|
|
|
2383
4182
|
sendOneMail?: boolean | undefined;
|
|
2384
4183
|
};
|
|
2385
4184
|
["SendReportResponse"]: {
|
|
2386
|
-
sendReport?:
|
|
4185
|
+
sendReport?: ModelTypes["Report"] | undefined;
|
|
2387
4186
|
};
|
|
2388
4187
|
["ShareFileInHistoryResponse"]: {
|
|
2389
4188
|
shareFileInHistory: boolean;
|
|
2390
4189
|
};
|
|
2391
4190
|
["ShareNodeQueryResponse"]: {
|
|
2392
|
-
shareNode:
|
|
4191
|
+
shareNode: ModelTypes["ShareNodeResponse"];
|
|
2393
4192
|
};
|
|
2394
4193
|
["ShareNodeFinishResponse"]: {
|
|
2395
4194
|
shareNodeFinish?: boolean | undefined;
|
|
@@ -2398,28 +4197,28 @@ export declare type ModelTypes = {
|
|
|
2398
4197
|
unreadMail?: boolean | undefined;
|
|
2399
4198
|
};
|
|
2400
4199
|
["UpdateAppNotificationsResponse"]: {
|
|
2401
|
-
updateAppNotifications?:
|
|
4200
|
+
updateAppNotifications?: ModelTypes["UserAppNotifications"] | undefined;
|
|
2402
4201
|
};
|
|
2403
4202
|
["UpdateAppSettingsResponse"]: {
|
|
2404
|
-
updateAppSettings:
|
|
4203
|
+
updateAppSettings: ModelTypes["UserAppSettings"];
|
|
2405
4204
|
};
|
|
2406
4205
|
["UpdateAutoDisconnectDelayResponse"]: {
|
|
2407
4206
|
updateAutoDisconnectDelay?: boolean | undefined;
|
|
2408
4207
|
};
|
|
2409
4208
|
["UpdateDraftMailResponse"]: {
|
|
2410
|
-
updateDraftMail?:
|
|
4209
|
+
updateDraftMail?: ModelTypes["Mail"] | undefined;
|
|
2411
4210
|
};
|
|
2412
4211
|
["UpdateNodeResponse"]: {
|
|
2413
|
-
updateNode?:
|
|
4212
|
+
updateNode?: ModelTypes["Node"] | undefined;
|
|
2414
4213
|
};
|
|
2415
4214
|
["UpdateProfileResponse"]: {
|
|
2416
|
-
updateProfile?:
|
|
4215
|
+
updateProfile?: ModelTypes["User"] | undefined;
|
|
2417
4216
|
};
|
|
2418
4217
|
["UploadAnonymousResponse"]: {
|
|
2419
|
-
uploadAnonymous?:
|
|
4218
|
+
uploadAnonymous?: ModelTypes["FileResponse"] | undefined;
|
|
2420
4219
|
};
|
|
2421
4220
|
["UploadFileResponse"]: {
|
|
2422
|
-
uploadFile?:
|
|
4221
|
+
uploadFile?: ModelTypes["FileResponse"] | undefined;
|
|
2423
4222
|
};
|
|
2424
4223
|
["UploadFileEndResponse"]: {
|
|
2425
4224
|
uploadFileEnd?: string | undefined;
|
|
@@ -2428,94 +4227,94 @@ export declare type ModelTypes = {
|
|
|
2428
4227
|
uploadFilePartEnd: boolean;
|
|
2429
4228
|
};
|
|
2430
4229
|
["UploadLiteFileResponse"]: {
|
|
2431
|
-
uploadLiteFile:
|
|
4230
|
+
uploadLiteFile: ModelTypes["LiteFileResponse"];
|
|
2432
4231
|
};
|
|
2433
4232
|
["BlogResponse"]: {
|
|
2434
|
-
blogItems: Array<
|
|
4233
|
+
blogItems: Array<ModelTypes["BlogItem"]>;
|
|
2435
4234
|
};
|
|
2436
4235
|
["DbConfigResponse"]: {
|
|
2437
|
-
json:
|
|
4236
|
+
json: ModelTypes["Json"];
|
|
2438
4237
|
};
|
|
2439
4238
|
["DbGetResponse"]: {
|
|
2440
|
-
json?:
|
|
4239
|
+
json?: ModelTypes["Json"] | undefined;
|
|
2441
4240
|
};
|
|
2442
4241
|
["DbSearchResponse"]: {
|
|
2443
|
-
json: Array<
|
|
4242
|
+
json: Array<ModelTypes["Json"]>;
|
|
2444
4243
|
};
|
|
2445
4244
|
["DeletedMailsResponse"]: {
|
|
2446
|
-
deletedMails: Array<
|
|
4245
|
+
deletedMails: Array<ModelTypes["Mail"]>;
|
|
2447
4246
|
};
|
|
2448
4247
|
["DeletedNodesResponse"]: {
|
|
2449
|
-
deletedNodes: Array<
|
|
4248
|
+
deletedNodes: Array<ModelTypes["Node"]>;
|
|
2450
4249
|
};
|
|
2451
4250
|
["FaqResponse"]: {
|
|
2452
|
-
faq: Array<
|
|
4251
|
+
faq: Array<ModelTypes["FaqItem"]>;
|
|
2453
4252
|
};
|
|
2454
4253
|
["FileQueryResponse"]: {
|
|
2455
|
-
file?:
|
|
4254
|
+
file?: ModelTypes["File"] | undefined;
|
|
2456
4255
|
};
|
|
2457
4256
|
["FileContentResponse"]: {
|
|
2458
|
-
file?:
|
|
4257
|
+
file?: ModelTypes["FileContent"] | undefined;
|
|
2459
4258
|
};
|
|
2460
|
-
["
|
|
2461
|
-
|
|
2462
|
-
sizeBefore: GraphQLTypes["BigInt"];
|
|
4259
|
+
["JwtResponse"]: {
|
|
4260
|
+
jwt: string;
|
|
2463
4261
|
};
|
|
2464
4262
|
["QueryMailResponse"]: {
|
|
2465
|
-
mail?:
|
|
4263
|
+
mail?: ModelTypes["Mail"] | undefined;
|
|
2466
4264
|
};
|
|
2467
4265
|
["NodeResponse"]: {
|
|
2468
|
-
node?:
|
|
4266
|
+
node?: ModelTypes["Node"] | undefined;
|
|
2469
4267
|
};
|
|
2470
4268
|
["NodesSharedWithMeResponse"]: {
|
|
2471
|
-
nodesSharedWithMe: Array<
|
|
4269
|
+
nodesSharedWithMe: Array<ModelTypes["Node"]>;
|
|
2472
4270
|
};
|
|
2473
4271
|
["PaymentInfosResponse"]: {
|
|
2474
|
-
paymentInfos?:
|
|
4272
|
+
paymentInfos?: ModelTypes["PaymentInfos"] | undefined;
|
|
2475
4273
|
};
|
|
2476
4274
|
["PlanResponse"]: {
|
|
2477
|
-
plan: Array<
|
|
4275
|
+
plan: Array<ModelTypes["Plan"]>;
|
|
2478
4276
|
};
|
|
2479
4277
|
["SharedNodesResponse"]: {
|
|
2480
|
-
sharedNodes: Array<
|
|
4278
|
+
sharedNodes: Array<ModelTypes["Node"]>;
|
|
2481
4279
|
};
|
|
2482
4280
|
["UnreadReceivedMailsCountResponse"]: {
|
|
2483
4281
|
count: number;
|
|
2484
4282
|
};
|
|
2485
4283
|
["UserResponse"]: {
|
|
2486
|
-
user?:
|
|
4284
|
+
user?: ModelTypes["User"] | undefined;
|
|
2487
4285
|
};
|
|
2488
4286
|
["UserListResponse"]: {
|
|
2489
|
-
userList: Array<
|
|
4287
|
+
userList: Array<ModelTypes["User"]>;
|
|
2490
4288
|
};
|
|
2491
4289
|
["TemporaryUser"]: {
|
|
2492
4290
|
id: string;
|
|
2493
|
-
mails: Array<
|
|
2494
|
-
draftMails: Array<
|
|
4291
|
+
mails: Array<ModelTypes["MailIntegrity"]>;
|
|
4292
|
+
draftMails: Array<ModelTypes["MailIntegrityDraft"]>;
|
|
2495
4293
|
email?: string | undefined;
|
|
2496
4294
|
};
|
|
2497
4295
|
["User"]: {
|
|
2498
4296
|
id: string;
|
|
2499
|
-
deletedAt?:
|
|
2500
|
-
lang:
|
|
2501
|
-
reportSent: Array<
|
|
2502
|
-
godFather?:
|
|
2503
|
-
godChildren: Array<
|
|
2504
|
-
infos:
|
|
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"];
|
|
4303
|
+
infosId: string;
|
|
2505
4304
|
firstname: string;
|
|
2506
4305
|
lastname: string;
|
|
2507
4306
|
email: string;
|
|
2508
4307
|
phone: string;
|
|
2509
|
-
lastLogin:
|
|
2510
|
-
role:
|
|
2511
|
-
sessions: Array<
|
|
2512
|
-
createdAt:
|
|
2513
|
-
receivedMails: Array<
|
|
2514
|
-
waitingReceivedMails: Array<
|
|
2515
|
-
sentMails: Array<
|
|
2516
|
-
draftMails: Array<
|
|
2517
|
-
appSettings?:
|
|
2518
|
-
applications: Array<
|
|
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"]>;
|
|
2519
4318
|
publicKey: string;
|
|
2520
4319
|
};
|
|
2521
4320
|
["UserAppNotifications"]: {
|
|
@@ -2523,7 +4322,7 @@ export declare type ModelTypes = {
|
|
|
2523
4322
|
enableAll: boolean;
|
|
2524
4323
|
mail: boolean;
|
|
2525
4324
|
cloud: boolean;
|
|
2526
|
-
disableAllUntil?:
|
|
4325
|
+
disableAllUntil?: ModelTypes["DateTime"] | undefined;
|
|
2527
4326
|
};
|
|
2528
4327
|
["UserAppSettings"]: {
|
|
2529
4328
|
id: string;
|
|
@@ -2539,35 +4338,35 @@ export declare type ModelTypes = {
|
|
|
2539
4338
|
phones: Array<string>;
|
|
2540
4339
|
lastname: string;
|
|
2541
4340
|
firstname: string;
|
|
2542
|
-
user?:
|
|
2543
|
-
updatedAt:
|
|
4341
|
+
user?: ModelTypes["User"] | undefined;
|
|
4342
|
+
updatedAt: ModelTypes["DateTime"];
|
|
2544
4343
|
};
|
|
2545
4344
|
["UserSession"]: {
|
|
2546
4345
|
id: string;
|
|
2547
|
-
appSessions: Array<
|
|
2548
|
-
lastActivity?:
|
|
4346
|
+
appSessions: Array<ModelTypes["AppSession"]>;
|
|
4347
|
+
lastActivity?: ModelTypes["DateTime"] | undefined;
|
|
2549
4348
|
userAgent?: string | undefined;
|
|
2550
4349
|
ip?: string | undefined;
|
|
2551
4350
|
city?: string | undefined;
|
|
2552
4351
|
country?: string | undefined;
|
|
2553
|
-
createdAt:
|
|
4352
|
+
createdAt: ModelTypes["DateTime"];
|
|
2554
4353
|
};
|
|
2555
4354
|
["WaitingReceivedMail"]: {
|
|
2556
|
-
sender:
|
|
2557
|
-
date:
|
|
2558
|
-
recipients: Array<
|
|
2559
|
-
temporaryRecipients: Array<
|
|
4355
|
+
sender: ModelTypes["User"];
|
|
4356
|
+
date: ModelTypes["DateTime"];
|
|
4357
|
+
recipients: Array<ModelTypes["User"]>;
|
|
4358
|
+
temporaryRecipients: Array<ModelTypes["TemporaryUser"]>;
|
|
2560
4359
|
attachmentsCount: number;
|
|
2561
4360
|
};
|
|
2562
4361
|
["PaymentInfos"]: {
|
|
2563
4362
|
hostedUrl: string;
|
|
2564
|
-
currentSubscription:
|
|
2565
|
-
invoices: Array<
|
|
4363
|
+
currentSubscription: ModelTypes["RecurlySubscription"];
|
|
4364
|
+
invoices: Array<ModelTypes["RecurlyInvoices"]>;
|
|
2566
4365
|
};
|
|
2567
4366
|
["RecurlyInvoices"]: {
|
|
2568
4367
|
pdf: string;
|
|
2569
|
-
date:
|
|
2570
|
-
due:
|
|
4368
|
+
date: ModelTypes["DateTime"];
|
|
4369
|
+
due: ModelTypes["DateTime"];
|
|
2571
4370
|
status: string;
|
|
2572
4371
|
total: number;
|
|
2573
4372
|
name: string;
|
|
@@ -2575,16 +4374,16 @@ export declare type ModelTypes = {
|
|
|
2575
4374
|
};
|
|
2576
4375
|
["RecurlySubscription"]: {
|
|
2577
4376
|
autorenew: boolean;
|
|
2578
|
-
activatedAt?:
|
|
2579
|
-
currentPeriodEndsAt?:
|
|
2580
|
-
currentPeriodStartedAt?:
|
|
2581
|
-
canceledAt?:
|
|
2582
|
-
createdAt?:
|
|
2583
|
-
expiresAt?:
|
|
2584
|
-
pausedAt?:
|
|
2585
|
-
trialEndsAt?:
|
|
2586
|
-
trialStartedAt?:
|
|
2587
|
-
updatedAt?:
|
|
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;
|
|
2588
4387
|
state: string;
|
|
2589
4388
|
collectionMethod: string;
|
|
2590
4389
|
plan?: string | undefined;
|
|
@@ -2595,78 +4394,78 @@ export declare type ModelTypes = {
|
|
|
2595
4394
|
nodes: Array<string>;
|
|
2596
4395
|
};
|
|
2597
4396
|
["Query"]: {
|
|
2598
|
-
appNotifications?:
|
|
2599
|
-
blog?:
|
|
2600
|
-
dbConfig?:
|
|
2601
|
-
dbGet?:
|
|
2602
|
-
dbSearch?:
|
|
2603
|
-
deletedMails?:
|
|
2604
|
-
deletedNodes?:
|
|
2605
|
-
faq?:
|
|
2606
|
-
file?:
|
|
2607
|
-
fileContent?:
|
|
2608
|
-
filesContent?:
|
|
2609
|
-
filesSharedWithMe: Array<
|
|
2610
|
-
|
|
2611
|
-
limits?:
|
|
2612
|
-
mail?:
|
|
2613
|
-
node?:
|
|
2614
|
-
nodesSharedWithMe?:
|
|
2615
|
-
paymentInfos?:
|
|
2616
|
-
plans?:
|
|
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;
|
|
2617
4416
|
serverTime?: number | undefined;
|
|
2618
|
-
sharedNodes?:
|
|
2619
|
-
unreadReceivedMailsCount?:
|
|
2620
|
-
user?:
|
|
2621
|
-
userList?:
|
|
4417
|
+
sharedNodes?: ModelTypes["SharedNodesResult"] | undefined;
|
|
4418
|
+
unreadReceivedMailsCount?: ModelTypes["UnreadReceivedMailsCountResult"] | undefined;
|
|
4419
|
+
user?: ModelTypes["UserResult"] | undefined;
|
|
4420
|
+
userList?: ModelTypes["UserListResult"] | undefined;
|
|
2622
4421
|
};
|
|
2623
4422
|
["Mutation"]: {
|
|
2624
|
-
addFileToHistory?:
|
|
2625
|
-
cancelPayment?:
|
|
2626
|
-
createApplication?:
|
|
2627
|
-
createDraftMail?:
|
|
2628
|
-
createFolder?:
|
|
2629
|
-
dbConfigMutation?:
|
|
2630
|
-
dbSet?:
|
|
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;
|
|
2631
4430
|
deleteAllData: boolean;
|
|
2632
|
-
deleteDraftMail?:
|
|
2633
|
-
deleteFile?:
|
|
2634
|
-
deleteMail?:
|
|
2635
|
-
deleteMailTrash?:
|
|
2636
|
-
deleteNode?:
|
|
2637
|
-
deleteNodeCloudTrash?:
|
|
2638
|
-
deleteNodeSharing?:
|
|
2639
|
-
deleteUser?:
|
|
2640
|
-
duplicateNode?:
|
|
2641
|
-
emptyCloudTrash?:
|
|
2642
|
-
emptyMailTrash?:
|
|
2643
|
-
logout?:
|
|
2644
|
-
moveNodes?:
|
|
2645
|
-
pay?:
|
|
2646
|
-
readMail?:
|
|
2647
|
-
recoverMail?:
|
|
2648
|
-
recoverNode?:
|
|
2649
|
-
saveInCloud?:
|
|
2650
|
-
sendAppMail?:
|
|
2651
|
-
sendDraftMail?:
|
|
2652
|
-
sendOneMail?:
|
|
2653
|
-
sendReport?:
|
|
2654
|
-
shareFileInHistory?:
|
|
2655
|
-
shareNode?:
|
|
2656
|
-
shareNodeFinish?:
|
|
2657
|
-
unreadMail?:
|
|
2658
|
-
updateAppNotifications?:
|
|
2659
|
-
updateAppSettings?:
|
|
2660
|
-
updateAutoDisconnectDelay?:
|
|
2661
|
-
updateDraftMail?:
|
|
2662
|
-
updateNode?:
|
|
2663
|
-
updateProfile?:
|
|
2664
|
-
uploadAnonymous?:
|
|
2665
|
-
uploadFile?:
|
|
2666
|
-
uploadFileEnd?:
|
|
2667
|
-
uploadFilePartEnd?:
|
|
2668
|
-
uploadLiteFile?:
|
|
2669
|
-
changeUserPlan?:
|
|
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;
|
|
2670
4469
|
};
|
|
2671
4470
|
["Subscription"]: {
|
|
2672
4471
|
test: boolean;
|
|
@@ -2756,9 +4555,9 @@ export declare type GraphQLTypes = {
|
|
|
2756
4555
|
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
2757
4556
|
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
2758
4557
|
};
|
|
2759
|
-
["
|
|
2760
|
-
__typename: "
|
|
2761
|
-
["...on
|
|
4558
|
+
["GetJwtResult"]: {
|
|
4559
|
+
__typename: "JwtResponse" | "ErrorAccessDenied";
|
|
4560
|
+
["...on JwtResponse"]: "__union" & GraphQLTypes["JwtResponse"];
|
|
2762
4561
|
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
2763
4562
|
};
|
|
2764
4563
|
["LimitsResult"]: {
|
|
@@ -3097,7 +4896,9 @@ export declare type GraphQLTypes = {
|
|
|
3097
4896
|
keyPair?: GraphQLTypes["AppKeyPair"] | undefined;
|
|
3098
4897
|
sessions: Array<GraphQLTypes["AppSession"]>;
|
|
3099
4898
|
app: GraphQLTypes["Application"];
|
|
4899
|
+
appId: string;
|
|
3100
4900
|
user: GraphQLTypes["User"];
|
|
4901
|
+
userId: string;
|
|
3101
4902
|
settings: GraphQLTypes["UserAppSettings"];
|
|
3102
4903
|
filesAccesses: Array<GraphQLTypes["FileAccess"]>;
|
|
3103
4904
|
filesSharedAccesses: Array<GraphQLTypes["FileAccess"]>;
|
|
@@ -3371,11 +5172,6 @@ export declare type GraphQLTypes = {
|
|
|
3371
5172
|
filename: string;
|
|
3372
5173
|
mail: GraphQLTypes["Mail"];
|
|
3373
5174
|
};
|
|
3374
|
-
["FolderSize"]: {
|
|
3375
|
-
__typename: "FolderSize";
|
|
3376
|
-
size: GraphQLTypes["BigInt"];
|
|
3377
|
-
sizeBefore: GraphQLTypes["BigInt"];
|
|
3378
|
-
};
|
|
3379
5175
|
["MailFileInput"]: {
|
|
3380
5176
|
id: string;
|
|
3381
5177
|
name: string;
|
|
@@ -3473,6 +5269,7 @@ export declare type GraphQLTypes = {
|
|
|
3473
5269
|
deletedAt?: GraphQLTypes["DateTime"] | undefined;
|
|
3474
5270
|
files: Array<GraphQLTypes["FilesOnMails"]>;
|
|
3475
5271
|
mailIntegrity?: GraphQLTypes["MailIntegrity"] | undefined;
|
|
5272
|
+
mailIntegrityId?: string | undefined;
|
|
3476
5273
|
mailIntegrityDraft?: GraphQLTypes["MailIntegrityDraft"] | undefined;
|
|
3477
5274
|
openedAt?: GraphQLTypes["DateTime"] | undefined;
|
|
3478
5275
|
recipient: GraphQLTypes["User"];
|
|
@@ -3523,6 +5320,7 @@ export declare type GraphQLTypes = {
|
|
|
3523
5320
|
accesses: Array<GraphQLTypes["NodeAccess"]>;
|
|
3524
5321
|
current?: GraphQLTypes["File"] | undefined;
|
|
3525
5322
|
currentFileId?: string | undefined;
|
|
5323
|
+
sizes: GraphQLTypes["NodeSize"];
|
|
3526
5324
|
access?: GraphQLTypes["NodeAccess"] | undefined;
|
|
3527
5325
|
breadcrumb: Array<GraphQLTypes["NodeBreadcrumbItem"]>;
|
|
3528
5326
|
};
|
|
@@ -3547,6 +5345,11 @@ export declare type GraphQLTypes = {
|
|
|
3547
5345
|
sharedByUserId: string;
|
|
3548
5346
|
sharedByAppId: string;
|
|
3549
5347
|
};
|
|
5348
|
+
["NodeSize"]: {
|
|
5349
|
+
__typename: "NodeSize";
|
|
5350
|
+
size: GraphQLTypes["BigInt"];
|
|
5351
|
+
sizeBefore: GraphQLTypes["BigInt"];
|
|
5352
|
+
};
|
|
3550
5353
|
["Plan"]: {
|
|
3551
5354
|
__typename: "Plan";
|
|
3552
5355
|
id: string;
|
|
@@ -3777,10 +5580,9 @@ export declare type GraphQLTypes = {
|
|
|
3777
5580
|
__typename: "FileContentResponse";
|
|
3778
5581
|
file?: GraphQLTypes["FileContent"] | undefined;
|
|
3779
5582
|
};
|
|
3780
|
-
["
|
|
3781
|
-
__typename: "
|
|
3782
|
-
|
|
3783
|
-
sizeBefore: GraphQLTypes["BigInt"];
|
|
5583
|
+
["JwtResponse"]: {
|
|
5584
|
+
__typename: "JwtResponse";
|
|
5585
|
+
jwt: string;
|
|
3784
5586
|
};
|
|
3785
5587
|
["QueryMailResponse"]: {
|
|
3786
5588
|
__typename: "QueryMailResponse";
|
|
@@ -3834,6 +5636,7 @@ export declare type GraphQLTypes = {
|
|
|
3834
5636
|
godFather?: GraphQLTypes["User"] | undefined;
|
|
3835
5637
|
godChildren: Array<GraphQLTypes["User"]>;
|
|
3836
5638
|
infos: GraphQLTypes["UserInfos"];
|
|
5639
|
+
infosId: string;
|
|
3837
5640
|
firstname: string;
|
|
3838
5641
|
lastname: string;
|
|
3839
5642
|
email: string;
|
|
@@ -3949,7 +5752,7 @@ export declare type GraphQLTypes = {
|
|
|
3949
5752
|
fileContent?: GraphQLTypes["FileContentResult"] | undefined;
|
|
3950
5753
|
filesContent?: GraphQLTypes["FilesContentResult"] | undefined;
|
|
3951
5754
|
filesSharedWithMe: Array<GraphQLTypes["FileSharedContent"]>;
|
|
3952
|
-
|
|
5755
|
+
getJwt?: GraphQLTypes["GetJwtResult"] | undefined;
|
|
3953
5756
|
limits?: GraphQLTypes["LimitsResult"] | undefined;
|
|
3954
5757
|
mail?: GraphQLTypes["MailResult"] | undefined;
|
|
3955
5758
|
node?: GraphQLTypes["NodeResult"] | undefined;
|
|
@@ -4066,4 +5869,25 @@ export declare enum PayInputType {
|
|
|
4066
5869
|
secure = "secure",
|
|
4067
5870
|
classic = "classic"
|
|
4068
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
|
+
};
|
|
4069
5893
|
export {};
|