@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.
@@ -1,4 +1,4 @@
1
- import { Ops } from './const.js';
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}` | 'enum' | {
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) => 'enum' | 'not' | `scalar.${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 'scalar' & {
148
+ type IsScalar<S, SCLR extends ScalarDefinition> = S extends "scalar" & {
149
149
  name: infer T;
150
- } ? T extends keyof SCLR ? SCLR[T]['decode'] extends (s: unknown) => unknown ? ReturnType<SCLR[T]['decode']> : unknown : unknown : S;
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 '__union' & infer R ? P extends keyof DST ? IsArray<R, '__typename' extends keyof DST ? DST[P] & {
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, '__typename' extends keyof DST ? {
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 '__union' ? never : P;
163
- }[keyof DST]>, '__typename'>]: IsPayLoad<DST[P]> extends BaseZeusResolver ? IsScalar<SRC[P], SCLR> : IsArray<SRC[P], DST[P], SCLR>;
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>, '__alias'>, SCLR> : MapType<SRC, IsPayLoad<DST>, SCLR>;
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
- ['String']: string;
196
- ['Int']: number;
197
- ['Float']: number;
198
- ['ID']: unknown;
199
- ['Boolean']: boolean;
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
- ' __zeus_name': Name;
220
- ' __zeus_type': T;
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
- ["SortByDate"]: SortByDate;
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
- ['...on ErrorAccessDenied']?: Omit<ValueTypes["ErrorAccessDenied"], keyof ValueTypes["ErrorBase"]>;
1005
- ['...on ErrorBasic']?: Omit<ValueTypes["ErrorBasic"], keyof ValueTypes["ErrorBase"]>;
1006
- ['...on ErrorLangNotExist']?: Omit<ValueTypes["ErrorLangNotExist"], keyof ValueTypes["ErrorBase"]>;
1007
- ['...on ErrorLimit']?: Omit<ValueTypes["ErrorLimit"], keyof ValueTypes["ErrorBase"]>;
1008
- ['...on ErrorNotExist']?: Omit<ValueTypes["ErrorNotExist"], keyof ValueTypes["ErrorBase"]>;
1009
- ['...on ErrorNotFound']?: Omit<ValueTypes["ErrorNotFound"], keyof ValueTypes["ErrorBase"]>;
1010
- ['...on ErrorStripe']?: Omit<ValueTypes["ErrorStripe"], keyof ValueTypes["ErrorBase"]>;
1011
- ['...on ErrorUpgradePlan']?: Omit<ValueTypes["ErrorUpgradePlan"], keyof ValueTypes["ErrorBase"]>;
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
- ['...on FileContentCloud']?: Omit<ValueTypes["FileContentCloud"], keyof ValueTypes["FileContentBase"]>;
1108
- ['...on FileContentLite']?: Omit<ValueTypes["FileContentLite"], keyof ValueTypes["FileContentBase"]>;
1109
- ['...on FileContentReceivedMail']?: Omit<ValueTypes["FileContentReceivedMail"], keyof ValueTypes["FileContentBase"]>;
1110
- ['...on FileContentSentMail']?: Omit<ValueTypes["FileContentSentMail"], keyof ValueTypes["FileContentBase"]>;
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
- sortBy: ValueTypes["SortByDate"] | Variable<any, string>;
2111
- }, ValueTypes["ApplicationsResult"]];
2112
- blog?: [{
2113
- lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
2114
- }, ValueTypes["BlogResult"]];
2115
- dbConfig?: [{
2116
- appCode: string | Variable<any, string>;
2117
- }, ValueTypes["DbConfigResult"]];
2118
- dbGet?: [{
2119
- field: string | Variable<any, string>;
2120
- userId?: string | undefined | null | Variable<any, string>;
2121
- }, ValueTypes["DbGetResult"]];
2122
- dbSearch?: [{
2123
- search: string | Variable<any, string>;
2124
- field: string | Variable<any, string>;
2125
- }, ValueTypes["DbSearchResult"]];
2126
- deletedMails?: [{
2127
- mailType: ValueTypes["MailType"] | Variable<any, string>;
2128
- }, ValueTypes["DeletedMailsResult"]];
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
- lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
2132
- }, ValueTypes["FaqResult"]];
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
- fileId: string | Variable<any, string>;
2138
- }, ValueTypes["FileContentResult"]];
2139
- filesContent?: [{
2140
- fileIds: Array<string> | Variable<any, string>;
2141
- }, ValueTypes["FilesContentResult"]];
2142
- filesSharedWithMe?: [{
2143
- accepted?: boolean | undefined | null | Variable<any, string>;
2144
- }, ValueTypes["FileSharedContent"]];
2145
- getJwt?: [{
2146
- includeEmail?: boolean | undefined | null | Variable<any, string>;
2147
- }, ValueTypes["GetJwtResult"]];
2148
- isCryptoTransactionDone?: [{
2149
- idOrHash: string | Variable<any, string>;
2150
- network?: ValueTypes["InfuraNetwork"] | undefined | null | Variable<any, string>;
2151
- }, ValueTypes["IsCryptoTransactionDoneResult"]];
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
- network?: ValueTypes["InfuraNetwork"] | undefined | null | Variable<any, string>;
2158
- }, ValueTypes["MyCryptoBalanceResult"]];
2159
- node?: [{
2160
- id?: string | undefined | null | Variable<any, string>;
2161
- deleted?: boolean | undefined | null | Variable<any, string>;
2162
- }, ValueTypes["NodeResult"]];
2163
- nodesSharedWithMe?: [{
2164
- type?: ValueTypes["NodeType"] | undefined | null | Variable<any, string>;
2165
- }, ValueTypes["NodesSharedWithMeResult"]];
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
- userId?: string | undefined | null | Variable<any, string>;
2173
- }, ValueTypes["UserResult"]];
2174
- userList?: [{
2175
- search?: string | undefined | null | Variable<any, string>;
2176
- }, ValueTypes["UserListResult"]];
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
- transactionId: string | Variable<any, string>;
2182
- }, ValueTypes["GetStripeTransactionResult"]];
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
- transferId: string | Variable<any, string>;
2188
- }, ValueTypes["GetStripeTransferResult"]];
2251
+ getStripeTransfer?: [
2252
+ {
2253
+ transferId: string | Variable<any, string>;
2254
+ },
2255
+ ValueTypes["GetStripeTransferResult"]
2256
+ ];
2189
2257
  getAllStripePayout?: ValueTypes["GetAllStripePayoutResult"];
