@secrecy/lib 1.6.0-integration-get-developers.2 → 1.6.0-integration-get-developers.4
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/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/zeus/const.js +14 -3
- package/dist/zeus/index.d.ts +1690 -1126
- package/dist/zeus/index.js +73 -73
- package/package.json +1 -1
package/dist/zeus/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Ops } from
|
|
1
|
+
import { Ops } from "./const.js";
|
|
2
2
|
export declare const HOST = "http://localhost:4000/graphql";
|
|
3
3
|
export declare const HEADERS: {};
|
|
4
4
|
export declare const apiSubscription: (options: chainOptions) => (query: string) => {
|
|
@@ -9,7 +9,7 @@ export declare const apiSubscription: (options: chainOptions) => (query: string)
|
|
|
9
9
|
open: (e: () => void) => void;
|
|
10
10
|
};
|
|
11
11
|
export declare const apiFetch: (options: [input: RequestInfo | URL, init?: RequestInit | undefined]) => (query: string, variables?: Record<string, unknown>) => Promise<Record<string, any> | undefined>;
|
|
12
|
-
export declare const InternalsBuildQuery: ({ ops, props, returns, options, scalars
|
|
12
|
+
export declare const InternalsBuildQuery: ({ ops, props, returns, options, scalars }: {
|
|
13
13
|
props: AllTypesPropsType;
|
|
14
14
|
returns: ReturnTypesType;
|
|
15
15
|
ops: Operations;
|
|
@@ -42,7 +42,7 @@ export declare const Gql: <O extends "query" | "mutation" | "subscription", SCLR
|
|
|
42
42
|
variables?: Record<string, unknown>;
|
|
43
43
|
}) => Promise<InputType<GraphQLTypes[R], Z, SCLR>>;
|
|
44
44
|
export declare const ZeusScalars: SelectionFunction<ScalarCoders>;
|
|
45
|
-
export declare const decodeScalarsInResponse: <O extends Operations>({ response, scalars, returns, ops, initialZeusQuery, initialOp
|
|
45
|
+
export declare const decodeScalarsInResponse: <O extends Operations>({ response, scalars, returns, ops, initialZeusQuery, initialOp }: {
|
|
46
46
|
ops: O;
|
|
47
47
|
response: any;
|
|
48
48
|
returns: ReturnTypesType;
|
|
@@ -50,7 +50,7 @@ export declare const decodeScalarsInResponse: <O extends Operations>({ response,
|
|
|
50
50
|
initialOp: keyof O;
|
|
51
51
|
initialZeusQuery: InputValueType | VType;
|
|
52
52
|
}) => any;
|
|
53
|
-
export declare const traverseResponse: ({ resolvers, scalarPaths
|
|
53
|
+
export declare const traverseResponse: ({ resolvers, scalarPaths }: {
|
|
54
54
|
scalarPaths: {
|
|
55
55
|
[x: string]: `scalar.${string}`;
|
|
56
56
|
};
|
|
@@ -59,7 +59,7 @@ export declare const traverseResponse: ({ resolvers, scalarPaths, }: {
|
|
|
59
59
|
};
|
|
60
60
|
}) => (k: string, o: InputValueType | VType, p?: string[]) => unknown;
|
|
61
61
|
export type AllTypesPropsType = {
|
|
62
|
-
[x: string]: undefined | `scalar.${string}` |
|
|
62
|
+
[x: string]: undefined | `scalar.${string}` | "enum" | {
|
|
63
63
|
[x: string]: undefined | string | {
|
|
64
64
|
[x: string]: string | undefined;
|
|
65
65
|
};
|
|
@@ -118,8 +118,8 @@ export declare const PrepareScalarPaths: ({ ops, returns }: {
|
|
|
118
118
|
[x: string]: `scalar.${string}`;
|
|
119
119
|
} | undefined;
|
|
120
120
|
export declare const purifyGraphQLKey: (k: string) => string;
|
|
121
|
-
export declare const ResolveFromPath: (props: AllTypesPropsType, returns: ReturnTypesType, ops: Operations) => (path: string) =>
|
|
122
|
-
export declare const InternalArgsBuilt: ({ props, ops, returns, scalars, vars
|
|
121
|
+
export declare const ResolveFromPath: (props: AllTypesPropsType, returns: ReturnTypesType, ops: Operations) => (path: string) => "enum" | "not" | `scalar.${string}`;
|
|
122
|
+
export declare const InternalArgsBuilt: ({ props, ops, returns, scalars, vars }: {
|
|
123
123
|
props: AllTypesPropsType;
|
|
124
124
|
returns: ReturnTypesType;
|
|
125
125
|
ops: Operations;
|
|
@@ -145,22 +145,22 @@ type DeepAnify<T> = {
|
|
|
145
145
|
};
|
|
146
146
|
type IsPayLoad<T> = T extends [any, infer PayLoad] ? PayLoad : T;
|
|
147
147
|
export type ScalarDefinition = Record<string, ScalarResolver>;
|
|
148
|
-
type IsScalar<S, SCLR extends ScalarDefinition> = S extends
|
|
148
|
+
type IsScalar<S, SCLR extends ScalarDefinition> = S extends "scalar" & {
|
|
149
149
|
name: infer T;
|
|
150
|
-
} ? T extends keyof SCLR ? SCLR[T][
|
|
150
|
+
} ? T extends keyof SCLR ? SCLR[T]["decode"] extends (s: unknown) => unknown ? ReturnType<SCLR[T]["decode"]> : unknown : unknown : S;
|
|
151
151
|
type IsArray<T, U, SCLR extends ScalarDefinition> = T extends Array<infer R> ? InputType<R, U, SCLR>[] : InputType<T, U, SCLR>;
|
|
152
152
|
type FlattenArray<T> = T extends Array<infer R> ? R : T;
|
|
153
153
|
type BaseZeusResolver = boolean | 1 | string | Variable<any, string>;
|
|
154
154
|
type IsInterfaced<SRC extends DeepAnify<DST>, DST, SCLR extends ScalarDefinition> = FlattenArray<SRC> extends ZEUS_INTERFACES | ZEUS_UNIONS ? {
|
|
155
|
-
[P in keyof SRC]: SRC[P] extends
|
|
155
|
+
[P in keyof SRC]: SRC[P] extends "__union" & infer R ? P extends keyof DST ? IsArray<R, "__typename" extends keyof DST ? DST[P] & {
|
|
156
156
|
__typename: true;
|
|
157
|
-
} : DST[P], SCLR> : IsArray<R,
|
|
157
|
+
} : DST[P], SCLR> : IsArray<R, "__typename" extends keyof DST ? {
|
|
158
158
|
__typename: true;
|
|
159
159
|
} : never, SCLR> : never;
|
|
160
160
|
}[keyof SRC] & {
|
|
161
161
|
[P in keyof Omit<Pick<SRC, {
|
|
162
|
-
[P in keyof DST]: SRC[P] extends
|
|
163
|
-
}[keyof DST]>,
|
|
162
|
+
[P in keyof DST]: SRC[P] extends "__union" ? never : P;
|
|
163
|
+
}[keyof DST]>, "__typename">]: IsPayLoad<DST[P]> extends BaseZeusResolver ? IsScalar<SRC[P], SCLR> : IsArray<SRC[P], DST[P], SCLR>;
|
|
164
164
|
} : {
|
|
165
165
|
[P in keyof Pick<SRC, keyof DST>]: IsPayLoad<DST[P]> extends BaseZeusResolver ? IsScalar<SRC[P], SCLR> : IsArray<SRC[P], DST[P], SCLR>;
|
|
166
166
|
};
|
|
@@ -169,7 +169,7 @@ export type InputType<SRC, DST, SCLR extends ScalarDefinition = {}> = IsPayLoad<
|
|
|
169
169
|
__alias: infer R;
|
|
170
170
|
} ? {
|
|
171
171
|
[P in keyof R]: MapType<SRC, R[P], SCLR>[keyof MapType<SRC, R[P], SCLR>];
|
|
172
|
-
} & MapType<SRC, Omit<IsPayLoad<DST>,
|
|
172
|
+
} & MapType<SRC, Omit<IsPayLoad<DST>, "__alias">, SCLR> : MapType<SRC, IsPayLoad<DST>, SCLR>;
|
|
173
173
|
export type SubscriptionToGraphQL<Z, T, SCLR extends ScalarDefinition> = {
|
|
174
174
|
ws: WebSocket;
|
|
175
175
|
on: (fn: (args: InputType<T, Z, SCLR>) => void) => void;
|
|
@@ -192,11 +192,11 @@ export type ScalarResolver = {
|
|
|
192
192
|
};
|
|
193
193
|
export type SelectionFunction<V> = <T>(t: T | V) => T;
|
|
194
194
|
type BuiltInVariableTypes = {
|
|
195
|
-
[
|
|
196
|
-
[
|
|
197
|
-
[
|
|
198
|
-
[
|
|
199
|
-
[
|
|
195
|
+
["String"]: string;
|
|
196
|
+
["Int"]: number;
|
|
197
|
+
["Float"]: number;
|
|
198
|
+
["ID"]: unknown;
|
|
199
|
+
["Boolean"]: boolean;
|
|
200
200
|
};
|
|
201
201
|
type AllVariableTypes = keyof BuiltInVariableTypes | keyof ZEUS_VARIABLES;
|
|
202
202
|
type VariableRequired<T extends string> = `${T}!` | T | `[${T}]` | `[${T}]!` | `[${T}!]` | `[${T}!]!`;
|
|
@@ -216,8 +216,8 @@ type OptionalKeys<T> = {
|
|
|
216
216
|
};
|
|
217
217
|
export type WithOptionalNullables<T> = OptionalKeys<WithNullableKeys<T>> & WithNonNullableKeys<T>;
|
|
218
218
|
export type Variable<T extends GraphQLVariableType, Name extends string> = {
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
" __zeus_name": Name;
|
|
220
|
+
" __zeus_type": T;
|
|
221
221
|
};
|
|
222
222
|
export type ExtractVariables<Query> = Query extends Variable<infer VType, infer VName> ? {
|
|
223
223
|
[key in VName]: GetVariableType<VType>;
|
|
@@ -235,7 +235,7 @@ export type ScalarCoders = {
|
|
|
235
235
|
Json?: ScalarResolver;
|
|
236
236
|
Bytes?: ScalarResolver;
|
|
237
237
|
};
|
|
238
|
-
type ZEUS_UNIONS = GraphQLTypes["AppNotificationsResult"] | GraphQLTypes["ApplicationsResult"] | GraphQLTypes["BlogResult"] | GraphQLTypes["DbConfigResult"] | GraphQLTypes["DbGetResult"] | GraphQLTypes["DbSearchResult"] | GraphQLTypes["DeletedMailsResult"] | GraphQLTypes["DeletedNodesResult"] | GraphQLTypes["FaqResult"] | GraphQLTypes["FileResult"] | GraphQLTypes["FileContentResult"] | GraphQLTypes["FilesContentResult"] | GraphQLTypes["GetJwtResult"] | GraphQLTypes["IsCryptoTransactionDoneResult"] | GraphQLTypes["LimitsResult"] | GraphQLTypes["MailResult"] | GraphQLTypes["MyCryptoBalanceResult"] | GraphQLTypes["NodeResult"] | GraphQLTypes["NodesSharedWithMeResult"] | GraphQLTypes["PaymentInfosResult"] | GraphQLTypes["PlansResult"] | GraphQLTypes["SharedNodesResult"] | GraphQLTypes["UnreadReceivedMailsCountResult"] | GraphQLTypes["UserResult"] | GraphQLTypes["UserListResult"] | GraphQLTypes["GetCardIdentificationResult"] | GraphQLTypes["GetStripeBalanceResult"] | GraphQLTypes["GetStripeBalanceTransactionResult"] | GraphQLTypes["GetStripeTransactionResult"] | GraphQLTypes["HasStripeAccountResult"] | GraphQLTypes["KycStripeCompletedResult"] | GraphQLTypes["GetAllStripeTransferResult"] | GraphQLTypes["GetStripeTransferResult"] | GraphQLTypes["GetAllStripePayoutResult"] | GraphQLTypes["GetStripePayoutResult"] | GraphQLTypes["GetAllPaymentRequestToCollectResult"] | GraphQLTypes["GetAllPaymentRequestToPayResult"] | GraphQLTypes["GetPaymentRequestToCollectResult"] | GraphQLTypes["GetPaymentRequestToPayResult"] | GraphQLTypes["IsValidPaymentIntentResult"] | GraphQLTypes["GetAllDevelopersResult"] | GraphQLTypes["GetDeveloperResult"] | GraphQLTypes["AddFileToHistoryResult"] | GraphQLTypes["CancelPaymentResult"] | GraphQLTypes["CreateCryptoWalletResult"] | 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["SendCryptoTransactionResult"] | 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["CreateCardTokenResult"] | GraphQLTypes["CreateStripeTransferResult"] | GraphQLTypes["DeleteCardTokenResult"] | GraphQLTypes["StripeOnBoardingResult"] | GraphQLTypes["CancelStripePayoutResult"] | GraphQLTypes["CreateStripePayoutResult"] | GraphQLTypes["AddCartToPaymentIntentResult"] | GraphQLTypes["CancelPaymentIntentResult"] | GraphQLTypes["ConfirmPaymentIntentResult"] | GraphQLTypes["CreatePaymentIntentResult"] | GraphQLTypes["RenewAppCodeResult"] | GraphQLTypes["UpdateOriginUrlResult"] | GraphQLTypes["CreateApplicationResult"] | GraphQLTypes["DeleteApplicationResult"] | GraphQLTypes["EditColorsResult"] | GraphQLTypes["EditLogoResult"] | GraphQLTypes["EditNameResult"] | GraphQLTypes["AddDeveloperResult"] | GraphQLTypes["DeleteDeveloperResult"] | GraphQLTypes["EditDeveloperResult"] | GraphQLTypes["Error"] | GraphQLTypes["FileContent"];
|
|
238
|
+
type ZEUS_UNIONS = GraphQLTypes["AppNotificationsResult"] | GraphQLTypes["ApplicationsResult"] | GraphQLTypes["BlogResult"] | GraphQLTypes["DbConfigResult"] | GraphQLTypes["DbGetResult"] | GraphQLTypes["DbSearchResult"] | GraphQLTypes["DeletedMailsResult"] | GraphQLTypes["DeletedNodesResult"] | GraphQLTypes["FaqResult"] | GraphQLTypes["FileResult"] | GraphQLTypes["FileContentResult"] | GraphQLTypes["FilesContentResult"] | GraphQLTypes["GetJwtResult"] | GraphQLTypes["IsCryptoTransactionDoneResult"] | GraphQLTypes["LimitsResult"] | GraphQLTypes["MailResult"] | GraphQLTypes["MyCryptoBalanceResult"] | GraphQLTypes["NodeResult"] | GraphQLTypes["NodesSharedWithMeResult"] | GraphQLTypes["PaymentInfosResult"] | GraphQLTypes["PlansResult"] | GraphQLTypes["SharedNodesResult"] | GraphQLTypes["UnreadReceivedMailsCountResult"] | GraphQLTypes["UserResult"] | GraphQLTypes["UserListResult"] | GraphQLTypes["GetCardIdentificationResult"] | GraphQLTypes["GetStripeBalanceResult"] | GraphQLTypes["GetStripeBalanceTransactionResult"] | GraphQLTypes["GetStripeTransactionResult"] | GraphQLTypes["HasStripeAccountResult"] | GraphQLTypes["KycStripeCompletedResult"] | GraphQLTypes["GetAllStripeTransferResult"] | GraphQLTypes["GetStripeTransferResult"] | GraphQLTypes["GetAllStripePayoutResult"] | GraphQLTypes["GetStripePayoutResult"] | GraphQLTypes["GetAllPaymentRequestToCollectResult"] | GraphQLTypes["GetAllPaymentRequestToPayResult"] | GraphQLTypes["GetPaymentRequestToCollectResult"] | GraphQLTypes["GetPaymentRequestToPayResult"] | GraphQLTypes["IsValidPaymentIntentResult"] | GraphQLTypes["GetApplicationResult"] | GraphQLTypes["GetAllDevelopersResult"] | GraphQLTypes["GetDeveloperResult"] | GraphQLTypes["AddFileToHistoryResult"] | GraphQLTypes["CancelPaymentResult"] | GraphQLTypes["CreateCryptoWalletResult"] | 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["SendCryptoTransactionResult"] | 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["CreateCardTokenResult"] | GraphQLTypes["CreateStripeTransferResult"] | GraphQLTypes["DeleteCardTokenResult"] | GraphQLTypes["StripeOnBoardingResult"] | GraphQLTypes["CancelStripePayoutResult"] | GraphQLTypes["CreateStripePayoutResult"] | GraphQLTypes["AddCartToPaymentIntentResult"] | GraphQLTypes["CancelPaymentIntentResult"] | GraphQLTypes["ConfirmPaymentIntentResult"] | GraphQLTypes["CreatePaymentIntentResult"] | GraphQLTypes["RenewAppCodeResult"] | GraphQLTypes["UpdateOriginUrlResult"] | GraphQLTypes["CreateApplicationResult"] | GraphQLTypes["DeleteApplicationResult"] | GraphQLTypes["EditColorsResult"] | GraphQLTypes["EditLogoResult"] | GraphQLTypes["EditNameResult"] | GraphQLTypes["AddDeveloperResult"] | GraphQLTypes["DeleteDeveloperResult"] | GraphQLTypes["EditDeveloperResult"] | GraphQLTypes["Error"] | GraphQLTypes["FileContent"];
|
|
239
239
|
export type ValueTypes = {
|
|
240
240
|
["BigInt"]: unknown;
|
|
241
241
|
["DateTime"]: unknown;
|
|
@@ -484,6 +484,12 @@ export type ValueTypes = {
|
|
|
484
484
|
["...on ErrorStripe"]: ValueTypes["ErrorStripe"];
|
|
485
485
|
__typename?: boolean | `@${string}`;
|
|
486
486
|
}>;
|
|
487
|
+
["GetApplicationResult"]: AliasType<{
|
|
488
|
+
["...on GetApplicationResponse"]: ValueTypes["GetApplicationResponse"];
|
|
489
|
+
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
490
|
+
["...on ErrorNotFound"]: ValueTypes["ErrorNotFound"];
|
|
491
|
+
__typename?: boolean | `@${string}`;
|
|
492
|
+
}>;
|
|
487
493
|
["GetAllDevelopersResult"]: AliasType<{
|
|
488
494
|
["...on GetAllDevelopersMainResponse"]: ValueTypes["GetAllDevelopersMainResponse"];
|
|
489
495
|
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
@@ -897,6 +903,7 @@ export type ValueTypes = {
|
|
|
897
903
|
id?: boolean | `@${string}`;
|
|
898
904
|
name?: boolean | `@${string}`;
|
|
899
905
|
logo?: boolean | `@${string}`;
|
|
906
|
+
code?: boolean | `@${string}`;
|
|
900
907
|
color?: boolean | `@${string}`;
|
|
901
908
|
origin?: boolean | `@${string}`;
|
|
902
909
|
createdAt?: boolean | `@${string}`;
|
|
@@ -983,7 +990,7 @@ export type ValueTypes = {
|
|
|
983
990
|
rights?: boolean | `@${string}`;
|
|
984
991
|
__typename?: boolean | `@${string}`;
|
|
985
992
|
}>;
|
|
986
|
-
["
|
|
993
|
+
["SortApplications"]: SortApplications;
|
|
987
994
|
["Error"]: AliasType<{
|
|
988
995
|
["...on ErrorStripe"]: ValueTypes["ErrorStripe"];
|
|
989
996
|
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
@@ -1001,14 +1008,14 @@ export type ValueTypes = {
|
|
|
1001
1008
|
}>;
|
|
1002
1009
|
["ErrorBase"]: AliasType<{
|
|
1003
1010
|
message?: boolean | `@${string}`;
|
|
1004
|
-
[
|
|
1005
|
-
[
|
|
1006
|
-
[
|
|
1007
|
-
[
|
|
1008
|
-
[
|
|
1009
|
-
[
|
|
1010
|
-
[
|
|
1011
|
-
[
|
|
1011
|
+
["...on ErrorAccessDenied"]?: Omit<ValueTypes["ErrorAccessDenied"], keyof ValueTypes["ErrorBase"]>;
|
|
1012
|
+
["...on ErrorBasic"]?: Omit<ValueTypes["ErrorBasic"], keyof ValueTypes["ErrorBase"]>;
|
|
1013
|
+
["...on ErrorLangNotExist"]?: Omit<ValueTypes["ErrorLangNotExist"], keyof ValueTypes["ErrorBase"]>;
|
|
1014
|
+
["...on ErrorLimit"]?: Omit<ValueTypes["ErrorLimit"], keyof ValueTypes["ErrorBase"]>;
|
|
1015
|
+
["...on ErrorNotExist"]?: Omit<ValueTypes["ErrorNotExist"], keyof ValueTypes["ErrorBase"]>;
|
|
1016
|
+
["...on ErrorNotFound"]?: Omit<ValueTypes["ErrorNotFound"], keyof ValueTypes["ErrorBase"]>;
|
|
1017
|
+
["...on ErrorStripe"]?: Omit<ValueTypes["ErrorStripe"], keyof ValueTypes["ErrorBase"]>;
|
|
1018
|
+
["...on ErrorUpgradePlan"]?: Omit<ValueTypes["ErrorUpgradePlan"], keyof ValueTypes["ErrorBase"]>;
|
|
1012
1019
|
__typename?: boolean | `@${string}`;
|
|
1013
1020
|
}>;
|
|
1014
1021
|
["ErrorBasic"]: AliasType<{
|
|
@@ -1104,10 +1111,10 @@ export type ValueTypes = {
|
|
|
1104
1111
|
md5Encrypted?: boolean | `@${string}`;
|
|
1105
1112
|
totalSize?: boolean | `@${string}`;
|
|
1106
1113
|
type?: boolean | `@${string}`;
|
|
1107
|
-
[
|
|
1108
|
-
[
|
|
1109
|
-
[
|
|
1110
|
-
[
|
|
1114
|
+
["...on FileContentCloud"]?: Omit<ValueTypes["FileContentCloud"], keyof ValueTypes["FileContentBase"]>;
|
|
1115
|
+
["...on FileContentLite"]?: Omit<ValueTypes["FileContentLite"], keyof ValueTypes["FileContentBase"]>;
|
|
1116
|
+
["...on FileContentReceivedMail"]?: Omit<ValueTypes["FileContentReceivedMail"], keyof ValueTypes["FileContentBase"]>;
|
|
1117
|
+
["...on FileContentSentMail"]?: Omit<ValueTypes["FileContentSentMail"], keyof ValueTypes["FileContentBase"]>;
|
|
1111
1118
|
__typename?: boolean | `@${string}`;
|
|
1112
1119
|
}>;
|
|
1113
1120
|
["FileContentCloud"]: AliasType<{
|
|
@@ -1944,6 +1951,10 @@ export type ValueTypes = {
|
|
|
1944
1951
|
__typename?: boolean | `@${string}`;
|
|
1945
1952
|
}>;
|
|
1946
1953
|
["PayoutType"]: PayoutType;
|
|
1954
|
+
["GetApplicationResponse"]: AliasType<{
|
|
1955
|
+
application?: ValueTypes["Application"];
|
|
1956
|
+
__typename?: boolean | `@${string}`;
|
|
1957
|
+
}>;
|
|
1947
1958
|
["DeveloperResponse"]: AliasType<{
|
|
1948
1959
|
rights?: boolean | `@${string}`;
|
|
1949
1960
|
role?: boolean | `@${string}`;
|
|
@@ -2106,415 +2117,689 @@ export type ValueTypes = {
|
|
|
2106
2117
|
};
|
|
2107
2118
|
["Query"]: AliasType<{
|
|
2108
2119
|
appNotifications?: ValueTypes["AppNotificationsResult"];
|
|
2109
|
-
applications?: [
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2120
|
+
applications?: [
|
|
2121
|
+
{
|
|
2122
|
+
sortBy: ValueTypes["SortApplications"] | Variable<any, string>;
|
|
2123
|
+
},
|
|
2124
|
+
ValueTypes["ApplicationsResult"]
|
|
2125
|
+
];
|
|
2126
|
+
blog?: [
|
|
2127
|
+
{
|
|
2128
|
+
lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
|
|
2129
|
+
},
|
|
2130
|
+
ValueTypes["BlogResult"]
|
|
2131
|
+
];
|
|
2132
|
+
dbConfig?: [
|
|
2133
|
+
{
|
|
2134
|
+
appCode: string | Variable<any, string>;
|
|
2135
|
+
},
|
|
2136
|
+
ValueTypes["DbConfigResult"]
|
|
2137
|
+
];
|
|
2138
|
+
dbGet?: [
|
|
2139
|
+
{
|
|
2140
|
+
field: string | Variable<any, string>;
|
|
2141
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
2142
|
+
},
|
|
2143
|
+
ValueTypes["DbGetResult"]
|
|
2144
|
+
];
|
|
2145
|
+
dbSearch?: [
|
|
2146
|
+
{
|
|
2147
|
+
search: string | Variable<any, string>;
|
|
2148
|
+
field: string | Variable<any, string>;
|
|
2149
|
+
},
|
|
2150
|
+
ValueTypes["DbSearchResult"]
|
|
2151
|
+
];
|
|
2152
|
+
deletedMails?: [
|
|
2153
|
+
{
|
|
2154
|
+
mailType: ValueTypes["MailType"] | Variable<any, string>;
|
|
2155
|
+
},
|
|
2156
|
+
ValueTypes["DeletedMailsResult"]
|
|
2157
|
+
];
|
|
2129
2158
|
deletedNodes?: ValueTypes["DeletedNodesResult"];
|
|
2130
|
-
faq?: [
|
|
2131
|
-
|
|
2132
|
-
|
|
2159
|
+
faq?: [
|
|
2160
|
+
{
|
|
2161
|
+
lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
|
|
2162
|
+
},
|
|
2163
|
+
ValueTypes["FaqResult"]
|
|
2164
|
+
];
|
|
2133
2165
|
file?: [{
|
|
2134
2166
|
id: string | Variable<any, string>;
|
|
2135
2167
|
}, ValueTypes["FileResult"]];
|
|
2136
|
-
fileContent?: [
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2168
|
+
fileContent?: [
|
|
2169
|
+
{
|
|
2170
|
+
fileId: string | Variable<any, string>;
|
|
2171
|
+
},
|
|
2172
|
+
ValueTypes["FileContentResult"]
|
|
2173
|
+
];
|
|
2174
|
+
filesContent?: [
|
|
2175
|
+
{
|
|
2176
|
+
fileIds: Array<string> | Variable<any, string>;
|
|
2177
|
+
},
|
|
2178
|
+
ValueTypes["FilesContentResult"]
|
|
2179
|
+
];
|
|
2180
|
+
filesSharedWithMe?: [
|
|
2181
|
+
{
|
|
2182
|
+
accepted?: boolean | undefined | null | Variable<any, string>;
|
|
2183
|
+
},
|
|
2184
|
+
ValueTypes["FileSharedContent"]
|
|
2185
|
+
];
|
|
2186
|
+
getJwt?: [
|
|
2187
|
+
{
|
|
2188
|
+
includeEmail?: boolean | undefined | null | Variable<any, string>;
|
|
2189
|
+
},
|
|
2190
|
+
ValueTypes["GetJwtResult"]
|
|
2191
|
+
];
|
|
2192
|
+
isCryptoTransactionDone?: [
|
|
2193
|
+
{
|
|
2194
|
+
idOrHash: string | Variable<any, string>;
|
|
2195
|
+
network?: ValueTypes["InfuraNetwork"] | undefined | null | Variable<any, string>;
|
|
2196
|
+
},
|
|
2197
|
+
ValueTypes["IsCryptoTransactionDoneResult"]
|
|
2198
|
+
];
|
|
2152
2199
|
limits?: ValueTypes["LimitsResult"];
|
|
2153
2200
|
mail?: [{
|
|
2154
2201
|
id: string | Variable<any, string>;
|
|
2155
2202
|
}, ValueTypes["MailResult"]];
|
|
2156
|
-
myCryptoBalance?: [
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2203
|
+
myCryptoBalance?: [
|
|
2204
|
+
{
|
|
2205
|
+
network?: ValueTypes["InfuraNetwork"] | undefined | null | Variable<any, string>;
|
|
2206
|
+
},
|
|
2207
|
+
ValueTypes["MyCryptoBalanceResult"]
|
|
2208
|
+
];
|
|
2209
|
+
node?: [
|
|
2210
|
+
{
|
|
2211
|
+
id?: string | undefined | null | Variable<any, string>;
|
|
2212
|
+
deleted?: boolean | undefined | null | Variable<any, string>;
|
|
2213
|
+
},
|
|
2214
|
+
ValueTypes["NodeResult"]
|
|
2215
|
+
];
|
|
2216
|
+
nodesSharedWithMe?: [
|
|
2217
|
+
{
|
|
2218
|
+
type?: ValueTypes["NodeType"] | undefined | null | Variable<any, string>;
|
|
2219
|
+
},
|
|
2220
|
+
ValueTypes["NodesSharedWithMeResult"]
|
|
2221
|
+
];
|
|
2166
2222
|
paymentInfos?: ValueTypes["PaymentInfosResult"];
|
|
2167
2223
|
plans?: ValueTypes["PlansResult"];
|
|
2168
2224
|
serverTime?: boolean | `@${string}`;
|
|
2169
2225
|
sharedNodes?: ValueTypes["SharedNodesResult"];
|
|
2170
2226
|
unreadReceivedMailsCount?: ValueTypes["UnreadReceivedMailsCountResult"];
|
|
2171
|
-
user?: [
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2227
|
+
user?: [
|
|
2228
|
+
{
|
|
2229
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
2230
|
+
},
|
|
2231
|
+
ValueTypes["UserResult"]
|
|
2232
|
+
];
|
|
2233
|
+
userList?: [
|
|
2234
|
+
{
|
|
2235
|
+
search?: string | undefined | null | Variable<any, string>;
|
|
2236
|
+
},
|
|
2237
|
+
ValueTypes["UserListResult"]
|
|
2238
|
+
];
|
|
2177
2239
|
getCardIdentification?: ValueTypes["GetCardIdentificationResult"];
|
|
2178
2240
|
getStripeBalance?: ValueTypes["GetStripeBalanceResult"];
|
|
2179
2241
|
getStripeBalanceTransaction?: ValueTypes["GetStripeBalanceTransactionResult"];
|
|
2180
|
-
getStripeTransaction?: [
|
|
2181
|
-
|
|
2182
|
-
|
|
2242
|
+
getStripeTransaction?: [
|
|
2243
|
+
{
|
|
2244
|
+
transactionId: string | Variable<any, string>;
|
|
2245
|
+
},
|
|
2246
|
+
ValueTypes["GetStripeTransactionResult"]
|
|
2247
|
+
];
|
|
2183
2248
|
hasStripeAccount?: ValueTypes["HasStripeAccountResult"];
|
|
2184
2249
|
kycStripeCompleted?: ValueTypes["KycStripeCompletedResult"];
|
|
2185
2250
|
getAllStripeTransfer?: ValueTypes["GetAllStripeTransferResult"];
|
|
2186
|
-
getStripeTransfer?: [
|
|
2187
|
-
|
|
2188
|
-
|
|
2251
|
+
getStripeTransfer?: [
|
|
2252
|
+
{
|
|
2253
|
+
transferId: string | Variable<any, string>;
|
|
2254
|
+
},
|
|
2255
|
+
ValueTypes["GetStripeTransferResult"]
|
|
2256
|
+
];
|
|
2189
2257
|
getAllStripePayout?: ValueTypes["GetAllStripePayoutResult"];
|
|
2190
|
-
getStripePayout?: [
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2258
|
+
getStripePayout?: [
|
|
2259
|
+
{
|
|
2260
|
+
payoutId: string | Variable<any, string>;
|
|
2261
|
+
},
|
|
2262
|
+
ValueTypes["GetStripePayoutResult"]
|
|
2263
|
+
];
|
|
2264
|
+
getAllPaymentRequestToCollect?: [
|
|
2265
|
+
{
|
|
2266
|
+
secrecyId?: string | undefined | null | Variable<any, string>;
|
|
2267
|
+
appCode?: string | undefined | null | Variable<any, string>;
|
|
2268
|
+
},
|
|
2269
|
+
ValueTypes["GetAllPaymentRequestToCollectResult"]
|
|
2270
|
+
];
|
|
2271
|
+
getAllPaymentRequestToPay?: [
|
|
2272
|
+
{
|
|
2273
|
+
secrecyId?: string | undefined | null | Variable<any, string>;
|
|
2274
|
+
appCode?: string | undefined | null | Variable<any, string>;
|
|
2275
|
+
},
|
|
2276
|
+
ValueTypes["GetAllPaymentRequestToPayResult"]
|
|
2277
|
+
];
|
|
2278
|
+
getPaymentRequestToCollect?: [
|
|
2279
|
+
{
|
|
2280
|
+
paymentRequestId: string | Variable<any, string>;
|
|
2281
|
+
secrecyId?: string | undefined | null | Variable<any, string>;
|
|
2282
|
+
appCode?: string | undefined | null | Variable<any, string>;
|
|
2283
|
+
},
|
|
2284
|
+
ValueTypes["GetPaymentRequestToCollectResult"]
|
|
2285
|
+
];
|
|
2286
|
+
getPaymentRequestToPay?: [
|
|
2287
|
+
{
|
|
2288
|
+
paymentRequestId: string | Variable<any, string>;
|
|
2289
|
+
secrecyIdSeller: string | Variable<any, string>;
|
|
2290
|
+
secrecyId?: string | undefined | null | Variable<any, string>;
|
|
2291
|
+
appCode?: string | undefined | null | Variable<any, string>;
|
|
2292
|
+
},
|
|
2293
|
+
ValueTypes["GetPaymentRequestToPayResult"]
|
|
2294
|
+
];
|
|
2295
|
+
isValidPaymentIntent?: [
|
|
2296
|
+
{
|
|
2297
|
+
paymentIntentId: string | Variable<any, string>;
|
|
2298
|
+
secrecyAccountId: string | Variable<any, string>;
|
|
2299
|
+
currency: string | Variable<any, string>;
|
|
2300
|
+
amount: number | Variable<any, string>;
|
|
2301
|
+
appCode: string | Variable<any, string>;
|
|
2302
|
+
},
|
|
2303
|
+
ValueTypes["IsValidPaymentIntentResult"]
|
|
2304
|
+
];
|
|
2305
|
+
getApplication?: [
|
|
2306
|
+
{
|
|
2307
|
+
appCode?: string | undefined | null | Variable<any, string>;
|
|
2308
|
+
appId?: string | undefined | null | Variable<any, string>;
|
|
2309
|
+
},
|
|
2310
|
+
ValueTypes["GetApplicationResult"]
|
|
2311
|
+
];
|
|
2312
|
+
getAllDevelopers?: [
|
|
2313
|
+
{
|
|
2314
|
+
appCode: string | Variable<any, string>;
|
|
2315
|
+
},
|
|
2316
|
+
ValueTypes["GetAllDevelopersResult"]
|
|
2317
|
+
];
|
|
2318
|
+
getDeveloper?: [
|
|
2319
|
+
{
|
|
2320
|
+
appCode: string | Variable<any, string>;
|
|
2321
|
+
developerId: string | Variable<any, string>;
|
|
2322
|
+
},
|
|
2323
|
+
ValueTypes["GetDeveloperResult"]
|
|
2324
|
+
];
|
|
2226
2325
|
__typename?: boolean | `@${string}`;
|
|
2227
2326
|
}>;
|
|
2228
2327
|
["Mutation"]: AliasType<{
|
|
2229
|
-
addFileToHistory?: [
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2328
|
+
addFileToHistory?: [
|
|
2329
|
+
{
|
|
2330
|
+
nodeId: string | Variable<any, string>;
|
|
2331
|
+
fileId: string | Variable<any, string>;
|
|
2332
|
+
},
|
|
2333
|
+
ValueTypes["AddFileToHistoryResult"]
|
|
2334
|
+
];
|
|
2233
2335
|
cancelPayment?: ValueTypes["CancelPaymentResult"];
|
|
2234
|
-
createCryptoWallet?: [
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2336
|
+
createCryptoWallet?: [
|
|
2337
|
+
{
|
|
2338
|
+
address: string | Variable<any, string>;
|
|
2339
|
+
privateKeyEncrypted: string | Variable<any, string>;
|
|
2340
|
+
},
|
|
2341
|
+
ValueTypes["CreateCryptoWalletResult"]
|
|
2342
|
+
];
|
|
2343
|
+
createDraftMail?: [
|
|
2344
|
+
{
|
|
2345
|
+
hash: string | Variable<any, string>;
|
|
2346
|
+
hashKey: string | Variable<any, string>;
|
|
2347
|
+
body: string | Variable<any, string>;
|
|
2348
|
+
subject: string | Variable<any, string>;
|
|
2349
|
+
replyTo?: string | undefined | null | Variable<any, string>;
|
|
2350
|
+
senderFiles: Array<ValueTypes["MailFileInput"]> | Variable<any, string>;
|
|
2351
|
+
recipients: Array<string> | Variable<any, string>;
|
|
2352
|
+
},
|
|
2353
|
+
ValueTypes["CreateDraftMailResult"]
|
|
2354
|
+
];
|
|
2355
|
+
createFolder?: [
|
|
2356
|
+
{
|
|
2357
|
+
name: string | Variable<any, string>;
|
|
2358
|
+
key: string | Variable<any, string>;
|
|
2359
|
+
parentFolderId?: string | undefined | null | Variable<any, string>;
|
|
2360
|
+
},
|
|
2361
|
+
ValueTypes["CreateFolderResult"]
|
|
2362
|
+
];
|
|
2363
|
+
dbConfigMutation?: [
|
|
2364
|
+
{
|
|
2365
|
+
appCode: string | Variable<any, string>;
|
|
2366
|
+
config: string | Variable<any, string>;
|
|
2367
|
+
},
|
|
2368
|
+
ValueTypes["DbConfigMutationResult"]
|
|
2369
|
+
];
|
|
2370
|
+
dbSet?: [
|
|
2371
|
+
{
|
|
2372
|
+
value: string | Variable<any, string>;
|
|
2373
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
2374
|
+
},
|
|
2375
|
+
ValueTypes["DbSetResult"]
|
|
2376
|
+
];
|
|
2260
2377
|
deleteAllData?: boolean | `@${string}`;
|
|
2261
|
-
deleteDraftMail?: [
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2378
|
+
deleteDraftMail?: [
|
|
2379
|
+
{
|
|
2380
|
+
draftId: string | Variable<any, string>;
|
|
2381
|
+
},
|
|
2382
|
+
ValueTypes["DeleteDraftMailResult"]
|
|
2383
|
+
];
|
|
2384
|
+
deleteFile?: [
|
|
2385
|
+
{
|
|
2386
|
+
fileId: string | Variable<any, string>;
|
|
2387
|
+
nodeId: string | Variable<any, string>;
|
|
2388
|
+
},
|
|
2389
|
+
ValueTypes["DeleteFileResult"]
|
|
2390
|
+
];
|
|
2391
|
+
deleteMail?: [
|
|
2392
|
+
{
|
|
2393
|
+
mailId: string | Variable<any, string>;
|
|
2394
|
+
},
|
|
2395
|
+
ValueTypes["DeleteMailResult"]
|
|
2396
|
+
];
|
|
2397
|
+
deleteMailTrash?: [
|
|
2398
|
+
{
|
|
2399
|
+
ids: Array<string> | Variable<any, string>;
|
|
2400
|
+
},
|
|
2401
|
+
ValueTypes["DeleteMailTrashResult"]
|
|
2402
|
+
];
|
|
2403
|
+
deleteNode?: [
|
|
2404
|
+
{
|
|
2405
|
+
id: string | Variable<any, string>;
|
|
2406
|
+
},
|
|
2407
|
+
ValueTypes["DeleteNodeResult"]
|
|
2408
|
+
];
|
|
2409
|
+
deleteNodeCloudTrash?: [
|
|
2410
|
+
{
|
|
2411
|
+
ids: Array<string> | Variable<any, string>;
|
|
2412
|
+
},
|
|
2413
|
+
ValueTypes["DeleteNodeCloudTrashResult"]
|
|
2414
|
+
];
|
|
2415
|
+
deleteNodeSharing?: [
|
|
2416
|
+
{
|
|
2417
|
+
nodeId: string | Variable<any, string>;
|
|
2418
|
+
userId: string | Variable<any, string>;
|
|
2419
|
+
},
|
|
2420
|
+
ValueTypes["DeleteNodeSharingResult"]
|
|
2421
|
+
];
|
|
2422
|
+
deleteUser?: [
|
|
2423
|
+
{
|
|
2424
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
2425
|
+
},
|
|
2426
|
+
ValueTypes["DeleteUserResult"]
|
|
2427
|
+
];
|
|
2428
|
+
duplicateNode?: [
|
|
2429
|
+
{
|
|
2430
|
+
nodeId: string | Variable<any, string>;
|
|
2431
|
+
folderId?: string | undefined | null | Variable<any, string>;
|
|
2432
|
+
customName?: string | undefined | null | Variable<any, string>;
|
|
2433
|
+
},
|
|
2434
|
+
ValueTypes["DuplicateNodeResult"]
|
|
2435
|
+
];
|
|
2292
2436
|
emptyCloudTrash?: ValueTypes["EmptyCloudTrashResult"];
|
|
2293
2437
|
emptyMailTrash?: ValueTypes["EmptyMailTrashResult"];
|
|
2294
|
-
logout?: [
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2438
|
+
logout?: [
|
|
2439
|
+
{
|
|
2440
|
+
sessionId?: string | undefined | null | Variable<any, string>;
|
|
2441
|
+
},
|
|
2442
|
+
ValueTypes["LogoutResult"]
|
|
2443
|
+
];
|
|
2444
|
+
moveNodes?: [
|
|
2445
|
+
{
|
|
2446
|
+
nodeIds: Array<string> | Variable<any, string>;
|
|
2447
|
+
parentNodeId?: string | undefined | null | Variable<any, string>;
|
|
2448
|
+
},
|
|
2449
|
+
ValueTypes["MoveNodesResult"]
|
|
2450
|
+
];
|
|
2451
|
+
pay?: [
|
|
2452
|
+
{
|
|
2453
|
+
planCode: string | Variable<any, string>;
|
|
2454
|
+
input: ValueTypes["PayInput"] | Variable<any, string>;
|
|
2455
|
+
autoRenew?: boolean | undefined | null | Variable<any, string>;
|
|
2456
|
+
},
|
|
2457
|
+
ValueTypes["PayResult"]
|
|
2458
|
+
];
|
|
2459
|
+
readMail?: [
|
|
2460
|
+
{
|
|
2461
|
+
mailId: string | Variable<any, string>;
|
|
2462
|
+
},
|
|
2463
|
+
ValueTypes["ReadMailResult"]
|
|
2464
|
+
];
|
|
2465
|
+
recoverMail?: [
|
|
2466
|
+
{
|
|
2467
|
+
mailId: string | Variable<any, string>;
|
|
2468
|
+
},
|
|
2469
|
+
ValueTypes["RecoverMailResult"]
|
|
2470
|
+
];
|
|
2471
|
+
recoverNode?: [
|
|
2472
|
+
{
|
|
2473
|
+
id: string | Variable<any, string>;
|
|
2474
|
+
},
|
|
2475
|
+
ValueTypes["RecoverNodeResult"]
|
|
2476
|
+
];
|
|
2477
|
+
saveInCloud?: [
|
|
2478
|
+
{
|
|
2479
|
+
fileId: string | Variable<any, string>;
|
|
2480
|
+
key: string | Variable<any, string>;
|
|
2481
|
+
nodeId?: string | undefined | null | Variable<any, string>;
|
|
2482
|
+
filename: string | Variable<any, string>;
|
|
2483
|
+
nameKey: string | Variable<any, string>;
|
|
2484
|
+
},
|
|
2485
|
+
ValueTypes["SaveInCloudResult"]
|
|
2486
|
+
];
|
|
2487
|
+
sendAppMail?: [
|
|
2488
|
+
{
|
|
2489
|
+
fakeUserIds: Array<string> | Variable<any, string>;
|
|
2490
|
+
subject: string | Variable<any, string>;
|
|
2491
|
+
html: string | Variable<any, string>;
|
|
2492
|
+
},
|
|
2493
|
+
ValueTypes["SendAppMailResult"]
|
|
2494
|
+
];
|
|
2495
|
+
sendCryptoTransaction?: [
|
|
2496
|
+
{
|
|
2497
|
+
network?: ValueTypes["InfuraNetwork"] | undefined | null | Variable<any, string>;
|
|
2498
|
+
address: string | Variable<any, string>;
|
|
2499
|
+
rawTransaction: string | Variable<any, string>;
|
|
2500
|
+
appSession: string | Variable<any, string>;
|
|
2501
|
+
},
|
|
2502
|
+
ValueTypes["SendCryptoTransactionResult"]
|
|
2503
|
+
];
|
|
2504
|
+
sendDraftMail?: [
|
|
2505
|
+
{
|
|
2506
|
+
draftMailId: string | Variable<any, string>;
|
|
2507
|
+
temporaryRecipients: Array<string> | Variable<any, string>;
|
|
2508
|
+
recipients: Array<ValueTypes["MailRecipientInput"]> | Variable<any, string>;
|
|
2509
|
+
customMessage?: string | undefined | null | Variable<any, string>;
|
|
2510
|
+
},
|
|
2511
|
+
ValueTypes["SendDraftMailResult"]
|
|
2512
|
+
];
|
|
2513
|
+
sendOneMail?: [
|
|
2514
|
+
{
|
|
2515
|
+
mailIntegrityId: string | Variable<any, string>;
|
|
2516
|
+
recipient: ValueTypes["MailRecipientInput"] | Variable<any, string>;
|
|
2517
|
+
},
|
|
2518
|
+
ValueTypes["SendOneMailResult"]
|
|
2519
|
+
];
|
|
2520
|
+
sendReport?: [
|
|
2521
|
+
{
|
|
2522
|
+
reportedUserId: string | Variable<any, string>;
|
|
2523
|
+
customMessage?: string | undefined | null | Variable<any, string>;
|
|
2524
|
+
},
|
|
2525
|
+
ValueTypes["SendReportResult"]
|
|
2526
|
+
];
|
|
2527
|
+
shareFileInHistory?: [
|
|
2528
|
+
{
|
|
2529
|
+
input: ValueTypes["ShareFileInHistoryInput"] | Variable<any, string>;
|
|
2530
|
+
nodeId: string | Variable<any, string>;
|
|
2531
|
+
},
|
|
2532
|
+
ValueTypes["ShareFileInHistoryResult"]
|
|
2533
|
+
];
|
|
2534
|
+
shareNode?: [
|
|
2535
|
+
{
|
|
2536
|
+
nodeId: string | Variable<any, string>;
|
|
2537
|
+
userId: string | Variable<any, string>;
|
|
2538
|
+
},
|
|
2539
|
+
ValueTypes["ShareNodeResult"]
|
|
2540
|
+
];
|
|
2541
|
+
shareNodeFinish?: [
|
|
2542
|
+
{
|
|
2543
|
+
shareNodes: ValueTypes["ShareNodesInput"] | Variable<any, string>;
|
|
2544
|
+
userId: string | Variable<any, string>;
|
|
2545
|
+
rights: ValueTypes["Rights"] | Variable<any, string>;
|
|
2546
|
+
},
|
|
2547
|
+
ValueTypes["ShareNodeFinishResult"]
|
|
2548
|
+
];
|
|
2549
|
+
unreadMail?: [
|
|
2550
|
+
{
|
|
2551
|
+
mailId: string | Variable<any, string>;
|
|
2552
|
+
},
|
|
2553
|
+
ValueTypes["UnreadMailResult"]
|
|
2554
|
+
];
|
|
2555
|
+
updateAppNotifications?: [
|
|
2556
|
+
{
|
|
2557
|
+
enableAll?: boolean | undefined | null | Variable<any, string>;
|
|
2558
|
+
mail?: boolean | undefined | null | Variable<any, string>;
|
|
2559
|
+
cloud?: boolean | undefined | null | Variable<any, string>;
|
|
2560
|
+
disableAllUntil?: ValueTypes["DateTime"] | undefined | null | Variable<any, string>;
|
|
2561
|
+
},
|
|
2562
|
+
ValueTypes["UpdateAppNotificationsResult"]
|
|
2563
|
+
];
|
|
2564
|
+
updateAppSettings?: [
|
|
2565
|
+
{
|
|
2566
|
+
cloudNodeDaysForDelete?: number | undefined | null | Variable<any, string>;
|
|
2567
|
+
historyFileDaysForDelete?: number | undefined | null | Variable<any, string>;
|
|
2568
|
+
historyMaxFileCount?: number | undefined | null | Variable<any, string>;
|
|
2569
|
+
},
|
|
2570
|
+
ValueTypes["UpdateAppSettingsResult"]
|
|
2571
|
+
];
|
|
2572
|
+
updateAutoDisconnectDelay?: [
|
|
2573
|
+
{
|
|
2574
|
+
userId?: string | undefined | null | Variable<any, string>;
|
|
2575
|
+
delay?: number | undefined | null | Variable<any, string>;
|
|
2576
|
+
},
|
|
2577
|
+
ValueTypes["UpdateAutoDisconnectDelayResult"]
|
|
2578
|
+
];
|
|
2579
|
+
updateDraftMail?: [
|
|
2580
|
+
{
|
|
2581
|
+
draftId: string | Variable<any, string>;
|
|
2582
|
+
hash?: string | undefined | null | Variable<any, string>;
|
|
2583
|
+
hashKey?: string | undefined | null | Variable<any, string>;
|
|
2584
|
+
body?: string | undefined | null | Variable<any, string>;
|
|
2585
|
+
subject?: string | undefined | null | Variable<any, string>;
|
|
2586
|
+
replyTo?: string | undefined | null | Variable<any, string>;
|
|
2587
|
+
senderFiles?: Array<ValueTypes["MailFileInput"]> | undefined | null | Variable<any, string>;
|
|
2588
|
+
recipients?: Array<string> | undefined | null | Variable<any, string>;
|
|
2589
|
+
},
|
|
2590
|
+
ValueTypes["UpdateDraftMailResult"]
|
|
2591
|
+
];
|
|
2592
|
+
updateNode?: [
|
|
2593
|
+
{
|
|
2594
|
+
nodeId: string | Variable<any, string>;
|
|
2595
|
+
name?: string | undefined | null | Variable<any, string>;
|
|
2596
|
+
isFavorite?: boolean | undefined | null | Variable<any, string>;
|
|
2597
|
+
deletedAt?: ValueTypes["DateTime"] | undefined | null | Variable<any, string>;
|
|
2598
|
+
},
|
|
2599
|
+
ValueTypes["UpdateNodeResult"]
|
|
2600
|
+
];
|
|
2601
|
+
updateProfile?: [
|
|
2602
|
+
{
|
|
2603
|
+
firstname?: string | undefined | null | Variable<any, string>;
|
|
2604
|
+
lastname?: string | undefined | null | Variable<any, string>;
|
|
2605
|
+
lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
|
|
2606
|
+
},
|
|
2607
|
+
ValueTypes["UpdateProfileResult"]
|
|
2608
|
+
];
|
|
2609
|
+
uploadAnonymous?: [
|
|
2610
|
+
{
|
|
2611
|
+
fileName: string | Variable<any, string>;
|
|
2612
|
+
fileSize: number | Variable<any, string>;
|
|
2613
|
+
fileSizeBefore: number | Variable<any, string>;
|
|
2614
|
+
message?: string | undefined | null | Variable<any, string>;
|
|
2615
|
+
pubKey: string | Variable<any, string>;
|
|
2616
|
+
token: string | Variable<any, string>;
|
|
2617
|
+
},
|
|
2618
|
+
ValueTypes["FileResponse"]
|
|
2619
|
+
];
|
|
2620
|
+
uploadFile?: [
|
|
2621
|
+
{
|
|
2622
|
+
fileSize: ValueTypes["BigInt"] | Variable<any, string>;
|
|
2623
|
+
fileSizeBefore: ValueTypes["BigInt"] | Variable<any, string>;
|
|
2624
|
+
fileKey: string | Variable<any, string>;
|
|
2625
|
+
md5: string | Variable<any, string>;
|
|
2626
|
+
md5Encrypted: string | Variable<any, string>;
|
|
2627
|
+
},
|
|
2628
|
+
ValueTypes["UploadFileResult"]
|
|
2629
|
+
];
|
|
2630
|
+
uploadFileEnd?: [
|
|
2631
|
+
{
|
|
2632
|
+
fileId: string | Variable<any, string>;
|
|
2633
|
+
},
|
|
2634
|
+
ValueTypes["UploadFileEndResult"]
|
|
2635
|
+
];
|
|
2636
|
+
uploadFilePartEnd?: [
|
|
2637
|
+
{
|
|
2638
|
+
fileId: string | Variable<any, string>;
|
|
2639
|
+
md5: string | Variable<any, string>;
|
|
2640
|
+
order: number | Variable<any, string>;
|
|
2641
|
+
},
|
|
2642
|
+
ValueTypes["UploadFilePartEndResult"]
|
|
2643
|
+
];
|
|
2644
|
+
uploadLiteFile?: [
|
|
2645
|
+
{
|
|
2646
|
+
content: ValueTypes["Bytes"] | Variable<any, string>;
|
|
2647
|
+
fileSize: ValueTypes["BigInt"] | Variable<any, string>;
|
|
2648
|
+
fileSizeBefore: ValueTypes["BigInt"] | Variable<any, string>;
|
|
2649
|
+
fileKey: string | Variable<any, string>;
|
|
2650
|
+
md5: string | Variable<any, string>;
|
|
2651
|
+
md5Encrypted: string | Variable<any, string>;
|
|
2652
|
+
},
|
|
2653
|
+
ValueTypes["UploadLiteFileResult"]
|
|
2654
|
+
];
|
|
2655
|
+
changeUserPlan?: [
|
|
2656
|
+
{
|
|
2657
|
+
userId: string | Variable<any, string>;
|
|
2658
|
+
plan: ValueTypes["PlanKind"] | Variable<any, string>;
|
|
2659
|
+
},
|
|
2660
|
+
ValueTypes["ChangeUserPlanResult"]
|
|
2661
|
+
];
|
|
2662
|
+
createCardToken?: [
|
|
2663
|
+
{
|
|
2664
|
+
lastFourDigit: string | Variable<any, string>;
|
|
2665
|
+
cardTokenId: string | Variable<any, string>;
|
|
2666
|
+
},
|
|
2667
|
+
ValueTypes["CreateCardTokenResult"]
|
|
2668
|
+
];
|
|
2669
|
+
createStripeTransfer?: [
|
|
2670
|
+
{
|
|
2671
|
+
secrecyIdToReceive: string | Variable<any, string>;
|
|
2672
|
+
amount: number | Variable<any, string>;
|
|
2673
|
+
currency: string | Variable<any, string>;
|
|
2674
|
+
},
|
|
2675
|
+
ValueTypes["CreateStripeTransferResult"]
|
|
2676
|
+
];
|
|
2677
|
+
deleteCardToken?: [
|
|
2678
|
+
{
|
|
2679
|
+
cardTokenId: string | Variable<any, string>;
|
|
2680
|
+
},
|
|
2681
|
+
ValueTypes["DeleteCardTokenResult"]
|
|
2682
|
+
];
|
|
2446
2683
|
stripeOnBoarding?: ValueTypes["StripeOnBoardingResult"];
|
|
2447
|
-
cancelStripePayout?: [
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2684
|
+
cancelStripePayout?: [
|
|
2685
|
+
{
|
|
2686
|
+
payoutId: string | Variable<any, string>;
|
|
2687
|
+
},
|
|
2688
|
+
ValueTypes["CancelStripePayoutResult"]
|
|
2689
|
+
];
|
|
2690
|
+
createStripePayout?: [
|
|
2691
|
+
{
|
|
2692
|
+
amount: number | Variable<any, string>;
|
|
2693
|
+
currency: string | Variable<any, string>;
|
|
2694
|
+
description?: string | undefined | null | Variable<any, string>;
|
|
2695
|
+
},
|
|
2696
|
+
ValueTypes["CreateStripePayoutResult"]
|
|
2697
|
+
];
|
|
2698
|
+
addCartToPaymentIntent?: [
|
|
2699
|
+
{
|
|
2700
|
+
paymentIntentId: string | Variable<any, string>;
|
|
2701
|
+
secrecyIdSeller: string | Variable<any, string>;
|
|
2702
|
+
cardTokenId: string | Variable<any, string>;
|
|
2703
|
+
},
|
|
2704
|
+
ValueTypes["AddCartToPaymentIntentResult"]
|
|
2705
|
+
];
|
|
2706
|
+
cancelPaymentIntent?: [
|
|
2707
|
+
{
|
|
2708
|
+
paymentIntentId: string | Variable<any, string>;
|
|
2709
|
+
secrecyIdSeller: string | Variable<any, string>;
|
|
2710
|
+
},
|
|
2711
|
+
ValueTypes["CancelPaymentIntentResult"]
|
|
2712
|
+
];
|
|
2713
|
+
confirmPaymentIntent?: [
|
|
2714
|
+
{
|
|
2715
|
+
paymentIntentId: string | Variable<any, string>;
|
|
2716
|
+
secrecyIdSeller: string | Variable<any, string>;
|
|
2717
|
+
},
|
|
2718
|
+
ValueTypes["ConfirmPaymentIntentResult"]
|
|
2719
|
+
];
|
|
2720
|
+
createPaymentIntent?: [
|
|
2721
|
+
{
|
|
2722
|
+
amount: number | Variable<any, string>;
|
|
2723
|
+
userId: string | Variable<any, string>;
|
|
2724
|
+
currency: string | Variable<any, string>;
|
|
2725
|
+
},
|
|
2726
|
+
ValueTypes["CreatePaymentIntentResult"]
|
|
2727
|
+
];
|
|
2728
|
+
renewAppCode?: [
|
|
2729
|
+
{
|
|
2730
|
+
actualAppCode: string | Variable<any, string>;
|
|
2731
|
+
},
|
|
2732
|
+
ValueTypes["RenewAppCodeResult"]
|
|
2733
|
+
];
|
|
2734
|
+
updateOriginUrl?: [
|
|
2735
|
+
{
|
|
2736
|
+
appCode: string | Variable<any, string>;
|
|
2737
|
+
originUrl: Array<string> | Variable<any, string>;
|
|
2738
|
+
},
|
|
2739
|
+
ValueTypes["UpdateOriginUrlResult"]
|
|
2740
|
+
];
|
|
2741
|
+
createApplication?: [
|
|
2742
|
+
{
|
|
2743
|
+
name: string | Variable<any, string>;
|
|
2744
|
+
origin: string | Variable<any, string>;
|
|
2745
|
+
color?: string | undefined | null | Variable<any, string>;
|
|
2746
|
+
logo?: string | undefined | null | Variable<any, string>;
|
|
2747
|
+
collaborators?: Array<ValueTypes["ApplicationsCollaborators"]> | undefined | null | Variable<any, string>;
|
|
2748
|
+
},
|
|
2749
|
+
ValueTypes["CreateApplicationResult"]
|
|
2750
|
+
];
|
|
2751
|
+
deleteApplication?: [
|
|
2752
|
+
{
|
|
2753
|
+
appCode: string | Variable<any, string>;
|
|
2754
|
+
},
|
|
2755
|
+
ValueTypes["DeleteApplicationResult"]
|
|
2756
|
+
];
|
|
2757
|
+
editColors?: [
|
|
2758
|
+
{
|
|
2759
|
+
appCode: string | Variable<any, string>;
|
|
2760
|
+
newColors?: string | undefined | null | Variable<any, string>;
|
|
2761
|
+
},
|
|
2762
|
+
ValueTypes["EditColorsResult"]
|
|
2763
|
+
];
|
|
2764
|
+
editLogo?: [
|
|
2765
|
+
{
|
|
2766
|
+
appCode: string | Variable<any, string>;
|
|
2767
|
+
newLogo?: string | undefined | null | Variable<any, string>;
|
|
2768
|
+
},
|
|
2769
|
+
ValueTypes["EditLogoResult"]
|
|
2770
|
+
];
|
|
2771
|
+
editName?: [
|
|
2772
|
+
{
|
|
2773
|
+
appCode: string | Variable<any, string>;
|
|
2774
|
+
newName: string | Variable<any, string>;
|
|
2775
|
+
},
|
|
2776
|
+
ValueTypes["EditNameResult"]
|
|
2777
|
+
];
|
|
2778
|
+
addDeveloper?: [
|
|
2779
|
+
{
|
|
2780
|
+
appCode: string | Variable<any, string>;
|
|
2781
|
+
userId: string | Variable<any, string>;
|
|
2782
|
+
userRole: ValueTypes["UserRole"] | Variable<any, string>;
|
|
2783
|
+
userRights: ValueTypes["Rights"] | Variable<any, string>;
|
|
2784
|
+
},
|
|
2785
|
+
ValueTypes["AddDeveloperResult"]
|
|
2786
|
+
];
|
|
2787
|
+
deleteDeveloper?: [
|
|
2788
|
+
{
|
|
2789
|
+
appCode: string | Variable<any, string>;
|
|
2790
|
+
userId: string | Variable<any, string>;
|
|
2791
|
+
},
|
|
2792
|
+
ValueTypes["DeleteDeveloperResult"]
|
|
2793
|
+
];
|
|
2794
|
+
editDeveloper?: [
|
|
2795
|
+
{
|
|
2796
|
+
appCode: string | Variable<any, string>;
|
|
2797
|
+
userId: string | Variable<any, string>;
|
|
2798
|
+
userRole: ValueTypes["UserRole"] | Variable<any, string>;
|
|
2799
|
+
userRights: ValueTypes["Rights"] | Variable<any, string>;
|
|
2800
|
+
},
|
|
2801
|
+
ValueTypes["EditDeveloperResult"]
|
|
2802
|
+
];
|
|
2518
2803
|
__typename?: boolean | `@${string}`;
|
|
2519
2804
|
}>;
|
|
2520
2805
|
["Subscription"]: AliasType<{
|
|
@@ -2770,6 +3055,12 @@ export type ResolverInputTypes = {
|
|
|
2770
3055
|
ErrorStripe?: ResolverInputTypes["ErrorStripe"];
|
|
2771
3056
|
__typename?: boolean | `@${string}`;
|
|
2772
3057
|
}>;
|
|
3058
|
+
["GetApplicationResult"]: AliasType<{
|
|
3059
|
+
GetApplicationResponse?: ResolverInputTypes["GetApplicationResponse"];
|
|
3060
|
+
ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
|
|
3061
|
+
ErrorNotFound?: ResolverInputTypes["ErrorNotFound"];
|
|
3062
|
+
__typename?: boolean | `@${string}`;
|
|
3063
|
+
}>;
|
|
2773
3064
|
["GetAllDevelopersResult"]: AliasType<{
|
|
2774
3065
|
GetAllDevelopersMainResponse?: ResolverInputTypes["GetAllDevelopersMainResponse"];
|
|
2775
3066
|
ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
|
|
@@ -3183,6 +3474,7 @@ export type ResolverInputTypes = {
|
|
|
3183
3474
|
id?: boolean | `@${string}`;
|
|
3184
3475
|
name?: boolean | `@${string}`;
|
|
3185
3476
|
logo?: boolean | `@${string}`;
|
|
3477
|
+
code?: boolean | `@${string}`;
|
|
3186
3478
|
color?: boolean | `@${string}`;
|
|
3187
3479
|
origin?: boolean | `@${string}`;
|
|
3188
3480
|
createdAt?: boolean | `@${string}`;
|
|
@@ -3269,7 +3561,7 @@ export type ResolverInputTypes = {
|
|
|
3269
3561
|
rights?: boolean | `@${string}`;
|
|
3270
3562
|
__typename?: boolean | `@${string}`;
|
|
3271
3563
|
}>;
|
|
3272
|
-
["
|
|
3564
|
+
["SortApplications"]: SortApplications;
|
|
3273
3565
|
["Error"]: AliasType<{
|
|
3274
3566
|
ErrorStripe?: ResolverInputTypes["ErrorStripe"];
|
|
3275
3567
|
ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
|
|
@@ -3287,14 +3579,14 @@ export type ResolverInputTypes = {
|
|
|
3287
3579
|
}>;
|
|
3288
3580
|
["ErrorBase"]: AliasType<{
|
|
3289
3581
|
message?: boolean | `@${string}`;
|
|
3290
|
-
[
|
|
3291
|
-
[
|
|
3292
|
-
[
|
|
3293
|
-
[
|
|
3294
|
-
[
|
|
3295
|
-
[
|
|
3296
|
-
[
|
|
3297
|
-
[
|
|
3582
|
+
["...on ErrorAccessDenied"]?: Omit<ResolverInputTypes["ErrorAccessDenied"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3583
|
+
["...on ErrorBasic"]?: Omit<ResolverInputTypes["ErrorBasic"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3584
|
+
["...on ErrorLangNotExist"]?: Omit<ResolverInputTypes["ErrorLangNotExist"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3585
|
+
["...on ErrorLimit"]?: Omit<ResolverInputTypes["ErrorLimit"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3586
|
+
["...on ErrorNotExist"]?: Omit<ResolverInputTypes["ErrorNotExist"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3587
|
+
["...on ErrorNotFound"]?: Omit<ResolverInputTypes["ErrorNotFound"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3588
|
+
["...on ErrorStripe"]?: Omit<ResolverInputTypes["ErrorStripe"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3589
|
+
["...on ErrorUpgradePlan"]?: Omit<ResolverInputTypes["ErrorUpgradePlan"], keyof ResolverInputTypes["ErrorBase"]>;
|
|
3298
3590
|
__typename?: boolean | `@${string}`;
|
|
3299
3591
|
}>;
|
|
3300
3592
|
["ErrorBasic"]: AliasType<{
|
|
@@ -3390,10 +3682,10 @@ export type ResolverInputTypes = {
|
|
|
3390
3682
|
md5Encrypted?: boolean | `@${string}`;
|
|
3391
3683
|
totalSize?: boolean | `@${string}`;
|
|
3392
3684
|
type?: boolean | `@${string}`;
|
|
3393
|
-
[
|
|
3394
|
-
[
|
|
3395
|
-
[
|
|
3396
|
-
[
|
|
3685
|
+
["...on FileContentCloud"]?: Omit<ResolverInputTypes["FileContentCloud"], keyof ResolverInputTypes["FileContentBase"]>;
|
|
3686
|
+
["...on FileContentLite"]?: Omit<ResolverInputTypes["FileContentLite"], keyof ResolverInputTypes["FileContentBase"]>;
|
|
3687
|
+
["...on FileContentReceivedMail"]?: Omit<ResolverInputTypes["FileContentReceivedMail"], keyof ResolverInputTypes["FileContentBase"]>;
|
|
3688
|
+
["...on FileContentSentMail"]?: Omit<ResolverInputTypes["FileContentSentMail"], keyof ResolverInputTypes["FileContentBase"]>;
|
|
3397
3689
|
__typename?: boolean | `@${string}`;
|
|
3398
3690
|
}>;
|
|
3399
3691
|
["FileContentCloud"]: AliasType<{
|
|
@@ -4230,6 +4522,10 @@ export type ResolverInputTypes = {
|
|
|
4230
4522
|
__typename?: boolean | `@${string}`;
|
|
4231
4523
|
}>;
|
|
4232
4524
|
["PayoutType"]: PayoutType;
|
|
4525
|
+
["GetApplicationResponse"]: AliasType<{
|
|
4526
|
+
application?: ResolverInputTypes["Application"];
|
|
4527
|
+
__typename?: boolean | `@${string}`;
|
|
4528
|
+
}>;
|
|
4233
4529
|
["DeveloperResponse"]: AliasType<{
|
|
4234
4530
|
rights?: boolean | `@${string}`;
|
|
4235
4531
|
role?: boolean | `@${string}`;
|
|
@@ -4392,203 +4688,333 @@ export type ResolverInputTypes = {
|
|
|
4392
4688
|
};
|
|
4393
4689
|
["Query"]: AliasType<{
|
|
4394
4690
|
appNotifications?: ResolverInputTypes["AppNotificationsResult"];
|
|
4395
|
-
applications?: [
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
|
|
4400
|
-
|
|
4691
|
+
applications?: [
|
|
4692
|
+
{
|
|
4693
|
+
sortBy: ResolverInputTypes["SortApplications"];
|
|
4694
|
+
},
|
|
4695
|
+
ResolverInputTypes["ApplicationsResult"]
|
|
4696
|
+
];
|
|
4697
|
+
blog?: [
|
|
4698
|
+
{
|
|
4699
|
+
lang?: ResolverInputTypes["Lang"] | undefined | null;
|
|
4700
|
+
},
|
|
4701
|
+
ResolverInputTypes["BlogResult"]
|
|
4702
|
+
];
|
|
4401
4703
|
dbConfig?: [{
|
|
4402
4704
|
appCode: string;
|
|
4403
4705
|
}, ResolverInputTypes["DbConfigResult"]];
|
|
4404
|
-
dbGet?: [
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4706
|
+
dbGet?: [
|
|
4707
|
+
{
|
|
4708
|
+
field: string;
|
|
4709
|
+
userId?: string | undefined | null;
|
|
4710
|
+
},
|
|
4711
|
+
ResolverInputTypes["DbGetResult"]
|
|
4712
|
+
];
|
|
4713
|
+
dbSearch?: [
|
|
4714
|
+
{
|
|
4715
|
+
search: string;
|
|
4716
|
+
field: string;
|
|
4717
|
+
},
|
|
4718
|
+
ResolverInputTypes["DbSearchResult"]
|
|
4719
|
+
];
|
|
4720
|
+
deletedMails?: [
|
|
4721
|
+
{
|
|
4722
|
+
mailType: ResolverInputTypes["MailType"];
|
|
4723
|
+
},
|
|
4724
|
+
ResolverInputTypes["DeletedMailsResult"]
|
|
4725
|
+
];
|
|
4415
4726
|
deletedNodes?: ResolverInputTypes["DeletedNodesResult"];
|
|
4416
|
-
faq?: [
|
|
4417
|
-
|
|
4418
|
-
|
|
4727
|
+
faq?: [
|
|
4728
|
+
{
|
|
4729
|
+
lang?: ResolverInputTypes["Lang"] | undefined | null;
|
|
4730
|
+
},
|
|
4731
|
+
ResolverInputTypes["FaqResult"]
|
|
4732
|
+
];
|
|
4419
4733
|
file?: [{
|
|
4420
4734
|
id: string;
|
|
4421
4735
|
}, ResolverInputTypes["FileResult"]];
|
|
4422
4736
|
fileContent?: [{
|
|
4423
4737
|
fileId: string;
|
|
4424
4738
|
}, ResolverInputTypes["FileContentResult"]];
|
|
4425
|
-
filesContent?: [
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
4437
|
-
|
|
4739
|
+
filesContent?: [
|
|
4740
|
+
{
|
|
4741
|
+
fileIds: Array<string>;
|
|
4742
|
+
},
|
|
4743
|
+
ResolverInputTypes["FilesContentResult"]
|
|
4744
|
+
];
|
|
4745
|
+
filesSharedWithMe?: [
|
|
4746
|
+
{
|
|
4747
|
+
accepted?: boolean | undefined | null;
|
|
4748
|
+
},
|
|
4749
|
+
ResolverInputTypes["FileSharedContent"]
|
|
4750
|
+
];
|
|
4751
|
+
getJwt?: [
|
|
4752
|
+
{
|
|
4753
|
+
includeEmail?: boolean | undefined | null;
|
|
4754
|
+
},
|
|
4755
|
+
ResolverInputTypes["GetJwtResult"]
|
|
4756
|
+
];
|
|
4757
|
+
isCryptoTransactionDone?: [
|
|
4758
|
+
{
|
|
4759
|
+
idOrHash: string;
|
|
4760
|
+
network?: ResolverInputTypes["InfuraNetwork"] | undefined | null;
|
|
4761
|
+
},
|
|
4762
|
+
ResolverInputTypes["IsCryptoTransactionDoneResult"]
|
|
4763
|
+
];
|
|
4438
4764
|
limits?: ResolverInputTypes["LimitsResult"];
|
|
4439
4765
|
mail?: [{
|
|
4440
4766
|
id: string;
|
|
4441
4767
|
}, ResolverInputTypes["MailResult"]];
|
|
4442
|
-
myCryptoBalance?: [
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4768
|
+
myCryptoBalance?: [
|
|
4769
|
+
{
|
|
4770
|
+
network?: ResolverInputTypes["InfuraNetwork"] | undefined | null;
|
|
4771
|
+
},
|
|
4772
|
+
ResolverInputTypes["MyCryptoBalanceResult"]
|
|
4773
|
+
];
|
|
4774
|
+
node?: [
|
|
4775
|
+
{
|
|
4776
|
+
id?: string | undefined | null;
|
|
4777
|
+
deleted?: boolean | undefined | null;
|
|
4778
|
+
},
|
|
4779
|
+
ResolverInputTypes["NodeResult"]
|
|
4780
|
+
];
|
|
4781
|
+
nodesSharedWithMe?: [
|
|
4782
|
+
{
|
|
4783
|
+
type?: ResolverInputTypes["NodeType"] | undefined | null;
|
|
4784
|
+
},
|
|
4785
|
+
ResolverInputTypes["NodesSharedWithMeResult"]
|
|
4786
|
+
];
|
|
4452
4787
|
paymentInfos?: ResolverInputTypes["PaymentInfosResult"];
|
|
4453
4788
|
plans?: ResolverInputTypes["PlansResult"];
|
|
4454
4789
|
serverTime?: boolean | `@${string}`;
|
|
4455
4790
|
sharedNodes?: ResolverInputTypes["SharedNodesResult"];
|
|
4456
4791
|
unreadReceivedMailsCount?: ResolverInputTypes["UnreadReceivedMailsCountResult"];
|
|
4457
|
-
user?: [
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4792
|
+
user?: [
|
|
4793
|
+
{
|
|
4794
|
+
userId?: string | undefined | null;
|
|
4795
|
+
},
|
|
4796
|
+
ResolverInputTypes["UserResult"]
|
|
4797
|
+
];
|
|
4798
|
+
userList?: [
|
|
4799
|
+
{
|
|
4800
|
+
search?: string | undefined | null;
|
|
4801
|
+
},
|
|
4802
|
+
ResolverInputTypes["UserListResult"]
|
|
4803
|
+
];
|
|
4463
4804
|
getCardIdentification?: ResolverInputTypes["GetCardIdentificationResult"];
|
|
4464
4805
|
getStripeBalance?: ResolverInputTypes["GetStripeBalanceResult"];
|
|
4465
4806
|
getStripeBalanceTransaction?: ResolverInputTypes["GetStripeBalanceTransactionResult"];
|
|
4466
|
-
getStripeTransaction?: [
|
|
4467
|
-
|
|
4468
|
-
|
|
4807
|
+
getStripeTransaction?: [
|
|
4808
|
+
{
|
|
4809
|
+
transactionId: string;
|
|
4810
|
+
},
|
|
4811
|
+
ResolverInputTypes["GetStripeTransactionResult"]
|
|
4812
|
+
];
|
|
4469
4813
|
hasStripeAccount?: ResolverInputTypes["HasStripeAccountResult"];
|
|
4470
4814
|
kycStripeCompleted?: ResolverInputTypes["KycStripeCompletedResult"];
|
|
4471
4815
|
getAllStripeTransfer?: ResolverInputTypes["GetAllStripeTransferResult"];
|
|
4472
|
-
getStripeTransfer?: [
|
|
4473
|
-
|
|
4474
|
-
|
|
4816
|
+
getStripeTransfer?: [
|
|
4817
|
+
{
|
|
4818
|
+
transferId: string;
|
|
4819
|
+
},
|
|
4820
|
+
ResolverInputTypes["GetStripeTransferResult"]
|
|
4821
|
+
];
|
|
4475
4822
|
getAllStripePayout?: ResolverInputTypes["GetAllStripePayoutResult"];
|
|
4476
|
-
getStripePayout?: [
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4823
|
+
getStripePayout?: [
|
|
4824
|
+
{
|
|
4825
|
+
payoutId: string;
|
|
4826
|
+
},
|
|
4827
|
+
ResolverInputTypes["GetStripePayoutResult"]
|
|
4828
|
+
];
|
|
4829
|
+
getAllPaymentRequestToCollect?: [
|
|
4830
|
+
{
|
|
4831
|
+
secrecyId?: string | undefined | null;
|
|
4832
|
+
appCode?: string | undefined | null;
|
|
4833
|
+
},
|
|
4834
|
+
ResolverInputTypes["GetAllPaymentRequestToCollectResult"]
|
|
4835
|
+
];
|
|
4836
|
+
getAllPaymentRequestToPay?: [
|
|
4837
|
+
{
|
|
4838
|
+
secrecyId?: string | undefined | null;
|
|
4839
|
+
appCode?: string | undefined | null;
|
|
4840
|
+
},
|
|
4841
|
+
ResolverInputTypes["GetAllPaymentRequestToPayResult"]
|
|
4842
|
+
];
|
|
4843
|
+
getPaymentRequestToCollect?: [
|
|
4844
|
+
{
|
|
4845
|
+
paymentRequestId: string;
|
|
4846
|
+
secrecyId?: string | undefined | null;
|
|
4847
|
+
appCode?: string | undefined | null;
|
|
4848
|
+
},
|
|
4849
|
+
ResolverInputTypes["GetPaymentRequestToCollectResult"]
|
|
4850
|
+
];
|
|
4851
|
+
getPaymentRequestToPay?: [
|
|
4852
|
+
{
|
|
4853
|
+
paymentRequestId: string;
|
|
4854
|
+
secrecyIdSeller: string;
|
|
4855
|
+
secrecyId?: string | undefined | null;
|
|
4856
|
+
appCode?: string | undefined | null;
|
|
4857
|
+
},
|
|
4858
|
+
ResolverInputTypes["GetPaymentRequestToPayResult"]
|
|
4859
|
+
];
|
|
4860
|
+
isValidPaymentIntent?: [
|
|
4861
|
+
{
|
|
4862
|
+
paymentIntentId: string;
|
|
4863
|
+
secrecyAccountId: string;
|
|
4864
|
+
currency: string;
|
|
4865
|
+
amount: number;
|
|
4866
|
+
appCode: string;
|
|
4867
|
+
},
|
|
4868
|
+
ResolverInputTypes["IsValidPaymentIntentResult"]
|
|
4869
|
+
];
|
|
4870
|
+
getApplication?: [
|
|
4871
|
+
{
|
|
4872
|
+
appCode?: string | undefined | null;
|
|
4873
|
+
appId?: string | undefined | null;
|
|
4874
|
+
},
|
|
4875
|
+
ResolverInputTypes["GetApplicationResult"]
|
|
4876
|
+
];
|
|
4877
|
+
getAllDevelopers?: [
|
|
4878
|
+
{
|
|
4879
|
+
appCode: string;
|
|
4880
|
+
},
|
|
4881
|
+
ResolverInputTypes["GetAllDevelopersResult"]
|
|
4882
|
+
];
|
|
4883
|
+
getDeveloper?: [
|
|
4884
|
+
{
|
|
4885
|
+
appCode: string;
|
|
4886
|
+
developerId: string;
|
|
4887
|
+
},
|
|
4888
|
+
ResolverInputTypes["GetDeveloperResult"]
|
|
4889
|
+
];
|
|
4512
4890
|
__typename?: boolean | `@${string}`;
|
|
4513
4891
|
}>;
|
|
4514
4892
|
["Mutation"]: AliasType<{
|
|
4515
|
-
addFileToHistory?: [
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4893
|
+
addFileToHistory?: [
|
|
4894
|
+
{
|
|
4895
|
+
nodeId: string;
|
|
4896
|
+
fileId: string;
|
|
4897
|
+
},
|
|
4898
|
+
ResolverInputTypes["AddFileToHistoryResult"]
|
|
4899
|
+
];
|
|
4519
4900
|
cancelPayment?: ResolverInputTypes["CancelPaymentResult"];
|
|
4520
|
-
createCryptoWallet?: [
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4901
|
+
createCryptoWallet?: [
|
|
4902
|
+
{
|
|
4903
|
+
address: string;
|
|
4904
|
+
privateKeyEncrypted: string;
|
|
4905
|
+
},
|
|
4906
|
+
ResolverInputTypes["CreateCryptoWalletResult"]
|
|
4907
|
+
];
|
|
4908
|
+
createDraftMail?: [
|
|
4909
|
+
{
|
|
4910
|
+
hash: string;
|
|
4911
|
+
hashKey: string;
|
|
4912
|
+
body: string;
|
|
4913
|
+
subject: string;
|
|
4914
|
+
replyTo?: string | undefined | null;
|
|
4915
|
+
senderFiles: Array<ResolverInputTypes["MailFileInput"]>;
|
|
4916
|
+
recipients: Array<string>;
|
|
4917
|
+
},
|
|
4918
|
+
ResolverInputTypes["CreateDraftMailResult"]
|
|
4919
|
+
];
|
|
4920
|
+
createFolder?: [
|
|
4921
|
+
{
|
|
4922
|
+
name: string;
|
|
4923
|
+
key: string;
|
|
4924
|
+
parentFolderId?: string | undefined | null;
|
|
4925
|
+
},
|
|
4926
|
+
ResolverInputTypes["CreateFolderResult"]
|
|
4927
|
+
];
|
|
4928
|
+
dbConfigMutation?: [
|
|
4929
|
+
{
|
|
4930
|
+
appCode: string;
|
|
4931
|
+
config: string;
|
|
4932
|
+
},
|
|
4933
|
+
ResolverInputTypes["DbConfigMutationResult"]
|
|
4934
|
+
];
|
|
4935
|
+
dbSet?: [
|
|
4936
|
+
{
|
|
4937
|
+
value: string;
|
|
4938
|
+
userId?: string | undefined | null;
|
|
4939
|
+
},
|
|
4940
|
+
ResolverInputTypes["DbSetResult"]
|
|
4941
|
+
];
|
|
4546
4942
|
deleteAllData?: boolean | `@${string}`;
|
|
4547
|
-
deleteDraftMail?: [
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4943
|
+
deleteDraftMail?: [
|
|
4944
|
+
{
|
|
4945
|
+
draftId: string;
|
|
4946
|
+
},
|
|
4947
|
+
ResolverInputTypes["DeleteDraftMailResult"]
|
|
4948
|
+
];
|
|
4949
|
+
deleteFile?: [
|
|
4950
|
+
{
|
|
4951
|
+
fileId: string;
|
|
4952
|
+
nodeId: string;
|
|
4953
|
+
},
|
|
4954
|
+
ResolverInputTypes["DeleteFileResult"]
|
|
4955
|
+
];
|
|
4554
4956
|
deleteMail?: [{
|
|
4555
4957
|
mailId: string;
|
|
4556
4958
|
}, ResolverInputTypes["DeleteMailResult"]];
|
|
4557
|
-
deleteMailTrash?: [
|
|
4558
|
-
|
|
4559
|
-
|
|
4959
|
+
deleteMailTrash?: [
|
|
4960
|
+
{
|
|
4961
|
+
ids: Array<string>;
|
|
4962
|
+
},
|
|
4963
|
+
ResolverInputTypes["DeleteMailTrashResult"]
|
|
4964
|
+
];
|
|
4560
4965
|
deleteNode?: [{
|
|
4561
4966
|
id: string;
|
|
4562
4967
|
}, ResolverInputTypes["DeleteNodeResult"]];
|
|
4563
|
-
deleteNodeCloudTrash?: [
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4968
|
+
deleteNodeCloudTrash?: [
|
|
4969
|
+
{
|
|
4970
|
+
ids: Array<string>;
|
|
4971
|
+
},
|
|
4972
|
+
ResolverInputTypes["DeleteNodeCloudTrashResult"]
|
|
4973
|
+
];
|
|
4974
|
+
deleteNodeSharing?: [
|
|
4975
|
+
{
|
|
4976
|
+
nodeId: string;
|
|
4977
|
+
userId: string;
|
|
4978
|
+
},
|
|
4979
|
+
ResolverInputTypes["DeleteNodeSharingResult"]
|
|
4980
|
+
];
|
|
4981
|
+
deleteUser?: [
|
|
4982
|
+
{
|
|
4983
|
+
userId?: string | undefined | null;
|
|
4984
|
+
},
|
|
4985
|
+
ResolverInputTypes["DeleteUserResult"]
|
|
4986
|
+
];
|
|
4987
|
+
duplicateNode?: [
|
|
4988
|
+
{
|
|
4989
|
+
nodeId: string;
|
|
4990
|
+
folderId?: string | undefined | null;
|
|
4991
|
+
customName?: string | undefined | null;
|
|
4992
|
+
},
|
|
4993
|
+
ResolverInputTypes["DuplicateNodeResult"]
|
|
4994
|
+
];
|
|
4578
4995
|
emptyCloudTrash?: ResolverInputTypes["EmptyCloudTrashResult"];
|
|
4579
4996
|
emptyMailTrash?: ResolverInputTypes["EmptyMailTrashResult"];
|
|
4580
|
-
logout?: [
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4997
|
+
logout?: [
|
|
4998
|
+
{
|
|
4999
|
+
sessionId?: string | undefined | null;
|
|
5000
|
+
},
|
|
5001
|
+
ResolverInputTypes["LogoutResult"]
|
|
5002
|
+
];
|
|
5003
|
+
moveNodes?: [
|
|
5004
|
+
{
|
|
5005
|
+
nodeIds: Array<string>;
|
|
5006
|
+
parentNodeId?: string | undefined | null;
|
|
5007
|
+
},
|
|
5008
|
+
ResolverInputTypes["MoveNodesResult"]
|
|
5009
|
+
];
|
|
5010
|
+
pay?: [
|
|
5011
|
+
{
|
|
5012
|
+
planCode: string;
|
|
5013
|
+
input: ResolverInputTypes["PayInput"];
|
|
5014
|
+
autoRenew?: boolean | undefined | null;
|
|
5015
|
+
},
|
|
5016
|
+
ResolverInputTypes["PayResult"]
|
|
5017
|
+
];
|
|
4592
5018
|
readMail?: [{
|
|
4593
5019
|
mailId: string;
|
|
4594
5020
|
}, ResolverInputTypes["ReadMailResult"]];
|
|
@@ -4598,209 +5024,329 @@ export type ResolverInputTypes = {
|
|
|
4598
5024
|
recoverNode?: [{
|
|
4599
5025
|
id: string;
|
|
4600
5026
|
}, ResolverInputTypes["RecoverNodeResult"]];
|
|
4601
|
-
saveInCloud?: [
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
5027
|
+
saveInCloud?: [
|
|
5028
|
+
{
|
|
5029
|
+
fileId: string;
|
|
5030
|
+
key: string;
|
|
5031
|
+
nodeId?: string | undefined | null;
|
|
5032
|
+
filename: string;
|
|
5033
|
+
nameKey: string;
|
|
5034
|
+
},
|
|
5035
|
+
ResolverInputTypes["SaveInCloudResult"]
|
|
5036
|
+
];
|
|
5037
|
+
sendAppMail?: [
|
|
5038
|
+
{
|
|
5039
|
+
fakeUserIds: Array<string>;
|
|
5040
|
+
subject: string;
|
|
5041
|
+
html: string;
|
|
5042
|
+
},
|
|
5043
|
+
ResolverInputTypes["SendAppMailResult"]
|
|
5044
|
+
];
|
|
5045
|
+
sendCryptoTransaction?: [
|
|
5046
|
+
{
|
|
5047
|
+
network?: ResolverInputTypes["InfuraNetwork"] | undefined | null;
|
|
5048
|
+
address: string;
|
|
5049
|
+
rawTransaction: string;
|
|
5050
|
+
appSession: string;
|
|
5051
|
+
},
|
|
5052
|
+
ResolverInputTypes["SendCryptoTransactionResult"]
|
|
5053
|
+
];
|
|
5054
|
+
sendDraftMail?: [
|
|
5055
|
+
{
|
|
5056
|
+
draftMailId: string;
|
|
5057
|
+
temporaryRecipients: Array<string>;
|
|
5058
|
+
recipients: Array<ResolverInputTypes["MailRecipientInput"]>;
|
|
5059
|
+
customMessage?: string | undefined | null;
|
|
5060
|
+
},
|
|
5061
|
+
ResolverInputTypes["SendDraftMailResult"]
|
|
5062
|
+
];
|
|
5063
|
+
sendOneMail?: [
|
|
5064
|
+
{
|
|
5065
|
+
mailIntegrityId: string;
|
|
5066
|
+
recipient: ResolverInputTypes["MailRecipientInput"];
|
|
5067
|
+
},
|
|
5068
|
+
ResolverInputTypes["SendOneMailResult"]
|
|
5069
|
+
];
|
|
5070
|
+
sendReport?: [
|
|
5071
|
+
{
|
|
5072
|
+
reportedUserId: string;
|
|
5073
|
+
customMessage?: string | undefined | null;
|
|
5074
|
+
},
|
|
5075
|
+
ResolverInputTypes["SendReportResult"]
|
|
5076
|
+
];
|
|
5077
|
+
shareFileInHistory?: [
|
|
5078
|
+
{
|
|
5079
|
+
input: ResolverInputTypes["ShareFileInHistoryInput"];
|
|
5080
|
+
nodeId: string;
|
|
5081
|
+
},
|
|
5082
|
+
ResolverInputTypes["ShareFileInHistoryResult"]
|
|
5083
|
+
];
|
|
5084
|
+
shareNode?: [
|
|
5085
|
+
{
|
|
5086
|
+
nodeId: string;
|
|
5087
|
+
userId: string;
|
|
5088
|
+
},
|
|
5089
|
+
ResolverInputTypes["ShareNodeResult"]
|
|
5090
|
+
];
|
|
5091
|
+
shareNodeFinish?: [
|
|
5092
|
+
{
|
|
5093
|
+
shareNodes: ResolverInputTypes["ShareNodesInput"];
|
|
5094
|
+
userId: string;
|
|
5095
|
+
rights: ResolverInputTypes["Rights"];
|
|
5096
|
+
},
|
|
5097
|
+
ResolverInputTypes["ShareNodeFinishResult"]
|
|
5098
|
+
];
|
|
4646
5099
|
unreadMail?: [{
|
|
4647
5100
|
mailId: string;
|
|
4648
5101
|
}, ResolverInputTypes["UnreadMailResult"]];
|
|
4649
|
-
updateAppNotifications?: [
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
5102
|
+
updateAppNotifications?: [
|
|
5103
|
+
{
|
|
5104
|
+
enableAll?: boolean | undefined | null;
|
|
5105
|
+
mail?: boolean | undefined | null;
|
|
5106
|
+
cloud?: boolean | undefined | null;
|
|
5107
|
+
disableAllUntil?: ResolverInputTypes["DateTime"] | undefined | null;
|
|
5108
|
+
},
|
|
5109
|
+
ResolverInputTypes["UpdateAppNotificationsResult"]
|
|
5110
|
+
];
|
|
5111
|
+
updateAppSettings?: [
|
|
5112
|
+
{
|
|
5113
|
+
cloudNodeDaysForDelete?: number | undefined | null;
|
|
5114
|
+
historyFileDaysForDelete?: number | undefined | null;
|
|
5115
|
+
historyMaxFileCount?: number | undefined | null;
|
|
5116
|
+
},
|
|
5117
|
+
ResolverInputTypes["UpdateAppSettingsResult"]
|
|
5118
|
+
];
|
|
5119
|
+
updateAutoDisconnectDelay?: [
|
|
5120
|
+
{
|
|
5121
|
+
userId?: string | undefined | null;
|
|
5122
|
+
delay?: number | undefined | null;
|
|
5123
|
+
},
|
|
5124
|
+
ResolverInputTypes["UpdateAutoDisconnectDelayResult"]
|
|
5125
|
+
];
|
|
5126
|
+
updateDraftMail?: [
|
|
5127
|
+
{
|
|
5128
|
+
draftId: string;
|
|
5129
|
+
hash?: string | undefined | null;
|
|
5130
|
+
hashKey?: string | undefined | null;
|
|
5131
|
+
body?: string | undefined | null;
|
|
5132
|
+
subject?: string | undefined | null;
|
|
5133
|
+
replyTo?: string | undefined | null;
|
|
5134
|
+
senderFiles?: Array<ResolverInputTypes["MailFileInput"]> | undefined | null;
|
|
5135
|
+
recipients?: Array<string> | undefined | null;
|
|
5136
|
+
},
|
|
5137
|
+
ResolverInputTypes["UpdateDraftMailResult"]
|
|
5138
|
+
];
|
|
5139
|
+
updateNode?: [
|
|
5140
|
+
{
|
|
5141
|
+
nodeId: string;
|
|
5142
|
+
name?: string | undefined | null;
|
|
5143
|
+
isFavorite?: boolean | undefined | null;
|
|
5144
|
+
deletedAt?: ResolverInputTypes["DateTime"] | undefined | null;
|
|
5145
|
+
},
|
|
5146
|
+
ResolverInputTypes["UpdateNodeResult"]
|
|
5147
|
+
];
|
|
5148
|
+
updateProfile?: [
|
|
5149
|
+
{
|
|
5150
|
+
firstname?: string | undefined | null;
|
|
5151
|
+
lastname?: string | undefined | null;
|
|
5152
|
+
lang?: ResolverInputTypes["Lang"] | undefined | null;
|
|
5153
|
+
},
|
|
5154
|
+
ResolverInputTypes["UpdateProfileResult"]
|
|
5155
|
+
];
|
|
5156
|
+
uploadAnonymous?: [
|
|
5157
|
+
{
|
|
5158
|
+
fileName: string;
|
|
5159
|
+
fileSize: number;
|
|
5160
|
+
fileSizeBefore: number;
|
|
5161
|
+
message?: string | undefined | null;
|
|
5162
|
+
pubKey: string;
|
|
5163
|
+
token: string;
|
|
5164
|
+
},
|
|
5165
|
+
ResolverInputTypes["FileResponse"]
|
|
5166
|
+
];
|
|
5167
|
+
uploadFile?: [
|
|
5168
|
+
{
|
|
5169
|
+
fileSize: ResolverInputTypes["BigInt"];
|
|
5170
|
+
fileSizeBefore: ResolverInputTypes["BigInt"];
|
|
5171
|
+
fileKey: string;
|
|
5172
|
+
md5: string;
|
|
5173
|
+
md5Encrypted: string;
|
|
5174
|
+
},
|
|
5175
|
+
ResolverInputTypes["UploadFileResult"]
|
|
5176
|
+
];
|
|
5177
|
+
uploadFileEnd?: [
|
|
5178
|
+
{
|
|
5179
|
+
fileId: string;
|
|
5180
|
+
},
|
|
5181
|
+
ResolverInputTypes["UploadFileEndResult"]
|
|
5182
|
+
];
|
|
5183
|
+
uploadFilePartEnd?: [
|
|
5184
|
+
{
|
|
5185
|
+
fileId: string;
|
|
5186
|
+
md5: string;
|
|
5187
|
+
order: number;
|
|
5188
|
+
},
|
|
5189
|
+
ResolverInputTypes["UploadFilePartEndResult"]
|
|
5190
|
+
];
|
|
5191
|
+
uploadLiteFile?: [
|
|
5192
|
+
{
|
|
5193
|
+
content: ResolverInputTypes["Bytes"];
|
|
5194
|
+
fileSize: ResolverInputTypes["BigInt"];
|
|
5195
|
+
fileSizeBefore: ResolverInputTypes["BigInt"];
|
|
5196
|
+
fileKey: string;
|
|
5197
|
+
md5: string;
|
|
5198
|
+
md5Encrypted: string;
|
|
5199
|
+
},
|
|
5200
|
+
ResolverInputTypes["UploadLiteFileResult"]
|
|
5201
|
+
];
|
|
5202
|
+
changeUserPlan?: [
|
|
5203
|
+
{
|
|
5204
|
+
userId: string;
|
|
5205
|
+
plan: ResolverInputTypes["PlanKind"];
|
|
5206
|
+
},
|
|
5207
|
+
ResolverInputTypes["ChangeUserPlanResult"]
|
|
5208
|
+
];
|
|
5209
|
+
createCardToken?: [
|
|
5210
|
+
{
|
|
5211
|
+
lastFourDigit: string;
|
|
5212
|
+
cardTokenId: string;
|
|
5213
|
+
},
|
|
5214
|
+
ResolverInputTypes["CreateCardTokenResult"]
|
|
5215
|
+
];
|
|
5216
|
+
createStripeTransfer?: [
|
|
5217
|
+
{
|
|
5218
|
+
secrecyIdToReceive: string;
|
|
5219
|
+
amount: number;
|
|
5220
|
+
currency: string;
|
|
5221
|
+
},
|
|
5222
|
+
ResolverInputTypes["CreateStripeTransferResult"]
|
|
5223
|
+
];
|
|
5224
|
+
deleteCardToken?: [
|
|
5225
|
+
{
|
|
5226
|
+
cardTokenId: string;
|
|
5227
|
+
},
|
|
5228
|
+
ResolverInputTypes["DeleteCardTokenResult"]
|
|
5229
|
+
];
|
|
4732
5230
|
stripeOnBoarding?: ResolverInputTypes["StripeOnBoardingResult"];
|
|
4733
|
-
cancelStripePayout?: [
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
5231
|
+
cancelStripePayout?: [
|
|
5232
|
+
{
|
|
5233
|
+
payoutId: string;
|
|
5234
|
+
},
|
|
5235
|
+
ResolverInputTypes["CancelStripePayoutResult"]
|
|
5236
|
+
];
|
|
5237
|
+
createStripePayout?: [
|
|
5238
|
+
{
|
|
5239
|
+
amount: number;
|
|
5240
|
+
currency: string;
|
|
5241
|
+
description?: string | undefined | null;
|
|
5242
|
+
},
|
|
5243
|
+
ResolverInputTypes["CreateStripePayoutResult"]
|
|
5244
|
+
];
|
|
5245
|
+
addCartToPaymentIntent?: [
|
|
5246
|
+
{
|
|
5247
|
+
paymentIntentId: string;
|
|
5248
|
+
secrecyIdSeller: string;
|
|
5249
|
+
cardTokenId: string;
|
|
5250
|
+
},
|
|
5251
|
+
ResolverInputTypes["AddCartToPaymentIntentResult"]
|
|
5252
|
+
];
|
|
5253
|
+
cancelPaymentIntent?: [
|
|
5254
|
+
{
|
|
5255
|
+
paymentIntentId: string;
|
|
5256
|
+
secrecyIdSeller: string;
|
|
5257
|
+
},
|
|
5258
|
+
ResolverInputTypes["CancelPaymentIntentResult"]
|
|
5259
|
+
];
|
|
5260
|
+
confirmPaymentIntent?: [
|
|
5261
|
+
{
|
|
5262
|
+
paymentIntentId: string;
|
|
5263
|
+
secrecyIdSeller: string;
|
|
5264
|
+
},
|
|
5265
|
+
ResolverInputTypes["ConfirmPaymentIntentResult"]
|
|
5266
|
+
];
|
|
5267
|
+
createPaymentIntent?: [
|
|
5268
|
+
{
|
|
5269
|
+
amount: number;
|
|
5270
|
+
userId: string;
|
|
5271
|
+
currency: string;
|
|
5272
|
+
},
|
|
5273
|
+
ResolverInputTypes["CreatePaymentIntentResult"]
|
|
5274
|
+
];
|
|
5275
|
+
renewAppCode?: [
|
|
5276
|
+
{
|
|
5277
|
+
actualAppCode: string;
|
|
5278
|
+
},
|
|
5279
|
+
ResolverInputTypes["RenewAppCodeResult"]
|
|
5280
|
+
];
|
|
5281
|
+
updateOriginUrl?: [
|
|
5282
|
+
{
|
|
5283
|
+
appCode: string;
|
|
5284
|
+
originUrl: Array<string>;
|
|
5285
|
+
},
|
|
5286
|
+
ResolverInputTypes["UpdateOriginUrlResult"]
|
|
5287
|
+
];
|
|
5288
|
+
createApplication?: [
|
|
5289
|
+
{
|
|
5290
|
+
name: string;
|
|
5291
|
+
origin: string;
|
|
5292
|
+
color?: string | undefined | null;
|
|
5293
|
+
logo?: string | undefined | null;
|
|
5294
|
+
collaborators?: Array<ResolverInputTypes["ApplicationsCollaborators"]> | undefined | null;
|
|
5295
|
+
},
|
|
5296
|
+
ResolverInputTypes["CreateApplicationResult"]
|
|
5297
|
+
];
|
|
5298
|
+
deleteApplication?: [
|
|
5299
|
+
{
|
|
5300
|
+
appCode: string;
|
|
5301
|
+
},
|
|
5302
|
+
ResolverInputTypes["DeleteApplicationResult"]
|
|
5303
|
+
];
|
|
5304
|
+
editColors?: [
|
|
5305
|
+
{
|
|
5306
|
+
appCode: string;
|
|
5307
|
+
newColors?: string | undefined | null;
|
|
5308
|
+
},
|
|
5309
|
+
ResolverInputTypes["EditColorsResult"]
|
|
5310
|
+
];
|
|
5311
|
+
editLogo?: [
|
|
5312
|
+
{
|
|
5313
|
+
appCode: string;
|
|
5314
|
+
newLogo?: string | undefined | null;
|
|
5315
|
+
},
|
|
5316
|
+
ResolverInputTypes["EditLogoResult"]
|
|
5317
|
+
];
|
|
5318
|
+
editName?: [
|
|
5319
|
+
{
|
|
5320
|
+
appCode: string;
|
|
5321
|
+
newName: string;
|
|
5322
|
+
},
|
|
5323
|
+
ResolverInputTypes["EditNameResult"]
|
|
5324
|
+
];
|
|
5325
|
+
addDeveloper?: [
|
|
5326
|
+
{
|
|
5327
|
+
appCode: string;
|
|
5328
|
+
userId: string;
|
|
5329
|
+
userRole: ResolverInputTypes["UserRole"];
|
|
5330
|
+
userRights: ResolverInputTypes["Rights"];
|
|
5331
|
+
},
|
|
5332
|
+
ResolverInputTypes["AddDeveloperResult"]
|
|
5333
|
+
];
|
|
5334
|
+
deleteDeveloper?: [
|
|
5335
|
+
{
|
|
5336
|
+
appCode: string;
|
|
5337
|
+
userId: string;
|
|
5338
|
+
},
|
|
5339
|
+
ResolverInputTypes["DeleteDeveloperResult"]
|
|
5340
|
+
];
|
|
5341
|
+
editDeveloper?: [
|
|
5342
|
+
{
|
|
5343
|
+
appCode: string;
|
|
5344
|
+
userId: string;
|
|
5345
|
+
userRole: ResolverInputTypes["UserRole"];
|
|
5346
|
+
userRights: ResolverInputTypes["Rights"];
|
|
5347
|
+
},
|
|
5348
|
+
ResolverInputTypes["EditDeveloperResult"]
|
|
5349
|
+
];
|
|
4804
5350
|
__typename?: boolean | `@${string}`;
|
|
4805
5351
|
}>;
|
|
4806
5352
|
["Subscription"]: AliasType<{
|
|
@@ -4860,6 +5406,7 @@ export type ModelTypes = {
|
|
|
4860
5406
|
["GetPaymentRequestToCollectResult"]: ModelTypes["GetPaymentRequestToCollectResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorStripe"];
|
|
4861
5407
|
["GetPaymentRequestToPayResult"]: ModelTypes["GetPaymentRequestToPayResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
|
|
4862
5408
|
["IsValidPaymentIntentResult"]: ModelTypes["ValidPaymentIntentResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorStripe"];
|
|
5409
|
+
["GetApplicationResult"]: ModelTypes["GetApplicationResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
|
|
4863
5410
|
["GetAllDevelopersResult"]: ModelTypes["GetAllDevelopersMainResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
|
|
4864
5411
|
["GetDeveloperResult"]: ModelTypes["GetDeveloperResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
|
|
4865
5412
|
["AddFileToHistoryResult"]: ModelTypes["AddFileToHistoryResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
|
|
@@ -4945,6 +5492,7 @@ export type ModelTypes = {
|
|
|
4945
5492
|
id: string;
|
|
4946
5493
|
name: string;
|
|
4947
5494
|
logo?: string | undefined;
|
|
5495
|
+
code: string;
|
|
4948
5496
|
color?: string | undefined;
|
|
4949
5497
|
origin: Array<string>;
|
|
4950
5498
|
createdAt: ModelTypes["DateTime"];
|
|
@@ -5022,7 +5570,7 @@ export type ModelTypes = {
|
|
|
5022
5570
|
role: ModelTypes["UserRole"];
|
|
5023
5571
|
rights: ModelTypes["Rights"];
|
|
5024
5572
|
};
|
|
5025
|
-
["
|
|
5573
|
+
["SortApplications"]: SortApplications;
|
|
5026
5574
|
["Error"]: ModelTypes["ErrorStripe"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorUpgradePlan"] | ModelTypes["ErrorLangNotExist"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorLimit"] | ModelTypes["ErrorBasic"];
|
|
5027
5575
|
["ErrorAccessDenied"]: {
|
|
5028
5576
|
message: string;
|
|
@@ -5795,6 +6343,9 @@ export type ModelTypes = {
|
|
|
5795
6343
|
type: ModelTypes["PayoutType"];
|
|
5796
6344
|
};
|
|
5797
6345
|
["PayoutType"]: PayoutType;
|
|
6346
|
+
["GetApplicationResponse"]: {
|
|
6347
|
+
application: ModelTypes["Application"];
|
|
6348
|
+
};
|
|
5798
6349
|
["DeveloperResponse"]: {
|
|
5799
6350
|
rights: ModelTypes["Rights"];
|
|
5800
6351
|
role: ModelTypes["UserRole"];
|
|
@@ -5979,6 +6530,7 @@ export type ModelTypes = {
|
|
|
5979
6530
|
getPaymentRequestToCollect?: ModelTypes["GetPaymentRequestToCollectResult"] | undefined;
|
|
5980
6531
|
getPaymentRequestToPay?: ModelTypes["GetPaymentRequestToPayResult"] | undefined;
|
|
5981
6532
|
isValidPaymentIntent?: ModelTypes["IsValidPaymentIntentResult"] | undefined;
|
|
6533
|
+
getApplication?: ModelTypes["GetApplicationResult"] | undefined;
|
|
5982
6534
|
getAllDevelopers?: ModelTypes["GetAllDevelopersResult"] | undefined;
|
|
5983
6535
|
getDeveloper?: ModelTypes["GetDeveloperResult"] | undefined;
|
|
5984
6536
|
};
|
|
@@ -6077,632 +6629,638 @@ export type GraphQLTypes = {
|
|
|
6077
6629
|
["PaymentMethod"]: PaymentMethod;
|
|
6078
6630
|
["AppNotificationsResult"]: {
|
|
6079
6631
|
__typename: "UserAppNotifications" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6080
|
-
[
|
|
6081
|
-
[
|
|
6082
|
-
[
|
|
6632
|
+
["...on UserAppNotifications"]: "__union" & GraphQLTypes["UserAppNotifications"];
|
|
6633
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6634
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6083
6635
|
};
|
|
6084
6636
|
["ApplicationsResult"]: {
|
|
6085
6637
|
__typename: "ApplicationsResponse" | "ErrorAccessDenied";
|
|
6086
|
-
[
|
|
6087
|
-
[
|
|
6638
|
+
["...on ApplicationsResponse"]: "__union" & GraphQLTypes["ApplicationsResponse"];
|
|
6639
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6088
6640
|
};
|
|
6089
6641
|
["BlogResult"]: {
|
|
6090
6642
|
__typename: "BlogResponse" | "ErrorLangNotExist";
|
|
6091
|
-
[
|
|
6092
|
-
[
|
|
6643
|
+
["...on BlogResponse"]: "__union" & GraphQLTypes["BlogResponse"];
|
|
6644
|
+
["...on ErrorLangNotExist"]: "__union" & GraphQLTypes["ErrorLangNotExist"];
|
|
6093
6645
|
};
|
|
6094
6646
|
["DbConfigResult"]: {
|
|
6095
6647
|
__typename: "DbConfigResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorNotFound";
|
|
6096
|
-
[
|
|
6097
|
-
[
|
|
6098
|
-
[
|
|
6099
|
-
[
|
|
6648
|
+
["...on DbConfigResponse"]: "__union" & GraphQLTypes["DbConfigResponse"];
|
|
6649
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6650
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6651
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6100
6652
|
};
|
|
6101
6653
|
["DbGetResult"]: {
|
|
6102
6654
|
__typename: "DbGetResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorNotExist";
|
|
6103
|
-
[
|
|
6104
|
-
[
|
|
6105
|
-
[
|
|
6106
|
-
[
|
|
6655
|
+
["...on DbGetResponse"]: "__union" & GraphQLTypes["DbGetResponse"];
|
|
6656
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6657
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6658
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6107
6659
|
};
|
|
6108
6660
|
["DbSearchResult"]: {
|
|
6109
6661
|
__typename: "DbSearchResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic";
|
|
6110
|
-
[
|
|
6111
|
-
[
|
|
6112
|
-
[
|
|
6113
|
-
[
|
|
6662
|
+
["...on DbSearchResponse"]: "__union" & GraphQLTypes["DbSearchResponse"];
|
|
6663
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6664
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6665
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6114
6666
|
};
|
|
6115
6667
|
["DeletedMailsResult"]: {
|
|
6116
6668
|
__typename: "DeletedMailsResponse" | "ErrorAccessDenied";
|
|
6117
|
-
[
|
|
6118
|
-
[
|
|
6669
|
+
["...on DeletedMailsResponse"]: "__union" & GraphQLTypes["DeletedMailsResponse"];
|
|
6670
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6119
6671
|
};
|
|
6120
6672
|
["DeletedNodesResult"]: {
|
|
6121
6673
|
__typename: "DeletedNodesResponse" | "ErrorAccessDenied";
|
|
6122
|
-
[
|
|
6123
|
-
[
|
|
6674
|
+
["...on DeletedNodesResponse"]: "__union" & GraphQLTypes["DeletedNodesResponse"];
|
|
6675
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6124
6676
|
};
|
|
6125
6677
|
["FaqResult"]: {
|
|
6126
6678
|
__typename: "FaqResponse" | "ErrorAccessDenied";
|
|
6127
|
-
[
|
|
6128
|
-
[
|
|
6679
|
+
["...on FaqResponse"]: "__union" & GraphQLTypes["FaqResponse"];
|
|
6680
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6129
6681
|
};
|
|
6130
6682
|
["FileResult"]: {
|
|
6131
6683
|
__typename: "FileQueryResponse" | "ErrorAccessDenied";
|
|
6132
|
-
[
|
|
6133
|
-
[
|
|
6684
|
+
["...on FileQueryResponse"]: "__union" & GraphQLTypes["FileQueryResponse"];
|
|
6685
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6134
6686
|
};
|
|
6135
6687
|
["FileContentResult"]: {
|
|
6136
6688
|
__typename: "FileContentResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6137
|
-
[
|
|
6138
|
-
[
|
|
6139
|
-
[
|
|
6689
|
+
["...on FileContentResponse"]: "__union" & GraphQLTypes["FileContentResponse"];
|
|
6690
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6691
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6140
6692
|
};
|
|
6141
6693
|
["FilesContentResult"]: {
|
|
6142
6694
|
__typename: "FilesContentResponse" | "ErrorAccessDenied" | "ErrorBasic" | "ErrorNotFound";
|
|
6143
|
-
[
|
|
6144
|
-
[
|
|
6145
|
-
[
|
|
6146
|
-
[
|
|
6695
|
+
["...on FilesContentResponse"]: "__union" & GraphQLTypes["FilesContentResponse"];
|
|
6696
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6697
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6698
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6147
6699
|
};
|
|
6148
6700
|
["GetJwtResult"]: {
|
|
6149
6701
|
__typename: "JwtResponse" | "ErrorAccessDenied";
|
|
6150
|
-
[
|
|
6151
|
-
[
|
|
6702
|
+
["...on JwtResponse"]: "__union" & GraphQLTypes["JwtResponse"];
|
|
6703
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6152
6704
|
};
|
|
6153
6705
|
["IsCryptoTransactionDoneResult"]: {
|
|
6154
6706
|
__typename: "IsCryptoTransactionDoneResponse" | "ErrorNotExist";
|
|
6155
|
-
[
|
|
6156
|
-
[
|
|
6707
|
+
["...on IsCryptoTransactionDoneResponse"]: "__union" & GraphQLTypes["IsCryptoTransactionDoneResponse"];
|
|
6708
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6157
6709
|
};
|
|
6158
6710
|
["LimitsResult"]: {
|
|
6159
6711
|
__typename: "QueryLimits" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorNotExist" | "ErrorLimit";
|
|
6160
|
-
[
|
|
6161
|
-
[
|
|
6162
|
-
[
|
|
6163
|
-
[
|
|
6164
|
-
[
|
|
6712
|
+
["...on QueryLimits"]: "__union" & GraphQLTypes["QueryLimits"];
|
|
6713
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6714
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6715
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6716
|
+
["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
|
|
6165
6717
|
};
|
|
6166
6718
|
["MailResult"]: {
|
|
6167
6719
|
__typename: "QueryMailResponse" | "ErrorAccessDenied";
|
|
6168
|
-
[
|
|
6169
|
-
[
|
|
6720
|
+
["...on QueryMailResponse"]: "__union" & GraphQLTypes["QueryMailResponse"];
|
|
6721
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6170
6722
|
};
|
|
6171
6723
|
["MyCryptoBalanceResult"]: {
|
|
6172
6724
|
__typename: "MyCryptoBalanceResponse" | "ErrorNotExist";
|
|
6173
|
-
[
|
|
6174
|
-
[
|
|
6725
|
+
["...on MyCryptoBalanceResponse"]: "__union" & GraphQLTypes["MyCryptoBalanceResponse"];
|
|
6726
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6175
6727
|
};
|
|
6176
6728
|
["NodeResult"]: {
|
|
6177
6729
|
__typename: "NodeResponse" | "ErrorAccessDenied";
|
|
6178
|
-
[
|
|
6179
|
-
[
|
|
6730
|
+
["...on NodeResponse"]: "__union" & GraphQLTypes["NodeResponse"];
|
|
6731
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6180
6732
|
};
|
|
6181
6733
|
["NodesSharedWithMeResult"]: {
|
|
6182
6734
|
__typename: "NodesSharedWithMeResponse" | "ErrorAccessDenied";
|
|
6183
|
-
[
|
|
6184
|
-
[
|
|
6735
|
+
["...on NodesSharedWithMeResponse"]: "__union" & GraphQLTypes["NodesSharedWithMeResponse"];
|
|
6736
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6185
6737
|
};
|
|
6186
6738
|
["PaymentInfosResult"]: {
|
|
6187
6739
|
__typename: "PaymentInfosResponse" | "ErrorAccessDenied";
|
|
6188
|
-
[
|
|
6189
|
-
[
|
|
6740
|
+
["...on PaymentInfosResponse"]: "__union" & GraphQLTypes["PaymentInfosResponse"];
|
|
6741
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6190
6742
|
};
|
|
6191
6743
|
["PlansResult"]: {
|
|
6192
6744
|
__typename: "PlanResponse";
|
|
6193
|
-
[
|
|
6745
|
+
["...on PlanResponse"]: "__union" & GraphQLTypes["PlanResponse"];
|
|
6194
6746
|
};
|
|
6195
6747
|
["SharedNodesResult"]: {
|
|
6196
6748
|
__typename: "SharedNodesResponse" | "ErrorAccessDenied";
|
|
6197
|
-
[
|
|
6198
|
-
[
|
|
6749
|
+
["...on SharedNodesResponse"]: "__union" & GraphQLTypes["SharedNodesResponse"];
|
|
6750
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6199
6751
|
};
|
|
6200
6752
|
["UnreadReceivedMailsCountResult"]: {
|
|
6201
6753
|
__typename: "UnreadReceivedMailsCountResponse" | "ErrorAccessDenied";
|
|
6202
|
-
[
|
|
6203
|
-
[
|
|
6754
|
+
["...on UnreadReceivedMailsCountResponse"]: "__union" & GraphQLTypes["UnreadReceivedMailsCountResponse"];
|
|
6755
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6204
6756
|
};
|
|
6205
6757
|
["UserResult"]: {
|
|
6206
6758
|
__typename: "UserResponse" | "ErrorNotFound";
|
|
6207
|
-
[
|
|
6208
|
-
[
|
|
6759
|
+
["...on UserResponse"]: "__union" & GraphQLTypes["UserResponse"];
|
|
6760
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6209
6761
|
};
|
|
6210
6762
|
["UserListResult"]: {
|
|
6211
6763
|
__typename: "UserListResponse" | "ErrorAccessDenied";
|
|
6212
|
-
[
|
|
6213
|
-
[
|
|
6764
|
+
["...on UserListResponse"]: "__union" & GraphQLTypes["UserListResponse"];
|
|
6765
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6214
6766
|
};
|
|
6215
6767
|
["GetCardIdentificationResult"]: {
|
|
6216
6768
|
__typename: "CardIdentificationResponse" | "ErrorAccessDenied";
|
|
6217
|
-
[
|
|
6218
|
-
[
|
|
6769
|
+
["...on CardIdentificationResponse"]: "__union" & GraphQLTypes["CardIdentificationResponse"];
|
|
6770
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6219
6771
|
};
|
|
6220
6772
|
["GetStripeBalanceResult"]: {
|
|
6221
6773
|
__typename: "GetStripeBalanceResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
6222
|
-
[
|
|
6223
|
-
[
|
|
6224
|
-
[
|
|
6225
|
-
[
|
|
6774
|
+
["...on GetStripeBalanceResponse"]: "__union" & GraphQLTypes["GetStripeBalanceResponse"];
|
|
6775
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6776
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6777
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6226
6778
|
};
|
|
6227
6779
|
["GetStripeBalanceTransactionResult"]: {
|
|
6228
6780
|
__typename: "GetStripeBalanceTransactionResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
6229
|
-
[
|
|
6230
|
-
[
|
|
6231
|
-
[
|
|
6232
|
-
[
|
|
6781
|
+
["...on GetStripeBalanceTransactionResponse"]: "__union" & GraphQLTypes["GetStripeBalanceTransactionResponse"];
|
|
6782
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6783
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6784
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6233
6785
|
};
|
|
6234
6786
|
["GetStripeTransactionResult"]: {
|
|
6235
6787
|
__typename: "GetStripeTransactionResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
6236
|
-
[
|
|
6237
|
-
[
|
|
6238
|
-
[
|
|
6239
|
-
[
|
|
6788
|
+
["...on GetStripeTransactionResponse"]: "__union" & GraphQLTypes["GetStripeTransactionResponse"];
|
|
6789
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6790
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6791
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6240
6792
|
};
|
|
6241
6793
|
["HasStripeAccountResult"]: {
|
|
6242
6794
|
__typename: "HasStripeAccountResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6243
|
-
[
|
|
6244
|
-
[
|
|
6245
|
-
[
|
|
6795
|
+
["...on HasStripeAccountResponse"]: "__union" & GraphQLTypes["HasStripeAccountResponse"];
|
|
6796
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6797
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6246
6798
|
};
|
|
6247
6799
|
["KycStripeCompletedResult"]: {
|
|
6248
6800
|
__typename: "KycStripeCompletedResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
6249
|
-
[
|
|
6250
|
-
[
|
|
6251
|
-
[
|
|
6252
|
-
[
|
|
6801
|
+
["...on KycStripeCompletedResponse"]: "__union" & GraphQLTypes["KycStripeCompletedResponse"];
|
|
6802
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6803
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6804
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6253
6805
|
};
|
|
6254
6806
|
["GetAllStripeTransferResult"]: {
|
|
6255
6807
|
__typename: "GetAllStripeTransferResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6256
|
-
[
|
|
6257
|
-
[
|
|
6258
|
-
[
|
|
6259
|
-
[
|
|
6808
|
+
["...on GetAllStripeTransferResponse"]: "__union" & GraphQLTypes["GetAllStripeTransferResponse"];
|
|
6809
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6810
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6811
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6260
6812
|
};
|
|
6261
6813
|
["GetStripeTransferResult"]: {
|
|
6262
6814
|
__typename: "GetStripeTransferResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6263
|
-
[
|
|
6264
|
-
[
|
|
6265
|
-
[
|
|
6266
|
-
[
|
|
6815
|
+
["...on GetStripeTransferResponse"]: "__union" & GraphQLTypes["GetStripeTransferResponse"];
|
|
6816
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6817
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6818
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6267
6819
|
};
|
|
6268
6820
|
["GetAllStripePayoutResult"]: {
|
|
6269
6821
|
__typename: "GetAllStripePayoutResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
6270
|
-
[
|
|
6271
|
-
[
|
|
6272
|
-
[
|
|
6273
|
-
[
|
|
6822
|
+
["...on GetAllStripePayoutResponse"]: "__union" & GraphQLTypes["GetAllStripePayoutResponse"];
|
|
6823
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6824
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6825
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6274
6826
|
};
|
|
6275
6827
|
["GetStripePayoutResult"]: {
|
|
6276
6828
|
__typename: "GetStripePayoutResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
6277
|
-
[
|
|
6278
|
-
[
|
|
6279
|
-
[
|
|
6280
|
-
[
|
|
6829
|
+
["...on GetStripePayoutResponse"]: "__union" & GraphQLTypes["GetStripePayoutResponse"];
|
|
6830
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6831
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6832
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6281
6833
|
};
|
|
6282
6834
|
["GetAllPaymentRequestToCollectResult"]: {
|
|
6283
6835
|
__typename: "GetAllPaymentRequestToCollectResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6284
|
-
[
|
|
6285
|
-
[
|
|
6286
|
-
[
|
|
6287
|
-
[
|
|
6836
|
+
["...on GetAllPaymentRequestToCollectResponse"]: "__union" & GraphQLTypes["GetAllPaymentRequestToCollectResponse"];
|
|
6837
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6838
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6839
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6288
6840
|
};
|
|
6289
6841
|
["GetAllPaymentRequestToPayResult"]: {
|
|
6290
6842
|
__typename: "GetAllPaymentRequestToPayResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6291
|
-
[
|
|
6292
|
-
[
|
|
6293
|
-
[
|
|
6843
|
+
["...on GetAllPaymentRequestToPayResponse"]: "__union" & GraphQLTypes["GetAllPaymentRequestToPayResponse"];
|
|
6844
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6845
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6294
6846
|
};
|
|
6295
6847
|
["GetPaymentRequestToCollectResult"]: {
|
|
6296
6848
|
__typename: "GetPaymentRequestToCollectResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
6297
|
-
[
|
|
6298
|
-
[
|
|
6299
|
-
[
|
|
6300
|
-
[
|
|
6849
|
+
["...on GetPaymentRequestToCollectResponse"]: "__union" & GraphQLTypes["GetPaymentRequestToCollectResponse"];
|
|
6850
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6851
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6852
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6301
6853
|
};
|
|
6302
6854
|
["GetPaymentRequestToPayResult"]: {
|
|
6303
6855
|
__typename: "GetPaymentRequestToPayResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6304
|
-
[
|
|
6305
|
-
[
|
|
6306
|
-
[
|
|
6856
|
+
["...on GetPaymentRequestToPayResponse"]: "__union" & GraphQLTypes["GetPaymentRequestToPayResponse"];
|
|
6857
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6858
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6307
6859
|
};
|
|
6308
6860
|
["IsValidPaymentIntentResult"]: {
|
|
6309
6861
|
__typename: "ValidPaymentIntentResponse" | "ErrorAccessDenied" | "ErrorStripe";
|
|
6310
|
-
[
|
|
6311
|
-
[
|
|
6312
|
-
[
|
|
6862
|
+
["...on ValidPaymentIntentResponse"]: "__union" & GraphQLTypes["ValidPaymentIntentResponse"];
|
|
6863
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6864
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6865
|
+
};
|
|
6866
|
+
["GetApplicationResult"]: {
|
|
6867
|
+
__typename: "GetApplicationResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6868
|
+
["...on GetApplicationResponse"]: "__union" & GraphQLTypes["GetApplicationResponse"];
|
|
6869
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6870
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6313
6871
|
};
|
|
6314
6872
|
["GetAllDevelopersResult"]: {
|
|
6315
6873
|
__typename: "GetAllDevelopersMainResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6316
|
-
[
|
|
6317
|
-
[
|
|
6318
|
-
[
|
|
6874
|
+
["...on GetAllDevelopersMainResponse"]: "__union" & GraphQLTypes["GetAllDevelopersMainResponse"];
|
|
6875
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6876
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6319
6877
|
};
|
|
6320
6878
|
["GetDeveloperResult"]: {
|
|
6321
6879
|
__typename: "GetDeveloperResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6322
|
-
[
|
|
6323
|
-
[
|
|
6324
|
-
[
|
|
6880
|
+
["...on GetDeveloperResponse"]: "__union" & GraphQLTypes["GetDeveloperResponse"];
|
|
6881
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6882
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6325
6883
|
};
|
|
6326
6884
|
["AddFileToHistoryResult"]: {
|
|
6327
6885
|
__typename: "AddFileToHistoryResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
6328
|
-
[
|
|
6329
|
-
[
|
|
6330
|
-
[
|
|
6886
|
+
["...on AddFileToHistoryResponse"]: "__union" & GraphQLTypes["AddFileToHistoryResponse"];
|
|
6887
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6888
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6331
6889
|
};
|
|
6332
6890
|
["CancelPaymentResult"]: {
|
|
6333
6891
|
__typename: "CancelPaymentResponse" | "ErrorAccessDenied";
|
|
6334
|
-
[
|
|
6335
|
-
[
|
|
6892
|
+
["...on CancelPaymentResponse"]: "__union" & GraphQLTypes["CancelPaymentResponse"];
|
|
6893
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6336
6894
|
};
|
|
6337
6895
|
["CreateCryptoWalletResult"]: {
|
|
6338
6896
|
__typename: "CreateCryptoWalletResponse" | "ErrorAccessDenied";
|
|
6339
|
-
[
|
|
6340
|
-
[
|
|
6897
|
+
["...on CreateCryptoWalletResponse"]: "__union" & GraphQLTypes["CreateCryptoWalletResponse"];
|
|
6898
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6341
6899
|
};
|
|
6342
6900
|
["CreateDraftMailResult"]: {
|
|
6343
6901
|
__typename: "CreateDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6344
|
-
[
|
|
6345
|
-
[
|
|
6346
|
-
[
|
|
6902
|
+
["...on CreateDraftMailResponse"]: "__union" & GraphQLTypes["CreateDraftMailResponse"];
|
|
6903
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6904
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6347
6905
|
};
|
|
6348
6906
|
["CreateFolderResult"]: {
|
|
6349
6907
|
__typename: "CreateFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
6350
|
-
[
|
|
6351
|
-
[
|
|
6352
|
-
[
|
|
6908
|
+
["...on CreateFolderResponse"]: "__union" & GraphQLTypes["CreateFolderResponse"];
|
|
6909
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6910
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6353
6911
|
};
|
|
6354
6912
|
["DbConfigMutationResult"]: {
|
|
6355
6913
|
__typename: "DbConfigMutationResponse" | "ErrorAccessDenied";
|
|
6356
|
-
[
|
|
6357
|
-
[
|
|
6914
|
+
["...on DbConfigMutationResponse"]: "__union" & GraphQLTypes["DbConfigMutationResponse"];
|
|
6915
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6358
6916
|
};
|
|
6359
6917
|
["DbSetResult"]: {
|
|
6360
6918
|
__typename: "DbSetResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6361
|
-
[
|
|
6362
|
-
[
|
|
6363
|
-
[
|
|
6919
|
+
["...on DbSetResponse"]: "__union" & GraphQLTypes["DbSetResponse"];
|
|
6920
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6921
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6364
6922
|
};
|
|
6365
6923
|
["DeleteDraftMailResult"]: {
|
|
6366
6924
|
__typename: "DeleteDraftMailResponse" | "ErrorAccessDenied";
|
|
6367
|
-
[
|
|
6368
|
-
[
|
|
6925
|
+
["...on DeleteDraftMailResponse"]: "__union" & GraphQLTypes["DeleteDraftMailResponse"];
|
|
6926
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6369
6927
|
};
|
|
6370
6928
|
["DeleteFileResult"]: {
|
|
6371
6929
|
__typename: "DeleteFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
6372
|
-
[
|
|
6373
|
-
[
|
|
6374
|
-
[
|
|
6930
|
+
["...on DeleteFileResponse"]: "__union" & GraphQLTypes["DeleteFileResponse"];
|
|
6931
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6932
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6375
6933
|
};
|
|
6376
6934
|
["DeleteMailResult"]: {
|
|
6377
6935
|
__typename: "DeleteMailResponse" | "ErrorAccessDenied";
|
|
6378
|
-
[
|
|
6379
|
-
[
|
|
6936
|
+
["...on DeleteMailResponse"]: "__union" & GraphQLTypes["DeleteMailResponse"];
|
|
6937
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6380
6938
|
};
|
|
6381
6939
|
["DeleteMailTrashResult"]: {
|
|
6382
6940
|
__typename: "DeleteMailTrashResponse" | "ErrorAccessDenied";
|
|
6383
|
-
[
|
|
6384
|
-
[
|
|
6941
|
+
["...on DeleteMailTrashResponse"]: "__union" & GraphQLTypes["DeleteMailTrashResponse"];
|
|
6942
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6385
6943
|
};
|
|
6386
6944
|
["DeleteNodeResult"]: {
|
|
6387
6945
|
__typename: "DeleteNodeResponse" | "ErrorAccessDenied";
|
|
6388
|
-
[
|
|
6389
|
-
[
|
|
6946
|
+
["...on DeleteNodeResponse"]: "__union" & GraphQLTypes["DeleteNodeResponse"];
|
|
6947
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6390
6948
|
};
|
|
6391
6949
|
["DeleteNodeCloudTrashResult"]: {
|
|
6392
6950
|
__typename: "DeleteNodeCloudTrashResponse" | "ErrorAccessDenied";
|
|
6393
|
-
[
|
|
6394
|
-
[
|
|
6951
|
+
["...on DeleteNodeCloudTrashResponse"]: "__union" & GraphQLTypes["DeleteNodeCloudTrashResponse"];
|
|
6952
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6395
6953
|
};
|
|
6396
6954
|
["DeleteNodeSharingResult"]: {
|
|
6397
6955
|
__typename: "DeleteNodeSharingResponse" | "ErrorAccessDenied";
|
|
6398
|
-
[
|
|
6399
|
-
[
|
|
6956
|
+
["...on DeleteNodeSharingResponse"]: "__union" & GraphQLTypes["DeleteNodeSharingResponse"];
|
|
6957
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6400
6958
|
};
|
|
6401
6959
|
["DeleteUserResult"]: {
|
|
6402
6960
|
__typename: "DeleteUserResponse" | "ErrorAccessDenied";
|
|
6403
|
-
[
|
|
6404
|
-
[
|
|
6961
|
+
["...on DeleteUserResponse"]: "__union" & GraphQLTypes["DeleteUserResponse"];
|
|
6962
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6405
6963
|
};
|
|
6406
6964
|
["DuplicateNodeResult"]: {
|
|
6407
6965
|
__typename: "DuplicateNodeResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6408
|
-
[
|
|
6409
|
-
[
|
|
6410
|
-
[
|
|
6966
|
+
["...on DuplicateNodeResponse"]: "__union" & GraphQLTypes["DuplicateNodeResponse"];
|
|
6967
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6968
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6411
6969
|
};
|
|
6412
6970
|
["EmptyCloudTrashResult"]: {
|
|
6413
6971
|
__typename: "EmptyCloudTrashResponse" | "ErrorAccessDenied";
|
|
6414
|
-
[
|
|
6415
|
-
[
|
|
6972
|
+
["...on EmptyCloudTrashResponse"]: "__union" & GraphQLTypes["EmptyCloudTrashResponse"];
|
|
6973
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6416
6974
|
};
|
|
6417
6975
|
["EmptyMailTrashResult"]: {
|
|
6418
6976
|
__typename: "EmptyMailTrashResponse" | "ErrorAccessDenied";
|
|
6419
|
-
[
|
|
6420
|
-
[
|
|
6977
|
+
["...on EmptyMailTrashResponse"]: "__union" & GraphQLTypes["EmptyMailTrashResponse"];
|
|
6978
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6421
6979
|
};
|
|
6422
6980
|
["LogoutResult"]: {
|
|
6423
6981
|
__typename: "LogoutResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6424
|
-
[
|
|
6425
|
-
[
|
|
6426
|
-
[
|
|
6982
|
+
["...on LogoutResponse"]: "__union" & GraphQLTypes["LogoutResponse"];
|
|
6983
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6984
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6427
6985
|
};
|
|
6428
6986
|
["MoveNodesResult"]: {
|
|
6429
6987
|
__typename: "MoveNodesResponse" | "ErrorAccessDenied";
|
|
6430
|
-
[
|
|
6431
|
-
[
|
|
6988
|
+
["...on MoveNodesResponse"]: "__union" & GraphQLTypes["MoveNodesResponse"];
|
|
6989
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6432
6990
|
};
|
|
6433
6991
|
["PayResult"]: {
|
|
6434
6992
|
__typename: "PayResponse" | "ErrorAccessDenied";
|
|
6435
|
-
[
|
|
6436
|
-
[
|
|
6993
|
+
["...on PayResponse"]: "__union" & GraphQLTypes["PayResponse"];
|
|
6994
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6437
6995
|
};
|
|
6438
6996
|
["ReadMailResult"]: {
|
|
6439
6997
|
__typename: "ReadMailResponse" | "ErrorAccessDenied" | "ErrorBasic" | "ErrorNotFound";
|
|
6440
|
-
[
|
|
6441
|
-
[
|
|
6442
|
-
[
|
|
6443
|
-
[
|
|
6998
|
+
["...on ReadMailResponse"]: "__union" & GraphQLTypes["ReadMailResponse"];
|
|
6999
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7000
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
7001
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6444
7002
|
};
|
|
6445
7003
|
["RecoverMailResult"]: {
|
|
6446
7004
|
__typename: "RecoverMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6447
|
-
[
|
|
6448
|
-
[
|
|
6449
|
-
[
|
|
7005
|
+
["...on RecoverMailResponse"]: "__union" & GraphQLTypes["RecoverMailResponse"];
|
|
7006
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7007
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6450
7008
|
};
|
|
6451
7009
|
["RecoverNodeResult"]: {
|
|
6452
7010
|
__typename: "RecoverNodeResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
6453
|
-
[
|
|
6454
|
-
[
|
|
6455
|
-
[
|
|
7011
|
+
["...on RecoverNodeResponse"]: "__union" & GraphQLTypes["RecoverNodeResponse"];
|
|
7012
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7013
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6456
7014
|
};
|
|
6457
7015
|
["SaveInCloudResult"]: {
|
|
6458
7016
|
__typename: "SaveInCloudResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic" | "ErrorNotFound" | "ErrorLimit";
|
|
6459
|
-
[
|
|
6460
|
-
[
|
|
6461
|
-
[
|
|
6462
|
-
[
|
|
6463
|
-
[
|
|
6464
|
-
[
|
|
7017
|
+
["...on SaveInCloudResponse"]: "__union" & GraphQLTypes["SaveInCloudResponse"];
|
|
7018
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7019
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
7020
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
7021
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
7022
|
+
["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
|
|
6465
7023
|
};
|
|
6466
7024
|
["SendAppMailResult"]: {
|
|
6467
7025
|
__typename: "SendAppMailResponse" | "ErrorAccessDenied" | "ErrorBasic" | "ErrorNotFound";
|
|
6468
|
-
[
|
|
6469
|
-
[
|
|
6470
|
-
[
|
|
6471
|
-
[
|
|
7026
|
+
["...on SendAppMailResponse"]: "__union" & GraphQLTypes["SendAppMailResponse"];
|
|
7027
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7028
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
7029
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6472
7030
|
};
|
|
6473
7031
|
["SendCryptoTransactionResult"]: {
|
|
6474
7032
|
__typename: "SendCryptoTransactionResponse" | "ErrorAccessDenied" | "ErrorBasic" | "ErrorNotExist";
|
|
6475
|
-
[
|
|
6476
|
-
[
|
|
6477
|
-
[
|
|
6478
|
-
[
|
|
7033
|
+
["...on SendCryptoTransactionResponse"]: "__union" & GraphQLTypes["SendCryptoTransactionResponse"];
|
|
7034
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7035
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
7036
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6479
7037
|
};
|
|
6480
7038
|
["SendDraftMailResult"]: {
|
|
6481
7039
|
__typename: "SendDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6482
|
-
[
|
|
6483
|
-
[
|
|
6484
|
-
[
|
|
7040
|
+
["...on SendDraftMailResponse"]: "__union" & GraphQLTypes["SendDraftMailResponse"];
|
|
7041
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7042
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6485
7043
|
};
|
|
6486
7044
|
["SendOneMailResult"]: {
|
|
6487
7045
|
__typename: "RecoverNodeResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6488
|
-
[
|
|
6489
|
-
[
|
|
6490
|
-
[
|
|
7046
|
+
["...on RecoverNodeResponse"]: "__union" & GraphQLTypes["RecoverNodeResponse"];
|
|
7047
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7048
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6491
7049
|
};
|
|
6492
7050
|
["SendReportResult"]: {
|
|
6493
7051
|
__typename: "SendReportResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6494
|
-
[
|
|
6495
|
-
[
|
|
6496
|
-
[
|
|
7052
|
+
["...on SendReportResponse"]: "__union" & GraphQLTypes["SendReportResponse"];
|
|
7053
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7054
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6497
7055
|
};
|
|
6498
7056
|
["ShareFileInHistoryResult"]: {
|
|
6499
7057
|
__typename: "ShareFileInHistoryResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6500
|
-
[
|
|
6501
|
-
[
|
|
6502
|
-
[
|
|
7058
|
+
["...on ShareFileInHistoryResponse"]: "__union" & GraphQLTypes["ShareFileInHistoryResponse"];
|
|
7059
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7060
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6503
7061
|
};
|
|
6504
7062
|
["ShareNodeResult"]: {
|
|
6505
7063
|
__typename: "ShareNodeResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6506
|
-
[
|
|
6507
|
-
[
|
|
6508
|
-
[
|
|
7064
|
+
["...on ShareNodeResponse"]: "__union" & GraphQLTypes["ShareNodeResponse"];
|
|
7065
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7066
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6509
7067
|
};
|
|
6510
7068
|
["ShareNodeFinishResult"]: {
|
|
6511
7069
|
__typename: "ShareNodeFinishResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6512
|
-
[
|
|
6513
|
-
[
|
|
6514
|
-
[
|
|
7070
|
+
["...on ShareNodeFinishResponse"]: "__union" & GraphQLTypes["ShareNodeFinishResponse"];
|
|
7071
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7072
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6515
7073
|
};
|
|
6516
7074
|
["UnreadMailResult"]: {
|
|
6517
7075
|
__typename: "UnreadMailResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorBasic";
|
|
6518
|
-
[
|
|
6519
|
-
[
|
|
6520
|
-
[
|
|
6521
|
-
[
|
|
7076
|
+
["...on UnreadMailResponse"]: "__union" & GraphQLTypes["UnreadMailResponse"];
|
|
7077
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7078
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
7079
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6522
7080
|
};
|
|
6523
7081
|
["UpdateAppNotificationsResult"]: {
|
|
6524
7082
|
__typename: "UpdateAppNotificationsResponse" | "ErrorAccessDenied";
|
|
6525
|
-
[
|
|
6526
|
-
[
|
|
7083
|
+
["...on UpdateAppNotificationsResponse"]: "__union" & GraphQLTypes["UpdateAppNotificationsResponse"];
|
|
7084
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6527
7085
|
};
|
|
6528
7086
|
["UpdateAppSettingsResult"]: {
|
|
6529
7087
|
__typename: "UpdateAppSettingsResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6530
|
-
[
|
|
6531
|
-
[
|
|
6532
|
-
[
|
|
7088
|
+
["...on UpdateAppSettingsResponse"]: "__union" & GraphQLTypes["UpdateAppSettingsResponse"];
|
|
7089
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7090
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6533
7091
|
};
|
|
6534
7092
|
["UpdateAutoDisconnectDelayResult"]: {
|
|
6535
7093
|
__typename: "UpdateAutoDisconnectDelayResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorBasic";
|
|
6536
|
-
[
|
|
6537
|
-
[
|
|
6538
|
-
[
|
|
6539
|
-
[
|
|
7094
|
+
["...on UpdateAutoDisconnectDelayResponse"]: "__union" & GraphQLTypes["UpdateAutoDisconnectDelayResponse"];
|
|
7095
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7096
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
7097
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6540
7098
|
};
|
|
6541
7099
|
["UpdateDraftMailResult"]: {
|
|
6542
7100
|
__typename: "UpdateDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
6543
|
-
[
|
|
6544
|
-
[
|
|
6545
|
-
[
|
|
7101
|
+
["...on UpdateDraftMailResponse"]: "__union" & GraphQLTypes["UpdateDraftMailResponse"];
|
|
7102
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7103
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6546
7104
|
};
|
|
6547
7105
|
["UpdateNodeResult"]: {
|
|
6548
7106
|
__typename: "UpdateNodeResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
6549
|
-
[
|
|
6550
|
-
[
|
|
6551
|
-
[
|
|
7107
|
+
["...on UpdateNodeResponse"]: "__union" & GraphQLTypes["UpdateNodeResponse"];
|
|
7108
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7109
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
6552
7110
|
};
|
|
6553
7111
|
["UpdateProfileResult"]: {
|
|
6554
7112
|
__typename: "UpdateProfileResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6555
|
-
[
|
|
6556
|
-
[
|
|
6557
|
-
[
|
|
7113
|
+
["...on UpdateProfileResponse"]: "__union" & GraphQLTypes["UpdateProfileResponse"];
|
|
7114
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7115
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6558
7116
|
};
|
|
6559
7117
|
["UploadFileResult"]: {
|
|
6560
7118
|
__typename: "UploadFileResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorLimit";
|
|
6561
|
-
[
|
|
6562
|
-
[
|
|
6563
|
-
[
|
|
6564
|
-
[
|
|
7119
|
+
["...on UploadFileResponse"]: "__union" & GraphQLTypes["UploadFileResponse"];
|
|
7120
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7121
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
7122
|
+
["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
|
|
6565
7123
|
};
|
|
6566
7124
|
["UploadFileEndResult"]: {
|
|
6567
7125
|
__typename: "UploadFileEndResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6568
|
-
[
|
|
6569
|
-
[
|
|
6570
|
-
[
|
|
7126
|
+
["...on UploadFileEndResponse"]: "__union" & GraphQLTypes["UploadFileEndResponse"];
|
|
7127
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7128
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6571
7129
|
};
|
|
6572
7130
|
["UploadFilePartEndResult"]: {
|
|
6573
7131
|
__typename: "UploadFilePartEndResponse" | "ErrorAccessDenied";
|
|
6574
|
-
[
|
|
6575
|
-
[
|
|
7132
|
+
["...on UploadFilePartEndResponse"]: "__union" & GraphQLTypes["UploadFilePartEndResponse"];
|
|
7133
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6576
7134
|
};
|
|
6577
7135
|
["UploadLiteFileResult"]: {
|
|
6578
7136
|
__typename: "UploadLiteFileResponse" | "ErrorAccessDenied" | "ErrorBasic" | "ErrorNotFound" | "ErrorLimit";
|
|
6579
|
-
[
|
|
6580
|
-
[
|
|
6581
|
-
[
|
|
6582
|
-
[
|
|
6583
|
-
[
|
|
7137
|
+
["...on UploadLiteFileResponse"]: "__union" & GraphQLTypes["UploadLiteFileResponse"];
|
|
7138
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7139
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
7140
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
7141
|
+
["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
|
|
6584
7142
|
};
|
|
6585
7143
|
["ChangeUserPlanResult"]: {
|
|
6586
7144
|
__typename: "ChangeUserPlanResponse" | "ErrorAccessDenied";
|
|
6587
|
-
[
|
|
6588
|
-
[
|
|
7145
|
+
["...on ChangeUserPlanResponse"]: "__union" & GraphQLTypes["ChangeUserPlanResponse"];
|
|
7146
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6589
7147
|
};
|
|
6590
7148
|
["CreateCardTokenResult"]: {
|
|
6591
7149
|
__typename: "CreateCardTokenResponse" | "ErrorAccessDenied" | "ErrorStripe";
|
|
6592
|
-
[
|
|
6593
|
-
[
|
|
6594
|
-
[
|
|
7150
|
+
["...on CreateCardTokenResponse"]: "__union" & GraphQLTypes["CreateCardTokenResponse"];
|
|
7151
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7152
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6595
7153
|
};
|
|
6596
7154
|
["CreateStripeTransferResult"]: {
|
|
6597
7155
|
__typename: "CreateStripeTransferResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6598
|
-
[
|
|
6599
|
-
[
|
|
6600
|
-
[
|
|
6601
|
-
[
|
|
7156
|
+
["...on CreateStripeTransferResponse"]: "__union" & GraphQLTypes["CreateStripeTransferResponse"];
|
|
7157
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7158
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7159
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6602
7160
|
};
|
|
6603
7161
|
["DeleteCardTokenResult"]: {
|
|
6604
7162
|
__typename: "DeleteCardTokenResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
6605
|
-
[
|
|
6606
|
-
[
|
|
6607
|
-
[
|
|
7163
|
+
["...on DeleteCardTokenResponse"]: "__union" & GraphQLTypes["DeleteCardTokenResponse"];
|
|
7164
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7165
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6608
7166
|
};
|
|
6609
7167
|
["StripeOnBoardingResult"]: {
|
|
6610
7168
|
__typename: "StripeOnBoardingResponse" | "ErrorAccessDenied" | "ErrorStripe";
|
|
6611
|
-
[
|
|
6612
|
-
[
|
|
6613
|
-
[
|
|
7169
|
+
["...on StripeOnBoardingResponse"]: "__union" & GraphQLTypes["StripeOnBoardingResponse"];
|
|
7170
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7171
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6614
7172
|
};
|
|
6615
7173
|
["CancelStripePayoutResult"]: {
|
|
6616
7174
|
__typename: "CancelStripePayoutResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6617
|
-
[
|
|
6618
|
-
[
|
|
6619
|
-
[
|
|
6620
|
-
[
|
|
7175
|
+
["...on CancelStripePayoutResponse"]: "__union" & GraphQLTypes["CancelStripePayoutResponse"];
|
|
7176
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7177
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7178
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6621
7179
|
};
|
|
6622
7180
|
["CreateStripePayoutResult"]: {
|
|
6623
7181
|
__typename: "CreateStripePayoutResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6624
|
-
[
|
|
6625
|
-
[
|
|
6626
|
-
[
|
|
6627
|
-
[
|
|
7182
|
+
["...on CreateStripePayoutResponse"]: "__union" & GraphQLTypes["CreateStripePayoutResponse"];
|
|
7183
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7184
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7185
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6628
7186
|
};
|
|
6629
7187
|
["AddCartToPaymentIntentResult"]: {
|
|
6630
7188
|
__typename: "AddCardToPaymentIntentResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6631
|
-
[
|
|
6632
|
-
[
|
|
6633
|
-
[
|
|
6634
|
-
[
|
|
7189
|
+
["...on AddCardToPaymentIntentResponse"]: "__union" & GraphQLTypes["AddCardToPaymentIntentResponse"];
|
|
7190
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7191
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7192
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6635
7193
|
};
|
|
6636
7194
|
["CancelPaymentIntentResult"]: {
|
|
6637
7195
|
__typename: "CancelPaymentIntentResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6638
|
-
[
|
|
6639
|
-
[
|
|
6640
|
-
[
|
|
6641
|
-
[
|
|
7196
|
+
["...on CancelPaymentIntentResponse"]: "__union" & GraphQLTypes["CancelPaymentIntentResponse"];
|
|
7197
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7198
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7199
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6642
7200
|
};
|
|
6643
7201
|
["ConfirmPaymentIntentResult"]: {
|
|
6644
7202
|
__typename: "ConfirmPaymentIntentResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6645
|
-
[
|
|
6646
|
-
[
|
|
6647
|
-
[
|
|
6648
|
-
[
|
|
7203
|
+
["...on ConfirmPaymentIntentResponse"]: "__union" & GraphQLTypes["ConfirmPaymentIntentResponse"];
|
|
7204
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7205
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7206
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6649
7207
|
};
|
|
6650
7208
|
["CreatePaymentIntentResult"]: {
|
|
6651
7209
|
__typename: "CreatePaymentIntentResponse" | "ErrorAccessDenied" | "ErrorStripe" | "ErrorNotFound";
|
|
6652
|
-
[
|
|
6653
|
-
[
|
|
6654
|
-
[
|
|
6655
|
-
[
|
|
7210
|
+
["...on CreatePaymentIntentResponse"]: "__union" & GraphQLTypes["CreatePaymentIntentResponse"];
|
|
7211
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7212
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7213
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
6656
7214
|
};
|
|
6657
7215
|
["RenewAppCodeResult"]: {
|
|
6658
7216
|
__typename: "RenewAppCodeResponse" | "ErrorAccessDenied";
|
|
6659
|
-
[
|
|
6660
|
-
[
|
|
7217
|
+
["...on RenewAppCodeResponse"]: "__union" & GraphQLTypes["RenewAppCodeResponse"];
|
|
7218
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6661
7219
|
};
|
|
6662
7220
|
["UpdateOriginUrlResult"]: {
|
|
6663
7221
|
__typename: "UpdateOriginUrlResponse" | "ErrorAccessDenied";
|
|
6664
|
-
[
|
|
6665
|
-
[
|
|
7222
|
+
["...on UpdateOriginUrlResponse"]: "__union" & GraphQLTypes["UpdateOriginUrlResponse"];
|
|
7223
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6666
7224
|
};
|
|
6667
7225
|
["CreateApplicationResult"]: {
|
|
6668
7226
|
__typename: "CreateApplicationResponse" | "ErrorAccessDenied";
|
|
6669
|
-
[
|
|
6670
|
-
[
|
|
7227
|
+
["...on CreateApplicationResponse"]: "__union" & GraphQLTypes["CreateApplicationResponse"];
|
|
7228
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6671
7229
|
};
|
|
6672
7230
|
["DeleteApplicationResult"]: {
|
|
6673
7231
|
__typename: "EditProjectResponse" | "ErrorAccessDenied";
|
|
6674
|
-
[
|
|
6675
|
-
[
|
|
7232
|
+
["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
|
|
7233
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6676
7234
|
};
|
|
6677
7235
|
["EditColorsResult"]: {
|
|
6678
7236
|
__typename: "EditProjectResponse" | "ErrorAccessDenied";
|
|
6679
|
-
[
|
|
6680
|
-
[
|
|
7237
|
+
["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
|
|
7238
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6681
7239
|
};
|
|
6682
7240
|
["EditLogoResult"]: {
|
|
6683
7241
|
__typename: "EditProjectResponse" | "ErrorAccessDenied";
|
|
6684
|
-
[
|
|
6685
|
-
[
|
|
7242
|
+
["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
|
|
7243
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6686
7244
|
};
|
|
6687
7245
|
["EditNameResult"]: {
|
|
6688
7246
|
__typename: "EditProjectResponse" | "ErrorAccessDenied";
|
|
6689
|
-
[
|
|
6690
|
-
[
|
|
7247
|
+
["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
|
|
7248
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6691
7249
|
};
|
|
6692
7250
|
["AddDeveloperResult"]: {
|
|
6693
7251
|
__typename: "EditDeveloperResponse" | "ErrorAccessDenied";
|
|
6694
|
-
[
|
|
6695
|
-
[
|
|
7252
|
+
["...on EditDeveloperResponse"]: "__union" & GraphQLTypes["EditDeveloperResponse"];
|
|
7253
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6696
7254
|
};
|
|
6697
7255
|
["DeleteDeveloperResult"]: {
|
|
6698
7256
|
__typename: "EditDeveloperResponse" | "ErrorAccessDenied";
|
|
6699
|
-
[
|
|
6700
|
-
[
|
|
7257
|
+
["...on EditDeveloperResponse"]: "__union" & GraphQLTypes["EditDeveloperResponse"];
|
|
7258
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6701
7259
|
};
|
|
6702
7260
|
["EditDeveloperResult"]: {
|
|
6703
7261
|
__typename: "EditDeveloperResponse" | "ErrorAccessDenied";
|
|
6704
|
-
[
|
|
6705
|
-
[
|
|
7262
|
+
["...on EditDeveloperResponse"]: "__union" & GraphQLTypes["EditDeveloperResponse"];
|
|
7263
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6706
7264
|
};
|
|
6707
7265
|
["AppKeyPair"]: {
|
|
6708
7266
|
__typename: "AppKeyPair";
|
|
@@ -6725,6 +7283,7 @@ export type GraphQLTypes = {
|
|
|
6725
7283
|
id: string;
|
|
6726
7284
|
name: string;
|
|
6727
7285
|
logo?: string | undefined;
|
|
7286
|
+
code: string;
|
|
6728
7287
|
color?: string | undefined;
|
|
6729
7288
|
origin: Array<string>;
|
|
6730
7289
|
createdAt: GraphQLTypes["DateTime"];
|
|
@@ -6810,17 +7369,17 @@ export type GraphQLTypes = {
|
|
|
6810
7369
|
role: GraphQLTypes["UserRole"];
|
|
6811
7370
|
rights: GraphQLTypes["Rights"];
|
|
6812
7371
|
};
|
|
6813
|
-
["
|
|
7372
|
+
["SortApplications"]: SortApplications;
|
|
6814
7373
|
["Error"]: {
|
|
6815
7374
|
__typename: "ErrorStripe" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorUpgradePlan" | "ErrorLangNotExist" | "ErrorNotExist" | "ErrorLimit" | "ErrorBasic";
|
|
6816
|
-
[
|
|
6817
|
-
[
|
|
6818
|
-
[
|
|
6819
|
-
[
|
|
6820
|
-
[
|
|
6821
|
-
[
|
|
6822
|
-
[
|
|
6823
|
-
[
|
|
7375
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7376
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7377
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
7378
|
+
["...on ErrorUpgradePlan"]: "__union" & GraphQLTypes["ErrorUpgradePlan"];
|
|
7379
|
+
["...on ErrorLangNotExist"]: "__union" & GraphQLTypes["ErrorLangNotExist"];
|
|
7380
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
7381
|
+
["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
|
|
7382
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
6824
7383
|
};
|
|
6825
7384
|
["ErrorAccessDenied"]: {
|
|
6826
7385
|
__typename: "ErrorAccessDenied";
|
|
@@ -6829,14 +7388,14 @@ export type GraphQLTypes = {
|
|
|
6829
7388
|
["ErrorBase"]: {
|
|
6830
7389
|
__typename: "ErrorAccessDenied" | "ErrorBasic" | "ErrorLangNotExist" | "ErrorLimit" | "ErrorNotExist" | "ErrorNotFound" | "ErrorStripe" | "ErrorUpgradePlan";
|
|
6831
7390
|
message: string;
|
|
6832
|
-
[
|
|
6833
|
-
[
|
|
6834
|
-
[
|
|
6835
|
-
[
|
|
6836
|
-
[
|
|
6837
|
-
[
|
|
6838
|
-
[
|
|
6839
|
-
[
|
|
7391
|
+
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
7392
|
+
["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
|
|
7393
|
+
["...on ErrorLangNotExist"]: "__union" & GraphQLTypes["ErrorLangNotExist"];
|
|
7394
|
+
["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
|
|
7395
|
+
["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
|
|
7396
|
+
["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
|
|
7397
|
+
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
7398
|
+
["...on ErrorUpgradePlan"]: "__union" & GraphQLTypes["ErrorUpgradePlan"];
|
|
6840
7399
|
};
|
|
6841
7400
|
["ErrorBasic"]: {
|
|
6842
7401
|
__typename: "ErrorBasic";
|
|
@@ -6919,10 +7478,10 @@ export type GraphQLTypes = {
|
|
|
6919
7478
|
};
|
|
6920
7479
|
["FileContent"]: {
|
|
6921
7480
|
__typename: "FileContentCloud" | "FileContentLite" | "FileContentReceivedMail" | "FileContentSentMail";
|
|
6922
|
-
[
|
|
6923
|
-
[
|
|
6924
|
-
[
|
|
6925
|
-
[
|
|
7481
|
+
["...on FileContentCloud"]: "__union" & GraphQLTypes["FileContentCloud"];
|
|
7482
|
+
["...on FileContentLite"]: "__union" & GraphQLTypes["FileContentLite"];
|
|
7483
|
+
["...on FileContentReceivedMail"]: "__union" & GraphQLTypes["FileContentReceivedMail"];
|
|
7484
|
+
["...on FileContentSentMail"]: "__union" & GraphQLTypes["FileContentSentMail"];
|
|
6926
7485
|
};
|
|
6927
7486
|
["FileContentBase"]: {
|
|
6928
7487
|
__typename: "FileContentCloud" | "FileContentLite" | "FileContentReceivedMail" | "FileContentSentMail";
|
|
@@ -6932,10 +7491,10 @@ export type GraphQLTypes = {
|
|
|
6932
7491
|
md5Encrypted: string;
|
|
6933
7492
|
totalSize: GraphQLTypes["BigInt"];
|
|
6934
7493
|
type: GraphQLTypes["FileContentType"];
|
|
6935
|
-
[
|
|
6936
|
-
[
|
|
6937
|
-
[
|
|
6938
|
-
[
|
|
7494
|
+
["...on FileContentCloud"]: "__union" & GraphQLTypes["FileContentCloud"];
|
|
7495
|
+
["...on FileContentLite"]: "__union" & GraphQLTypes["FileContentLite"];
|
|
7496
|
+
["...on FileContentReceivedMail"]: "__union" & GraphQLTypes["FileContentReceivedMail"];
|
|
7497
|
+
["...on FileContentSentMail"]: "__union" & GraphQLTypes["FileContentSentMail"];
|
|
6939
7498
|
};
|
|
6940
7499
|
["FileContentCloud"]: {
|
|
6941
7500
|
__typename: "FileContentCloud";
|
|
@@ -7771,6 +8330,10 @@ export type GraphQLTypes = {
|
|
|
7771
8330
|
type: GraphQLTypes["PayoutType"];
|
|
7772
8331
|
};
|
|
7773
8332
|
["PayoutType"]: PayoutType;
|
|
8333
|
+
["GetApplicationResponse"]: {
|
|
8334
|
+
__typename: "GetApplicationResponse";
|
|
8335
|
+
application: GraphQLTypes["Application"];
|
|
8336
|
+
};
|
|
7774
8337
|
["DeveloperResponse"]: {
|
|
7775
8338
|
__typename: "DeveloperResponse";
|
|
7776
8339
|
rights: GraphQLTypes["Rights"];
|
|
@@ -7975,6 +8538,7 @@ export type GraphQLTypes = {
|
|
|
7975
8538
|
getPaymentRequestToCollect?: GraphQLTypes["GetPaymentRequestToCollectResult"] | undefined;
|
|
7976
8539
|
getPaymentRequestToPay?: GraphQLTypes["GetPaymentRequestToPayResult"] | undefined;
|
|
7977
8540
|
isValidPaymentIntent?: GraphQLTypes["IsValidPaymentIntentResult"] | undefined;
|
|
8541
|
+
getApplication?: GraphQLTypes["GetApplicationResult"] | undefined;
|
|
7978
8542
|
getAllDevelopers?: GraphQLTypes["GetAllDevelopersResult"] | undefined;
|
|
7979
8543
|
getDeveloper?: GraphQLTypes["GetDeveloperResult"] | undefined;
|
|
7980
8544
|
};
|
|
@@ -8084,13 +8648,13 @@ export declare enum PaymentMethod {
|
|
|
8084
8648
|
card = "card",
|
|
8085
8649
|
wire_transfer = "wire_transfer"
|
|
8086
8650
|
}
|
|
8087
|
-
export declare enum
|
|
8088
|
-
createdAt = "createdAt",
|
|
8089
|
-
createdAt_asc = "createdAt_asc",
|
|
8090
|
-
createdAt_desc = "createdAt_desc",
|
|
8651
|
+
export declare enum SortApplications {
|
|
8091
8652
|
updatedAt = "updatedAt",
|
|
8092
8653
|
updatedAt_asc = "updatedAt_asc",
|
|
8093
|
-
updatedAt_desc = "updatedAt_desc"
|
|
8654
|
+
updatedAt_desc = "updatedAt_desc",
|
|
8655
|
+
users = "users",
|
|
8656
|
+
users_asc = "users_asc",
|
|
8657
|
+
users_desc = "users_desc"
|
|
8094
8658
|
}
|
|
8095
8659
|
export declare enum FileContentType {
|
|
8096
8660
|
cloud = "cloud",
|
|
@@ -8153,7 +8717,7 @@ type ZEUS_VARIABLES = {
|
|
|
8153
8717
|
["Rights"]: ValueTypes["Rights"];
|
|
8154
8718
|
["NodeType"]: ValueTypes["NodeType"];
|
|
8155
8719
|
["PaymentMethod"]: ValueTypes["PaymentMethod"];
|
|
8156
|
-
["
|
|
8720
|
+
["SortApplications"]: ValueTypes["SortApplications"];
|
|
8157
8721
|
["FileContentType"]: ValueTypes["FileContentType"];
|
|
8158
8722
|
["InfuraNetwork"]: ValueTypes["InfuraNetwork"];
|
|
8159
8723
|
["MailFileInput"]: ValueTypes["MailFileInput"];
|