@zimbra/api-client 89.0.0 → 90.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schema.graphql +145 -8
- package/dist/src/batch-client/index.d.ts +8 -4
- package/dist/src/normalize/entities.d.ts +2 -0
- package/dist/src/schema/generated-schema-types.d.ts +143 -1
- package/dist/zm-api-js-client.esm.js +726 -486
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +5 -10
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +6 -11
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +265 -155
- package/package.json +2 -2
- package/src/batch-client/index.ts +112 -20
- package/src/normalize/entities.ts +12 -0
- package/src/schema/generated-schema-types.ts +172 -1
- package/src/schema/schema.graphql +145 -8
- package/src/schema/schema.ts +12 -3
|
@@ -187,6 +187,8 @@ export type AccountInfoAttrs = {
|
|
|
187
187
|
zimbraTrialConvertAtExpiration?: Maybe<Scalars['Boolean']['output']>;
|
|
188
188
|
zimbraTrialExpirationDate?: Maybe<Scalars['String']['output']>;
|
|
189
189
|
zimbraTwoFactorAuthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
190
|
+
zimbraTwoFactorAuthMethodAllowed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
191
|
+
zimbraTwoFactorAuthMethodEnabled?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
190
192
|
};
|
|
191
193
|
export declare enum AccountType {
|
|
192
194
|
Imap = "imap",
|
|
@@ -377,6 +379,10 @@ export type AuthResponse = {
|
|
|
377
379
|
skin?: Maybe<Array<Maybe<Skin>>>;
|
|
378
380
|
trustedDevicesEnabled?: Maybe<TrustedDevicesEnabled>;
|
|
379
381
|
twoFactorAuthRequired?: Maybe<TwoFactorAuthRequired>;
|
|
382
|
+
zimbraPrefPasswordRecoveryAddress?: Maybe<StringContent>;
|
|
383
|
+
zimbraPrefPrimaryTwoFactorAuthMethod?: Maybe<StringContent>;
|
|
384
|
+
zimbraTwoFactorAuthMethodAllowed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
385
|
+
zimbraTwoFactorAuthMethodEnabled?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
380
386
|
};
|
|
381
387
|
export type AuthToken = {
|
|
382
388
|
__typename?: 'AuthToken';
|
|
@@ -797,6 +803,7 @@ export type Contact = {
|
|
|
797
803
|
fileAsStr?: Maybe<Scalars['String']['output']>;
|
|
798
804
|
folderId?: Maybe<Scalars['ID']['output']>;
|
|
799
805
|
id: Scalars['ID']['output'];
|
|
806
|
+
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
800
807
|
memberOf?: Maybe<Scalars['String']['output']>;
|
|
801
808
|
members?: Maybe<Array<Maybe<ContactListMember>>>;
|
|
802
809
|
revision?: Maybe<Scalars['Float']['output']>;
|
|
@@ -1021,6 +1028,7 @@ export type Conversation = MailItem & {
|
|
|
1021
1028
|
size?: Maybe<Scalars['Float']['output']>;
|
|
1022
1029
|
sortField?: Maybe<Scalars['String']['output']>;
|
|
1023
1030
|
subject?: Maybe<Scalars['String']['output']>;
|
|
1031
|
+
subscribe?: Maybe<Array<Maybe<DlSubscribe>>>;
|
|
1024
1032
|
tagNames?: Maybe<Scalars['String']['output']>;
|
|
1025
1033
|
tags?: Maybe<Scalars['String']['output']>;
|
|
1026
1034
|
unread?: Maybe<Scalars['Float']['output']>;
|
|
@@ -1106,13 +1114,86 @@ export type CustomMetadataMeta = {
|
|
|
1106
1114
|
_attrs?: Maybe<Array<Maybe<CustomMetadataAttrs>>>;
|
|
1107
1115
|
section?: Maybe<Scalars['String']['output']>;
|
|
1108
1116
|
};
|
|
1117
|
+
export type Dl = {
|
|
1118
|
+
__typename?: 'DL';
|
|
1119
|
+
dl?: Maybe<Array<Maybe<DlDetails>>>;
|
|
1120
|
+
};
|
|
1121
|
+
export type DlActionAttrInput = {
|
|
1122
|
+
attributeName?: InputMaybe<Scalars['String']['input']>;
|
|
1123
|
+
content?: InputMaybe<Scalars['String']['input']>;
|
|
1124
|
+
};
|
|
1125
|
+
export type DlActionGranteeInput = {
|
|
1126
|
+
_content?: InputMaybe<Scalars['String']['input']>;
|
|
1127
|
+
by?: InputMaybe<Scalars['String']['input']>;
|
|
1128
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1129
|
+
};
|
|
1130
|
+
export type DlActionInput = {
|
|
1131
|
+
attributes?: InputMaybe<Array<InputMaybe<DlActionAttrInput>>>;
|
|
1132
|
+
distributionListMembers?: InputMaybe<Array<InputMaybe<MethodInput>>>;
|
|
1133
|
+
operation?: InputMaybe<Scalars['String']['input']>;
|
|
1134
|
+
owner?: InputMaybe<Array<InputMaybe<DlActionGranteeInput>>>;
|
|
1135
|
+
right?: InputMaybe<DlActionRightInput>;
|
|
1136
|
+
subsReq?: InputMaybe<SubRequestInput>;
|
|
1137
|
+
};
|
|
1138
|
+
export type DlActionRightInput = {
|
|
1139
|
+
grantee?: InputMaybe<Array<InputMaybe<DlActionGranteeInput>>>;
|
|
1140
|
+
right?: InputMaybe<Scalars['String']['input']>;
|
|
1141
|
+
};
|
|
1142
|
+
export type DlAttributes = {
|
|
1143
|
+
__typename?: 'DLAttributes';
|
|
1144
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1145
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1146
|
+
mail?: Maybe<Scalars['String']['output']>;
|
|
1147
|
+
zimbraDistributionListSubscriptionPolicy?: Maybe<Scalars['String']['output']>;
|
|
1148
|
+
zimbraDistributionListUnsubscriptionPolicy?: Maybe<Scalars['String']['output']>;
|
|
1149
|
+
zimbraHideInGal?: Maybe<Scalars['String']['output']>;
|
|
1150
|
+
zimbraMailAlias?: Maybe<Scalars['String']['output']>;
|
|
1151
|
+
zimbraMailStatus?: Maybe<Scalars['String']['output']>;
|
|
1152
|
+
zimbraNotes?: Maybe<Scalars['String']['output']>;
|
|
1153
|
+
};
|
|
1109
1154
|
export type DlDetails = {
|
|
1110
1155
|
__typename?: 'DLDetails';
|
|
1156
|
+
_attrs?: Maybe<DlAttributes>;
|
|
1157
|
+
dynamic?: Maybe<Scalars['Boolean']['output']>;
|
|
1158
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1159
|
+
isMember?: Maybe<Scalars['Boolean']['output']>;
|
|
1160
|
+
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
1161
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1162
|
+
owners?: Maybe<Array<Maybe<DlOwners>>>;
|
|
1163
|
+
rights?: Maybe<Array<Maybe<DlRights>>>;
|
|
1164
|
+
};
|
|
1165
|
+
export type DlGrantee = {
|
|
1166
|
+
__typename?: 'DLGrantee';
|
|
1167
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1168
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1169
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1170
|
+
};
|
|
1171
|
+
export type DlMembersDetails = {
|
|
1172
|
+
__typename?: 'DLMembersDetails';
|
|
1111
1173
|
dlGroupMember?: Maybe<Array<Maybe<DlGroupMember>>>;
|
|
1112
1174
|
dlm?: Maybe<Array<Maybe<Dlm>>>;
|
|
1113
1175
|
more?: Maybe<Scalars['Boolean']['output']>;
|
|
1114
1176
|
total?: Maybe<Scalars['Int']['output']>;
|
|
1115
1177
|
};
|
|
1178
|
+
export type DlOwner = {
|
|
1179
|
+
__typename?: 'DLOwner';
|
|
1180
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1181
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1182
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1183
|
+
};
|
|
1184
|
+
export type DlOwners = {
|
|
1185
|
+
__typename?: 'DLOwners';
|
|
1186
|
+
owner?: Maybe<Array<Maybe<DlOwner>>>;
|
|
1187
|
+
};
|
|
1188
|
+
export type DlRight = {
|
|
1189
|
+
__typename?: 'DLRight';
|
|
1190
|
+
grantee?: Maybe<Array<Maybe<DlGrantee>>>;
|
|
1191
|
+
right?: Maybe<Scalars['String']['output']>;
|
|
1192
|
+
};
|
|
1193
|
+
export type DlRights = {
|
|
1194
|
+
__typename?: 'DLRights';
|
|
1195
|
+
right?: Maybe<Array<Maybe<DlRight>>>;
|
|
1196
|
+
};
|
|
1116
1197
|
export type Dls = {
|
|
1117
1198
|
__typename?: 'DLS';
|
|
1118
1199
|
_attrs?: Maybe<DlsAttrs>;
|
|
@@ -1134,6 +1215,14 @@ export type DlsDetails = {
|
|
|
1134
1215
|
__typename?: 'DLSDetails';
|
|
1135
1216
|
dls?: Maybe<Array<Maybe<Dls>>>;
|
|
1136
1217
|
};
|
|
1218
|
+
export type DlSelectorInput = {
|
|
1219
|
+
_content?: InputMaybe<Scalars['String']['input']>;
|
|
1220
|
+
by?: InputMaybe<Scalars['String']['input']>;
|
|
1221
|
+
};
|
|
1222
|
+
export type DlSubscribe = {
|
|
1223
|
+
__typename?: 'DLSubscribe';
|
|
1224
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
1225
|
+
};
|
|
1137
1226
|
export type DataSource = {
|
|
1138
1227
|
__typename?: 'DataSource';
|
|
1139
1228
|
connectionType?: Maybe<Scalars['String']['output']>;
|
|
@@ -1213,6 +1302,10 @@ export type DismissInput = {
|
|
|
1213
1302
|
dismissedAt: Scalars['Float']['input'];
|
|
1214
1303
|
id: Scalars['ID']['input'];
|
|
1215
1304
|
};
|
|
1305
|
+
export type DistributionListActionInput = {
|
|
1306
|
+
action?: InputMaybe<DlActionInput>;
|
|
1307
|
+
dl?: InputMaybe<DlSelectorInput>;
|
|
1308
|
+
};
|
|
1216
1309
|
export type DlAttrs = {
|
|
1217
1310
|
__typename?: 'DlAttrs';
|
|
1218
1311
|
commonName?: Maybe<Scalars['String']['output']>;
|
|
@@ -1291,7 +1384,9 @@ export type EmailAddressInput = {
|
|
|
1291
1384
|
export type EnableTwoFactorAuthInput = {
|
|
1292
1385
|
authToken?: InputMaybe<Scalars['String']['input']>;
|
|
1293
1386
|
csrfTokenSecured: Scalars['Boolean']['input'];
|
|
1387
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
1294
1388
|
ignoreSameSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1389
|
+
method: Scalars['String']['input'];
|
|
1295
1390
|
name: Scalars['String']['input'];
|
|
1296
1391
|
password?: InputMaybe<Scalars['String']['input']>;
|
|
1297
1392
|
twoFactorCode?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2026,6 +2121,7 @@ export type MailItem = {
|
|
|
2026
2121
|
size?: Maybe<Scalars['Float']['output']>;
|
|
2027
2122
|
sortField?: Maybe<Scalars['String']['output']>;
|
|
2028
2123
|
subject?: Maybe<Scalars['String']['output']>;
|
|
2124
|
+
subscribe?: Maybe<Array<Maybe<DlSubscribe>>>;
|
|
2029
2125
|
tagNames?: Maybe<Scalars['String']['output']>;
|
|
2030
2126
|
tags?: Maybe<Scalars['String']['output']>;
|
|
2031
2127
|
};
|
|
@@ -2140,6 +2236,7 @@ export type MessageInfo = MailItem & {
|
|
|
2140
2236
|
size?: Maybe<Scalars['Float']['output']>;
|
|
2141
2237
|
sortField?: Maybe<Scalars['String']['output']>;
|
|
2142
2238
|
subject?: Maybe<Scalars['String']['output']>;
|
|
2239
|
+
subscribe?: Maybe<Array<Maybe<DlSubscribe>>>;
|
|
2143
2240
|
tagNames?: Maybe<Scalars['String']['output']>;
|
|
2144
2241
|
tags?: Maybe<Scalars['String']['output']>;
|
|
2145
2242
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -2256,6 +2353,7 @@ export type MsgWithGroupInfo = MailItem & {
|
|
|
2256
2353
|
size?: Maybe<Scalars['Float']['output']>;
|
|
2257
2354
|
sortField?: Maybe<Scalars['String']['output']>;
|
|
2258
2355
|
subject?: Maybe<Scalars['String']['output']>;
|
|
2356
|
+
subscribe?: Maybe<Array<Maybe<DlSubscribe>>>;
|
|
2259
2357
|
tagNames?: Maybe<Scalars['String']['output']>;
|
|
2260
2358
|
tags?: Maybe<Scalars['String']['output']>;
|
|
2261
2359
|
};
|
|
@@ -2298,6 +2396,7 @@ export type Mutation = {
|
|
|
2298
2396
|
deleteSignature?: Maybe<Scalars['Boolean']['output']>;
|
|
2299
2397
|
disableTwoFactorAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
2300
2398
|
dismissCalendarItem?: Maybe<Scalars['Boolean']['output']>;
|
|
2399
|
+
distributionListAction?: Maybe<Scalars['Boolean']['output']>;
|
|
2301
2400
|
documentAction?: Maybe<DocumentActionData>;
|
|
2302
2401
|
enableTwoFactorAuth?: Maybe<EnableTwoFactorAuthResponse>;
|
|
2303
2402
|
folderAction?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2347,10 +2446,12 @@ export type Mutation = {
|
|
|
2347
2446
|
sendInviteReply?: Maybe<InviteReplyResponse>;
|
|
2348
2447
|
sendMessage?: Maybe<SendMessageResponse>;
|
|
2349
2448
|
sendShareNotification?: Maybe<Scalars['Boolean']['output']>;
|
|
2449
|
+
sendTwoFactorAuthCode?: Maybe<SendTwoFactorAuthCodeResponse>;
|
|
2350
2450
|
setCustomMetadata?: Maybe<Scalars['Boolean']['output']>;
|
|
2351
2451
|
setMailboxMetadata?: Maybe<Scalars['Boolean']['output']>;
|
|
2352
2452
|
setRecoveryAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
2353
2453
|
snoozeCalendarItem?: Maybe<Scalars['Boolean']['output']>;
|
|
2454
|
+
subscribeDistributionList?: Maybe<Scalars['String']['output']>;
|
|
2354
2455
|
tagAction?: Maybe<Scalars['Boolean']['output']>;
|
|
2355
2456
|
testExternalAccount?: Maybe<ExternalAccountTestResponse>;
|
|
2356
2457
|
uploadMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -2501,10 +2602,16 @@ export type MutationDeleteIdentityArgs = {
|
|
|
2501
2602
|
export type MutationDeleteSignatureArgs = {
|
|
2502
2603
|
signature: NameIdInput;
|
|
2503
2604
|
};
|
|
2605
|
+
export type MutationDisableTwoFactorAuthArgs = {
|
|
2606
|
+
method: Scalars['String']['input'];
|
|
2607
|
+
};
|
|
2504
2608
|
export type MutationDismissCalendarItemArgs = {
|
|
2505
2609
|
appointment?: InputMaybe<Array<InputMaybe<DismissInput>>>;
|
|
2506
2610
|
task?: InputMaybe<DismissInput>;
|
|
2507
2611
|
};
|
|
2612
|
+
export type MutationDistributionListActionArgs = {
|
|
2613
|
+
dlActions: DistributionListActionInput;
|
|
2614
|
+
};
|
|
2508
2615
|
export type MutationDocumentActionArgs = {
|
|
2509
2616
|
action: FolderActionInput;
|
|
2510
2617
|
};
|
|
@@ -2675,6 +2782,9 @@ export type MutationSendMessageArgs = {
|
|
|
2675
2782
|
export type MutationSendShareNotificationArgs = {
|
|
2676
2783
|
shareNotification: ShareNotificationInput;
|
|
2677
2784
|
};
|
|
2785
|
+
export type MutationSendTwoFactorAuthCodeArgs = {
|
|
2786
|
+
options: SendTwoFactorAuthCodeInput;
|
|
2787
|
+
};
|
|
2678
2788
|
export type MutationSetCustomMetadataArgs = {
|
|
2679
2789
|
customMetaData: CustomMetadataInput;
|
|
2680
2790
|
};
|
|
@@ -2692,6 +2802,11 @@ export type MutationSnoozeCalendarItemArgs = {
|
|
|
2692
2802
|
appointment?: InputMaybe<Array<InputMaybe<SnoozeInput>>>;
|
|
2693
2803
|
task?: InputMaybe<SnoozeInput>;
|
|
2694
2804
|
};
|
|
2805
|
+
export type MutationSubscribeDistributionListArgs = {
|
|
2806
|
+
by?: InputMaybe<Scalars['String']['input']>;
|
|
2807
|
+
dl: Scalars['String']['input'];
|
|
2808
|
+
op: Scalars['String']['input'];
|
|
2809
|
+
};
|
|
2695
2810
|
export type MutationTagActionArgs = {
|
|
2696
2811
|
action?: InputMaybe<FolderActionInput>;
|
|
2697
2812
|
};
|
|
@@ -2858,6 +2973,7 @@ export type Preferences = {
|
|
|
2858
2973
|
zimbraPrefDisplayExternalImages?: Maybe<Scalars['Boolean']['output']>;
|
|
2859
2974
|
zimbraPrefDisplayTimeInMailList?: Maybe<Scalars['Boolean']['output']>;
|
|
2860
2975
|
zimbraPrefExternalSendersType?: Maybe<ExternalSendersType>;
|
|
2976
|
+
zimbraPrefForwardReplyInOriginalFormat?: Maybe<Scalars['Boolean']['output']>;
|
|
2861
2977
|
zimbraPrefGroupMailBy?: Maybe<Scalars['String']['output']>;
|
|
2862
2978
|
zimbraPrefHtmlEditorDefaultFontColor?: Maybe<Scalars['String']['output']>;
|
|
2863
2979
|
zimbraPrefHtmlEditorDefaultFontFamily?: Maybe<Scalars['String']['output']>;
|
|
@@ -2884,6 +3000,7 @@ export type Preferences = {
|
|
|
2884
3000
|
zimbraPrefPasswordRecoveryAddress?: Maybe<Scalars['String']['output']>;
|
|
2885
3001
|
zimbraPrefPasswordRecoveryAddressStatus?: Maybe<PasswordRecoveryAddressStatus>;
|
|
2886
3002
|
zimbraPrefPowerPasteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3003
|
+
zimbraPrefPrimaryTwoFactorAuthMethod?: Maybe<Scalars['String']['output']>;
|
|
2887
3004
|
zimbraPrefReadingPaneEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2888
3005
|
zimbraPrefReadingPaneLocation?: Maybe<ReadingPaneLocation>;
|
|
2889
3006
|
zimbraPrefSaveToSent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2919,6 +3036,7 @@ export type PreferencesInput = {
|
|
|
2919
3036
|
zimbraPrefDisplayExternalImages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2920
3037
|
zimbraPrefDisplayTimeInMailList?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2921
3038
|
zimbraPrefExternalSendersType?: InputMaybe<ExternalSendersType>;
|
|
3039
|
+
zimbraPrefForwardReplyInOriginalFormat?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2922
3040
|
zimbraPrefGroupMailBy?: InputMaybe<Scalars['String']['input']>;
|
|
2923
3041
|
zimbraPrefHtmlEditorDefaultFontColor?: InputMaybe<Scalars['String']['input']>;
|
|
2924
3042
|
zimbraPrefHtmlEditorDefaultFontFamily?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2943,6 +3061,7 @@ export type PreferencesInput = {
|
|
|
2943
3061
|
zimbraPrefOutOfOfficeSuppressExternalReply?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2944
3062
|
zimbraPrefOutOfOfficeUntilDate?: InputMaybe<Scalars['String']['input']>;
|
|
2945
3063
|
zimbraPrefPowerPasteEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3064
|
+
zimbraPrefPrimaryTwoFactorAuthMethod?: InputMaybe<Scalars['String']['input']>;
|
|
2946
3065
|
zimbraPrefReadingPaneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2947
3066
|
zimbraPrefReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
|
|
2948
3067
|
zimbraPrefSaveToSent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3002,7 +3121,8 @@ export type Query = {
|
|
|
3002
3121
|
getCustomMetadata?: Maybe<CustomMetadata>;
|
|
3003
3122
|
getDataSources: DataSources;
|
|
3004
3123
|
getDeviceStatus?: Maybe<Array<Maybe<Device>>>;
|
|
3005
|
-
|
|
3124
|
+
getDistributionList?: Maybe<Dl>;
|
|
3125
|
+
getDistributionListMembers?: Maybe<DlMembersDetails>;
|
|
3006
3126
|
getDocumentShareURL?: Maybe<GetDocumentShareUrlResponse>;
|
|
3007
3127
|
getFilterRules?: Maybe<Array<Maybe<Filter>>>;
|
|
3008
3128
|
getFolder?: Maybe<Folder>;
|
|
@@ -3112,6 +3232,12 @@ export type QueryGetCustomMetadataArgs = {
|
|
|
3112
3232
|
id: Scalars['ID']['input'];
|
|
3113
3233
|
section?: InputMaybe<Scalars['String']['input']>;
|
|
3114
3234
|
};
|
|
3235
|
+
export type QueryGetDistributionListArgs = {
|
|
3236
|
+
by?: InputMaybe<Scalars['String']['input']>;
|
|
3237
|
+
dl?: InputMaybe<Scalars['String']['input']>;
|
|
3238
|
+
needOwners?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3239
|
+
needRights?: InputMaybe<Scalars['String']['input']>;
|
|
3240
|
+
};
|
|
3115
3241
|
export type QueryGetDistributionListMembersArgs = {
|
|
3116
3242
|
dl?: InputMaybe<Scalars['String']['input']>;
|
|
3117
3243
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3510,6 +3636,14 @@ export type SendMessageResponse = {
|
|
|
3510
3636
|
__typename?: 'SendMessageResponse';
|
|
3511
3637
|
message?: Maybe<Array<Maybe<MsgWithGroupInfo>>>;
|
|
3512
3638
|
};
|
|
3639
|
+
export type SendTwoFactorAuthCodeInput = {
|
|
3640
|
+
action: Scalars['String']['input'];
|
|
3641
|
+
authToken: Scalars['String']['input'];
|
|
3642
|
+
};
|
|
3643
|
+
export type SendTwoFactorAuthCodeResponse = {
|
|
3644
|
+
__typename?: 'SendTwoFactorAuthCodeResponse';
|
|
3645
|
+
status?: Maybe<Array<Maybe<StringContent>>>;
|
|
3646
|
+
};
|
|
3513
3647
|
export type Session = {
|
|
3514
3648
|
__typename?: 'Session';
|
|
3515
3649
|
_content?: Maybe<Scalars['String']['output']>;
|
|
@@ -3703,6 +3837,14 @@ export type StringContent = {
|
|
|
3703
3837
|
__typename?: 'StringContent';
|
|
3704
3838
|
_content?: Maybe<Scalars['String']['output']>;
|
|
3705
3839
|
};
|
|
3840
|
+
export type SubRequestInput = {
|
|
3841
|
+
_content?: InputMaybe<Scalars['String']['input']>;
|
|
3842
|
+
op?: InputMaybe<Scalars['String']['input']>;
|
|
3843
|
+
};
|
|
3844
|
+
export type SubscribeDistributionList = {
|
|
3845
|
+
__typename?: 'SubscribeDistributionList';
|
|
3846
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
3847
|
+
};
|
|
3706
3848
|
export type Tag = {
|
|
3707
3849
|
__typename?: 'Tag';
|
|
3708
3850
|
color?: Maybe<Scalars['Int']['output']>;
|