2190
- getStripePayout?: [{
2191
- payoutId: string | Variable<any, string>;
2192
- }, ValueTypes["GetStripePayoutResult"]];
2193
- getAllPaymentRequestToCollect?: [{
2194
- secrecyId?: string | undefined | null | Variable<any, string>;
2195
- appCode?: string | undefined | null | Variable<any, string>;
2196
- }, ValueTypes["GetAllPaymentRequestToCollectResult"]];
2197
- getAllPaymentRequestToPay?: [{
2198
- secrecyId?: string | undefined | null | Variable<any, string>;
2199
- appCode?: string | undefined | null | Variable<any, string>;
2200
- }, ValueTypes["GetAllPaymentRequestToPayResult"]];
2201
- getPaymentRequestToCollect?: [{
2202
- paymentRequestId: string | Variable<any, string>;
2203
- secrecyId?: string | undefined | null | Variable<any, string>;
2204
- appCode?: string | undefined | null | Variable<any, string>;
2205
- }, ValueTypes["GetPaymentRequestToCollectResult"]];
2206
- getPaymentRequestToPay?: [{
2207
- paymentRequestId: string | Variable<any, string>;
2208
- secrecyIdSeller: string | Variable<any, string>;
2209
- secrecyId?: string | undefined | null | Variable<any, string>;
2210
- appCode?: string | undefined | null | Variable<any, string>;
2211
- }, ValueTypes["GetPaymentRequestToPayResult"]];
2212
- isValidPaymentIntent?: [{
2213
- paymentIntentId: string | Variable<any, string>;
2214
- secrecyAccountId: string | Variable<any, string>;
2215
- currency: string | Variable<any, string>;
2216
- amount: number | Variable<any, string>;
2217
- appCode: string | Variable<any, string>;
2218
- }, ValueTypes["IsValidPaymentIntentResult"]];
2219
- getAllDevelopers?: [{
2220
- appCode: string | Variable<any, string>;
2221
- }, ValueTypes["GetAllDevelopersResult"]];
2222
- getDeveloper?: [{
2223
- appCode: string | Variable<any, string>;
2224
- developerId: string | Variable<any, string>;
2225
- }, ValueTypes["GetDeveloperResult"]];
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
- nodeId: string | Variable<any, string>;
2231
- fileId: string | Variable<any, string>;
2232
- }, ValueTypes["AddFileToHistoryResult"]];
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
- address: string | Variable<any, string>;
2236
- privateKeyEncrypted: string | Variable<any, string>;
2237
- }, ValueTypes["CreateCryptoWalletResult"]];
2238
- createDraftMail?: [{
2239
- hash: string | Variable<any, string>;
2240
- hashKey: string | Variable<any, string>;
2241
- body: string | Variable<any, string>;
2242
- subject: string | Variable<any, string>;
2243
- replyTo?: string | undefined | null | Variable<any, string>;
2244
- senderFiles: Array<ValueTypes["MailFileInput"]> | Variable<any, string>;
2245
- recipients: Array<string> | Variable<any, string>;
2246
- }, ValueTypes["CreateDraftMailResult"]];
2247
- createFolder?: [{
2248
- name: string | Variable<any, string>;
2249
- key: string | Variable<any, string>;
2250
- parentFolderId?: string | undefined | null | Variable<any, string>;
2251
- }, ValueTypes["CreateFolderResult"]];
2252
- dbConfigMutation?: [{
2253
- appCode: string | Variable<any, string>;
2254
- config: string | Variable<any, string>;
2255
- }, ValueTypes["DbConfigMutationResult"]];
2256
- dbSet?: [{
2257
- value: string | Variable<any, string>;
2258
- userId?: string | undefined | null | Variable<any, string>;
2259
- }, ValueTypes["DbSetResult"]];
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
- draftId: string | Variable<any, string>;
2263
- }, ValueTypes["DeleteDraftMailResult"]];
2264
- deleteFile?: [{
2265
- fileId: string | Variable<any, string>;
2266
- nodeId: string | Variable<any, string>;
2267
- }, ValueTypes["DeleteFileResult"]];
2268
- deleteMail?: [{
2269
- mailId: string | Variable<any, string>;
2270
- }, ValueTypes["DeleteMailResult"]];
2271
- deleteMailTrash?: [{
2272
- ids: Array<string> | Variable<any, string>;
2273
- }, ValueTypes["DeleteMailTrashResult"]];
2274
- deleteNode?: [{
2275
- id: string | Variable<any, string>;
2276
- }, ValueTypes["DeleteNodeResult"]];
2277
- deleteNodeCloudTrash?: [{
2278
- ids: Array<string> | Variable<any, string>;
2279
- }, ValueTypes["DeleteNodeCloudTrashResult"]];
2280
- deleteNodeSharing?: [{
2281
- nodeId: string | Variable<any, string>;
2282
- userId: string | Variable<any, string>;
2283
- }, ValueTypes["DeleteNodeSharingResult"]];
2284
- deleteUser?: [{
2285
- userId?: string | undefined | null | Variable<any, string>;
2286
- }, ValueTypes["DeleteUserResult"]];
2287
- duplicateNode?: [{
2288
- nodeId: string | Variable<any, string>;
2289
- folderId?: string | undefined | null | Variable<any, string>;
2290
- customName?: string | undefined | null | Variable<any, string>;
2291
- }, ValueTypes["DuplicateNodeResult"]];
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
- sessionId?: string | undefined | null | Variable<any, string>;
2296
- }, ValueTypes["LogoutResult"]];
2297
- moveNodes?: [{
2298
- nodeIds: Array<string> | Variable<any, string>;
2299
- parentNodeId?: string | undefined | null | Variable<any, string>;
2300
- }, ValueTypes["MoveNodesResult"]];
2301
- pay?: [{
2302
- planCode: string | Variable<any, string>;
2303
- input: ValueTypes["PayInput"] | Variable<any, string>;
2304
- autoRenew?: boolean | undefined | null | Variable<any, string>;
2305
- }, ValueTypes["PayResult"]];
2306
- readMail?: [{
2307
- mailId: string | Variable<any, string>;
2308
- }, ValueTypes["ReadMailResult"]];
2309
- recoverMail?: [{
2310
- mailId: string | Variable<any, string>;
2311
- }, ValueTypes["RecoverMailResult"]];
2312
- recoverNode?: [{
2313
- id: string | Variable<any, string>;
2314
- }, ValueTypes["RecoverNodeResult"]];
2315
- saveInCloud?: [{
2316
- fileId: string | Variable<any, string>;
2317
- key: string | Variable<any, string>;
2318
- nodeId?: string | undefined | null | Variable<any, string>;
2319
- filename: string | Variable<any, string>;
2320
- nameKey: string | Variable<any, string>;
2321
- }, ValueTypes["SaveInCloudResult"]];
2322
- sendAppMail?: [{
2323
- fakeUserIds: Array<string> | Variable<any, string>;
2324
- subject: string | Variable<any, string>;
2325
- html: string | Variable<any, string>;
2326
- }, ValueTypes["SendAppMailResult"]];
2327
- sendCryptoTransaction?: [{
2328
- network?: ValueTypes["InfuraNetwork"] | undefined | null | Variable<any, string>;
2329
- address: string | Variable<any, string>;
2330
- rawTransaction: string | Variable<any, string>;
2331
- appSession: string | Variable<any, string>;
2332
- }, ValueTypes["SendCryptoTransactionResult"]];
2333
- sendDraftMail?: [{
2334
- draftMailId: string | Variable<any, string>;
2335
- temporaryRecipients: Array<string> | Variable<any, string>;
2336
- recipients: Array<ValueTypes["MailRecipientInput"]> | Variable<any, string>;
2337
- customMessage?: string | undefined | null | Variable<any, string>;
2338
- }, ValueTypes["SendDraftMailResult"]];
2339
- sendOneMail?: [{
2340
- mailIntegrityId: string | Variable<any, string>;
2341
- recipient: ValueTypes["MailRecipientInput"] | Variable<any, string>;
2342
- }, ValueTypes["SendOneMailResult"]];
2343
- sendReport?: [{
2344
- reportedUserId: string | Variable<any, string>;
2345
- customMessage?: string | undefined | null | Variable<any, string>;
2346
- }, ValueTypes["SendReportResult"]];
2347
- shareFileInHistory?: [{
2348
- input: ValueTypes["ShareFileInHistoryInput"] | Variable<any, string>;
2349
- nodeId: string | Variable<any, string>;
2350
- }, ValueTypes["ShareFileInHistoryResult"]];
2351
- shareNode?: [{
2352
- nodeId: string | Variable<any, string>;
2353
- userId: string | Variable<any, string>;
2354
- }, ValueTypes["ShareNodeResult"]];
2355
- shareNodeFinish?: [{
2356
- shareNodes: ValueTypes["ShareNodesInput"] | Variable<any, string>;
2357
- userId: string | Variable<any, string>;
2358
- rights: ValueTypes["Rights"] | Variable<any, string>;
2359
- }, ValueTypes["ShareNodeFinishResult"]];
2360
- unreadMail?: [{
2361
- mailId: string | Variable<any, string>;
2362
- }, ValueTypes["UnreadMailResult"]];
2363
- updateAppNotifications?: [{
2364
- enableAll?: boolean | undefined | null | Variable<any, string>;
2365
- mail?: boolean | undefined | null | Variable<any, string>;
2366
- cloud?: boolean | undefined | null | Variable<any, string>;
2367
- disableAllUntil?: ValueTypes["DateTime"] | undefined | null | Variable<any, string>;
2368
- }, ValueTypes["UpdateAppNotificationsResult"]];
2369
- updateAppSettings?: [{
2370
- cloudNodeDaysForDelete?: number | undefined | null | Variable<any, string>;
2371
- historyFileDaysForDelete?: number | undefined | null | Variable<any, string>;
2372
- historyMaxFileCount?: number | undefined | null | Variable<any, string>;
2373
- }, ValueTypes["UpdateAppSettingsResult"]];
2374
- updateAutoDisconnectDelay?: [{
2375
- userId?: string | undefined | null | Variable<any, string>;
2376
- delay?: number | undefined | null | Variable<any, string>;
2377
- }, ValueTypes["UpdateAutoDisconnectDelayResult"]];
2378
- updateDraftMail?: [{
2379
- draftId: string | Variable<any, string>;
2380
- hash?: string | undefined | null | Variable<any, string>;
2381
- hashKey?: string | undefined | null | Variable<any, string>;
2382
- body?: string | undefined | null | Variable<any, string>;
2383
- subject?: string | undefined | null | Variable<any, string>;
2384
- replyTo?: string | undefined | null | Variable<any, string>;
2385
- senderFiles?: Array<ValueTypes["MailFileInput"]> | undefined | null | Variable<any, string>;
2386
- recipients?: Array<string> | undefined | null | Variable<any, string>;
2387
- }, ValueTypes["UpdateDraftMailResult"]];
2388
- updateNode?: [{
2389
- nodeId: string | Variable<any, string>;
2390
- name?: string | undefined | null | Variable<any, string>;
2391
- isFavorite?: boolean | undefined | null | Variable<any, string>;
2392
- deletedAt?: ValueTypes["DateTime"] | undefined | null | Variable<any, string>;
2393
- }, ValueTypes["UpdateNodeResult"]];
2394
- updateProfile?: [{
2395
- firstname?: string | undefined | null | Variable<any, string>;
2396
- lastname?: string | undefined | null | Variable<any, string>;
2397
- lang?: ValueTypes["Lang"] | undefined | null | Variable<any, string>;
2398
- }, ValueTypes["UpdateProfileResult"]];
2399
- uploadAnonymous?: [{
2400
- fileName: string | Variable<any, string>;
2401
- fileSize: number | Variable<any, string>;
2402
- fileSizeBefore: number | Variable<any, string>;
2403
- message?: string | undefined | null | Variable<any, string>;
2404
- pubKey: string | Variable<any, string>;
2405
- token: string | Variable<any, string>;
2406
- }, ValueTypes["FileResponse"]];
2407
- uploadFile?: [{
2408
- fileSize: ValueTypes["BigInt"] | Variable<any, string>;
2409
- fileSizeBefore: ValueTypes["BigInt"] | Variable<any, string>;
2410
- fileKey: string | Variable<any, string>;
2411
- md5: string | Variable<any, string>;
2412
- md5Encrypted: string | Variable<any, string>;
2413
- }, ValueTypes["UploadFileResult"]];
2414
- uploadFileEnd?: [{
2415
- fileId: string | Variable<any, string>;
2416
- }, ValueTypes["UploadFileEndResult"]];
2417
- uploadFilePartEnd?: [{
2418
- fileId: string | Variable<any, string>;
2419
- md5: string | Variable<any, string>;
2420
- order: number | Variable<any, string>;
2421
- }, ValueTypes["UploadFilePartEndResult"]];
2422
- uploadLiteFile?: [{
2423
- content: ValueTypes["Bytes"] | Variable<any, string>;
2424
- fileSize: ValueTypes["BigInt"] | Variable<any, string>;
2425
- fileSizeBefore: ValueTypes["BigInt"] | Variable<any, string>;
2426
- fileKey: string | Variable<any, string>;
2427
- md5: string | Variable<any, string>;
2428
- md5Encrypted: string | Variable<any, string>;
2429
- }, ValueTypes["UploadLiteFileResult"]];
2430
- changeUserPlan?: [{
2431
- userId: string | Variable<any, string>;
2432
- plan: ValueTypes["PlanKind"] | Variable<any, string>;
2433
- }, ValueTypes["ChangeUserPlanResult"]];
2434
- createCardToken?: [{
2435
- lastFourDigit: string | Variable<any, string>;
2436
- cardTokenId: string | Variable<any, string>;
2437
- }, ValueTypes["CreateCardTokenResult"]];
2438
- createStripeTransfer?: [{
2439
- secrecyIdToReceive: string | Variable<any, string>;
2440
- amount: number | Variable<any, string>;
2441
- currency: string | Variable<any, string>;
2442
- }, ValueTypes["CreateStripeTransferResult"]];
2443
- deleteCardToken?: [{
2444
- cardTokenId: string | Variable<any, string>;
2445
- }, ValueTypes["DeleteCardTokenResult"]];
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
- payoutId: string | Variable<any, string>;
2449
- }, ValueTypes["CancelStripePayoutResult"]];
2450
- createStripePayout?: [{
2451
- amount: number | Variable<any, string>;
2452
- currency: string | Variable<any, string>;
2453
- description?: string | undefined | null | Variable<any, string>;
2454
- }, ValueTypes["CreateStripePayoutResult"]];
2455
- addCartToPaymentIntent?: [{
2456
- paymentIntentId: string | Variable<any, string>;
2457
- secrecyIdSeller: string | Variable<any, string>;
2458
- cardTokenId: string | Variable<any, string>;
2459
- }, ValueTypes["AddCartToPaymentIntentResult"]];
2460
- cancelPaymentIntent?: [{
2461
- paymentIntentId: string | Variable<any, string>;
2462
- secrecyIdSeller: string | Variable<any, string>;
2463
- }, ValueTypes["CancelPaymentIntentResult"]];
2464
- confirmPaymentIntent?: [{
2465
- paymentIntentId: string | Variable<any, string>;
2466
- secrecyIdSeller: string | Variable<any, string>;
2467
- }, ValueTypes["ConfirmPaymentIntentResult"]];
2468
- createPaymentIntent?: [{
2469
- amount: number | Variable<any, string>;
2470
- userId: string | Variable<any, string>;
2471
- currency: string | Variable<any, string>;
2472
- }, ValueTypes["CreatePaymentIntentResult"]];
2473
- renewAppCode?: [{
2474
- actualAppCode: string | Variable<any, string>;
2475
- }, ValueTypes["RenewAppCodeResult"]];
2476
- updateOriginUrl?: [{
2477
- appCode: string | Variable<any, string>;
2478
- originUrl: Array<string> | Variable<any, string>;
2479
- }, ValueTypes["UpdateOriginUrlResult"]];
2480
- createApplication?: [{
2481
- name: string | Variable<any, string>;
2482
- origin: string | Variable<any, string>;
2483
- color?: string | undefined | null | Variable<any, string>;
2484
- logo?: string | undefined | null | Variable<any, string>;
2485
- collaborators?: Array<ValueTypes["ApplicationsCollaborators"]> | undefined | null | Variable<any, string>;
2486
- }, ValueTypes["CreateApplicationResult"]];
2487
- deleteApplication?: [{
2488
- appCode: string | Variable<any, string>;
2489
- }, ValueTypes["DeleteApplicationResult"]];
2490
- editColors?: [{
2491
- appCode: string | Variable<any, string>;
2492
- newColors?: string | undefined | null | Variable<any, string>;
2493
- }, ValueTypes["EditColorsResult"]];
2494
- editLogo?: [{
2495
- appCode: string | Variable<any, string>;
2496
- newLogo?: string | undefined | null | Variable<any, string>;
2497
- }, ValueTypes["EditLogoResult"]];
2498
- editName?: [{
2499
- appCode: string | Variable<any, string>;
2500
- newName: string | Variable<any, string>;
2501
- }, ValueTypes["EditNameResult"]];
2502
- addDeveloper?: [{
2503
- appCode: string | Variable<any, string>;
2504
- userId: string | Variable<any, string>;
2505
- userRole: ValueTypes["UserRole"] | Variable<any, string>;
2506
- userRights: ValueTypes["Rights"] | Variable<any, string>;
2507
- }, ValueTypes["AddDeveloperResult"]];
2508
- deleteDeveloper?: [{
2509
- appCode: string | Variable<any, string>;
2510
- userId: string | Variable<any, string>;
2511
- }, ValueTypes["DeleteDeveloperResult"]];
2512
- editDeveloper?: [{
2513
- appCode: string | Variable<any, string>;
2514
- userId: string | Variable<any, string>;
2515
- userRole: ValueTypes["UserRole"] | Variable<any, string>;
2516
- userRights: ValueTypes["Rights"] | Variable<any, string>;
2517
- }, ValueTypes["EditDeveloperResult"]];
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
- ["SortByDate"]: SortByDate;
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
- ['...on ErrorAccessDenied']?: Omit<ResolverInputTypes["ErrorAccessDenied"], keyof ResolverInputTypes["ErrorBase"]>;
3291
- ['...on ErrorBasic']?: Omit<ResolverInputTypes["ErrorBasic"], keyof ResolverInputTypes["ErrorBase"]>;
3292
- ['...on ErrorLangNotExist']?: Omit<ResolverInputTypes["ErrorLangNotExist"], keyof ResolverInputTypes["ErrorBase"]>;
3293
- ['...on ErrorLimit']?: Omit<ResolverInputTypes["ErrorLimit"], keyof ResolverInputTypes["ErrorBase"]>;
3294
- ['...on ErrorNotExist']?: Omit<ResolverInputTypes["ErrorNotExist"], keyof ResolverInputTypes["ErrorBase"]>;
3295
- ['...on ErrorNotFound']?: Omit<ResolverInputTypes["ErrorNotFound"], keyof ResolverInputTypes["ErrorBase"]>;
3296
- ['...on ErrorStripe']?: Omit<ResolverInputTypes["ErrorStripe"], keyof ResolverInputTypes["ErrorBase"]>;
3297
- ['...on ErrorUpgradePlan']?: Omit<ResolverInputTypes["ErrorUpgradePlan"], keyof ResolverInputTypes["ErrorBase"]>;
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
- ['...on FileContentCloud']?: Omit<ResolverInputTypes["FileContentCloud"], keyof ResolverInputTypes["FileContentBase"]>;
3394
- ['...on FileContentLite']?: Omit<ResolverInputTypes["FileContentLite"], keyof ResolverInputTypes["FileContentBase"]>;
3395
- ['...on FileContentReceivedMail']?: Omit<ResolverInputTypes["FileContentReceivedMail"], keyof ResolverInputTypes["FileContentBase"]>;
3396
- ['...on FileContentSentMail']?: Omit<ResolverInputTypes["FileContentSentMail"], keyof ResolverInputTypes["FileContentBase"]>;
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
- sortBy: ResolverInputTypes["SortByDate"];
4397
- }, ResolverInputTypes["ApplicationsResult"]];
4398
- blog?: [{
4399
- lang?: ResolverInputTypes["Lang"] | undefined | null;
4400
- }, ResolverInputTypes["BlogResult"]];
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
- field: string;
4406
- userId?: string | undefined | null;
4407
- }, ResolverInputTypes["DbGetResult"]];
4408
- dbSearch?: [{
4409
- search: string;
4410
- field: string;
4411
- }, ResolverInputTypes["DbSearchResult"]];
4412
- deletedMails?: [{
4413
- mailType: ResolverInputTypes["MailType"];
4414
- }, ResolverInputTypes["DeletedMailsResult"]];
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
- lang?: ResolverInputTypes["Lang"] | undefined | null;
4418
- }, ResolverInputTypes["FaqResult"]];
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
- fileIds: Array<string>;
4427
- }, ResolverInputTypes["FilesContentResult"]];
4428
- filesSharedWithMe?: [{
4429
- accepted?: boolean | undefined | null;
4430
- }, ResolverInputTypes["FileSharedContent"]];
4431
- getJwt?: [{
4432
- includeEmail?: boolean | undefined | null;
4433
- }, ResolverInputTypes["GetJwtResult"]];
4434
- isCryptoTransactionDone?: [{
4435
- idOrHash: string;
4436
- network?: ResolverInputTypes["InfuraNetwork"] | undefined | null;
4437
- }, ResolverInputTypes["IsCryptoTransactionDoneResult"]];
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
- network?: ResolverInputTypes["InfuraNetwork"] | undefined | null;
4444
- }, ResolverInputTypes["MyCryptoBalanceResult"]];
4445
- node?: [{
4446
- id?: string | undefined | null;
4447
- deleted?: boolean | undefined | null;
4448
- }, ResolverInputTypes["NodeResult"]];
4449
- nodesSharedWithMe?: [{
4450
- type?: ResolverInputTypes["NodeType"] | undefined | null;
4451
- }, ResolverInputTypes["NodesSharedWithMeResult"]];
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
- userId?: string | undefined | null;
4459
- }, ResolverInputTypes["UserResult"]];
4460
- userList?: [{
4461
- search?: string | undefined | null;
4462
- }, ResolverInputTypes["UserListResult"]];
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
- transactionId: string;
4468
- }, ResolverInputTypes["GetStripeTransactionResult"]];
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
- transferId: string;
4474
- }, ResolverInputTypes["GetStripeTransferResult"]];
4816
+ getStripeTransfer?: [
4817
+ {
4818
+ transferId: string;
4819
+ },
4820
+ ResolverInputTypes["GetStripeTransferResult"]
4821
+ ];
4475
4822
  getAllStripePayout?: ResolverInputTypes["GetAllStripePayoutResult"];
4476
- getStripePayout?: [{
4477
- payoutId: string;
4478
- }, ResolverInputTypes["GetStripePayoutResult"]];
4479
- getAllPaymentRequestToCollect?: [{
4480
- secrecyId?: string | undefined | null;
4481
- appCode?: string | undefined | null;
4482
- }, ResolverInputTypes["GetAllPaymentRequestToCollectResult"]];
4483
- getAllPaymentRequestToPay?: [{
4484
- secrecyId?: string | undefined | null;
4485
- appCode?: string | undefined | null;
4486
- }, ResolverInputTypes["GetAllPaymentRequestToPayResult"]];
4487
- getPaymentRequestToCollect?: [{
4488
- paymentRequestId: string;
4489
- secrecyId?: string | undefined | null;
4490
- appCode?: string | undefined | null;
4491
- }, ResolverInputTypes["GetPaymentRequestToCollectResult"]];
4492
- getPaymentRequestToPay?: [{
4493
- paymentRequestId: string;
4494
- secrecyIdSeller: string;
4495
- secrecyId?: string | undefined | null;
4496
- appCode?: string | undefined | null;
4497
- }, ResolverInputTypes["GetPaymentRequestToPayResult"]];
4498
- isValidPaymentIntent?: [{
4499
- paymentIntentId: string;
4500
- secrecyAccountId: string;
4501
- currency: string;
4502
- amount: number;
4503
- appCode: string;
4504
- }, ResolverInputTypes["IsValidPaymentIntentResult"]];
4505
- getAllDevelopers?: [{
4506
- appCode: string;
4507
- }, ResolverInputTypes["GetAllDevelopersResult"]];
4508
- getDeveloper?: [{
4509
- appCode: string;
4510
- developerId: string;
4511
- }, ResolverInputTypes["GetDeveloperResult"]];
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
- nodeId: string;
4517
- fileId: string;
4518
- }, ResolverInputTypes["AddFileToHistoryResult"]];
4893
+ addFileToHistory?: [
4894
+ {
4895
+ nodeId: string;
4896
+ fileId: string;
4897
+ },
4898
+ ResolverInputTypes["AddFileToHistoryResult"]
4899
+ ];
4519
4900
  cancelPayment?: ResolverInputTypes["CancelPaymentResult"];
4520
- createCryptoWallet?: [{
4521
- address: string;
4522
- privateKeyEncrypted: string;
4523
- }, ResolverInputTypes["CreateCryptoWalletResult"]];
4524
- createDraftMail?: [{
4525
- hash: string;
4526
- hashKey: string;
4527
- body: string;
4528
- subject: string;
4529
- replyTo?: string | undefined | null;
4530
- senderFiles: Array<ResolverInputTypes["MailFileInput"]>;
4531
- recipients: Array<string>;
4532
- }, ResolverInputTypes["CreateDraftMailResult"]];
4533
- createFolder?: [{
4534
- name: string;
4535
- key: string;
4536
- parentFolderId?: string | undefined | null;
4537
- }, ResolverInputTypes["CreateFolderResult"]];
4538
- dbConfigMutation?: [{
4539
- appCode: string;
4540
- config: string;
4541
- }, ResolverInputTypes["DbConfigMutationResult"]];
4542
- dbSet?: [{
4543
- value: string;
4544
- userId?: string | undefined | null;
4545
- }, ResolverInputTypes["DbSetResult"]];
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
- draftId: string;
4549
- }, ResolverInputTypes["DeleteDraftMailResult"]];
4550
- deleteFile?: [{
4551
- fileId: string;
4552
- nodeId: string;
4553
- }, ResolverInputTypes["DeleteFileResult"]];
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
- ids: Array<string>;
4559
- }, ResolverInputTypes["DeleteMailTrashResult"]];
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
- ids: Array<string>;
4565
- }, ResolverInputTypes["DeleteNodeCloudTrashResult"]];
4566
- deleteNodeSharing?: [{
4567
- nodeId: string;
4568
- userId: string;
4569
- }, ResolverInputTypes["DeleteNodeSharingResult"]];
4570
- deleteUser?: [{
4571
- userId?: string | undefined | null;
4572
- }, ResolverInputTypes["DeleteUserResult"]];
4573
- duplicateNode?: [{
4574
- nodeId: string;
4575
- folderId?: string | undefined | null;
4576
- customName?: string | undefined | null;
4577
- }, ResolverInputTypes["DuplicateNodeResult"]];
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
- sessionId?: string | undefined | null;
4582
- }, ResolverInputTypes["LogoutResult"]];
4583
- moveNodes?: [{
4584
- nodeIds: Array<string>;
4585
- parentNodeId?: string | undefined | null;
4586
- }, ResolverInputTypes["MoveNodesResult"]];
4587
- pay?: [{
4588
- planCode: string;
4589
- input: ResolverInputTypes["PayInput"];
4590
- autoRenew?: boolean | undefined | null;
4591
- }, ResolverInputTypes["PayResult"]];
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
- fileId: string;
4603
- key: string;
4604
- nodeId?: string | undefined | null;
4605
- filename: string;
4606
- nameKey: string;
4607
- }, ResolverInputTypes["SaveInCloudResult"]];
4608
- sendAppMail?: [{
4609
- fakeUserIds: Array<string>;
4610
- subject: string;
4611
- html: string;
4612
- }, ResolverInputTypes["SendAppMailResult"]];
4613
- sendCryptoTransaction?: [{
4614
- network?: ResolverInputTypes["InfuraNetwork"] | undefined | null;
4615
- address: string;
4616
- rawTransaction: string;
4617
- appSession: string;
4618
- }, ResolverInputTypes["SendCryptoTransactionResult"]];
4619
- sendDraftMail?: [{
4620
- draftMailId: string;
4621
- temporaryRecipients: Array<string>;
4622
- recipients: Array<ResolverInputTypes["MailRecipientInput"]>;
4623
- customMessage?: string | undefined | null;
4624
- }, ResolverInputTypes["SendDraftMailResult"]];
4625
- sendOneMail?: [{
4626
- mailIntegrityId: string;
4627
- recipient: ResolverInputTypes["MailRecipientInput"];
4628
- }, ResolverInputTypes["SendOneMailResult"]];
4629
- sendReport?: [{
4630
- reportedUserId: string;
4631
- customMessage?: string | undefined | null;
4632
- }, ResolverInputTypes["SendReportResult"]];
4633
- shareFileInHistory?: [{
4634
- input: ResolverInputTypes["ShareFileInHistoryInput"];
4635
- nodeId: string;
4636
- }, ResolverInputTypes["ShareFileInHistoryResult"]];
4637
- shareNode?: [{
4638
- nodeId: string;
4639
- userId: string;
4640
- }, ResolverInputTypes["ShareNodeResult"]];
4641
- shareNodeFinish?: [{
4642
- shareNodes: ResolverInputTypes["ShareNodesInput"];
4643
- userId: string;
4644
- rights: ResolverInputTypes["Rights"];
4645
- }, ResolverInputTypes["ShareNodeFinishResult"]];
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
- enableAll?: boolean | undefined | null;
4651
- mail?: boolean | undefined | null;
4652
- cloud?: boolean | undefined | null;
4653
- disableAllUntil?: ResolverInputTypes["DateTime"] | undefined | null;
4654
- }, ResolverInputTypes["UpdateAppNotificationsResult"]];
4655
- updateAppSettings?: [{
4656
- cloudNodeDaysForDelete?: number | undefined | null;
4657
- historyFileDaysForDelete?: number | undefined | null;
4658
- historyMaxFileCount?: number | undefined | null;
4659
- }, ResolverInputTypes["UpdateAppSettingsResult"]];
4660
- updateAutoDisconnectDelay?: [{
4661
- userId?: string | undefined | null;
4662
- delay?: number | undefined | null;
4663
- }, ResolverInputTypes["UpdateAutoDisconnectDelayResult"]];
4664
- updateDraftMail?: [{
4665
- draftId: string;
4666
- hash?: string | undefined | null;
4667
- hashKey?: string | undefined | null;
4668
- body?: string | undefined | null;
4669
- subject?: string | undefined | null;
4670
- replyTo?: string | undefined | null;
4671
- senderFiles?: Array<ResolverInputTypes["MailFileInput"]> | undefined | null;
4672
- recipients?: Array<string> | undefined | null;
4673
- }, ResolverInputTypes["UpdateDraftMailResult"]];
4674
- updateNode?: [{
4675
- nodeId: string;
4676
- name?: string | undefined | null;
4677
- isFavorite?: boolean | undefined | null;
4678
- deletedAt?: ResolverInputTypes["DateTime"] | undefined | null;
4679
- }, ResolverInputTypes["UpdateNodeResult"]];
4680
- updateProfile?: [{
4681
- firstname?: string | undefined | null;
4682
- lastname?: string | undefined | null;
4683
- lang?: ResolverInputTypes["Lang"] | undefined | null;
4684
- }, ResolverInputTypes["UpdateProfileResult"]];
4685
- uploadAnonymous?: [{
4686
- fileName: string;
4687
- fileSize: number;
4688
- fileSizeBefore: number;
4689
- message?: string | undefined | null;
4690
- pubKey: string;
4691
- token: string;
4692
- }, ResolverInputTypes["FileResponse"]];
4693
- uploadFile?: [{
4694
- fileSize: ResolverInputTypes["BigInt"];
4695
- fileSizeBefore: ResolverInputTypes["BigInt"];
4696
- fileKey: string;
4697
- md5: string;
4698
- md5Encrypted: string;
4699
- }, ResolverInputTypes["UploadFileResult"]];
4700
- uploadFileEnd?: [{
4701
- fileId: string;
4702
- }, ResolverInputTypes["UploadFileEndResult"]];
4703
- uploadFilePartEnd?: [{
4704
- fileId: string;
4705
- md5: string;
4706
- order: number;
4707
- }, ResolverInputTypes["UploadFilePartEndResult"]];
4708
- uploadLiteFile?: [{
4709
- content: ResolverInputTypes["Bytes"];
4710
- fileSize: ResolverInputTypes["BigInt"];
4711
- fileSizeBefore: ResolverInputTypes["BigInt"];
4712
- fileKey: string;
4713
- md5: string;
4714
- md5Encrypted: string;
4715
- }, ResolverInputTypes["UploadLiteFileResult"]];
4716
- changeUserPlan?: [{
4717
- userId: string;
4718
- plan: ResolverInputTypes["PlanKind"];
4719
- }, ResolverInputTypes["ChangeUserPlanResult"]];
4720
- createCardToken?: [{
4721
- lastFourDigit: string;
4722
- cardTokenId: string;
4723
- }, ResolverInputTypes["CreateCardTokenResult"]];
4724
- createStripeTransfer?: [{
4725
- secrecyIdToReceive: string;
4726
- amount: number;
4727
- currency: string;
4728
- }, ResolverInputTypes["CreateStripeTransferResult"]];
4729
- deleteCardToken?: [{
4730
- cardTokenId: string;
4731
- }, ResolverInputTypes["DeleteCardTokenResult"]];
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
- payoutId: string;
4735
- }, ResolverInputTypes["CancelStripePayoutResult"]];
4736
- createStripePayout?: [{
4737
- amount: number;
4738
- currency: string;
4739
- description?: string | undefined | null;
4740
- }, ResolverInputTypes["CreateStripePayoutResult"]];
4741
- addCartToPaymentIntent?: [{
4742
- paymentIntentId: string;
4743
- secrecyIdSeller: string;
4744
- cardTokenId: string;
4745
- }, ResolverInputTypes["AddCartToPaymentIntentResult"]];
4746
- cancelPaymentIntent?: [{
4747
- paymentIntentId: string;
4748
- secrecyIdSeller: string;
4749
- }, ResolverInputTypes["CancelPaymentIntentResult"]];
4750
- confirmPaymentIntent?: [{
4751
- paymentIntentId: string;
4752
- secrecyIdSeller: string;
4753
- }, ResolverInputTypes["ConfirmPaymentIntentResult"]];
4754
- createPaymentIntent?: [{
4755
- amount: number;
4756
- userId: string;
4757
- currency: string;
4758
- }, ResolverInputTypes["CreatePaymentIntentResult"]];
4759
- renewAppCode?: [{
4760
- actualAppCode: string;
4761
- }, ResolverInputTypes["RenewAppCodeResult"]];
4762
- updateOriginUrl?: [{
4763
- appCode: string;
4764
- originUrl: Array<string>;
4765
- }, ResolverInputTypes["UpdateOriginUrlResult"]];
4766
- createApplication?: [{
4767
- name: string;
4768
- origin: string;
4769
- color?: string | undefined | null;
4770
- logo?: string | undefined | null;
4771
- collaborators?: Array<ResolverInputTypes["ApplicationsCollaborators"]> | undefined | null;
4772
- }, ResolverInputTypes["CreateApplicationResult"]];
4773
- deleteApplication?: [{
4774
- appCode: string;
4775
- }, ResolverInputTypes["DeleteApplicationResult"]];
4776
- editColors?: [{
4777
- appCode: string;
4778
- newColors?: string | undefined | null;
4779
- }, ResolverInputTypes["EditColorsResult"]];
4780
- editLogo?: [{
4781
- appCode: string;
4782
- newLogo?: string | undefined | null;
4783
- }, ResolverInputTypes["EditLogoResult"]];
4784
- editName?: [{
4785
- appCode: string;
4786
- newName: string;
4787
- }, ResolverInputTypes["EditNameResult"]];
4788
- addDeveloper?: [{
4789
- appCode: string;
4790
- userId: string;
4791
- userRole: ResolverInputTypes["UserRole"];
4792
- userRights: ResolverInputTypes["Rights"];
4793
- }, ResolverInputTypes["AddDeveloperResult"]];
4794
- deleteDeveloper?: [{
4795
- appCode: string;
4796
- userId: string;
4797
- }, ResolverInputTypes["DeleteDeveloperResult"]];
4798
- editDeveloper?: [{
4799
- appCode: string;
4800
- userId: string;
4801
- userRole: ResolverInputTypes["UserRole"];
4802
- userRights: ResolverInputTypes["Rights"];
4803
- }, ResolverInputTypes["EditDeveloperResult"]];
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
- ["SortByDate"]: SortByDate;
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
- ['...on UserAppNotifications']: '__union' & GraphQLTypes["UserAppNotifications"];
6081
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6082
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on ApplicationsResponse']: '__union' & GraphQLTypes["ApplicationsResponse"];
6087
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6638
+ ["...on ApplicationsResponse"]: "__union" & GraphQLTypes["ApplicationsResponse"];
6639
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6088
6640
  };
6089
6641
  ["BlogResult"]: {
6090
6642
  __typename: "BlogResponse" | "ErrorLangNotExist";
6091
- ['...on BlogResponse']: '__union' & GraphQLTypes["BlogResponse"];
6092
- ['...on ErrorLangNotExist']: '__union' & GraphQLTypes["ErrorLangNotExist"];
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
- ['...on DbConfigResponse']: '__union' & GraphQLTypes["DbConfigResponse"];
6097
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6098
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
6099
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on DbGetResponse']: '__union' & GraphQLTypes["DbGetResponse"];
6104
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6105
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6106
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on DbSearchResponse']: '__union' & GraphQLTypes["DbSearchResponse"];
6111
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6112
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
6113
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on DeletedMailsResponse']: '__union' & GraphQLTypes["DeletedMailsResponse"];
6118
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6669
+ ["...on DeletedMailsResponse"]: "__union" & GraphQLTypes["DeletedMailsResponse"];
6670
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6119
6671
  };
6120
6672
  ["DeletedNodesResult"]: {
6121
6673
  __typename: "DeletedNodesResponse" | "ErrorAccessDenied";
6122
- ['...on DeletedNodesResponse']: '__union' & GraphQLTypes["DeletedNodesResponse"];
6123
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6674
+ ["...on DeletedNodesResponse"]: "__union" & GraphQLTypes["DeletedNodesResponse"];
6675
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6124
6676
  };
6125
6677
  ["FaqResult"]: {
6126
6678
  __typename: "FaqResponse" | "ErrorAccessDenied";
6127
- ['...on FaqResponse']: '__union' & GraphQLTypes["FaqResponse"];
6128
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6679
+ ["...on FaqResponse"]: "__union" & GraphQLTypes["FaqResponse"];
6680
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6129
6681
  };
6130
6682
  ["FileResult"]: {
6131
6683
  __typename: "FileQueryResponse" | "ErrorAccessDenied";
6132
- ['...on FileQueryResponse']: '__union' & GraphQLTypes["FileQueryResponse"];
6133
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6684
+ ["...on FileQueryResponse"]: "__union" & GraphQLTypes["FileQueryResponse"];
6685
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6134
6686
  };
6135
6687
  ["FileContentResult"]: {
6136
6688
  __typename: "FileContentResponse" | "ErrorAccessDenied" | "ErrorBasic";
6137
- ['...on FileContentResponse']: '__union' & GraphQLTypes["FileContentResponse"];
6138
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6139
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on FilesContentResponse']: '__union' & GraphQLTypes["FilesContentResponse"];
6144
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6145
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
6146
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on JwtResponse']: '__union' & GraphQLTypes["JwtResponse"];
6151
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6702
+ ["...on JwtResponse"]: "__union" & GraphQLTypes["JwtResponse"];
6703
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6152
6704
  };
6153
6705
  ["IsCryptoTransactionDoneResult"]: {
6154
6706
  __typename: "IsCryptoTransactionDoneResponse" | "ErrorNotExist";
6155
- ['...on IsCryptoTransactionDoneResponse']: '__union' & GraphQLTypes["IsCryptoTransactionDoneResponse"];
6156
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on QueryLimits']: '__union' & GraphQLTypes["QueryLimits"];
6161
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6162
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6163
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
6164
- ['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
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
- ['...on QueryMailResponse']: '__union' & GraphQLTypes["QueryMailResponse"];
6169
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6720
+ ["...on QueryMailResponse"]: "__union" & GraphQLTypes["QueryMailResponse"];
6721
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6170
6722
  };
6171
6723
  ["MyCryptoBalanceResult"]: {
6172
6724
  __typename: "MyCryptoBalanceResponse" | "ErrorNotExist";
6173
- ['...on MyCryptoBalanceResponse']: '__union' & GraphQLTypes["MyCryptoBalanceResponse"];
6174
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
6725
+ ["...on MyCryptoBalanceResponse"]: "__union" & GraphQLTypes["MyCryptoBalanceResponse"];
6726
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
6175
6727
  };
6176
6728
  ["NodeResult"]: {
6177
6729
  __typename: "NodeResponse" | "ErrorAccessDenied";
6178
- ['...on NodeResponse']: '__union' & GraphQLTypes["NodeResponse"];
6179
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6730
+ ["...on NodeResponse"]: "__union" & GraphQLTypes["NodeResponse"];
6731
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6180
6732
  };
6181
6733
  ["NodesSharedWithMeResult"]: {
6182
6734
  __typename: "NodesSharedWithMeResponse" | "ErrorAccessDenied";
6183
- ['...on NodesSharedWithMeResponse']: '__union' & GraphQLTypes["NodesSharedWithMeResponse"];
6184
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6735
+ ["...on NodesSharedWithMeResponse"]: "__union" & GraphQLTypes["NodesSharedWithMeResponse"];
6736
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6185
6737
  };
6186
6738
  ["PaymentInfosResult"]: {
6187
6739
  __typename: "PaymentInfosResponse" | "ErrorAccessDenied";
6188
- ['...on PaymentInfosResponse']: '__union' & GraphQLTypes["PaymentInfosResponse"];
6189
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6740
+ ["...on PaymentInfosResponse"]: "__union" & GraphQLTypes["PaymentInfosResponse"];
6741
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6190
6742
  };
6191
6743
  ["PlansResult"]: {
6192
6744
  __typename: "PlanResponse";
6193
- ['...on PlanResponse']: '__union' & GraphQLTypes["PlanResponse"];
6745
+ ["...on PlanResponse"]: "__union" & GraphQLTypes["PlanResponse"];
6194
6746
  };
6195
6747
  ["SharedNodesResult"]: {
6196
6748
  __typename: "SharedNodesResponse" | "ErrorAccessDenied";
6197
- ['...on SharedNodesResponse']: '__union' & GraphQLTypes["SharedNodesResponse"];
6198
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6749
+ ["...on SharedNodesResponse"]: "__union" & GraphQLTypes["SharedNodesResponse"];
6750
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6199
6751
  };
6200
6752
  ["UnreadReceivedMailsCountResult"]: {
6201
6753
  __typename: "UnreadReceivedMailsCountResponse" | "ErrorAccessDenied";
6202
- ['...on UnreadReceivedMailsCountResponse']: '__union' & GraphQLTypes["UnreadReceivedMailsCountResponse"];
6203
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6754
+ ["...on UnreadReceivedMailsCountResponse"]: "__union" & GraphQLTypes["UnreadReceivedMailsCountResponse"];
6755
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6204
6756
  };
6205
6757
  ["UserResult"]: {
6206
6758
  __typename: "UserResponse" | "ErrorNotFound";
6207
- ['...on UserResponse']: '__union' & GraphQLTypes["UserResponse"];
6208
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6759
+ ["...on UserResponse"]: "__union" & GraphQLTypes["UserResponse"];
6760
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
6209
6761
  };
6210
6762
  ["UserListResult"]: {
6211
6763
  __typename: "UserListResponse" | "ErrorAccessDenied";
6212
- ['...on UserListResponse']: '__union' & GraphQLTypes["UserListResponse"];
6213
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6764
+ ["...on UserListResponse"]: "__union" & GraphQLTypes["UserListResponse"];
6765
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6214
6766
  };
6215
6767
  ["GetCardIdentificationResult"]: {
6216
6768
  __typename: "CardIdentificationResponse" | "ErrorAccessDenied";
6217
- ['...on CardIdentificationResponse']: '__union' & GraphQLTypes["CardIdentificationResponse"];
6218
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
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
- ['...on GetStripeBalanceResponse']: '__union' & GraphQLTypes["GetStripeBalanceResponse"];
6223
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6224
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6225
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on GetStripeBalanceTransactionResponse']: '__union' & GraphQLTypes["GetStripeBalanceTransactionResponse"];
6230
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6231
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6232
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on GetStripeTransactionResponse']: '__union' & GraphQLTypes["GetStripeTransactionResponse"];
6237
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6238
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6239
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on HasStripeAccountResponse']: '__union' & GraphQLTypes["HasStripeAccountResponse"];
6244
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6245
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on KycStripeCompletedResponse']: '__union' & GraphQLTypes["KycStripeCompletedResponse"];
6250
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6251
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6252
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on GetAllStripeTransferResponse']: '__union' & GraphQLTypes["GetAllStripeTransferResponse"];
6257
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6258
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6259
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on GetStripeTransferResponse']: '__union' & GraphQLTypes["GetStripeTransferResponse"];
6264
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6265
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6266
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on GetAllStripePayoutResponse']: '__union' & GraphQLTypes["GetAllStripePayoutResponse"];
6271
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6272
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6273
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on GetStripePayoutResponse']: '__union' & GraphQLTypes["GetStripePayoutResponse"];
6278
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6279
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6280
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on GetAllPaymentRequestToCollectResponse']: '__union' & GraphQLTypes["GetAllPaymentRequestToCollectResponse"];
6285
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6286
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6287
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on GetAllPaymentRequestToPayResponse']: '__union' & GraphQLTypes["GetAllPaymentRequestToPayResponse"];
6292
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6293
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on GetPaymentRequestToCollectResponse']: '__union' & GraphQLTypes["GetPaymentRequestToCollectResponse"];
6298
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6299
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6300
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on GetPaymentRequestToPayResponse']: '__union' & GraphQLTypes["GetPaymentRequestToPayResponse"];
6305
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6306
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on ValidPaymentIntentResponse']: '__union' & GraphQLTypes["ValidPaymentIntentResponse"];
6311
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6312
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on GetAllDevelopersMainResponse']: '__union' & GraphQLTypes["GetAllDevelopersMainResponse"];
6317
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6318
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on GetDeveloperResponse']: '__union' & GraphQLTypes["GetDeveloperResponse"];
6323
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6324
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on AddFileToHistoryResponse']: '__union' & GraphQLTypes["AddFileToHistoryResponse"];
6329
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6330
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on CancelPaymentResponse']: '__union' & GraphQLTypes["CancelPaymentResponse"];
6335
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6892
+ ["...on CancelPaymentResponse"]: "__union" & GraphQLTypes["CancelPaymentResponse"];
6893
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6336
6894
  };
6337
6895
  ["CreateCryptoWalletResult"]: {
6338
6896
  __typename: "CreateCryptoWalletResponse" | "ErrorAccessDenied";
6339
- ['...on CreateCryptoWalletResponse']: '__union' & GraphQLTypes["CreateCryptoWalletResponse"];
6340
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6897
+ ["...on CreateCryptoWalletResponse"]: "__union" & GraphQLTypes["CreateCryptoWalletResponse"];
6898
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6341
6899
  };
6342
6900
  ["CreateDraftMailResult"]: {
6343
6901
  __typename: "CreateDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
6344
- ['...on CreateDraftMailResponse']: '__union' & GraphQLTypes["CreateDraftMailResponse"];
6345
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6346
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on CreateFolderResponse']: '__union' & GraphQLTypes["CreateFolderResponse"];
6351
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6352
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on DbConfigMutationResponse']: '__union' & GraphQLTypes["DbConfigMutationResponse"];
6357
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6914
+ ["...on DbConfigMutationResponse"]: "__union" & GraphQLTypes["DbConfigMutationResponse"];
6915
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6358
6916
  };
6359
6917
  ["DbSetResult"]: {
6360
6918
  __typename: "DbSetResponse" | "ErrorAccessDenied" | "ErrorNotFound";
6361
- ['...on DbSetResponse']: '__union' & GraphQLTypes["DbSetResponse"];
6362
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6363
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on DeleteDraftMailResponse']: '__union' & GraphQLTypes["DeleteDraftMailResponse"];
6368
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6925
+ ["...on DeleteDraftMailResponse"]: "__union" & GraphQLTypes["DeleteDraftMailResponse"];
6926
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6369
6927
  };
6370
6928
  ["DeleteFileResult"]: {
6371
6929
  __typename: "DeleteFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
6372
- ['...on DeleteFileResponse']: '__union' & GraphQLTypes["DeleteFileResponse"];
6373
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6374
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on DeleteMailResponse']: '__union' & GraphQLTypes["DeleteMailResponse"];
6379
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6936
+ ["...on DeleteMailResponse"]: "__union" & GraphQLTypes["DeleteMailResponse"];
6937
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6380
6938
  };
6381
6939
  ["DeleteMailTrashResult"]: {
6382
6940
  __typename: "DeleteMailTrashResponse" | "ErrorAccessDenied";
6383
- ['...on DeleteMailTrashResponse']: '__union' & GraphQLTypes["DeleteMailTrashResponse"];
6384
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6941
+ ["...on DeleteMailTrashResponse"]: "__union" & GraphQLTypes["DeleteMailTrashResponse"];
6942
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6385
6943
  };
6386
6944
  ["DeleteNodeResult"]: {
6387
6945
  __typename: "DeleteNodeResponse" | "ErrorAccessDenied";
6388
- ['...on DeleteNodeResponse']: '__union' & GraphQLTypes["DeleteNodeResponse"];
6389
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6946
+ ["...on DeleteNodeResponse"]: "__union" & GraphQLTypes["DeleteNodeResponse"];
6947
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6390
6948
  };
6391
6949
  ["DeleteNodeCloudTrashResult"]: {
6392
6950
  __typename: "DeleteNodeCloudTrashResponse" | "ErrorAccessDenied";
6393
- ['...on DeleteNodeCloudTrashResponse']: '__union' & GraphQLTypes["DeleteNodeCloudTrashResponse"];
6394
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6951
+ ["...on DeleteNodeCloudTrashResponse"]: "__union" & GraphQLTypes["DeleteNodeCloudTrashResponse"];
6952
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6395
6953
  };
6396
6954
  ["DeleteNodeSharingResult"]: {
6397
6955
  __typename: "DeleteNodeSharingResponse" | "ErrorAccessDenied";
6398
- ['...on DeleteNodeSharingResponse']: '__union' & GraphQLTypes["DeleteNodeSharingResponse"];
6399
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6956
+ ["...on DeleteNodeSharingResponse"]: "__union" & GraphQLTypes["DeleteNodeSharingResponse"];
6957
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6400
6958
  };
6401
6959
  ["DeleteUserResult"]: {
6402
6960
  __typename: "DeleteUserResponse" | "ErrorAccessDenied";
6403
- ['...on DeleteUserResponse']: '__union' & GraphQLTypes["DeleteUserResponse"];
6404
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6961
+ ["...on DeleteUserResponse"]: "__union" & GraphQLTypes["DeleteUserResponse"];
6962
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6405
6963
  };
6406
6964
  ["DuplicateNodeResult"]: {
6407
6965
  __typename: "DuplicateNodeResponse" | "ErrorAccessDenied" | "ErrorNotFound";
6408
- ['...on DuplicateNodeResponse']: '__union' & GraphQLTypes["DuplicateNodeResponse"];
6409
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6410
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on EmptyCloudTrashResponse']: '__union' & GraphQLTypes["EmptyCloudTrashResponse"];
6415
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6972
+ ["...on EmptyCloudTrashResponse"]: "__union" & GraphQLTypes["EmptyCloudTrashResponse"];
6973
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6416
6974
  };
6417
6975
  ["EmptyMailTrashResult"]: {
6418
6976
  __typename: "EmptyMailTrashResponse" | "ErrorAccessDenied";
6419
- ['...on EmptyMailTrashResponse']: '__union' & GraphQLTypes["EmptyMailTrashResponse"];
6420
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6977
+ ["...on EmptyMailTrashResponse"]: "__union" & GraphQLTypes["EmptyMailTrashResponse"];
6978
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6421
6979
  };
6422
6980
  ["LogoutResult"]: {
6423
6981
  __typename: "LogoutResponse" | "ErrorAccessDenied" | "ErrorBasic";
6424
- ['...on LogoutResponse']: '__union' & GraphQLTypes["LogoutResponse"];
6425
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6426
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on MoveNodesResponse']: '__union' & GraphQLTypes["MoveNodesResponse"];
6431
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6988
+ ["...on MoveNodesResponse"]: "__union" & GraphQLTypes["MoveNodesResponse"];
6989
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6432
6990
  };
6433
6991
  ["PayResult"]: {
6434
6992
  __typename: "PayResponse" | "ErrorAccessDenied";
6435
- ['...on PayResponse']: '__union' & GraphQLTypes["PayResponse"];
6436
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
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
- ['...on ReadMailResponse']: '__union' & GraphQLTypes["ReadMailResponse"];
6441
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6442
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
6443
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on RecoverMailResponse']: '__union' & GraphQLTypes["RecoverMailResponse"];
6448
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6449
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on RecoverNodeResponse']: '__union' & GraphQLTypes["RecoverNodeResponse"];
6454
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6455
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on SaveInCloudResponse']: '__union' & GraphQLTypes["SaveInCloudResponse"];
6460
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6461
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
6462
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
6463
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6464
- ['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
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
- ['...on SendAppMailResponse']: '__union' & GraphQLTypes["SendAppMailResponse"];
6469
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6470
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
6471
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on SendCryptoTransactionResponse']: '__union' & GraphQLTypes["SendCryptoTransactionResponse"];
6476
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6477
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
6478
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on SendDraftMailResponse']: '__union' & GraphQLTypes["SendDraftMailResponse"];
6483
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6484
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on RecoverNodeResponse']: '__union' & GraphQLTypes["RecoverNodeResponse"];
6489
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6490
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on SendReportResponse']: '__union' & GraphQLTypes["SendReportResponse"];
6495
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6496
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on ShareFileInHistoryResponse']: '__union' & GraphQLTypes["ShareFileInHistoryResponse"];
6501
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6502
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on ShareNodeResponse']: '__union' & GraphQLTypes["ShareNodeResponse"];
6507
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6508
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on ShareNodeFinishResponse']: '__union' & GraphQLTypes["ShareNodeFinishResponse"];
6513
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6514
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on UnreadMailResponse']: '__union' & GraphQLTypes["UnreadMailResponse"];
6519
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6520
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6521
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on UpdateAppNotificationsResponse']: '__union' & GraphQLTypes["UpdateAppNotificationsResponse"];
6526
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7083
+ ["...on UpdateAppNotificationsResponse"]: "__union" & GraphQLTypes["UpdateAppNotificationsResponse"];
7084
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6527
7085
  };
6528
7086
  ["UpdateAppSettingsResult"]: {
6529
7087
  __typename: "UpdateAppSettingsResponse" | "ErrorAccessDenied" | "ErrorBasic";
6530
- ['...on UpdateAppSettingsResponse']: '__union' & GraphQLTypes["UpdateAppSettingsResponse"];
6531
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6532
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on UpdateAutoDisconnectDelayResponse']: '__union' & GraphQLTypes["UpdateAutoDisconnectDelayResponse"];
6537
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6538
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6539
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on UpdateDraftMailResponse']: '__union' & GraphQLTypes["UpdateDraftMailResponse"];
6544
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6545
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on UpdateNodeResponse']: '__union' & GraphQLTypes["UpdateNodeResponse"];
6550
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6551
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
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
- ['...on UpdateProfileResponse']: '__union' & GraphQLTypes["UpdateProfileResponse"];
6556
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6557
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on UploadFileResponse']: '__union' & GraphQLTypes["UploadFileResponse"];
6562
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6563
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6564
- ['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
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
- ['...on UploadFileEndResponse']: '__union' & GraphQLTypes["UploadFileEndResponse"];
6569
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6570
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on UploadFilePartEndResponse']: '__union' & GraphQLTypes["UploadFilePartEndResponse"];
6575
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
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
- ['...on UploadLiteFileResponse']: '__union' & GraphQLTypes["UploadLiteFileResponse"];
6580
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6581
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
6582
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6583
- ['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
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
- ['...on ChangeUserPlanResponse']: '__union' & GraphQLTypes["ChangeUserPlanResponse"];
6588
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7145
+ ["...on ChangeUserPlanResponse"]: "__union" & GraphQLTypes["ChangeUserPlanResponse"];
7146
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6589
7147
  };
6590
7148
  ["CreateCardTokenResult"]: {
6591
7149
  __typename: "CreateCardTokenResponse" | "ErrorAccessDenied" | "ErrorStripe";
6592
- ['...on CreateCardTokenResponse']: '__union' & GraphQLTypes["CreateCardTokenResponse"];
6593
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6594
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on CreateStripeTransferResponse']: '__union' & GraphQLTypes["CreateStripeTransferResponse"];
6599
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6600
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6601
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on DeleteCardTokenResponse']: '__union' & GraphQLTypes["DeleteCardTokenResponse"];
6606
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6607
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on StripeOnBoardingResponse']: '__union' & GraphQLTypes["StripeOnBoardingResponse"];
6612
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6613
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
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
- ['...on CancelStripePayoutResponse']: '__union' & GraphQLTypes["CancelStripePayoutResponse"];
6618
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6619
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6620
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on CreateStripePayoutResponse']: '__union' & GraphQLTypes["CreateStripePayoutResponse"];
6625
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6626
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6627
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on AddCardToPaymentIntentResponse']: '__union' & GraphQLTypes["AddCardToPaymentIntentResponse"];
6632
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6633
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6634
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on CancelPaymentIntentResponse']: '__union' & GraphQLTypes["CancelPaymentIntentResponse"];
6639
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6640
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6641
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on ConfirmPaymentIntentResponse']: '__union' & GraphQLTypes["ConfirmPaymentIntentResponse"];
6646
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6647
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6648
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on CreatePaymentIntentResponse']: '__union' & GraphQLTypes["CreatePaymentIntentResponse"];
6653
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6654
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6655
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
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
- ['...on RenewAppCodeResponse']: '__union' & GraphQLTypes["RenewAppCodeResponse"];
6660
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7217
+ ["...on RenewAppCodeResponse"]: "__union" & GraphQLTypes["RenewAppCodeResponse"];
7218
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6661
7219
  };
6662
7220
  ["UpdateOriginUrlResult"]: {
6663
7221
  __typename: "UpdateOriginUrlResponse" | "ErrorAccessDenied";
6664
- ['...on UpdateOriginUrlResponse']: '__union' & GraphQLTypes["UpdateOriginUrlResponse"];
6665
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7222
+ ["...on UpdateOriginUrlResponse"]: "__union" & GraphQLTypes["UpdateOriginUrlResponse"];
7223
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6666
7224
  };
6667
7225
  ["CreateApplicationResult"]: {
6668
7226
  __typename: "CreateApplicationResponse" | "ErrorAccessDenied";
6669
- ['...on CreateApplicationResponse']: '__union' & GraphQLTypes["CreateApplicationResponse"];
6670
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7227
+ ["...on CreateApplicationResponse"]: "__union" & GraphQLTypes["CreateApplicationResponse"];
7228
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6671
7229
  };
6672
7230
  ["DeleteApplicationResult"]: {
6673
7231
  __typename: "EditProjectResponse" | "ErrorAccessDenied";
6674
- ['...on EditProjectResponse']: '__union' & GraphQLTypes["EditProjectResponse"];
6675
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7232
+ ["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
7233
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6676
7234
  };
6677
7235
  ["EditColorsResult"]: {
6678
7236
  __typename: "EditProjectResponse" | "ErrorAccessDenied";
6679
- ['...on EditProjectResponse']: '__union' & GraphQLTypes["EditProjectResponse"];
6680
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7237
+ ["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
7238
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6681
7239
  };
6682
7240
  ["EditLogoResult"]: {
6683
7241
  __typename: "EditProjectResponse" | "ErrorAccessDenied";
6684
- ['...on EditProjectResponse']: '__union' & GraphQLTypes["EditProjectResponse"];
6685
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7242
+ ["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
7243
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6686
7244
  };
6687
7245
  ["EditNameResult"]: {
6688
7246
  __typename: "EditProjectResponse" | "ErrorAccessDenied";
6689
- ['...on EditProjectResponse']: '__union' & GraphQLTypes["EditProjectResponse"];
6690
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7247
+ ["...on EditProjectResponse"]: "__union" & GraphQLTypes["EditProjectResponse"];
7248
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6691
7249
  };
6692
7250
  ["AddDeveloperResult"]: {
6693
7251
  __typename: "EditDeveloperResponse" | "ErrorAccessDenied";
6694
- ['...on EditDeveloperResponse']: '__union' & GraphQLTypes["EditDeveloperResponse"];
6695
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7252
+ ["...on EditDeveloperResponse"]: "__union" & GraphQLTypes["EditDeveloperResponse"];
7253
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6696
7254
  };
6697
7255
  ["DeleteDeveloperResult"]: {
6698
7256
  __typename: "EditDeveloperResponse" | "ErrorAccessDenied";
6699
- ['...on EditDeveloperResponse']: '__union' & GraphQLTypes["EditDeveloperResponse"];
6700
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
7257
+ ["...on EditDeveloperResponse"]: "__union" & GraphQLTypes["EditDeveloperResponse"];
7258
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
6701
7259
  };
6702
7260
  ["EditDeveloperResult"]: {
6703
7261
  __typename: "EditDeveloperResponse" | "ErrorAccessDenied";
6704
- ['...on EditDeveloperResponse']: '__union' & GraphQLTypes["EditDeveloperResponse"];
6705
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
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
- ["SortByDate"]: SortByDate;
7372
+ ["SortApplications"]: SortApplications;
6814
7373
  ["Error"]: {
6815
7374
  __typename: "ErrorStripe" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorUpgradePlan" | "ErrorLangNotExist" | "ErrorNotExist" | "ErrorLimit" | "ErrorBasic";
6816
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6817
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6818
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6819
- ['...on ErrorUpgradePlan']: '__union' & GraphQLTypes["ErrorUpgradePlan"];
6820
- ['...on ErrorLangNotExist']: '__union' & GraphQLTypes["ErrorLangNotExist"];
6821
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
6822
- ['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
6823
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
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
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
6833
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
6834
- ['...on ErrorLangNotExist']: '__union' & GraphQLTypes["ErrorLangNotExist"];
6835
- ['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
6836
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
6837
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
6838
- ['...on ErrorStripe']: '__union' & GraphQLTypes["ErrorStripe"];
6839
- ['...on ErrorUpgradePlan']: '__union' & GraphQLTypes["ErrorUpgradePlan"];
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
- ['...on FileContentCloud']: '__union' & GraphQLTypes["FileContentCloud"];
6923
- ['...on FileContentLite']: '__union' & GraphQLTypes["FileContentLite"];
6924
- ['...on FileContentReceivedMail']: '__union' & GraphQLTypes["FileContentReceivedMail"];
6925
- ['...on FileContentSentMail']: '__union' & GraphQLTypes["FileContentSentMail"];
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
- ['...on FileContentCloud']: '__union' & GraphQLTypes["FileContentCloud"];
6936
- ['...on FileContentLite']: '__union' & GraphQLTypes["FileContentLite"];
6937
- ['...on FileContentReceivedMail']: '__union' & GraphQLTypes["FileContentReceivedMail"];
6938
- ['...on FileContentSentMail']: '__union' & GraphQLTypes["FileContentSentMail"];
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 SortByDate {
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
- ["SortByDate"]: ValueTypes["SortByDate"];
8720
+ ["SortApplications"]: ValueTypes["SortApplications"];
8157
8721
  ["FileContentType"]: ValueTypes["FileContentType"];
8158
8722
  ["InfuraNetwork"]: ValueTypes["InfuraNetwork"];
8159
8723
  ["MailFileInput"]: ValueTypes["MailFileInput"];