@zimbra/api-client 85.0.1 → 86.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.
@@ -1,28 +1,28 @@
1
- export declare type Maybe<T> = T | null;
2
- export declare type InputMaybe<T> = Maybe<T>;
3
- export declare type Exact<T extends {
1
+ export type Maybe<T> = T | null;
2
+ export type InputMaybe<T> = Maybe<T>;
3
+ export type Exact<T extends {
4
4
  [key: string]: unknown;
5
5
  }> = {
6
6
  [K in keyof T]: T[K];
7
7
  };
8
- export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
8
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
9
9
  [SubKey in K]?: Maybe<T[SubKey]>;
10
10
  };
11
- export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
11
+ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
12
12
  [SubKey in K]: Maybe<T[SubKey]>;
13
13
  };
14
- export declare type Scalars = {
14
+ export type Scalars = {
15
15
  ID: string;
16
16
  String: string;
17
17
  Boolean: boolean;
18
18
  Int: number;
19
19
  Float: number;
20
20
  };
21
- export declare type Acl = {
21
+ export type Acl = {
22
22
  __typename?: 'ACL';
23
23
  grant?: Maybe<Array<Maybe<AclGrant>>>;
24
24
  };
25
- export declare type AclGrant = {
25
+ export type AclGrant = {
26
26
  __typename?: 'ACLGrant';
27
27
  address?: Maybe<Scalars['String']>;
28
28
  granteeType?: Maybe<GranteeType>;
@@ -31,7 +31,7 @@ export declare type AclGrant = {
31
31
  permissions?: Maybe<Scalars['String']>;
32
32
  zimbraId?: Maybe<Scalars['ID']>;
33
33
  };
34
- export declare type AccountAceInfo = {
34
+ export type AccountAceInfo = {
35
35
  __typename?: 'AccountACEInfo';
36
36
  address?: Maybe<Scalars['String']>;
37
37
  checkGrantee?: Maybe<Scalars['Boolean']>;
@@ -42,7 +42,7 @@ export declare type AccountAceInfo = {
42
42
  right: Scalars['String'];
43
43
  zimbraId?: Maybe<Scalars['ID']>;
44
44
  };
45
- export declare type AccountAceInfoInput = {
45
+ export type AccountAceInfoInput = {
46
46
  address?: InputMaybe<Scalars['String']>;
47
47
  checkGrantee?: InputMaybe<Scalars['Boolean']>;
48
48
  deny?: InputMaybe<Scalars['Boolean']>;
@@ -52,12 +52,12 @@ export declare type AccountAceInfoInput = {
52
52
  right: Scalars['String'];
53
53
  zimbraId?: InputMaybe<Scalars['ID']>;
54
54
  };
55
- export declare type AccountCos = {
55
+ export type AccountCos = {
56
56
  __typename?: 'AccountCos';
57
57
  id?: Maybe<Scalars['ID']>;
58
58
  name?: Maybe<Scalars['String']>;
59
59
  };
60
- export declare type AccountInfo = {
60
+ export type AccountInfo = {
61
61
  __typename?: 'AccountInfo';
62
62
  adminDelegated?: Maybe<Scalars['Boolean']>;
63
63
  attrs?: Maybe<AccountInfoAttrs>;
@@ -77,7 +77,7 @@ export declare type AccountInfo = {
77
77
  version?: Maybe<Scalars['String']>;
78
78
  zimlets?: Maybe<AccountZimlet>;
79
79
  };
80
- export declare type AccountInfoAttrs = {
80
+ export type AccountInfoAttrs = {
81
81
  __typename?: 'AccountInfoAttrs';
82
82
  displayName?: Maybe<Scalars['String']>;
83
83
  zimbraBlockEmailSendFromImapPop?: Maybe<Scalars['Boolean']>;
@@ -118,6 +118,7 @@ export declare type AccountInfoAttrs = {
118
118
  zimbraFeatureReadReceiptsEnabled?: Maybe<Scalars['Boolean']>;
119
119
  zimbraFeatureRelatedContactsEnabled?: Maybe<Scalars['Boolean']>;
120
120
  zimbraFeatureResetPasswordStatus?: Maybe<ResetPasswordStatus>;
121
+ zimbraFeatureRetentionPolicyEnabled?: Maybe<Scalars['Boolean']>;
121
122
  zimbraFeatureSharingEnabled?: Maybe<Scalars['Boolean']>;
122
123
  zimbraFeatureTaggingEnabled?: Maybe<Scalars['Boolean']>;
123
124
  zimbraFeatureTasksEnabled?: Maybe<Scalars['Boolean']>;
@@ -166,11 +167,11 @@ export declare enum AccountType {
166
167
  Imap = "imap",
167
168
  Pop3 = "pop3"
168
169
  }
169
- export declare type AccountZimlet = {
170
+ export type AccountZimlet = {
170
171
  __typename?: 'AccountZimlet';
171
172
  zimlet?: Maybe<Array<Maybe<AccountZimletInfo>>>;
172
173
  };
173
- export declare type AccountZimletConfigInfo = {
174
+ export type AccountZimletConfigInfo = {
174
175
  __typename?: 'AccountZimletConfigInfo';
175
176
  global?: Maybe<Array<Maybe<ZimletConfigGlobal>>>;
176
177
  host?: Maybe<Array<Maybe<ZimletConfigHost>>>;
@@ -178,13 +179,13 @@ export declare type AccountZimletConfigInfo = {
178
179
  property?: Maybe<Array<Maybe<ZimletConfigProperty>>>;
179
180
  version?: Maybe<Scalars['String']>;
180
181
  };
181
- export declare type AccountZimletContext = {
182
+ export type AccountZimletContext = {
182
183
  __typename?: 'AccountZimletContext';
183
184
  baseUrl?: Maybe<Scalars['String']>;
184
185
  presence?: Maybe<ZimletPresence>;
185
186
  priority?: Maybe<Scalars['Int']>;
186
187
  };
187
- export declare type AccountZimletDesc = {
188
+ export type AccountZimletDesc = {
188
189
  __typename?: 'AccountZimletDesc';
189
190
  description?: Maybe<Scalars['String']>;
190
191
  extension?: Maybe<Scalars['String']>;
@@ -193,24 +194,24 @@ export declare type AccountZimletDesc = {
193
194
  version?: Maybe<Scalars['String']>;
194
195
  zimbraXZimletCompatibleSemVer?: Maybe<Scalars['String']>;
195
196
  };
196
- export declare type AccountZimletInfo = {
197
+ export type AccountZimletInfo = {
197
198
  __typename?: 'AccountZimletInfo';
198
199
  zimlet?: Maybe<Array<Maybe<AccountZimletDesc>>>;
199
200
  zimletConfig?: Maybe<Array<Maybe<AccountZimletConfigInfo>>>;
200
201
  zimletContext?: Maybe<Array<Maybe<AccountZimletContext>>>;
201
202
  };
202
- export declare type ActionData = {
203
+ export type ActionData = {
203
204
  __typename?: 'ActionData';
204
205
  address?: Maybe<Scalars['String']>;
205
206
  id?: Maybe<Scalars['ID']>;
206
207
  op?: Maybe<Scalars['String']>;
207
208
  zimbraId?: Maybe<Scalars['ID']>;
208
209
  };
209
- export declare type ActionOpResponse = {
210
+ export type ActionOpResponse = {
210
211
  __typename?: 'ActionOpResponse';
211
212
  action?: Maybe<ActionOpResponseData>;
212
213
  };
213
- export declare type ActionOpResponseData = {
214
+ export type ActionOpResponseData = {
214
215
  __typename?: 'ActionOpResponseData';
215
216
  id: Scalars['ID'];
216
217
  op: Scalars['String'];
@@ -224,13 +225,13 @@ export declare enum ActionTypeName {
224
225
  MsgAction = "MsgAction",
225
226
  TagAction = "TagAction"
226
227
  }
227
- export declare type AddMsgInput = {
228
+ export type AddMsgInput = {
228
229
  absFolderPath?: InputMaybe<Scalars['String']>;
229
230
  content?: InputMaybe<Scalars['String']>;
230
231
  folderId: Scalars['ID'];
231
232
  meta?: InputMaybe<Scalars['String']>;
232
233
  };
233
- export declare type AddRecurrenceInfo = {
234
+ export type AddRecurrenceInfo = {
234
235
  __typename?: 'AddRecurrenceInfo';
235
236
  add?: Maybe<Array<Maybe<AddRecurrenceInfo>>>;
236
237
  cancel?: Maybe<Array<Maybe<CancelRuleInfo>>>;
@@ -238,7 +239,7 @@ export declare type AddRecurrenceInfo = {
238
239
  exclude?: Maybe<Array<Maybe<ExcludeRecurrenceInfo>>>;
239
240
  rule?: Maybe<Array<Maybe<SimpleRepeatingRule>>>;
240
241
  };
241
- export declare type AddressCondition = {
242
+ export type AddressCondition = {
242
243
  __typename?: 'AddressCondition';
243
244
  caseSensitive?: Maybe<Scalars['Boolean']>;
244
245
  countComparison?: Maybe<Scalars['String']>;
@@ -250,7 +251,7 @@ export declare type AddressCondition = {
250
251
  value: Scalars['String'];
251
252
  valueComparison?: Maybe<Scalars['String']>;
252
253
  };
253
- export declare type AddressConditionInput = {
254
+ export type AddressConditionInput = {
254
255
  caseSensitive?: InputMaybe<Scalars['Boolean']>;
255
256
  countComparison?: InputMaybe<Scalars['String']>;
256
257
  header: Scalars['String'];
@@ -271,7 +272,7 @@ export declare enum AddressType {
271
272
  S = "s",
272
273
  T = "t"
273
274
  }
274
- export declare type Alarm = {
275
+ export type Alarm = {
275
276
  __typename?: 'Alarm';
276
277
  alarmInstStart?: Maybe<Scalars['Float']>;
277
278
  componentNum?: Maybe<Scalars['Int']>;
@@ -293,38 +294,38 @@ export declare enum AlarmRelatedTo {
293
294
  End = "END",
294
295
  Start = "START"
295
296
  }
296
- export declare type AppSpecificPassword = {
297
+ export type AppSpecificPassword = {
297
298
  __typename?: 'AppSpecificPassword';
298
299
  appName?: Maybe<Scalars['String']>;
299
300
  created?: Maybe<Scalars['Float']>;
300
301
  lastUsed?: Maybe<Scalars['Float']>;
301
302
  };
302
- export declare type AppSpecificPasswords = {
303
+ export type AppSpecificPasswords = {
303
304
  __typename?: 'AppSpecificPasswords';
304
305
  passwordData?: Maybe<Array<Maybe<AppSpecificPassword>>>;
305
306
  };
306
- export declare type AppSpecificPasswordsResponse = {
307
+ export type AppSpecificPasswordsResponse = {
307
308
  __typename?: 'AppSpecificPasswordsResponse';
308
309
  appSpecificPasswords?: Maybe<AppSpecificPasswords>;
309
310
  maxAppPasswords?: Maybe<Array<Maybe<MaxAppPasswords>>>;
310
311
  };
311
- export declare type AppointmentInfo = {
312
+ export type AppointmentInfo = {
312
313
  __typename?: 'AppointmentInfo';
313
314
  id: Scalars['ID'];
314
315
  invitations?: Maybe<Array<Maybe<Invitation>>>;
315
316
  };
316
- export declare type Attachment = {
317
+ export type Attachment = {
317
318
  __typename?: 'Attachment';
318
319
  content?: Maybe<Scalars['String']>;
319
320
  id?: Maybe<Scalars['ID']>;
320
321
  };
321
- export declare type AttachmentInput = {
322
+ export type AttachmentInput = {
322
323
  attachmentId?: InputMaybe<Scalars['String']>;
323
324
  documents?: InputMaybe<Array<InputMaybe<DocumentInput>>>;
324
325
  existingAttachments?: InputMaybe<Array<InputMaybe<ExistingAttachmentInput>>>;
325
326
  messages?: InputMaybe<Array<InputMaybe<EmlInput>>>;
326
327
  };
327
- export declare type AuthResponse = {
328
+ export type AuthResponse = {
328
329
  __typename?: 'AuthResponse';
329
330
  authToken?: Maybe<Array<Maybe<AuthToken>>>;
330
331
  csrfToken?: Maybe<CsrfToken>;
@@ -334,15 +335,15 @@ export declare type AuthResponse = {
334
335
  trustedDevicesEnabled?: Maybe<TrustedDevicesEnabled>;
335
336
  twoFactorAuthRequired?: Maybe<TwoFactorAuthRequired>;
336
337
  };
337
- export declare type AuthToken = {
338
+ export type AuthToken = {
338
339
  __typename?: 'AuthToken';
339
340
  _content?: Maybe<Scalars['String']>;
340
341
  };
341
- export declare type AutoCompleteGalResponse = {
342
+ export type AutoCompleteGalResponse = {
342
343
  __typename?: 'AutoCompleteGALResponse';
343
344
  contacts?: Maybe<Array<Maybe<Contact>>>;
344
345
  };
345
- export declare type AutoCompleteMatch = {
346
+ export type AutoCompleteMatch = {
346
347
  __typename?: 'AutoCompleteMatch';
347
348
  company?: Maybe<Scalars['String']>;
348
349
  display?: Maybe<Scalars['String']>;
@@ -365,70 +366,70 @@ export declare enum AutoCompleteMatchType {
365
366
  Gal = "gal",
366
367
  RankingTable = "rankingTable"
367
368
  }
368
- export declare type AutoCompleteResponse = {
369
+ export type AutoCompleteResponse = {
369
370
  __typename?: 'AutoCompleteResponse';
370
371
  canBeCached?: Maybe<Scalars['Boolean']>;
371
372
  match?: Maybe<Array<Maybe<AutoCompleteMatch>>>;
372
373
  };
373
- export declare type BasicAction = {
374
+ export type BasicAction = {
374
375
  __typename?: 'BasicAction';
375
376
  index?: Maybe<Scalars['Int']>;
376
377
  };
377
- export declare type BasicActionInput = {
378
+ export type BasicActionInput = {
378
379
  index?: InputMaybe<Scalars['Int']>;
379
380
  };
380
- export declare type BasicCondition = {
381
+ export type BasicCondition = {
381
382
  __typename?: 'BasicCondition';
382
383
  index?: Maybe<Scalars['Int']>;
383
384
  negative?: Maybe<Scalars['Boolean']>;
384
385
  };
385
- export declare type BasicConditionInput = {
386
+ export type BasicConditionInput = {
386
387
  index?: InputMaybe<Scalars['Int']>;
387
388
  negative?: InputMaybe<Scalars['Boolean']>;
388
389
  };
389
- export declare type BodyCondition = {
390
+ export type BodyCondition = {
390
391
  __typename?: 'BodyCondition';
391
392
  caseSensitive?: Maybe<Scalars['Boolean']>;
392
393
  index?: Maybe<Scalars['Int']>;
393
394
  negative?: Maybe<Scalars['Boolean']>;
394
395
  value?: Maybe<Scalars['String']>;
395
396
  };
396
- export declare type BodyConditionInput = {
397
+ export type BodyConditionInput = {
397
398
  caseSensitive?: InputMaybe<Scalars['Boolean']>;
398
399
  index?: InputMaybe<Scalars['Int']>;
399
400
  negative?: InputMaybe<Scalars['Boolean']>;
400
401
  value?: InputMaybe<Scalars['String']>;
401
402
  };
402
- export declare type ByDayRule = {
403
+ export type ByDayRule = {
403
404
  __typename?: 'ByDayRule';
404
405
  wkday?: Maybe<Array<Maybe<WkDay>>>;
405
406
  };
406
- export declare type ByMonthDayRule = {
407
+ export type ByMonthDayRule = {
407
408
  __typename?: 'ByMonthDayRule';
408
409
  dayList?: Maybe<Scalars['String']>;
409
410
  };
410
- export declare type ByMonthRule = {
411
+ export type ByMonthRule = {
411
412
  __typename?: 'ByMonthRule';
412
413
  monthList?: Maybe<Scalars['Int']>;
413
414
  };
414
- export declare type BySetPosRule = {
415
+ export type BySetPosRule = {
415
416
  __typename?: 'BySetPosRule';
416
417
  poslist?: Maybe<Scalars['Int']>;
417
418
  };
418
- export declare type CalOrganizer = {
419
+ export type CalOrganizer = {
419
420
  __typename?: 'CalOrganizer';
420
421
  address?: Maybe<Scalars['String']>;
421
422
  name?: Maybe<Scalars['String']>;
422
423
  sentBy?: Maybe<Scalars['String']>;
423
424
  url?: Maybe<Scalars['String']>;
424
425
  };
425
- export declare type CalResource = {
426
+ export type CalResource = {
426
427
  __typename?: 'CalResource';
427
428
  _attrs?: Maybe<CalResourceAttributes>;
428
429
  id: Scalars['ID'];
429
430
  name?: Maybe<Scalars['String']>;
430
431
  };
431
- export declare type CalResourceAttributes = {
432
+ export type CalResourceAttributes = {
432
433
  __typename?: 'CalResourceAttributes';
433
434
  city?: Maybe<Scalars['String']>;
434
435
  country?: Maybe<Scalars['String']>;
@@ -449,7 +450,7 @@ export declare type CalResourceAttributes = {
449
450
  zimbraCalResSite?: Maybe<Scalars['String']>;
450
451
  zimbraCalResType?: Maybe<Scalars['String']>;
451
452
  };
452
- export declare type CalTzInfo = {
453
+ export type CalTzInfo = {
453
454
  __typename?: 'CalTZInfo';
454
455
  daylight?: Maybe<TzOnsetInfo>;
455
456
  dayname?: Maybe<Scalars['String']>;
@@ -459,39 +460,39 @@ export declare type CalTzInfo = {
459
460
  timezoneDaylightOffset?: Maybe<Scalars['Int']>;
460
461
  timezoneStdOffset?: Maybe<Scalars['Int']>;
461
462
  };
462
- export declare type CalendarCounterAppointmentInput = {
463
+ export type CalendarCounterAppointmentInput = {
463
464
  components: Array<InputMaybe<CalendarItemInviteComponentCounterInput>>;
464
465
  };
465
- export declare type CalendarItemAlarm = {
466
+ export type CalendarItemAlarm = {
466
467
  __typename?: 'CalendarItemAlarm';
467
468
  action: AlarmAction;
468
469
  attendees?: Maybe<Array<Maybe<CalendarItemAlarmAttendees>>>;
469
470
  trigger?: Maybe<Array<Maybe<CalendarItemAlarmTrigger>>>;
470
471
  };
471
- export declare type CalendarItemAlarmAttendees = {
472
+ export type CalendarItemAlarmAttendees = {
472
473
  __typename?: 'CalendarItemAlarmAttendees';
473
474
  email: Scalars['String'];
474
475
  };
475
- export declare type CalendarItemAlarmAttendeesInput = {
476
+ export type CalendarItemAlarmAttendeesInput = {
476
477
  email: Scalars['String'];
477
478
  };
478
- export declare type CalendarItemAlarmInput = {
479
+ export type CalendarItemAlarmInput = {
479
480
  action: AlarmAction;
480
481
  attendees?: InputMaybe<CalendarItemAlarmAttendeesInput>;
481
482
  trigger: CalendarItemAlarmTriggerInput;
482
483
  };
483
- export declare type CalendarItemAlarmTrigger = {
484
+ export type CalendarItemAlarmTrigger = {
484
485
  __typename?: 'CalendarItemAlarmTrigger';
485
486
  relative?: Maybe<Array<Maybe<CalendarItemAlarmTriggerRelative>>>;
486
487
  };
487
- export declare type CalendarItemAlarmTriggerAbsoluteInput = {
488
+ export type CalendarItemAlarmTriggerAbsoluteInput = {
488
489
  date: Scalars['String'];
489
490
  };
490
- export declare type CalendarItemAlarmTriggerInput = {
491
+ export type CalendarItemAlarmTriggerInput = {
491
492
  absolute?: InputMaybe<CalendarItemAlarmTriggerAbsoluteInput>;
492
493
  relative?: InputMaybe<CalendarItemAlarmTriggerRelativeInput>;
493
494
  };
494
- export declare type CalendarItemAlarmTriggerRelative = {
495
+ export type CalendarItemAlarmTriggerRelative = {
495
496
  __typename?: 'CalendarItemAlarmTriggerRelative';
496
497
  days?: Maybe<Scalars['Int']>;
497
498
  hours?: Maybe<Scalars['Int']>;
@@ -501,7 +502,7 @@ export declare type CalendarItemAlarmTriggerRelative = {
501
502
  seconds?: Maybe<Scalars['Int']>;
502
503
  weeks?: Maybe<Scalars['Int']>;
503
504
  };
504
- export declare type CalendarItemAlarmTriggerRelativeInput = {
505
+ export type CalendarItemAlarmTriggerRelativeInput = {
505
506
  days?: InputMaybe<Scalars['Int']>;
506
507
  hours?: InputMaybe<Scalars['Int']>;
507
508
  minutes?: InputMaybe<Scalars['Int']>;
@@ -510,7 +511,7 @@ export declare type CalendarItemAlarmTriggerRelativeInput = {
510
511
  seconds?: InputMaybe<Scalars['Int']>;
511
512
  weeks?: InputMaybe<Scalars['Int']>;
512
513
  };
513
- export declare type CalendarItemAttendee = {
514
+ export type CalendarItemAttendee = {
514
515
  __typename?: 'CalendarItemAttendee';
515
516
  address?: Maybe<Scalars['String']>;
516
517
  calendarUserType?: Maybe<Scalars['String']>;
@@ -519,7 +520,7 @@ export declare type CalendarItemAttendee = {
519
520
  role?: Maybe<ParticipationRole>;
520
521
  rsvp?: Maybe<Scalars['Boolean']>;
521
522
  };
522
- export declare type CalendarItemAttendeesInput = {
523
+ export type CalendarItemAttendeesInput = {
523
524
  address: Scalars['String'];
524
525
  calendarUserType?: InputMaybe<Scalars['String']>;
525
526
  name?: InputMaybe<Scalars['String']>;
@@ -532,11 +533,11 @@ export declare enum CalendarItemClass {
532
533
  Pri = "PRI",
533
534
  Pub = "PUB"
534
535
  }
535
- export declare type CalendarItemDateTimeInput = {
536
+ export type CalendarItemDateTimeInput = {
536
537
  date: Scalars['String'];
537
538
  timezone?: InputMaybe<Scalars['String']>;
538
539
  };
539
- export declare type CalendarItemHitInfo = {
540
+ export type CalendarItemHitInfo = {
540
541
  __typename?: 'CalendarItemHitInfo';
541
542
  aid?: Maybe<Scalars['String']>;
542
543
  alarm?: Maybe<Scalars['Boolean']>;
@@ -579,14 +580,14 @@ export declare type CalendarItemHitInfo = {
579
580
  utcRecurrenceId?: Maybe<Scalars['String']>;
580
581
  x_uid?: Maybe<Scalars['String']>;
581
582
  };
582
- export declare type CalendarItemInput = {
583
+ export type CalendarItemInput = {
583
584
  componentNum?: InputMaybe<Scalars['Int']>;
584
585
  id?: InputMaybe<Scalars['ID']>;
585
586
  message: CalendarItemMessageInput;
586
587
  modifiedSequence?: InputMaybe<Scalars['Float']>;
587
588
  revision?: InputMaybe<Scalars['Float']>;
588
589
  };
589
- export declare type CalendarItemInviteComponentCounterInput = {
590
+ export type CalendarItemInviteComponentCounterInput = {
590
591
  alarms?: InputMaybe<Array<InputMaybe<CalendarItemAlarmInput>>>;
591
592
  allDay?: InputMaybe<Scalars['Boolean']>;
592
593
  attendees?: InputMaybe<Array<InputMaybe<CalendarItemAttendeesInput>>>;
@@ -607,10 +608,10 @@ export declare type CalendarItemInviteComponentCounterInput = {
607
608
  status?: InputMaybe<InviteCompletionStatus>;
608
609
  uid?: InputMaybe<Scalars['String']>;
609
610
  };
610
- export declare type CalendarItemInviteComponentDescriptionInput = {
611
+ export type CalendarItemInviteComponentDescriptionInput = {
611
612
  _content?: InputMaybe<Scalars['String']>;
612
613
  };
613
- export declare type CalendarItemInviteComponentInput = {
614
+ export type CalendarItemInviteComponentInput = {
614
615
  alarms?: InputMaybe<Array<InputMaybe<CalendarItemAlarmInput>>>;
615
616
  allDay?: InputMaybe<Scalars['Boolean']>;
616
617
  attendees?: InputMaybe<Array<InputMaybe<CalendarItemAttendeesInput>>>;
@@ -630,10 +631,10 @@ export declare type CalendarItemInviteComponentInput = {
630
631
  start?: InputMaybe<CalendarItemDateTimeInput>;
631
632
  status?: InputMaybe<InviteCompletionStatus>;
632
633
  };
633
- export declare type CalendarItemInviteInput = {
634
+ export type CalendarItemInviteInput = {
634
635
  components: Array<InputMaybe<CalendarItemInviteComponentInput>>;
635
636
  };
636
- export declare type CalendarItemMessageInput = {
637
+ export type CalendarItemMessageInput = {
637
638
  attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
638
639
  emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
639
640
  folderId?: InputMaybe<Scalars['ID']>;
@@ -642,38 +643,38 @@ export declare type CalendarItemMessageInput = {
642
643
  replyType?: InputMaybe<InviteReplyType>;
643
644
  subject?: InputMaybe<Scalars['String']>;
644
645
  };
645
- export declare type CalendarItemOrganizerInput = {
646
+ export type CalendarItemOrganizerInput = {
646
647
  address?: InputMaybe<Scalars['String']>;
647
648
  name?: InputMaybe<Scalars['String']>;
648
649
  sentBy?: InputMaybe<Scalars['String']>;
649
650
  };
650
- export declare type CalendarItemRecurrenceAddInput = {
651
+ export type CalendarItemRecurrenceAddInput = {
651
652
  rule?: InputMaybe<CalendarItemRecurrenceRuleInput>;
652
653
  };
653
- export declare type CalendarItemRecurrenceByDayInput = {
654
+ export type CalendarItemRecurrenceByDayInput = {
654
655
  wkday?: InputMaybe<Array<InputMaybe<WkDayInput>>>;
655
656
  };
656
- export declare type CalendarItemRecurrenceByMonthDayInput = {
657
+ export type CalendarItemRecurrenceByMonthDayInput = {
657
658
  dayList: Scalars['String'];
658
659
  };
659
- export declare type CalendarItemRecurrenceByMonthInput = {
660
+ export type CalendarItemRecurrenceByMonthInput = {
660
661
  monthList: Scalars['Int'];
661
662
  };
662
- export declare type CalendarItemRecurrenceBySetPosInput = {
663
+ export type CalendarItemRecurrenceBySetPosInput = {
663
664
  poslist: Scalars['Int'];
664
665
  };
665
- export declare type CalendarItemRecurrenceEndCount = {
666
+ export type CalendarItemRecurrenceEndCount = {
666
667
  __typename?: 'CalendarItemRecurrenceEndCount';
667
668
  number?: Maybe<Scalars['Int']>;
668
669
  };
669
- export declare type CalendarItemRecurrenceEndCountInput = {
670
+ export type CalendarItemRecurrenceEndCountInput = {
670
671
  number: Scalars['Int'];
671
672
  };
672
- export declare type CalendarItemRecurrenceEndDate = {
673
+ export type CalendarItemRecurrenceEndDate = {
673
674
  __typename?: 'CalendarItemRecurrenceEndDate';
674
675
  date?: Maybe<Scalars['String']>;
675
676
  };
676
- export declare type CalendarItemRecurrenceEndDateInput = {
677
+ export type CalendarItemRecurrenceEndDateInput = {
677
678
  date: Scalars['String'];
678
679
  };
679
680
  export declare enum CalendarItemRecurrenceFrequency {
@@ -685,14 +686,14 @@ export declare enum CalendarItemRecurrenceFrequency {
685
686
  Wee = "WEE",
686
687
  Yea = "YEA"
687
688
  }
688
- export declare type CalendarItemRecurrenceInput = {
689
+ export type CalendarItemRecurrenceInput = {
689
690
  add?: InputMaybe<CalendarItemRecurrenceAddInput>;
690
691
  };
691
- export declare type CalendarItemRecurrenceIntervalInput = {
692
+ export type CalendarItemRecurrenceIntervalInput = {
692
693
  intervalCount: Scalars['Int'];
693
694
  zimbraPrefAutoAddAppointmentsToCalendar?: InputMaybe<Scalars['Boolean']>;
694
695
  };
695
- export declare type CalendarItemRecurrenceRuleInput = {
696
+ export type CalendarItemRecurrenceRuleInput = {
696
697
  byday?: InputMaybe<CalendarItemRecurrenceByDayInput>;
697
698
  bymonth?: InputMaybe<CalendarItemRecurrenceByMonthInput>;
698
699
  bymonthday?: InputMaybe<CalendarItemRecurrenceByMonthDayInput>;
@@ -702,23 +703,23 @@ export declare type CalendarItemRecurrenceRuleInput = {
702
703
  interval?: InputMaybe<CalendarItemRecurrenceIntervalInput>;
703
704
  until?: InputMaybe<CalendarItemRecurrenceEndDateInput>;
704
705
  };
705
- export declare type CalendarItemReply = {
706
+ export type CalendarItemReply = {
706
707
  __typename?: 'CalendarItemReply';
707
708
  attendee?: Maybe<Scalars['String']>;
708
709
  participationStatus?: Maybe<ParticipationStatus>;
709
710
  };
710
- export declare type CalendarOptionalItemDateTimeInput = {
711
+ export type CalendarOptionalItemDateTimeInput = {
711
712
  date?: InputMaybe<Scalars['String']>;
712
713
  timezone?: InputMaybe<Scalars['String']>;
713
714
  };
714
- export declare type CancelRuleInfo = {
715
+ export type CancelRuleInfo = {
715
716
  __typename?: 'CancelRuleInfo';
716
717
  rangeType?: Maybe<Scalars['Int']>;
717
718
  recurId?: Maybe<Scalars['String']>;
718
719
  ridZ?: Maybe<Scalars['String']>;
719
720
  tz?: Maybe<Scalars['String']>;
720
721
  };
721
- export declare type ClientInfoAttributes = {
722
+ export type ClientInfoAttributes = {
722
723
  __typename?: 'ClientInfoAttributes';
723
724
  zimbraFeatureResetPasswordStatus?: Maybe<ResetPasswordStatus>;
724
725
  zimbraHelpModernURL?: Maybe<Scalars['String']>;
@@ -726,16 +727,16 @@ export declare type ClientInfoAttributes = {
726
727
  zimbraWebClientLogoutURL?: Maybe<Scalars['String']>;
727
728
  zimbraWebClientSkipLogoff?: Maybe<Scalars['Boolean']>;
728
729
  };
729
- export declare type ClientInfoType = {
730
+ export type ClientInfoType = {
730
731
  __typename?: 'ClientInfoType';
731
732
  attributes?: Maybe<ClientInfoAttributes>;
732
733
  };
733
- export declare type ConditionInput = {
734
+ export type ConditionInput = {
734
735
  attr?: InputMaybe<Scalars['String']>;
735
736
  op?: InputMaybe<Scalars['String']>;
736
737
  value?: InputMaybe<Scalars['String']>;
737
738
  };
738
- export declare type ConditionsInput = {
739
+ export type ConditionsInput = {
739
740
  cond?: InputMaybe<Array<InputMaybe<ConditionInput>>>;
740
741
  };
741
742
  export declare enum ConnectionType {
@@ -744,7 +745,7 @@ export declare enum ConnectionType {
744
745
  Tls = "tls",
745
746
  TlsIsAvailable = "tls_is_available"
746
747
  }
747
- export declare type Contact = {
748
+ export type Contact = {
748
749
  __typename?: 'Contact';
749
750
  attributes?: Maybe<ContactAttributes>;
750
751
  certificate?: Maybe<Array<Maybe<SmimeCert>>>;
@@ -759,7 +760,7 @@ export declare type Contact = {
759
760
  tagNames?: Maybe<Scalars['String']>;
760
761
  tags?: Maybe<Scalars['String']>;
761
762
  };
762
- export declare type ContactAttributes = {
763
+ export type ContactAttributes = {
763
764
  __typename?: 'ContactAttributes';
764
765
  anniversary?: Maybe<Scalars['String']>;
765
766
  assistantPhone?: Maybe<Scalars['String']>;
@@ -837,7 +838,7 @@ export declare type ContactAttributes = {
837
838
  workURL?: Maybe<Scalars['String']>;
838
839
  zimbraCalResType?: Maybe<Scalars['String']>;
839
840
  };
840
- export declare type ContactAttrsInput = {
841
+ export type ContactAttrsInput = {
841
842
  anniversary?: InputMaybe<Scalars['String']>;
842
843
  assistantPhone?: InputMaybe<Scalars['String']>;
843
844
  birthday?: InputMaybe<Scalars['String']>;
@@ -912,38 +913,38 @@ export declare type ContactAttrsInput = {
912
913
  workStreet?: InputMaybe<Scalars['String']>;
913
914
  workURL?: InputMaybe<Scalars['String']>;
914
915
  };
915
- export declare type ContactFrequencyData = {
916
+ export type ContactFrequencyData = {
916
917
  __typename?: 'ContactFrequencyData';
917
918
  by?: Maybe<Scalars['String']>;
918
919
  dataPoint?: Maybe<Array<Maybe<ContactFrequencyDataPoints>>>;
919
920
  };
920
- export declare type ContactFrequencyDataPoints = {
921
+ export type ContactFrequencyDataPoints = {
921
922
  __typename?: 'ContactFrequencyDataPoints';
922
923
  label?: Maybe<Scalars['Float']>;
923
924
  value?: Maybe<Scalars['Int']>;
924
925
  };
925
- export declare type ContactFrequencyResponse = {
926
+ export type ContactFrequencyResponse = {
926
927
  __typename?: 'ContactFrequencyResponse';
927
928
  data?: Maybe<Array<Maybe<ContactFrequencyData>>>;
928
929
  };
929
- export declare type ContactFrequencySpec = {
930
+ export type ContactFrequencySpec = {
930
931
  interval: Scalars['String'];
931
932
  range: Scalars['String'];
932
933
  };
933
- export declare type ContactImage = {
934
+ export type ContactImage = {
934
935
  __typename?: 'ContactImage';
935
936
  contentType?: Maybe<Scalars['String']>;
936
937
  filename?: Maybe<Scalars['String']>;
937
938
  part?: Maybe<Scalars['String']>;
938
939
  size?: Maybe<Scalars['String']>;
939
940
  };
940
- export declare type ContactListMember = {
941
+ export type ContactListMember = {
941
942
  __typename?: 'ContactListMember';
942
943
  contacts?: Maybe<Array<Maybe<Contact>>>;
943
944
  type: ContactType;
944
945
  value: Scalars['ID'];
945
946
  };
946
- export declare type ContactListOps = {
947
+ export type ContactListOps = {
947
948
  op: Scalars['String'];
948
949
  type: Scalars['String'];
949
950
  value: Scalars['String'];
@@ -953,7 +954,7 @@ export declare enum ContactType {
953
954
  G = "G",
954
955
  I = "I"
955
956
  }
956
- export declare type Conversation = MailItem & {
957
+ export type Conversation = MailItem & {
957
958
  __typename?: 'Conversation';
958
959
  changeDate?: Maybe<Scalars['Float']>;
959
960
  conversationId?: Maybe<Scalars['ID']>;
@@ -980,25 +981,25 @@ export declare type Conversation = MailItem & {
980
981
  tags?: Maybe<Scalars['String']>;
981
982
  unread?: Maybe<Scalars['Float']>;
982
983
  };
983
- export declare type ConversationCondition = {
984
+ export type ConversationCondition = {
984
985
  __typename?: 'ConversationCondition';
985
986
  index?: Maybe<Scalars['Int']>;
986
987
  negative?: Maybe<Scalars['Boolean']>;
987
988
  where?: Maybe<Scalars['String']>;
988
989
  };
989
- export declare type ConversationConditionInput = {
990
+ export type ConversationConditionInput = {
990
991
  index?: InputMaybe<Scalars['Int']>;
991
992
  negative?: InputMaybe<Scalars['Boolean']>;
992
993
  where?: InputMaybe<Scalars['String']>;
993
994
  };
994
- export declare type CounterAppointmentInput = {
995
+ export type CounterAppointmentInput = {
995
996
  componentNum?: InputMaybe<Scalars['Int']>;
996
997
  id: Scalars['ID'];
997
998
  message: CounterAppointmentMessageInput;
998
999
  modifiedSequence?: InputMaybe<Scalars['Float']>;
999
1000
  revision?: InputMaybe<Scalars['Float']>;
1000
1001
  };
1001
- export declare type CounterAppointmentMessageInput = {
1002
+ export type CounterAppointmentMessageInput = {
1002
1003
  attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
1003
1004
  emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
1004
1005
  folderId?: InputMaybe<Scalars['ID']>;
@@ -1008,60 +1009,60 @@ export declare type CounterAppointmentMessageInput = {
1008
1009
  replyType?: InputMaybe<InviteReplyType>;
1009
1010
  subject?: InputMaybe<Scalars['String']>;
1010
1011
  };
1011
- export declare type CreateAppSpecificPasswordResponse = {
1012
+ export type CreateAppSpecificPasswordResponse = {
1012
1013
  __typename?: 'CreateAppSpecificPasswordResponse';
1013
1014
  password?: Maybe<Scalars['String']>;
1014
1015
  };
1015
- export declare type CreateContactInput = {
1016
+ export type CreateContactInput = {
1016
1017
  attributes: ContactAttrsInput;
1017
1018
  folderId?: InputMaybe<Scalars['ID']>;
1018
1019
  tagNames?: InputMaybe<Scalars['String']>;
1019
1020
  };
1020
- export declare type CreateIdentityInput = {
1021
+ export type CreateIdentityInput = {
1021
1022
  attrs?: InputMaybe<IdentityAttrsInput>;
1022
1023
  name: Scalars['String'];
1023
1024
  };
1024
- export declare type CreateMountpointInput = {
1025
+ export type CreateMountpointInput = {
1025
1026
  link?: InputMaybe<NewMountpointSpec>;
1026
1027
  };
1027
- export declare type CreateTagInput = {
1028
+ export type CreateTagInput = {
1028
1029
  color?: InputMaybe<Scalars['Int']>;
1029
1030
  name: Scalars['String'];
1030
1031
  };
1031
- export declare type CsrfToken = {
1032
+ export type CsrfToken = {
1032
1033
  __typename?: 'CsrfToken';
1033
1034
  _content?: Maybe<Scalars['String']>;
1034
1035
  };
1035
- export declare type Cursor = {
1036
+ export type Cursor = {
1036
1037
  endSortVal?: InputMaybe<Scalars['String']>;
1037
1038
  id?: InputMaybe<Scalars['ID']>;
1038
1039
  includeOffset?: InputMaybe<Scalars['Boolean']>;
1039
1040
  sortVal?: InputMaybe<Scalars['String']>;
1040
1041
  };
1041
- export declare type CustomMetadata = {
1042
+ export type CustomMetadata = {
1042
1043
  __typename?: 'CustomMetadata';
1043
1044
  meta?: Maybe<Array<Maybe<CustomMetadataMeta>>>;
1044
1045
  };
1045
- export declare type CustomMetadataAttrs = {
1046
+ export type CustomMetadataAttrs = {
1046
1047
  __typename?: 'CustomMetadataAttrs';
1047
1048
  key?: Maybe<Scalars['String']>;
1048
1049
  value?: Maybe<Scalars['String']>;
1049
1050
  };
1050
- export declare type CustomMetadataAttrsInput = {
1051
+ export type CustomMetadataAttrsInput = {
1051
1052
  key?: InputMaybe<Scalars['String']>;
1052
1053
  value?: InputMaybe<Scalars['String']>;
1053
1054
  };
1054
- export declare type CustomMetadataInput = {
1055
+ export type CustomMetadataInput = {
1055
1056
  attrs?: InputMaybe<Array<InputMaybe<CustomMetadataAttrsInput>>>;
1056
1057
  id: Scalars['ID'];
1057
1058
  section?: InputMaybe<Scalars['String']>;
1058
1059
  };
1059
- export declare type CustomMetadataMeta = {
1060
+ export type CustomMetadataMeta = {
1060
1061
  __typename?: 'CustomMetadataMeta';
1061
1062
  _attrs?: Maybe<Array<Maybe<CustomMetadataAttrs>>>;
1062
1063
  section?: Maybe<Scalars['String']>;
1063
1064
  };
1064
- export declare type DataSource = {
1065
+ export type DataSource = {
1065
1066
  __typename?: 'DataSource';
1066
1067
  connectionType?: Maybe<Scalars['String']>;
1067
1068
  defaultSignature?: Maybe<Scalars['ID']>;
@@ -1085,37 +1086,37 @@ export declare type DataSource = {
1085
1086
  useAddressForForwardReply?: Maybe<Scalars['Boolean']>;
1086
1087
  username?: Maybe<Scalars['String']>;
1087
1088
  };
1088
- export declare type DataSources = {
1089
+ export type DataSources = {
1089
1090
  __typename?: 'DataSources';
1090
1091
  cal?: Maybe<Array<Maybe<DataSource>>>;
1091
1092
  imap?: Maybe<Array<Maybe<DataSource>>>;
1092
1093
  pop3?: Maybe<Array<Maybe<DataSource>>>;
1093
1094
  };
1094
- export declare type DateCondition = {
1095
+ export type DateCondition = {
1095
1096
  __typename?: 'DateCondition';
1096
1097
  date?: Maybe<Scalars['Float']>;
1097
1098
  dateComparison?: Maybe<Scalars['String']>;
1098
1099
  index?: Maybe<Scalars['Int']>;
1099
1100
  negative?: Maybe<Scalars['Boolean']>;
1100
1101
  };
1101
- export declare type DateConditionInput = {
1102
+ export type DateConditionInput = {
1102
1103
  date?: InputMaybe<Scalars['Float']>;
1103
1104
  dateComparison?: InputMaybe<Scalars['String']>;
1104
1105
  index?: InputMaybe<Scalars['Int']>;
1105
1106
  negative?: InputMaybe<Scalars['Boolean']>;
1106
1107
  };
1107
- export declare type DeleteAppointmentInput = {
1108
+ export type DeleteAppointmentInput = {
1108
1109
  componentNum: Scalars['Int'];
1109
1110
  instanceDate?: InputMaybe<InstanceDate>;
1110
1111
  inviteId: Scalars['String'];
1111
1112
  message?: InputMaybe<CalendarItemMessageInput>;
1112
1113
  start?: InputMaybe<Scalars['Int']>;
1113
1114
  };
1114
- export declare type DeleteIdentityInput = {
1115
+ export type DeleteIdentityInput = {
1115
1116
  id: Scalars['ID'];
1116
1117
  name?: InputMaybe<Scalars['String']>;
1117
1118
  };
1118
- export declare type Device = {
1119
+ export type Device = {
1119
1120
  __typename?: 'Device';
1120
1121
  firstReqReceived?: Maybe<Scalars['Int']>;
1121
1122
  id?: Maybe<Scalars['ID']>;
@@ -1129,29 +1130,29 @@ export declare type Device = {
1129
1130
  type?: Maybe<Scalars['String']>;
1130
1131
  ua?: Maybe<Scalars['String']>;
1131
1132
  };
1132
- export declare type DiscoverRightInput = {
1133
+ export type DiscoverRightInput = {
1133
1134
  _content?: InputMaybe<Scalars['String']>;
1134
1135
  };
1135
- export declare type DiscoverRights = {
1136
+ export type DiscoverRights = {
1136
1137
  __typename?: 'DiscoverRights';
1137
1138
  targets?: Maybe<Array<Maybe<Targets>>>;
1138
1139
  };
1139
- export declare type DismissInput = {
1140
+ export type DismissInput = {
1140
1141
  dismissedAt: Scalars['Float'];
1141
1142
  id: Scalars['ID'];
1142
1143
  };
1143
- export declare type DlAttrs = {
1144
+ export type DlAttrs = {
1144
1145
  __typename?: 'DlAttrs';
1145
1146
  commonName?: Maybe<Scalars['String']>;
1146
1147
  displayName?: Maybe<Scalars['String']>;
1147
1148
  lastName?: Maybe<Scalars['String']>;
1148
1149
  };
1149
- export declare type DlGroupMember = {
1150
+ export type DlGroupMember = {
1150
1151
  __typename?: 'DlGroupMember';
1151
1152
  attributes?: Maybe<DlAttrs>;
1152
1153
  name?: Maybe<Scalars['String']>;
1153
1154
  };
1154
- export declare type Document = {
1155
+ export type Document = {
1155
1156
  __typename?: 'Document';
1156
1157
  acl?: Maybe<Acl>;
1157
1158
  changeDate?: Maybe<Scalars['Float']>;
@@ -1180,35 +1181,35 @@ export declare type Document = {
1180
1181
  uuid?: Maybe<Scalars['ID']>;
1181
1182
  version?: Maybe<Scalars['Float']>;
1182
1183
  };
1183
- export declare type DocumentActionData = {
1184
+ export type DocumentActionData = {
1184
1185
  __typename?: 'DocumentActionData';
1185
1186
  action?: Maybe<ActionData>;
1186
1187
  };
1187
- export declare type DocumentInput = {
1188
+ export type DocumentInput = {
1188
1189
  id?: InputMaybe<Scalars['ID']>;
1189
1190
  };
1190
- export declare type DtTimeInfo = {
1191
+ export type DtTimeInfo = {
1191
1192
  __typename?: 'DtTimeInfo';
1192
1193
  date?: Maybe<Scalars['String']>;
1193
1194
  timezone?: Maybe<Scalars['String']>;
1194
1195
  utc?: Maybe<Scalars['Float']>;
1195
1196
  };
1196
- export declare type EmlInput = {
1197
+ export type EmlInput = {
1197
1198
  id?: InputMaybe<Scalars['ID']>;
1198
1199
  };
1199
- export declare type EmailAddress = {
1200
+ export type EmailAddress = {
1200
1201
  __typename?: 'EmailAddress';
1201
1202
  address?: Maybe<Scalars['String']>;
1202
1203
  displayName?: Maybe<Scalars['String']>;
1203
1204
  name?: Maybe<Scalars['String']>;
1204
1205
  type?: Maybe<Scalars['String']>;
1205
1206
  };
1206
- export declare type EmailAddressInput = {
1207
+ export type EmailAddressInput = {
1207
1208
  email: Scalars['String'];
1208
1209
  name: Scalars['String'];
1209
1210
  shortName: Scalars['String'];
1210
1211
  };
1211
- export declare type EnableTwoFactorAuthInput = {
1212
+ export type EnableTwoFactorAuthInput = {
1212
1213
  authToken?: InputMaybe<Scalars['String']>;
1213
1214
  csrfTokenSecured: Scalars['Boolean'];
1214
1215
  ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
@@ -1216,14 +1217,14 @@ export declare type EnableTwoFactorAuthInput = {
1216
1217
  password?: InputMaybe<Scalars['String']>;
1217
1218
  twoFactorCode?: InputMaybe<Scalars['String']>;
1218
1219
  };
1219
- export declare type EnableTwoFactorAuthResponse = {
1220
+ export type EnableTwoFactorAuthResponse = {
1220
1221
  __typename?: 'EnableTwoFactorAuthResponse';
1221
1222
  authToken?: Maybe<Array<Maybe<AuthToken>>>;
1222
1223
  csrfToken?: Maybe<Array<Maybe<CsrfToken>>>;
1223
1224
  scratchCodes?: Maybe<Array<Maybe<ScratchCode>>>;
1224
1225
  secret?: Maybe<Array<Maybe<Secret>>>;
1225
1226
  };
1226
- export declare type ExceptionRuleInfo = {
1227
+ export type ExceptionRuleInfo = {
1227
1228
  __typename?: 'ExceptionRuleInfo';
1228
1229
  add?: Maybe<Array<Maybe<AddRecurrenceInfo>>>;
1229
1230
  exclude?: Maybe<Array<Maybe<ExcludeRecurrenceInfo>>>;
@@ -1232,16 +1233,16 @@ export declare type ExceptionRuleInfo = {
1232
1233
  ridZ?: Maybe<Scalars['String']>;
1233
1234
  tz?: Maybe<Scalars['String']>;
1234
1235
  };
1235
- export declare type ExcludeRecurrenceInfo = {
1236
+ export type ExcludeRecurrenceInfo = {
1236
1237
  __typename?: 'ExcludeRecurrenceInfo';
1237
1238
  except?: Maybe<Array<Maybe<ExceptionRuleInfo>>>;
1238
1239
  exclude?: Maybe<Array<Maybe<ExcludeRecurrenceInfo>>>;
1239
1240
  };
1240
- export declare type ExistingAttachmentInput = {
1241
+ export type ExistingAttachmentInput = {
1241
1242
  messageId?: InputMaybe<Scalars['ID']>;
1242
1243
  part?: InputMaybe<Scalars['String']>;
1243
1244
  };
1244
- export declare type ExternalAccount = {
1245
+ export type ExternalAccount = {
1245
1246
  accountType?: InputMaybe<AccountType>;
1246
1247
  connectionType?: InputMaybe<ConnectionType>;
1247
1248
  host: Scalars['String'];
@@ -1252,7 +1253,7 @@ export declare type ExternalAccount = {
1252
1253
  port: Scalars['String'];
1253
1254
  username: Scalars['String'];
1254
1255
  };
1255
- export declare type ExternalAccountAddInput = {
1256
+ export type ExternalAccountAddInput = {
1256
1257
  accountType?: InputMaybe<AccountType>;
1257
1258
  connectionType?: InputMaybe<ConnectionType>;
1258
1259
  emailAddress?: InputMaybe<Scalars['String']>;
@@ -1265,11 +1266,11 @@ export declare type ExternalAccountAddInput = {
1265
1266
  port: Scalars['String'];
1266
1267
  username: Scalars['String'];
1267
1268
  };
1268
- export declare type ExternalAccountImportInput = {
1269
+ export type ExternalAccountImportInput = {
1269
1270
  accountType?: InputMaybe<AccountType>;
1270
1271
  id: Scalars['ID'];
1271
1272
  };
1272
- export declare type ExternalAccountModifyAttrsInput = {
1273
+ export type ExternalAccountModifyAttrsInput = {
1273
1274
  accountType?: InputMaybe<AccountType>;
1274
1275
  connectionType?: InputMaybe<ConnectionType>;
1275
1276
  defaultSignature?: InputMaybe<Scalars['ID']>;
@@ -1294,7 +1295,7 @@ export declare type ExternalAccountModifyAttrsInput = {
1294
1295
  useAddressForForwardReply?: InputMaybe<Scalars['Boolean']>;
1295
1296
  username?: InputMaybe<Scalars['String']>;
1296
1297
  };
1297
- export declare type ExternalAccountTestInput = {
1298
+ export type ExternalAccountTestInput = {
1298
1299
  accountType?: InputMaybe<AccountType>;
1299
1300
  connectionType?: InputMaybe<ConnectionType>;
1300
1301
  emailAddress?: InputMaybe<Scalars['String']>;
@@ -1304,30 +1305,30 @@ export declare type ExternalAccountTestInput = {
1304
1305
  port: Scalars['String'];
1305
1306
  username: Scalars['String'];
1306
1307
  };
1307
- export declare type ExternalAccountTestResponse = {
1308
+ export type ExternalAccountTestResponse = {
1308
1309
  __typename?: 'ExternalAccountTestResponse';
1309
1310
  error?: Maybe<Scalars['String']>;
1310
1311
  success: Scalars['Boolean'];
1311
1312
  };
1312
- export declare type FileIntoAction = {
1313
+ export type FileIntoAction = {
1313
1314
  __typename?: 'FileIntoAction';
1314
1315
  copy?: Maybe<Scalars['Boolean']>;
1315
1316
  folderPath?: Maybe<Scalars['String']>;
1316
1317
  index?: Maybe<Scalars['Int']>;
1317
1318
  };
1318
- export declare type FileIntoActionInput = {
1319
+ export type FileIntoActionInput = {
1319
1320
  copy?: InputMaybe<Scalars['Boolean']>;
1320
1321
  folderPath?: InputMaybe<Scalars['String']>;
1321
1322
  index?: InputMaybe<Scalars['Int']>;
1322
1323
  };
1323
- export declare type Filter = {
1324
+ export type Filter = {
1324
1325
  __typename?: 'Filter';
1325
1326
  actions?: Maybe<Array<Maybe<FilterAction>>>;
1326
1327
  active: Scalars['Boolean'];
1327
1328
  conditions?: Maybe<Array<Maybe<FilterCondition>>>;
1328
1329
  name: Scalars['String'];
1329
1330
  };
1330
- export declare type FilterAction = {
1331
+ export type FilterAction = {
1331
1332
  __typename?: 'FilterAction';
1332
1333
  discard?: Maybe<Array<Maybe<BasicAction>>>;
1333
1334
  fileInto?: Maybe<Array<Maybe<FileIntoAction>>>;
@@ -1339,7 +1340,7 @@ export declare type FilterAction = {
1339
1340
  stop?: Maybe<Array<Maybe<BasicAction>>>;
1340
1341
  tag?: Maybe<Array<Maybe<TagAction>>>;
1341
1342
  };
1342
- export declare type FilterActionInput = {
1343
+ export type FilterActionInput = {
1343
1344
  discard?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
1344
1345
  fileInto?: InputMaybe<Array<InputMaybe<FileIntoActionInput>>>;
1345
1346
  flag?: InputMaybe<Array<InputMaybe<FlagActionInput>>>;
@@ -1350,7 +1351,7 @@ export declare type FilterActionInput = {
1350
1351
  stop?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
1351
1352
  tag?: InputMaybe<Array<InputMaybe<TagActionInput>>>;
1352
1353
  };
1353
- export declare type FilterCondition = {
1354
+ export type FilterCondition = {
1354
1355
  __typename?: 'FilterCondition';
1355
1356
  address?: Maybe<Array<Maybe<AddressCondition>>>;
1356
1357
  addressBook?: Maybe<Array<Maybe<HeaderCheckCondition>>>;
@@ -1377,7 +1378,7 @@ export declare type FilterCondition = {
1377
1378
  size?: Maybe<Array<Maybe<SizeCondition>>>;
1378
1379
  twitter?: Maybe<Array<Maybe<BasicCondition>>>;
1379
1380
  };
1380
- export declare type FilterConditionInput = {
1381
+ export type FilterConditionInput = {
1381
1382
  address?: InputMaybe<Array<InputMaybe<AddressConditionInput>>>;
1382
1383
  addressBook?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
1383
1384
  allOrAny: FilterMatchCondition;
@@ -1403,7 +1404,7 @@ export declare type FilterConditionInput = {
1403
1404
  size?: InputMaybe<Array<InputMaybe<SizeConditionInput>>>;
1404
1405
  twitter?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
1405
1406
  };
1406
- export declare type FilterInput = {
1407
+ export type FilterInput = {
1407
1408
  actions?: InputMaybe<Array<InputMaybe<FilterActionInput>>>;
1408
1409
  active: Scalars['Boolean'];
1409
1410
  conditions?: InputMaybe<Array<InputMaybe<FilterConditionInput>>>;
@@ -1413,30 +1414,30 @@ export declare enum FilterMatchCondition {
1413
1414
  Allof = "allof",
1414
1415
  Anyof = "anyof"
1415
1416
  }
1416
- export declare type FilterRuleInput = {
1417
+ export type FilterRuleInput = {
1417
1418
  name: Scalars['String'];
1418
1419
  };
1419
- export declare type FlagAction = {
1420
+ export type FlagAction = {
1420
1421
  __typename?: 'FlagAction';
1421
1422
  flagName?: Maybe<Scalars['String']>;
1422
1423
  index?: Maybe<Scalars['Int']>;
1423
1424
  };
1424
- export declare type FlagActionInput = {
1425
+ export type FlagActionInput = {
1425
1426
  flagName?: InputMaybe<Scalars['String']>;
1426
1427
  index?: InputMaybe<Scalars['Int']>;
1427
1428
  };
1428
- export declare type FlagCondition = {
1429
+ export type FlagCondition = {
1429
1430
  __typename?: 'FlagCondition';
1430
1431
  flagName: Scalars['String'];
1431
1432
  index?: Maybe<Scalars['Int']>;
1432
1433
  negative?: Maybe<Scalars['Boolean']>;
1433
1434
  };
1434
- export declare type FlagConditionInput = {
1435
+ export type FlagConditionInput = {
1435
1436
  flagName: Scalars['String'];
1436
1437
  index?: InputMaybe<Scalars['Int']>;
1437
1438
  negative?: InputMaybe<Scalars['Boolean']>;
1438
1439
  };
1439
- export declare type Folder = {
1440
+ export type Folder = {
1440
1441
  __typename?: 'Folder';
1441
1442
  absFolderPath?: Maybe<Scalars['String']>;
1442
1443
  acl?: Maybe<Acl>;
@@ -1470,15 +1471,15 @@ export declare type Folder = {
1470
1471
  uuid?: Maybe<Scalars['ID']>;
1471
1472
  view?: Maybe<FolderView>;
1472
1473
  };
1473
- export declare type FolderActionChangeColorInput = {
1474
+ export type FolderActionChangeColorInput = {
1474
1475
  color: Scalars['Int'];
1475
1476
  id: Scalars['ID'];
1476
1477
  };
1477
- export declare type FolderActionCheckCalendarInput = {
1478
+ export type FolderActionCheckCalendarInput = {
1478
1479
  id: Scalars['ID'];
1479
1480
  value?: InputMaybe<Scalars['Boolean']>;
1480
1481
  };
1481
- export declare type FolderActionInput = {
1482
+ export type FolderActionInput = {
1482
1483
  color?: InputMaybe<Scalars['Int']>;
1483
1484
  folderId?: InputMaybe<Scalars['ID']>;
1484
1485
  grant?: InputMaybe<Array<InputMaybe<GrantInput>>>;
@@ -1488,7 +1489,7 @@ export declare type FolderActionInput = {
1488
1489
  retentionPolicy?: InputMaybe<Array<InputMaybe<RetentionPolicyInput>>>;
1489
1490
  zimbraId?: InputMaybe<Scalars['ID']>;
1490
1491
  };
1491
- export declare type FolderQueryInput = {
1492
+ export type FolderQueryInput = {
1492
1493
  id?: InputMaybe<Scalars['ID']>;
1493
1494
  uuid?: InputMaybe<Scalars['ID']>;
1494
1495
  view?: InputMaybe<FolderView>;
@@ -1511,25 +1512,25 @@ export declare enum FolderView {
1511
1512
  Virtual = "virtual",
1512
1513
  Wiki = "wiki"
1513
1514
  }
1514
- export declare type ForwardAppointmentInput = {
1515
+ export type ForwardAppointmentInput = {
1515
1516
  exceptId?: InputMaybe<ForwardExceptIdInput>;
1516
1517
  id: Scalars['ID'];
1517
1518
  message: ForwardMessageInput;
1518
1519
  };
1519
- export declare type ForwardAppointmentInviteInput = {
1520
+ export type ForwardAppointmentInviteInput = {
1520
1521
  id: Scalars['ID'];
1521
1522
  message: ForwardMessageInput;
1522
1523
  };
1523
- export declare type ForwardExceptIdInput = {
1524
+ export type ForwardExceptIdInput = {
1524
1525
  date: Scalars['String'];
1525
1526
  timezone: Scalars['String'];
1526
1527
  };
1527
- export declare type ForwardMessageInput = {
1528
+ export type ForwardMessageInput = {
1528
1529
  emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
1529
1530
  mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
1530
1531
  subject?: InputMaybe<Scalars['String']>;
1531
1532
  };
1532
- export declare type FreeBusy = {
1533
+ export type FreeBusy = {
1533
1534
  __typename?: 'FreeBusy';
1534
1535
  busy?: Maybe<Array<Maybe<FreeBusyInstance>>>;
1535
1536
  free?: Maybe<Array<Maybe<FreeBusyInstance>>>;
@@ -1538,7 +1539,7 @@ export declare type FreeBusy = {
1538
1539
  tentative?: Maybe<Array<Maybe<FreeBusyInstance>>>;
1539
1540
  unavailable?: Maybe<Array<Maybe<FreeBusyInstance>>>;
1540
1541
  };
1541
- export declare type FreeBusyInstance = {
1542
+ export type FreeBusyInstance = {
1542
1543
  __typename?: 'FreeBusyInstance';
1543
1544
  end?: Maybe<Scalars['Float']>;
1544
1545
  start?: Maybe<Scalars['Float']>;
@@ -1555,34 +1556,34 @@ export declare enum GalSearchType {
1555
1556
  Group = "group",
1556
1557
  Resource = "resource"
1557
1558
  }
1558
- export declare type GetAppointmentResponse = {
1559
+ export type GetAppointmentResponse = {
1559
1560
  __typename?: 'GetAppointmentResponse';
1560
1561
  appointment?: Maybe<Array<Maybe<AppointmentInfo>>>;
1561
1562
  };
1562
- export declare type GetDocumentShareUrlItemInput = {
1563
+ export type GetDocumentShareUrlItemInput = {
1563
1564
  folderId?: InputMaybe<Scalars['ID']>;
1564
1565
  id?: InputMaybe<Scalars['ID']>;
1565
1566
  name?: InputMaybe<Scalars['String']>;
1566
1567
  path?: InputMaybe<Scalars['String']>;
1567
1568
  };
1568
- export declare type GetDocumentShareUrlResponse = {
1569
+ export type GetDocumentShareUrlResponse = {
1569
1570
  __typename?: 'GetDocumentShareURLResponse';
1570
1571
  content?: Maybe<Scalars['String']>;
1571
1572
  };
1572
- export declare type GetFolderFolderInput = {
1573
+ export type GetFolderFolderInput = {
1573
1574
  parentFolderId?: InputMaybe<Scalars['ID']>;
1574
1575
  path?: InputMaybe<Scalars['String']>;
1575
1576
  uuid?: InputMaybe<Scalars['ID']>;
1576
1577
  };
1577
- export declare type GetRightsInput = {
1578
+ export type GetRightsInput = {
1578
1579
  access?: InputMaybe<Array<InputMaybe<Right>>>;
1579
1580
  };
1580
- export declare type GetTrustedDevicesResponse = {
1581
+ export type GetTrustedDevicesResponse = {
1581
1582
  __typename?: 'GetTrustedDevicesResponse';
1582
1583
  nOtherDevices?: Maybe<Scalars['Int']>;
1583
1584
  thisDeviceTrusted?: Maybe<Scalars['Boolean']>;
1584
1585
  };
1585
- export declare type GrantInput = {
1586
+ export type GrantInput = {
1586
1587
  address?: InputMaybe<Scalars['String']>;
1587
1588
  granteeType: GranteeType;
1588
1589
  key?: InputMaybe<Scalars['String']>;
@@ -1590,10 +1591,10 @@ export declare type GrantInput = {
1590
1591
  permissions: Scalars['String'];
1591
1592
  zimbraId?: InputMaybe<Scalars['ID']>;
1592
1593
  };
1593
- export declare type GrantRightsInput = {
1594
+ export type GrantRightsInput = {
1594
1595
  access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
1595
1596
  };
1596
- export declare type Grantee = {
1597
+ export type Grantee = {
1597
1598
  id?: InputMaybe<Scalars['ID']>;
1598
1599
  name?: InputMaybe<Scalars['String']>;
1599
1600
  type?: InputMaybe<Scalars['String']>;
@@ -1609,7 +1610,7 @@ export declare enum GranteeType {
1609
1610
  Pub = "pub",
1610
1611
  Usr = "usr"
1611
1612
  }
1612
- export declare type HabGroup = {
1613
+ export type HabGroup = {
1613
1614
  __typename?: 'HabGroup';
1614
1615
  attributes?: Maybe<HabGroupAttrs>;
1615
1616
  habGroups?: Maybe<Array<Maybe<HabGroup>>>;
@@ -1618,7 +1619,7 @@ export declare type HabGroup = {
1618
1619
  parentHabGroupId?: Maybe<Scalars['ID']>;
1619
1620
  seniorityIndex?: Maybe<Scalars['Int']>;
1620
1621
  };
1621
- export declare type HabGroupAttrs = {
1622
+ export type HabGroupAttrs = {
1622
1623
  __typename?: 'HabGroupAttrs';
1623
1624
  cn?: Maybe<Scalars['String']>;
1624
1625
  displayName?: Maybe<Scalars['String']>;
@@ -1631,22 +1632,22 @@ export declare type HabGroupAttrs = {
1631
1632
  zimbraMailHost?: Maybe<Scalars['String']>;
1632
1633
  zimbraMailStatus?: Maybe<Scalars['String']>;
1633
1634
  };
1634
- export declare type HabRoots = {
1635
+ export type HabRoots = {
1635
1636
  __typename?: 'HabRoots';
1636
1637
  hab?: Maybe<Array<Maybe<HabRootId>>>;
1637
1638
  };
1638
- export declare type HeaderCheckCondition = {
1639
+ export type HeaderCheckCondition = {
1639
1640
  __typename?: 'HeaderCheckCondition';
1640
1641
  header: Scalars['String'];
1641
1642
  index?: Maybe<Scalars['Int']>;
1642
1643
  negative?: Maybe<Scalars['Boolean']>;
1643
1644
  };
1644
- export declare type HeaderCheckConditionInput = {
1645
+ export type HeaderCheckConditionInput = {
1645
1646
  header: Scalars['String'];
1646
1647
  index?: InputMaybe<Scalars['Int']>;
1647
1648
  negative?: InputMaybe<Scalars['Boolean']>;
1648
1649
  };
1649
- export declare type HeaderCondition = {
1650
+ export type HeaderCondition = {
1650
1651
  __typename?: 'HeaderCondition';
1651
1652
  caseSensitive?: Maybe<Scalars['Boolean']>;
1652
1653
  countComparison?: Maybe<Scalars['String']>;
@@ -1657,7 +1658,7 @@ export declare type HeaderCondition = {
1657
1658
  value?: Maybe<Scalars['String']>;
1658
1659
  valueComparison?: Maybe<Scalars['String']>;
1659
1660
  };
1660
- export declare type HeaderConditionInput = {
1661
+ export type HeaderConditionInput = {
1661
1662
  caseSensitive?: InputMaybe<Scalars['Boolean']>;
1662
1663
  countComparison?: InputMaybe<Scalars['String']>;
1663
1664
  header?: InputMaybe<Scalars['String']>;
@@ -1667,23 +1668,23 @@ export declare type HeaderConditionInput = {
1667
1668
  value?: InputMaybe<Scalars['String']>;
1668
1669
  valueComparison?: InputMaybe<Scalars['String']>;
1669
1670
  };
1670
- export declare type Hit = {
1671
+ export type Hit = {
1671
1672
  __typename?: 'Hit';
1672
1673
  id?: Maybe<Scalars['String']>;
1673
1674
  sortField?: Maybe<Scalars['String']>;
1674
1675
  };
1675
- export declare type Identities = {
1676
+ export type Identities = {
1676
1677
  __typename?: 'Identities';
1677
1678
  identity?: Maybe<Array<Maybe<Identity>>>;
1678
1679
  };
1679
- export declare type Identity = {
1680
+ export type Identity = {
1680
1681
  __typename?: 'Identity';
1681
1682
  _attrs?: Maybe<IdentityAttrs>;
1682
1683
  defaultSignature?: Maybe<Scalars['ID']>;
1683
1684
  id: Scalars['ID'];
1684
1685
  name?: Maybe<Scalars['String']>;
1685
1686
  };
1686
- export declare type IdentityAttrs = {
1687
+ export type IdentityAttrs = {
1687
1688
  __typename?: 'IdentityAttrs';
1688
1689
  zimbraPrefDefaultSignatureId?: Maybe<Scalars['ID']>;
1689
1690
  zimbraPrefForwardReplyFormat?: Maybe<Scalars['String']>;
@@ -1703,7 +1704,7 @@ export declare type IdentityAttrs = {
1703
1704
  zimbraPrefWhenSentToAddresses?: Maybe<Array<Maybe<Scalars['String']>>>;
1704
1705
  zimbraPrefWhenSentToEnabled?: Maybe<Scalars['Boolean']>;
1705
1706
  };
1706
- export declare type IdentityAttrsInput = {
1707
+ export type IdentityAttrsInput = {
1707
1708
  zimbraPrefDefaultSignatureId?: InputMaybe<Scalars['ID']>;
1708
1709
  zimbraPrefForwardReplyFormat?: InputMaybe<Scalars['String']>;
1709
1710
  zimbraPrefForwardReplySignatureId?: InputMaybe<Scalars['ID']>;
@@ -1722,14 +1723,14 @@ export declare type IdentityAttrsInput = {
1722
1723
  zimbraPrefWhenSentToAddresses?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
1723
1724
  zimbraPrefWhenSentToEnabled?: InputMaybe<Scalars['Boolean']>;
1724
1725
  };
1725
- export declare type ImportStatus = {
1726
+ export type ImportStatus = {
1726
1727
  __typename?: 'ImportStatus';
1727
1728
  error?: Maybe<Scalars['String']>;
1728
1729
  id?: Maybe<Scalars['ID']>;
1729
1730
  isRunning?: Maybe<Scalars['Boolean']>;
1730
1731
  success?: Maybe<Scalars['Boolean']>;
1731
1732
  };
1732
- export declare type ImportStatusResponse = {
1733
+ export type ImportStatusResponse = {
1733
1734
  __typename?: 'ImportStatusResponse';
1734
1735
  imap?: Maybe<Array<Maybe<ImportStatus>>>;
1735
1736
  pop3?: Maybe<Array<Maybe<ImportStatus>>>;
@@ -1739,18 +1740,18 @@ export declare enum Importance {
1739
1740
  Low = "low",
1740
1741
  Normal = "normal"
1741
1742
  }
1742
- export declare type ImportanceCondition = {
1743
+ export type ImportanceCondition = {
1743
1744
  __typename?: 'ImportanceCondition';
1744
1745
  importance: Importance;
1745
1746
  index?: Maybe<Scalars['Int']>;
1746
1747
  negative?: Maybe<Scalars['Boolean']>;
1747
1748
  };
1748
- export declare type ImportanceConditionInput = {
1749
+ export type ImportanceConditionInput = {
1749
1750
  importance: Importance;
1750
1751
  index?: InputMaybe<Scalars['Int']>;
1751
1752
  negative?: InputMaybe<Scalars['Boolean']>;
1752
1753
  };
1753
- export declare type Instance = {
1754
+ export type Instance = {
1754
1755
  __typename?: 'Instance';
1755
1756
  alarm?: Maybe<Scalars['Boolean']>;
1756
1757
  allDay?: Maybe<Scalars['Boolean']>;
@@ -1780,14 +1781,14 @@ export declare type Instance = {
1780
1781
  tzoDue?: Maybe<Scalars['Int']>;
1781
1782
  utcRecurrenceId?: Maybe<Scalars['String']>;
1782
1783
  };
1783
- export declare type InstanceDate = {
1784
+ export type InstanceDate = {
1784
1785
  date?: InputMaybe<Scalars['String']>;
1785
1786
  };
1786
- export declare type IntervalRule = {
1787
+ export type IntervalRule = {
1787
1788
  __typename?: 'IntervalRule';
1788
1789
  intervalCount?: Maybe<Scalars['Int']>;
1789
1790
  };
1790
- export declare type Invitation = {
1791
+ export type Invitation = {
1791
1792
  __typename?: 'Invitation';
1792
1793
  componentNum: Scalars['Int'];
1793
1794
  components: Array<Maybe<InviteComponent>>;
@@ -1809,7 +1810,7 @@ export declare enum InviteCompletionStatus {
1809
1810
  Tent = "TENT",
1810
1811
  Waiting = "WAITING"
1811
1812
  }
1812
- export declare type InviteComponent = {
1813
+ export type InviteComponent = {
1813
1814
  __typename?: 'InviteComponent';
1814
1815
  aid?: Maybe<Scalars['String']>;
1815
1816
  alarms?: Maybe<Array<Maybe<CalendarItemAlarm>>>;
@@ -1848,28 +1849,28 @@ export declare type InviteComponent = {
1848
1849
  utcRecurrenceId?: Maybe<Scalars['String']>;
1849
1850
  x_uid?: Maybe<Scalars['String']>;
1850
1851
  };
1851
- export declare type InviteCondition = {
1852
+ export type InviteCondition = {
1852
1853
  __typename?: 'InviteCondition';
1853
1854
  index?: Maybe<Scalars['Int']>;
1854
1855
  methods?: Maybe<Array<Maybe<Scalars['String']>>>;
1855
1856
  negative?: Maybe<Scalars['Boolean']>;
1856
1857
  };
1857
- export declare type InviteConditionInput = {
1858
+ export type InviteConditionInput = {
1858
1859
  index?: InputMaybe<Scalars['Int']>;
1859
1860
  methods?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
1860
1861
  negative?: InputMaybe<Scalars['Boolean']>;
1861
1862
  };
1862
- export declare type InviteInfo = {
1863
+ export type InviteInfo = {
1863
1864
  __typename?: 'InviteInfo';
1864
1865
  components?: Maybe<Array<Maybe<InviteComponent>>>;
1865
1866
  replies?: Maybe<Array<Maybe<InviteReplies>>>;
1866
1867
  type?: Maybe<InviteType>;
1867
1868
  };
1868
- export declare type InviteReplies = {
1869
+ export type InviteReplies = {
1869
1870
  __typename?: 'InviteReplies';
1870
1871
  reply?: Maybe<Array<Maybe<CalendarItemReply>>>;
1871
1872
  };
1872
- export declare type InviteReplyInput = {
1873
+ export type InviteReplyInput = {
1873
1874
  componentNum: Scalars['Int'];
1874
1875
  exceptId?: InputMaybe<InstanceDate>;
1875
1876
  id: Scalars['ID'];
@@ -1877,7 +1878,7 @@ export declare type InviteReplyInput = {
1877
1878
  updateOrganizer?: InputMaybe<Scalars['Boolean']>;
1878
1879
  verb: InviteReplyVerb;
1879
1880
  };
1880
- export declare type InviteReplyResponse = {
1881
+ export type InviteReplyResponse = {
1881
1882
  __typename?: 'InviteReplyResponse';
1882
1883
  calendarItemId?: Maybe<Scalars['ID']>;
1883
1884
  inviteId?: Maybe<Scalars['ID']>;
@@ -1895,12 +1896,12 @@ export declare enum InviteType {
1895
1896
  Appt = "appt",
1896
1897
  Task = "task"
1897
1898
  }
1898
- export declare type License = {
1899
+ export type License = {
1899
1900
  __typename?: 'License';
1900
1901
  attr?: Maybe<Array<Maybe<LicenseAttrs>>>;
1901
1902
  status: LicenseStatus;
1902
1903
  };
1903
- export declare type LicenseAttrs = {
1904
+ export type LicenseAttrs = {
1904
1905
  __typename?: 'LicenseAttrs';
1905
1906
  _content: Scalars['Boolean'];
1906
1907
  name: Scalars['String'];
@@ -1915,13 +1916,13 @@ export declare enum LicenseStatus {
1915
1916
  NotInstalled = "NOT_INSTALLED",
1916
1917
  Ok = "OK"
1917
1918
  }
1918
- export declare type Locale = {
1919
+ export type Locale = {
1919
1920
  __typename?: 'Locale';
1920
1921
  id?: Maybe<Scalars['ID']>;
1921
1922
  localName?: Maybe<Scalars['String']>;
1922
1923
  name?: Maybe<Scalars['String']>;
1923
1924
  };
1924
- export declare type MailItem = {
1925
+ export type MailItem = {
1925
1926
  changeDate?: Maybe<Scalars['Float']>;
1926
1927
  conversationId?: Maybe<Scalars['ID']>;
1927
1928
  date?: Maybe<Scalars['Float']>;
@@ -1942,19 +1943,19 @@ export declare type MailItem = {
1942
1943
  tagNames?: Maybe<Scalars['String']>;
1943
1944
  tags?: Maybe<Scalars['String']>;
1944
1945
  };
1945
- export declare type MailItemEmailAddressInput = {
1946
+ export type MailItemEmailAddressInput = {
1946
1947
  address: Scalars['String'];
1947
1948
  name?: InputMaybe<Scalars['String']>;
1948
1949
  type: AddressType;
1949
1950
  };
1950
- export declare type MailItemHeaderInput = {
1951
+ export type MailItemHeaderInput = {
1951
1952
  n: Scalars['String'];
1952
1953
  };
1953
- export declare type MailboxMetadata = {
1954
+ export type MailboxMetadata = {
1954
1955
  __typename?: 'MailboxMetadata';
1955
1956
  meta?: Maybe<Array<Maybe<MailboxMetadataMeta>>>;
1956
1957
  };
1957
- export declare type MailboxMetadataAttrs = {
1958
+ export type MailboxMetadataAttrs = {
1958
1959
  __typename?: 'MailboxMetadataAttrs';
1959
1960
  archivedFolder?: Maybe<Scalars['String']>;
1960
1961
  privacyOverlayPrefs_showOverlay?: Maybe<Scalars['Boolean']>;
@@ -1978,12 +1979,12 @@ export declare type MailboxMetadataAttrs = {
1978
1979
  zimbraPrefUndoSendEnabled?: Maybe<Scalars['Boolean']>;
1979
1980
  zimbraPrefUndoSendTimeout?: Maybe<Scalars['Int']>;
1980
1981
  };
1981
- export declare type MailboxMetadataMeta = {
1982
+ export type MailboxMetadataMeta = {
1982
1983
  __typename?: 'MailboxMetadataMeta';
1983
1984
  _attrs: MailboxMetadataAttrs;
1984
1985
  section: Scalars['String'];
1985
1986
  };
1986
- export declare type MailboxMetadataSectionAttrsInput = {
1987
+ export type MailboxMetadataSectionAttrsInput = {
1987
1988
  archivedFolder?: InputMaybe<Scalars['String']>;
1988
1989
  privacyOverlayPrefs_showOverlay?: InputMaybe<Scalars['Boolean']>;
1989
1990
  privacyOverlayPrefs_timeOut?: InputMaybe<Scalars['Int']>;
@@ -2006,16 +2007,16 @@ export declare type MailboxMetadataSectionAttrsInput = {
2006
2007
  zimbraPrefUndoSendEnabled?: InputMaybe<Scalars['Boolean']>;
2007
2008
  zimbraPrefUndoSendTimeout?: InputMaybe<Scalars['Int']>;
2008
2009
  };
2009
- export declare type MaxAppPasswords = {
2010
+ export type MaxAppPasswords = {
2010
2011
  __typename?: 'MaxAppPasswords';
2011
2012
  _content?: Maybe<Scalars['Int']>;
2012
2013
  };
2013
- export declare type MessageAttributes = {
2014
+ export type MessageAttributes = {
2014
2015
  __typename?: 'MessageAttributes';
2015
2016
  isEncrypted?: Maybe<Scalars['Boolean']>;
2016
2017
  isSigned?: Maybe<Scalars['Boolean']>;
2017
2018
  };
2018
- export declare type MessageInfo = MailItem & {
2019
+ export type MessageInfo = MailItem & {
2019
2020
  __typename?: 'MessageInfo';
2020
2021
  attachments?: Maybe<Array<Maybe<MimePart>>>;
2021
2022
  attributes?: Maybe<MessageAttributes>;
@@ -2058,7 +2059,7 @@ export declare type MessageInfo = MailItem & {
2058
2059
  text?: Maybe<Scalars['String']>;
2059
2060
  to?: Maybe<Array<Maybe<EmailAddress>>>;
2060
2061
  };
2061
- export declare type MimeHeaderCondition = {
2062
+ export type MimeHeaderCondition = {
2062
2063
  __typename?: 'MimeHeaderCondition';
2063
2064
  caseSensitive?: Maybe<Scalars['Boolean']>;
2064
2065
  header?: Maybe<Scalars['String']>;
@@ -2067,7 +2068,7 @@ export declare type MimeHeaderCondition = {
2067
2068
  stringComparison?: Maybe<Scalars['String']>;
2068
2069
  value?: Maybe<Scalars['String']>;
2069
2070
  };
2070
- export declare type MimeHeaderConditionInput = {
2071
+ export type MimeHeaderConditionInput = {
2071
2072
  caseSensitive?: InputMaybe<Scalars['Boolean']>;
2072
2073
  header?: InputMaybe<Scalars['String']>;
2073
2074
  index?: InputMaybe<Scalars['Int']>;
@@ -2075,7 +2076,7 @@ export declare type MimeHeaderConditionInput = {
2075
2076
  stringComparison?: InputMaybe<Scalars['String']>;
2076
2077
  value?: InputMaybe<Scalars['String']>;
2077
2078
  };
2078
- export declare type MimePart = {
2079
+ export type MimePart = {
2079
2080
  __typename?: 'MimePart';
2080
2081
  base64?: Maybe<Scalars['String']>;
2081
2082
  body?: Maybe<Scalars['Boolean']>;
@@ -2092,7 +2093,7 @@ export declare type MimePart = {
2092
2093
  truncated?: Maybe<Scalars['Boolean']>;
2093
2094
  url?: Maybe<Scalars['String']>;
2094
2095
  };
2095
- export declare type MimePartInput = {
2096
+ export type MimePartInput = {
2096
2097
  attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
2097
2098
  base64?: InputMaybe<Scalars['String']>;
2098
2099
  body?: InputMaybe<Scalars['Boolean']>;
@@ -2112,7 +2113,7 @@ export declare enum Mode {
2112
2113
  Html = "html",
2113
2114
  Text = "text"
2114
2115
  }
2115
- export declare type ModifyAppointmentResponse = {
2116
+ export type ModifyAppointmentResponse = {
2116
2117
  __typename?: 'ModifyAppointmentResponse';
2117
2118
  appointmentId?: Maybe<Scalars['ID']>;
2118
2119
  calendarItemId?: Maybe<Scalars['ID']>;
@@ -2120,22 +2121,22 @@ export declare type ModifyAppointmentResponse = {
2120
2121
  modifiedSequence?: Maybe<Scalars['Float']>;
2121
2122
  revision?: Maybe<Scalars['Float']>;
2122
2123
  };
2123
- export declare type ModifyContactInput = {
2124
+ export type ModifyContactInput = {
2124
2125
  attributes: ContactAttrsInput;
2125
2126
  folderId?: InputMaybe<Scalars['ID']>;
2126
2127
  id: Scalars['ID'];
2127
2128
  memberOps?: InputMaybe<Array<InputMaybe<ContactListOps>>>;
2128
2129
  tagNames?: InputMaybe<Scalars['String']>;
2129
2130
  };
2130
- export declare type ModifyIdentityInput = {
2131
+ export type ModifyIdentityInput = {
2131
2132
  attrs?: InputMaybe<IdentityAttrsInput>;
2132
2133
  id: Scalars['ID'];
2133
2134
  };
2134
- export declare type ModifyZimletPrefsResponse = {
2135
+ export type ModifyZimletPrefsResponse = {
2135
2136
  __typename?: 'ModifyZimletPrefsResponse';
2136
2137
  zimlet?: Maybe<Array<Maybe<ZimletPref>>>;
2137
2138
  };
2138
- export declare type MsgWithGroupInfo = MailItem & {
2139
+ export type MsgWithGroupInfo = MailItem & {
2139
2140
  __typename?: 'MsgWithGroupInfo';
2140
2141
  autoSendTime?: Maybe<Scalars['Float']>;
2141
2142
  changeDate?: Maybe<Scalars['Float']>;
@@ -2163,7 +2164,7 @@ export declare type MsgWithGroupInfo = MailItem & {
2163
2164
  tagNames?: Maybe<Scalars['String']>;
2164
2165
  tags?: Maybe<Scalars['String']>;
2165
2166
  };
2166
- export declare type Mutation = {
2167
+ export type Mutation = {
2167
2168
  __typename?: 'Mutation';
2168
2169
  accountOnlyRemoteWipeSync?: Maybe<Device>;
2169
2170
  action?: Maybe<Scalars['Boolean']>;
@@ -2259,10 +2260,10 @@ export declare type Mutation = {
2259
2260
  testExternalAccount?: Maybe<ExternalAccountTestResponse>;
2260
2261
  uploadMessage?: Maybe<Scalars['String']>;
2261
2262
  };
2262
- export declare type MutationAccountOnlyRemoteWipeSyncArgs = {
2263
+ export type MutationAccountOnlyRemoteWipeSyncArgs = {
2263
2264
  deviceId?: InputMaybe<Scalars['String']>;
2264
2265
  };
2265
- export declare type MutationActionArgs = {
2266
+ export type MutationActionArgs = {
2266
2267
  color?: InputMaybe<Scalars['Int']>;
2267
2268
  constraints?: InputMaybe<Scalars['String']>;
2268
2269
  destFolderLocal?: InputMaybe<Scalars['Boolean']>;
@@ -2278,83 +2279,83 @@ export declare type MutationActionArgs = {
2278
2279
  tagNames?: InputMaybe<Scalars['String']>;
2279
2280
  type: ActionTypeName;
2280
2281
  };
2281
- export declare type MutationAddExternalAccountArgs = {
2282
+ export type MutationAddExternalAccountArgs = {
2282
2283
  externalAccount: ExternalAccountAddInput;
2283
2284
  };
2284
- export declare type MutationAddMessageArgs = {
2285
+ export type MutationAddMessageArgs = {
2285
2286
  message: AddMsgInput;
2286
2287
  };
2287
- export declare type MutationAllowDeviceSyncArgs = {
2288
+ export type MutationAllowDeviceSyncArgs = {
2288
2289
  deviceId?: InputMaybe<Scalars['String']>;
2289
2290
  };
2290
- export declare type MutationApplyFilterRulesArgs = {
2291
+ export type MutationApplyFilterRulesArgs = {
2291
2292
  filterRules?: InputMaybe<Array<InputMaybe<FilterRuleInput>>>;
2292
2293
  ids: Scalars['String'];
2293
2294
  };
2294
- export declare type MutationBlockDeviceSyncArgs = {
2295
+ export type MutationBlockDeviceSyncArgs = {
2295
2296
  deviceId?: InputMaybe<Scalars['String']>;
2296
2297
  };
2297
- export declare type MutationCancelPendingAccountOnlyRemoteWipeSyncArgs = {
2298
+ export type MutationCancelPendingAccountOnlyRemoteWipeSyncArgs = {
2298
2299
  deviceId?: InputMaybe<Scalars['String']>;
2299
2300
  };
2300
- export declare type MutationCancelPendingRemoteWipeSyncArgs = {
2301
+ export type MutationCancelPendingRemoteWipeSyncArgs = {
2301
2302
  deviceId?: InputMaybe<Scalars['String']>;
2302
2303
  };
2303
- export declare type MutationCancelTaskArgs = {
2304
+ export type MutationCancelTaskArgs = {
2304
2305
  inviteId: Scalars['ID'];
2305
2306
  };
2306
- export declare type MutationChangeFolderColorArgs = {
2307
+ export type MutationChangeFolderColorArgs = {
2307
2308
  color: Scalars['Int'];
2308
2309
  id: Scalars['ID'];
2309
2310
  };
2310
- export declare type MutationChangePasswordArgs = {
2311
+ export type MutationChangePasswordArgs = {
2311
2312
  dryRun?: InputMaybe<Scalars['Boolean']>;
2312
2313
  loginNewPassword: Scalars['String'];
2313
2314
  password: Scalars['String'];
2314
2315
  username: Scalars['String'];
2315
2316
  };
2316
- export declare type MutationCheckCalendarArgs = {
2317
+ export type MutationCheckCalendarArgs = {
2317
2318
  id: Scalars['ID'];
2318
2319
  value: Scalars['Boolean'];
2319
2320
  };
2320
- export declare type MutationContactActionArgs = {
2321
+ export type MutationContactActionArgs = {
2321
2322
  folderId?: InputMaybe<Scalars['ID']>;
2322
2323
  id?: InputMaybe<Scalars['ID']>;
2323
2324
  ids?: InputMaybe<Array<Scalars['ID']>>;
2324
2325
  op: Scalars['String'];
2325
2326
  tagNames?: InputMaybe<Scalars['String']>;
2326
2327
  };
2327
- export declare type MutationConversationActionArgs = {
2328
+ export type MutationConversationActionArgs = {
2328
2329
  ids: Array<Scalars['ID']>;
2329
2330
  op: Scalars['String'];
2330
2331
  };
2331
- export declare type MutationCounterAppointmentArgs = {
2332
+ export type MutationCounterAppointmentArgs = {
2332
2333
  counterAppointmentInvite: CounterAppointmentInput;
2333
2334
  };
2334
- export declare type MutationCreateAppSpecificPasswordArgs = {
2335
+ export type MutationCreateAppSpecificPasswordArgs = {
2335
2336
  appName: Scalars['String'];
2336
2337
  };
2337
- export declare type MutationCreateAppointmentArgs = {
2338
+ export type MutationCreateAppointmentArgs = {
2338
2339
  accountName?: InputMaybe<Scalars['String']>;
2339
2340
  appointment: CalendarItemInput;
2340
2341
  };
2341
- export declare type MutationCreateAppointmentExceptionArgs = {
2342
+ export type MutationCreateAppointmentExceptionArgs = {
2342
2343
  accountName?: InputMaybe<Scalars['String']>;
2343
2344
  appointment: CalendarItemInput;
2344
2345
  };
2345
- export declare type MutationCreateCalendarArgs = {
2346
+ export type MutationCreateCalendarArgs = {
2346
2347
  color: Scalars['Int'];
2347
2348
  name: Scalars['String'];
2348
2349
  parentFolderId?: InputMaybe<Scalars['ID']>;
2349
2350
  url?: InputMaybe<Scalars['String']>;
2350
2351
  };
2351
- export declare type MutationCreateContactArgs = {
2352
+ export type MutationCreateContactArgs = {
2352
2353
  contact: CreateContactInput;
2353
2354
  };
2354
- export declare type MutationCreateContactListArgs = {
2355
+ export type MutationCreateContactListArgs = {
2355
2356
  contact: CreateContactInput;
2356
2357
  };
2357
- export declare type MutationCreateFolderArgs = {
2358
+ export type MutationCreateFolderArgs = {
2358
2359
  color?: InputMaybe<Scalars['Int']>;
2359
2360
  fetchIfExists?: InputMaybe<Scalars['Boolean']>;
2360
2361
  flags?: InputMaybe<Scalars['String']>;
@@ -2364,76 +2365,76 @@ export declare type MutationCreateFolderArgs = {
2364
2365
  url?: InputMaybe<Scalars['String']>;
2365
2366
  view?: InputMaybe<FolderView>;
2366
2367
  };
2367
- export declare type MutationCreateIdentityArgs = {
2368
+ export type MutationCreateIdentityArgs = {
2368
2369
  attrs?: InputMaybe<IdentityAttrsInput>;
2369
2370
  name: Scalars['String'];
2370
2371
  };
2371
- export declare type MutationCreateMountpointArgs = {
2372
+ export type MutationCreateMountpointArgs = {
2372
2373
  link: NewMountpointSpec;
2373
2374
  };
2374
- export declare type MutationCreateSearchFolderArgs = {
2375
+ export type MutationCreateSearchFolderArgs = {
2375
2376
  name: Scalars['String'];
2376
2377
  parentFolderId?: InputMaybe<Scalars['ID']>;
2377
2378
  query: Scalars['String'];
2378
2379
  types?: InputMaybe<FolderView>;
2379
2380
  };
2380
- export declare type MutationCreateSharedCalendarArgs = {
2381
+ export type MutationCreateSharedCalendarArgs = {
2381
2382
  link: NewMountpointSpec;
2382
2383
  };
2383
- export declare type MutationCreateSignatureArgs = {
2384
+ export type MutationCreateSignatureArgs = {
2384
2385
  signature: SignatureInput;
2385
2386
  };
2386
- export declare type MutationCreateTagArgs = {
2387
+ export type MutationCreateTagArgs = {
2387
2388
  tag?: InputMaybe<CreateTagInput>;
2388
2389
  };
2389
- export declare type MutationCreateTaskArgs = {
2390
+ export type MutationCreateTaskArgs = {
2390
2391
  task: CalendarItemInput;
2391
2392
  };
2392
- export declare type MutationDeclineCounterAppointmentArgs = {
2393
+ export type MutationDeclineCounterAppointmentArgs = {
2393
2394
  counterAppointmentInvite: CounterAppointmentInput;
2394
2395
  };
2395
- export declare type MutationDeleteAppointmentArgs = {
2396
+ export type MutationDeleteAppointmentArgs = {
2396
2397
  appointment: DeleteAppointmentInput;
2397
2398
  };
2398
- export declare type MutationDeleteExternalAccountArgs = {
2399
+ export type MutationDeleteExternalAccountArgs = {
2399
2400
  id: Scalars['ID'];
2400
2401
  };
2401
- export declare type MutationDeleteIdentityArgs = {
2402
+ export type MutationDeleteIdentityArgs = {
2402
2403
  id: Scalars['ID'];
2403
2404
  name?: InputMaybe<Scalars['String']>;
2404
2405
  };
2405
- export declare type MutationDeleteSignatureArgs = {
2406
+ export type MutationDeleteSignatureArgs = {
2406
2407
  signature: NameIdInput;
2407
2408
  };
2408
- export declare type MutationDismissCalendarItemArgs = {
2409
+ export type MutationDismissCalendarItemArgs = {
2409
2410
  appointment?: InputMaybe<Array<InputMaybe<DismissInput>>>;
2410
2411
  task?: InputMaybe<DismissInput>;
2411
2412
  };
2412
- export declare type MutationDocumentActionArgs = {
2413
+ export type MutationDocumentActionArgs = {
2413
2414
  action: FolderActionInput;
2414
2415
  };
2415
- export declare type MutationEnableTwoFactorAuthArgs = {
2416
+ export type MutationEnableTwoFactorAuthArgs = {
2416
2417
  options: EnableTwoFactorAuthInput;
2417
2418
  };
2418
- export declare type MutationFolderActionArgs = {
2419
+ export type MutationFolderActionArgs = {
2419
2420
  action: FolderActionInput;
2420
2421
  };
2421
- export declare type MutationForwardAppointmentArgs = {
2422
+ export type MutationForwardAppointmentArgs = {
2422
2423
  appointmentInvite: ForwardAppointmentInput;
2423
2424
  };
2424
- export declare type MutationForwardAppointmentInviteArgs = {
2425
+ export type MutationForwardAppointmentInviteArgs = {
2425
2426
  appointmentInvite: ForwardAppointmentInviteInput;
2426
2427
  };
2427
- export declare type MutationGenerateScratchCodesArgs = {
2428
+ export type MutationGenerateScratchCodesArgs = {
2428
2429
  username: Scalars['String'];
2429
2430
  };
2430
- export declare type MutationGrantRightsArgs = {
2431
+ export type MutationGrantRightsArgs = {
2431
2432
  input: GrantRightsInput;
2432
2433
  };
2433
- export declare type MutationImportExternalAccountArgs = {
2434
+ export type MutationImportExternalAccountArgs = {
2434
2435
  externalAccount: ExternalAccountImportInput;
2435
2436
  };
2436
- export declare type MutationItemActionArgs = {
2437
+ export type MutationItemActionArgs = {
2437
2438
  folderId?: InputMaybe<Scalars['ID']>;
2438
2439
  id?: InputMaybe<Scalars['ID']>;
2439
2440
  ids?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
@@ -2441,7 +2442,7 @@ export declare type MutationItemActionArgs = {
2441
2442
  op: Scalars['String'];
2442
2443
  tagNames?: InputMaybe<Scalars['String']>;
2443
2444
  };
2444
- export declare type MutationLoginArgs = {
2445
+ export type MutationLoginArgs = {
2445
2446
  csrfTokenSecured: Scalars['Boolean'];
2446
2447
  deviceTrusted?: InputMaybe<Scalars['Boolean']>;
2447
2448
  ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
@@ -2452,165 +2453,165 @@ export declare type MutationLoginArgs = {
2452
2453
  twoFactorCode?: InputMaybe<Scalars['String']>;
2453
2454
  username: Scalars['String'];
2454
2455
  };
2455
- export declare type MutationMessageActionArgs = {
2456
+ export type MutationMessageActionArgs = {
2456
2457
  ids: Array<Scalars['ID']>;
2457
2458
  op: Scalars['String'];
2458
2459
  };
2459
- export declare type MutationModifyAppointmentArgs = {
2460
+ export type MutationModifyAppointmentArgs = {
2460
2461
  accountName?: InputMaybe<Scalars['String']>;
2461
2462
  appointment: CalendarItemInput;
2462
2463
  };
2463
- export declare type MutationModifyContactArgs = {
2464
+ export type MutationModifyContactArgs = {
2464
2465
  contact: ModifyContactInput;
2465
2466
  };
2466
- export declare type MutationModifyContactListArgs = {
2467
+ export type MutationModifyContactListArgs = {
2467
2468
  contact: ModifyContactInput;
2468
2469
  };
2469
- export declare type MutationModifyExternalAccountArgs = {
2470
+ export type MutationModifyExternalAccountArgs = {
2470
2471
  attrs: ExternalAccountModifyAttrsInput;
2471
2472
  id: Scalars['ID'];
2472
2473
  type?: InputMaybe<AccountType>;
2473
2474
  };
2474
- export declare type MutationModifyFilterRulesArgs = {
2475
+ export type MutationModifyFilterRulesArgs = {
2475
2476
  filters?: InputMaybe<Array<FilterInput>>;
2476
2477
  };
2477
- export declare type MutationModifyIdentityArgs = {
2478
+ export type MutationModifyIdentityArgs = {
2478
2479
  attrs?: InputMaybe<IdentityAttrsInput>;
2479
2480
  id: Scalars['ID'];
2480
2481
  };
2481
- export declare type MutationModifyPrefsArgs = {
2482
+ export type MutationModifyPrefsArgs = {
2482
2483
  prefs: PreferencesInput;
2483
2484
  };
2484
- export declare type MutationModifyProfileImageArgs = {
2485
+ export type MutationModifyProfileImageArgs = {
2485
2486
  content?: InputMaybe<Scalars['String']>;
2486
2487
  contentType?: InputMaybe<Scalars['String']>;
2487
2488
  };
2488
- export declare type MutationModifyPropsArgs = {
2489
+ export type MutationModifyPropsArgs = {
2489
2490
  props?: InputMaybe<Array<PropertiesInput>>;
2490
2491
  };
2491
- export declare type MutationModifySearchFolderArgs = {
2492
+ export type MutationModifySearchFolderArgs = {
2492
2493
  search: SearchFolderInput;
2493
2494
  };
2494
- export declare type MutationModifySignatureArgs = {
2495
+ export type MutationModifySignatureArgs = {
2495
2496
  signature: SignatureInput;
2496
2497
  };
2497
- export declare type MutationModifyTaskArgs = {
2498
+ export type MutationModifyTaskArgs = {
2498
2499
  task: CalendarItemInput;
2499
2500
  };
2500
- export declare type MutationModifyWhiteBlackListArgs = {
2501
+ export type MutationModifyWhiteBlackListArgs = {
2501
2502
  whiteBlackList: WhiteBlackListInput;
2502
2503
  };
2503
- export declare type MutationModifyZimletPrefsArgs = {
2504
+ export type MutationModifyZimletPrefsArgs = {
2504
2505
  zimlets?: InputMaybe<Array<ZimletPreferenceInput>>;
2505
2506
  };
2506
- export declare type MutationMoveTaskArgs = {
2507
+ export type MutationMoveTaskArgs = {
2507
2508
  destFolderId: Scalars['ID'];
2508
2509
  inviteId: Scalars['ID'];
2509
2510
  };
2510
- export declare type MutationPrefEnableOutOfOfficeAlertOnLoginArgs = {
2511
+ export type MutationPrefEnableOutOfOfficeAlertOnLoginArgs = {
2511
2512
  value: Scalars['Boolean'];
2512
2513
  };
2513
- export declare type MutationPrefEnableOutOfOfficeReplyArgs = {
2514
+ export type MutationPrefEnableOutOfOfficeReplyArgs = {
2514
2515
  value: Scalars['Boolean'];
2515
2516
  };
2516
- export declare type MutationPrefOutOfOfficeFromDateArgs = {
2517
+ export type MutationPrefOutOfOfficeFromDateArgs = {
2517
2518
  value: Scalars['String'];
2518
2519
  };
2519
- export declare type MutationPrefOutOfOfficeReplyArgs = {
2520
+ export type MutationPrefOutOfOfficeReplyArgs = {
2520
2521
  value: Scalars['String'];
2521
2522
  };
2522
- export declare type MutationPrefOutOfOfficeUntilDateArgs = {
2523
+ export type MutationPrefOutOfOfficeUntilDateArgs = {
2523
2524
  value: Scalars['String'];
2524
2525
  };
2525
- export declare type MutationPurgeRevisionArgs = {
2526
+ export type MutationPurgeRevisionArgs = {
2526
2527
  id: Scalars['ID'];
2527
2528
  includeOlderRevisions?: InputMaybe<Scalars['Int']>;
2528
2529
  ver: Scalars['Int'];
2529
2530
  };
2530
- export declare type MutationQuarantineDeviceSyncArgs = {
2531
+ export type MutationQuarantineDeviceSyncArgs = {
2531
2532
  deviceId?: InputMaybe<Scalars['String']>;
2532
2533
  };
2533
- export declare type MutationRecoverAccountArgs = {
2534
+ export type MutationRecoverAccountArgs = {
2534
2535
  channel: SetRecoveryAccountChannel;
2535
2536
  email: Scalars['String'];
2536
2537
  op: RecoverAccountOp;
2537
2538
  };
2538
- export declare type MutationRemoteWipeSyncArgs = {
2539
+ export type MutationRemoteWipeSyncArgs = {
2539
2540
  deviceId?: InputMaybe<Scalars['String']>;
2540
2541
  };
2541
- export declare type MutationRemoveDeviceSyncArgs = {
2542
+ export type MutationRemoveDeviceSyncArgs = {
2542
2543
  deviceId?: InputMaybe<Scalars['String']>;
2543
2544
  };
2544
- export declare type MutationResetPasswordArgs = {
2545
+ export type MutationResetPasswordArgs = {
2545
2546
  cancelResetPassword?: InputMaybe<Scalars['Boolean']>;
2546
2547
  dryRun?: InputMaybe<Scalars['Boolean']>;
2547
2548
  getPasswordRules?: InputMaybe<Scalars['Boolean']>;
2548
2549
  password?: InputMaybe<Scalars['String']>;
2549
2550
  };
2550
- export declare type MutationRevokeAppSpecificPasswordArgs = {
2551
+ export type MutationRevokeAppSpecificPasswordArgs = {
2551
2552
  appName: Scalars['String'];
2552
2553
  };
2553
- export declare type MutationRevokeRightsArgs = {
2554
+ export type MutationRevokeRightsArgs = {
2554
2555
  input: RevokeRightsInput;
2555
2556
  };
2556
- export declare type MutationSaveDocumentArgs = {
2557
+ export type MutationSaveDocumentArgs = {
2557
2558
  document?: InputMaybe<SaveDocumentInput>;
2558
2559
  };
2559
- export declare type MutationSaveDraftArgs = {
2560
+ export type MutationSaveDraftArgs = {
2560
2561
  accountName?: InputMaybe<Scalars['String']>;
2561
2562
  message: SendMessageInput;
2562
2563
  };
2563
- export declare type MutationSaveSMimeCertArgs = {
2564
+ export type MutationSaveSMimeCertArgs = {
2564
2565
  password?: InputMaybe<Scalars['String']>;
2565
2566
  upload: SaveSMimeCertInputUpload;
2566
2567
  };
2567
- export declare type MutationSendDeliveryReportArgs = {
2568
+ export type MutationSendDeliveryReportArgs = {
2568
2569
  messageId: Scalars['ID'];
2569
2570
  };
2570
- export declare type MutationSendInviteReplyArgs = {
2571
+ export type MutationSendInviteReplyArgs = {
2571
2572
  inviteReply: InviteReplyInput;
2572
2573
  };
2573
- export declare type MutationSendMessageArgs = {
2574
+ export type MutationSendMessageArgs = {
2574
2575
  accountName?: InputMaybe<Scalars['String']>;
2575
2576
  encrypt?: InputMaybe<Scalars['Boolean']>;
2576
2577
  message: SendMessageInput;
2577
2578
  sign?: InputMaybe<Scalars['Boolean']>;
2578
2579
  };
2579
- export declare type MutationSendShareNotificationArgs = {
2580
+ export type MutationSendShareNotificationArgs = {
2580
2581
  shareNotification: ShareNotificationInput;
2581
2582
  };
2582
- export declare type MutationSetCustomMetadataArgs = {
2583
+ export type MutationSetCustomMetadataArgs = {
2583
2584
  customMetaData: CustomMetadataInput;
2584
2585
  };
2585
- export declare type MutationSetMailboxMetadataArgs = {
2586
+ export type MutationSetMailboxMetadataArgs = {
2586
2587
  attrs: MailboxMetadataSectionAttrsInput;
2587
2588
  section?: InputMaybe<Scalars['String']>;
2588
2589
  };
2589
- export declare type MutationSetRecoveryAccountArgs = {
2590
+ export type MutationSetRecoveryAccountArgs = {
2590
2591
  channel: SetRecoveryAccountChannel;
2591
2592
  op: SetRecoveryAccountOp;
2592
2593
  recoveryAccount?: InputMaybe<Scalars['String']>;
2593
2594
  recoveryAccountVerificationCode?: InputMaybe<Scalars['String']>;
2594
2595
  };
2595
- export declare type MutationSnoozeCalendarItemArgs = {
2596
+ export type MutationSnoozeCalendarItemArgs = {
2596
2597
  appointment?: InputMaybe<Array<InputMaybe<SnoozeInput>>>;
2597
2598
  task?: InputMaybe<SnoozeInput>;
2598
2599
  };
2599
- export declare type MutationTagActionArgs = {
2600
+ export type MutationTagActionArgs = {
2600
2601
  action?: InputMaybe<FolderActionInput>;
2601
2602
  };
2602
- export declare type MutationTestExternalAccountArgs = {
2603
+ export type MutationTestExternalAccountArgs = {
2603
2604
  externalAccount: ExternalAccountTestInput;
2604
2605
  };
2605
- export declare type MutationUploadMessageArgs = {
2606
+ export type MutationUploadMessageArgs = {
2606
2607
  value: Scalars['String'];
2607
2608
  };
2608
- export declare type NameId = {
2609
+ export type NameId = {
2609
2610
  __typename?: 'NameId';
2610
2611
  id?: Maybe<Scalars['ID']>;
2611
2612
  name?: Maybe<Scalars['String']>;
2612
2613
  };
2613
- export declare type NameIdInput = {
2614
+ export type NameIdInput = {
2614
2615
  id?: InputMaybe<Scalars['ID']>;
2615
2616
  name?: InputMaybe<Scalars['String']>;
2616
2617
  };
@@ -2619,7 +2620,7 @@ export declare enum NeedIsMemberType {
2619
2620
  DirectOnly = "directOnly",
2620
2621
  None = "none"
2621
2622
  }
2622
- export declare type NewMountpointSpec = {
2623
+ export type NewMountpointSpec = {
2623
2624
  color?: InputMaybe<Scalars['Int']>;
2624
2625
  flags?: InputMaybe<Scalars['String']>;
2625
2626
  name: Scalars['String'];
@@ -2630,14 +2631,14 @@ export declare type NewMountpointSpec = {
2630
2631
  sharedItemId?: InputMaybe<Scalars['ID']>;
2631
2632
  view?: InputMaybe<SearchType>;
2632
2633
  };
2633
- export declare type NoOpResponse = {
2634
+ export type NoOpResponse = {
2634
2635
  __typename?: 'NoOpResponse';
2635
2636
  waitDisallowed?: Maybe<Scalars['Boolean']>;
2636
2637
  };
2637
- export declare type Notes = {
2638
+ export type Notes = {
2638
2639
  _content?: InputMaybe<Scalars['String']>;
2639
2640
  };
2640
- export declare type NotifyAction = {
2641
+ export type NotifyAction = {
2641
2642
  __typename?: 'NotifyAction';
2642
2643
  address?: Maybe<Scalars['String']>;
2643
2644
  content?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -2646,7 +2647,7 @@ export declare type NotifyAction = {
2646
2647
  origHeaders?: Maybe<Scalars['String']>;
2647
2648
  subject?: Maybe<Scalars['String']>;
2648
2649
  };
2649
- export declare type NotifyActionInput = {
2650
+ export type NotifyActionInput = {
2650
2651
  address?: InputMaybe<Scalars['String']>;
2651
2652
  content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
2652
2653
  index?: InputMaybe<Scalars['Int']>;
@@ -2654,20 +2655,20 @@ export declare type NotifyActionInput = {
2654
2655
  origHeaders?: InputMaybe<Scalars['String']>;
2655
2656
  subject?: InputMaybe<Scalars['String']>;
2656
2657
  };
2657
- export declare type OnlyEmailAddress = {
2658
+ export type OnlyEmailAddress = {
2658
2659
  __typename?: 'OnlyEmailAddress';
2659
2660
  emailAddress?: Maybe<Scalars['String']>;
2660
2661
  };
2661
- export declare type OtherContactAttribute = {
2662
+ export type OtherContactAttribute = {
2662
2663
  __typename?: 'OtherContactAttribute';
2663
2664
  key?: Maybe<Scalars['String']>;
2664
2665
  value?: Maybe<Scalars['String']>;
2665
2666
  };
2666
- export declare type OtherContactAttributeInput = {
2667
+ export type OtherContactAttributeInput = {
2667
2668
  key?: InputMaybe<Scalars['String']>;
2668
2669
  value?: InputMaybe<Scalars['String']>;
2669
2670
  };
2670
- export declare type Owner = {
2671
+ export type Owner = {
2671
2672
  _content?: InputMaybe<Scalars['String']>;
2672
2673
  by?: InputMaybe<Scalars['String']>;
2673
2674
  };
@@ -2692,20 +2693,20 @@ export declare enum PasswordRecoveryAddressStatus {
2692
2693
  Pending = "pending",
2693
2694
  Verified = "verified"
2694
2695
  }
2695
- export declare type Policy = {
2696
+ export type Policy = {
2696
2697
  __typename?: 'Policy';
2697
2698
  policy?: Maybe<Array<Maybe<PolicyAttrs>>>;
2698
2699
  };
2699
- export declare type PolicyAttrs = {
2700
+ export type PolicyAttrs = {
2700
2701
  __typename?: 'PolicyAttrs';
2701
2702
  lifetime?: Maybe<Scalars['String']>;
2702
2703
  type?: Maybe<Scalars['String']>;
2703
2704
  };
2704
- export declare type PolicyAttrsInput = {
2705
+ export type PolicyAttrsInput = {
2705
2706
  lifetime?: InputMaybe<Scalars['String']>;
2706
2707
  type?: InputMaybe<Scalars['String']>;
2707
2708
  };
2708
- export declare type PolicyInput = {
2709
+ export type PolicyInput = {
2709
2710
  policy?: InputMaybe<Array<InputMaybe<PolicyAttrsInput>>>;
2710
2711
  };
2711
2712
  export declare enum PrefCalendarInitialView {
@@ -2738,7 +2739,7 @@ export declare enum PrefMailSendReadReceipts {
2738
2739
  Never = "never",
2739
2740
  Prompt = "prompt"
2740
2741
  }
2741
- export declare type Preferences = {
2742
+ export type Preferences = {
2742
2743
  __typename?: 'Preferences';
2743
2744
  zimbraPrefAppleIcalDelegationEnabled?: Maybe<Scalars['Boolean']>;
2744
2745
  zimbraPrefAutoAddAppointmentsToCalendar?: Maybe<Scalars['Boolean']>;
@@ -2800,7 +2801,7 @@ export declare type Preferences = {
2800
2801
  zimbraPrefUseTimeZoneListInCalendar?: Maybe<Scalars['Boolean']>;
2801
2802
  zimbraPrefWebClientOfflineBrowserKey?: Maybe<Scalars['String']>;
2802
2803
  };
2803
- export declare type PreferencesInput = {
2804
+ export type PreferencesInput = {
2804
2805
  zimbraPrefAppleIcalDelegationEnabled?: InputMaybe<Scalars['Boolean']>;
2805
2806
  zimbraPrefAutoAddAppointmentsToCalendar?: InputMaybe<Scalars['Boolean']>;
2806
2807
  zimbraPrefBriefcaseReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
@@ -2858,31 +2859,31 @@ export declare type PreferencesInput = {
2858
2859
  zimbraPrefUseTimeZoneListInCalendar?: InputMaybe<Scalars['Boolean']>;
2859
2860
  zimbraPrefWebClientOfflineBrowserKey?: InputMaybe<Scalars['String']>;
2860
2861
  };
2861
- export declare type ProfileImageChangeResponse = {
2862
+ export type ProfileImageChangeResponse = {
2862
2863
  __typename?: 'ProfileImageChangeResponse';
2863
2864
  itemId?: Maybe<Scalars['ID']>;
2864
2865
  };
2865
- export declare type Prop = {
2866
+ export type Prop = {
2866
2867
  __typename?: 'Prop';
2867
2868
  _content?: Maybe<Scalars['String']>;
2868
2869
  name?: Maybe<Scalars['String']>;
2869
2870
  zimlet?: Maybe<Scalars['String']>;
2870
2871
  };
2871
- export declare type PropList = {
2872
+ export type PropList = {
2872
2873
  __typename?: 'PropList';
2873
2874
  prop?: Maybe<Array<Maybe<Prop>>>;
2874
2875
  };
2875
- export declare type PropertiesInput = {
2876
+ export type PropertiesInput = {
2876
2877
  _content?: InputMaybe<Scalars['String']>;
2877
2878
  name: Scalars['String'];
2878
2879
  zimlet: Scalars['String'];
2879
2880
  };
2880
- export declare type PurgetRevisionInput = {
2881
+ export type PurgetRevisionInput = {
2881
2882
  id: Scalars['ID'];
2882
2883
  includeOlderRevisions?: InputMaybe<Scalars['Int']>;
2883
2884
  ver: Scalars['Int'];
2884
2885
  };
2885
- export declare type Query = {
2886
+ export type Query = {
2886
2887
  __typename?: 'Query';
2887
2888
  accountInfo?: Maybe<AccountInfo>;
2888
2889
  autoComplete?: Maybe<AutoCompleteResponse>;
@@ -2936,48 +2937,48 @@ export declare type Query = {
2936
2937
  shareInfo?: Maybe<Array<Maybe<ShareInfo>>>;
2937
2938
  taskFolders?: Maybe<Array<Maybe<Folder>>>;
2938
2939
  };
2939
- export declare type QueryAutoCompleteArgs = {
2940
+ export type QueryAutoCompleteArgs = {
2940
2941
  folders?: InputMaybe<Scalars['String']>;
2941
2942
  includeGal?: InputMaybe<Scalars['Boolean']>;
2942
2943
  name?: InputMaybe<Scalars['String']>;
2943
2944
  needExp?: InputMaybe<Scalars['Boolean']>;
2944
2945
  type?: InputMaybe<GalSearchType>;
2945
2946
  };
2946
- export declare type QueryAutoCompleteGalArgs = {
2947
+ export type QueryAutoCompleteGalArgs = {
2947
2948
  limit?: InputMaybe<Scalars['Int']>;
2948
2949
  name: Scalars['String'];
2949
2950
  needExp?: InputMaybe<Scalars['Boolean']>;
2950
2951
  type?: InputMaybe<GalSearchType>;
2951
2952
  };
2952
- export declare type QueryClientInfoArgs = {
2953
+ export type QueryClientInfoArgs = {
2953
2954
  by?: InputMaybe<Scalars['String']>;
2954
2955
  domain?: InputMaybe<Scalars['String']>;
2955
2956
  };
2956
- export declare type QueryDiscoverRightsArgs = {
2957
+ export type QueryDiscoverRightsArgs = {
2957
2958
  right: Array<DiscoverRightInput>;
2958
2959
  };
2959
- export declare type QueryDownloadAttachmentArgs = {
2960
+ export type QueryDownloadAttachmentArgs = {
2960
2961
  id: Scalars['ID'];
2961
2962
  part: Scalars['ID'];
2962
2963
  };
2963
- export declare type QueryDownloadDocumentArgs = {
2964
+ export type QueryDownloadDocumentArgs = {
2964
2965
  id: Scalars['ID'];
2965
2966
  url: Scalars['String'];
2966
2967
  };
2967
- export declare type QueryDownloadMessageArgs = {
2968
+ export type QueryDownloadMessageArgs = {
2968
2969
  id: Scalars['ID'];
2969
2970
  isLocal?: InputMaybe<Scalars['Boolean']>;
2970
2971
  isSecure?: InputMaybe<Scalars['Boolean']>;
2971
2972
  };
2972
- export declare type QueryFreeBusyArgs = {
2973
+ export type QueryFreeBusyArgs = {
2973
2974
  end?: InputMaybe<Scalars['Float']>;
2974
2975
  names: Array<Scalars['String']>;
2975
2976
  start?: InputMaybe<Scalars['Float']>;
2976
2977
  };
2977
- export declare type QueryGetAppointmentArgs = {
2978
+ export type QueryGetAppointmentArgs = {
2978
2979
  id: Scalars['ID'];
2979
2980
  };
2980
- export declare type QueryGetAppointmentsArgs = {
2981
+ export type QueryGetAppointmentsArgs = {
2981
2982
  calExpandInstEnd: Scalars['Float'];
2982
2983
  calExpandInstStart: Scalars['Float'];
2983
2984
  limit: Scalars['Int'];
@@ -2985,19 +2986,19 @@ export declare type QueryGetAppointmentsArgs = {
2985
2986
  query: Scalars['String'];
2986
2987
  types?: InputMaybe<SearchType>;
2987
2988
  };
2988
- export declare type QueryGetContactArgs = {
2989
+ export type QueryGetContactArgs = {
2989
2990
  derefGroupMember?: InputMaybe<Scalars['Boolean']>;
2990
2991
  id?: InputMaybe<Scalars['ID']>;
2991
2992
  ids?: InputMaybe<Array<Scalars['ID']>>;
2992
2993
  memberOf?: InputMaybe<Scalars['Boolean']>;
2993
2994
  };
2994
- export declare type QueryGetContactFrequencyArgs = {
2995
+ export type QueryGetContactFrequencyArgs = {
2995
2996
  by: Scalars['String'];
2996
2997
  email: Scalars['String'];
2997
2998
  offsetInMinutes?: InputMaybe<Scalars['String']>;
2998
2999
  spec?: InputMaybe<Array<ContactFrequencySpec>>;
2999
3000
  };
3000
- export declare type QueryGetConversationArgs = {
3001
+ export type QueryGetConversationArgs = {
3001
3002
  fetch?: InputMaybe<Scalars['String']>;
3002
3003
  header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
3003
3004
  html?: InputMaybe<Scalars['Boolean']>;
@@ -3005,19 +3006,19 @@ export declare type QueryGetConversationArgs = {
3005
3006
  max?: InputMaybe<Scalars['Int']>;
3006
3007
  needExp?: InputMaybe<Scalars['Boolean']>;
3007
3008
  };
3008
- export declare type QueryGetCustomMetadataArgs = {
3009
+ export type QueryGetCustomMetadataArgs = {
3009
3010
  id: Scalars['ID'];
3010
3011
  section?: InputMaybe<Scalars['String']>;
3011
3012
  };
3012
- export declare type QueryGetDistributionListMembersArgs = {
3013
+ export type QueryGetDistributionListMembersArgs = {
3013
3014
  dl?: InputMaybe<Scalars['String']>;
3014
3015
  limit?: InputMaybe<Scalars['Int']>;
3015
3016
  offset?: InputMaybe<Scalars['Int']>;
3016
3017
  };
3017
- export declare type QueryGetDocumentShareUrlArgs = {
3018
+ export type QueryGetDocumentShareUrlArgs = {
3018
3019
  item?: InputMaybe<GetDocumentShareUrlItemInput>;
3019
3020
  };
3020
- export declare type QueryGetFolderArgs = {
3021
+ export type QueryGetFolderArgs = {
3021
3022
  depth?: InputMaybe<Scalars['Int']>;
3022
3023
  folder?: InputMaybe<GetFolderFolderInput>;
3023
3024
  local?: InputMaybe<Scalars['Boolean']>;
@@ -3026,13 +3027,13 @@ export declare type QueryGetFolderArgs = {
3026
3027
  view?: InputMaybe<FolderView>;
3027
3028
  visible?: InputMaybe<Scalars['Boolean']>;
3028
3029
  };
3029
- export declare type QueryGetHabArgs = {
3030
+ export type QueryGetHabArgs = {
3030
3031
  habRootGroupId?: InputMaybe<Scalars['ID']>;
3031
3032
  };
3032
- export declare type QueryGetMailboxMetadataArgs = {
3033
+ export type QueryGetMailboxMetadataArgs = {
3033
3034
  section?: InputMaybe<Scalars['String']>;
3034
3035
  };
3035
- export declare type QueryGetMessageArgs = {
3036
+ export type QueryGetMessageArgs = {
3036
3037
  header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
3037
3038
  html?: InputMaybe<Scalars['Boolean']>;
3038
3039
  id: Scalars['ID'];
@@ -3045,11 +3046,11 @@ export declare type QueryGetMessageArgs = {
3045
3046
  read?: InputMaybe<Scalars['Boolean']>;
3046
3047
  ridZ?: InputMaybe<Scalars['String']>;
3047
3048
  };
3048
- export declare type QueryGetMessagesMetadataArgs = {
3049
+ export type QueryGetMessagesMetadataArgs = {
3049
3050
  ids: Array<Scalars['ID']>;
3050
3051
  isLocal?: InputMaybe<Scalars['Boolean']>;
3051
3052
  };
3052
- export declare type QueryGetRemindersArgs = {
3053
+ export type QueryGetRemindersArgs = {
3053
3054
  calExpandInstEnd: Scalars['Float'];
3054
3055
  calExpandInstStart: Scalars['Float'];
3055
3056
  limit: Scalars['Int'];
@@ -3057,48 +3058,48 @@ export declare type QueryGetRemindersArgs = {
3057
3058
  query: Scalars['String'];
3058
3059
  types?: InputMaybe<SearchType>;
3059
3060
  };
3060
- export declare type QueryGetRightsArgs = {
3061
+ export type QueryGetRightsArgs = {
3061
3062
  input: GetRightsInput;
3062
3063
  };
3063
- export declare type QueryGetSMimeCertInfoArgs = {
3064
+ export type QueryGetSMimeCertInfoArgs = {
3064
3065
  certId?: InputMaybe<Scalars['String']>;
3065
3066
  };
3066
- export declare type QueryGetSMimePublicCertsArgs = {
3067
+ export type QueryGetSMimePublicCertsArgs = {
3067
3068
  contactAddr: Scalars['String'];
3068
3069
  store: Scalars['String'];
3069
3070
  };
3070
- export declare type QueryGetScratchCodesArgs = {
3071
+ export type QueryGetScratchCodesArgs = {
3071
3072
  username: Scalars['String'];
3072
3073
  };
3073
- export declare type QueryGetTasksArgs = {
3074
+ export type QueryGetTasksArgs = {
3074
3075
  limit: Scalars['Int'];
3075
3076
  offset: Scalars['Int'];
3076
3077
  query: Scalars['String'];
3077
3078
  types?: InputMaybe<SearchType>;
3078
3079
  };
3079
- export declare type QueryGetWorkingHoursArgs = {
3080
+ export type QueryGetWorkingHoursArgs = {
3080
3081
  end?: InputMaybe<Scalars['Float']>;
3081
3082
  names: Array<Scalars['String']>;
3082
3083
  start?: InputMaybe<Scalars['Float']>;
3083
3084
  };
3084
- export declare type QueryListDocumentRevisionsArgs = {
3085
+ export type QueryListDocumentRevisionsArgs = {
3085
3086
  count: Scalars['Int'];
3086
3087
  id: Scalars['ID'];
3087
3088
  version: Scalars['Int'];
3088
3089
  };
3089
- export declare type QueryNoopArgs = {
3090
+ export type QueryNoopArgs = {
3090
3091
  limitToOneBlocked?: InputMaybe<Scalars['Int']>;
3091
3092
  wait?: InputMaybe<Scalars['Int']>;
3092
3093
  };
3093
- export declare type QueryRecoverAccountArgs = {
3094
+ export type QueryRecoverAccountArgs = {
3094
3095
  channel: SetRecoveryAccountChannel;
3095
3096
  email: Scalars['String'];
3096
3097
  op: RecoverAccountOp;
3097
3098
  };
3098
- export declare type QueryRelatedContactsArgs = {
3099
+ export type QueryRelatedContactsArgs = {
3099
3100
  email: Scalars['String'];
3100
3101
  };
3101
- export declare type QuerySearchArgs = {
3102
+ export type QuerySearchArgs = {
3102
3103
  contact?: InputMaybe<Scalars['String']>;
3103
3104
  cursor?: InputMaybe<Cursor>;
3104
3105
  fetch?: InputMaybe<Scalars['String']>;
@@ -3114,14 +3115,14 @@ export declare type QuerySearchArgs = {
3114
3115
  sortBy?: InputMaybe<SortBy>;
3115
3116
  types?: InputMaybe<SearchType>;
3116
3117
  };
3117
- export declare type QuerySearchCalendarResourcesArgs = {
3118
+ export type QuerySearchCalendarResourcesArgs = {
3118
3119
  attrs?: InputMaybe<Scalars['String']>;
3119
3120
  limit?: InputMaybe<Scalars['Int']>;
3120
3121
  needExp?: InputMaybe<Scalars['Boolean']>;
3121
3122
  offset?: InputMaybe<Scalars['Int']>;
3122
3123
  searchFilter?: InputMaybe<SearchConditionsInput>;
3123
3124
  };
3124
- export declare type QuerySearchGalArgs = {
3125
+ export type QuerySearchGalArgs = {
3125
3126
  limit?: InputMaybe<Scalars['Int']>;
3126
3127
  locale?: InputMaybe<Scalars['String']>;
3127
3128
  name?: InputMaybe<Scalars['String']>;
@@ -3132,7 +3133,7 @@ export declare type QuerySearchGalArgs = {
3132
3133
  sortBy?: InputMaybe<Scalars['String']>;
3133
3134
  type?: InputMaybe<GalSearchType>;
3134
3135
  };
3135
- export declare type QueryShareInfoArgs = {
3136
+ export type QueryShareInfoArgs = {
3136
3137
  grantee?: InputMaybe<Grantee>;
3137
3138
  includeSelf?: InputMaybe<Scalars['Boolean']>;
3138
3139
  internal?: InputMaybe<Scalars['Boolean']>;
@@ -3143,7 +3144,7 @@ export declare enum ReadingPaneLocation {
3143
3144
  Off = "off",
3144
3145
  Right = "right"
3145
3146
  }
3146
- export declare type RecoverAccount = {
3147
+ export type RecoverAccount = {
3147
3148
  __typename?: 'RecoverAccount';
3148
3149
  recoveryAccount?: Maybe<Scalars['String']>;
3149
3150
  recoveryAttemptsLeft?: Maybe<Scalars['Int']>;
@@ -3152,7 +3153,7 @@ export declare enum RecoverAccountOp {
3152
3153
  GetRecoveryAccount = "getRecoveryAccount",
3153
3154
  SendRecoveryCode = "sendRecoveryCode"
3154
3155
  }
3155
- export declare type RecurrenceInfo = {
3156
+ export type RecurrenceInfo = {
3156
3157
  __typename?: 'RecurrenceInfo';
3157
3158
  add?: Maybe<Array<Maybe<AddRecurrenceInfo>>>;
3158
3159
  cancel?: Maybe<Array<Maybe<CancelRuleInfo>>>;
@@ -3160,24 +3161,24 @@ export declare type RecurrenceInfo = {
3160
3161
  exclude?: Maybe<Array<Maybe<ExcludeRecurrenceInfo>>>;
3161
3162
  rule?: Maybe<Array<Maybe<SimpleRepeatingRule>>>;
3162
3163
  };
3163
- export declare type RedirectAction = {
3164
+ export type RedirectAction = {
3164
3165
  __typename?: 'RedirectAction';
3165
3166
  address?: Maybe<Scalars['String']>;
3166
3167
  copy?: Maybe<Scalars['Boolean']>;
3167
3168
  index?: Maybe<Scalars['Int']>;
3168
3169
  };
3169
- export declare type RedirectActionInput = {
3170
+ export type RedirectActionInput = {
3170
3171
  address?: InputMaybe<Scalars['String']>;
3171
3172
  copy?: InputMaybe<Scalars['Boolean']>;
3172
3173
  index?: InputMaybe<Scalars['Int']>;
3173
3174
  };
3174
- export declare type RelatedContact = {
3175
+ export type RelatedContact = {
3175
3176
  __typename?: 'RelatedContact';
3176
3177
  email?: Maybe<Scalars['String']>;
3177
3178
  p?: Maybe<Scalars['String']>;
3178
3179
  scope?: Maybe<Scalars['Int']>;
3179
3180
  };
3180
- export declare type ReminderItemHitInfo = {
3181
+ export type ReminderItemHitInfo = {
3181
3182
  __typename?: 'ReminderItemHitInfo';
3182
3183
  aid?: Maybe<Scalars['String']>;
3183
3184
  alarm?: Maybe<Scalars['Boolean']>;
@@ -3220,25 +3221,25 @@ export declare type ReminderItemHitInfo = {
3220
3221
  utcRecurrenceId?: Maybe<Scalars['String']>;
3221
3222
  x_uid?: Maybe<Scalars['String']>;
3222
3223
  };
3223
- export declare type RemindersResponse = {
3224
+ export type RemindersResponse = {
3224
3225
  __typename?: 'RemindersResponse';
3225
3226
  appointments?: Maybe<Array<Maybe<ReminderItemHitInfo>>>;
3226
3227
  tasks?: Maybe<Array<Maybe<ReminderItemHitInfo>>>;
3227
3228
  };
3228
- export declare type ReplyAction = {
3229
+ export type ReplyAction = {
3229
3230
  __typename?: 'ReplyAction';
3230
3231
  content?: Maybe<Array<Maybe<Scalars['String']>>>;
3231
3232
  index?: Maybe<Scalars['Int']>;
3232
3233
  };
3233
- export declare type ReplyActionInput = {
3234
+ export type ReplyActionInput = {
3234
3235
  content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
3235
3236
  index?: InputMaybe<Scalars['Int']>;
3236
3237
  };
3237
- export declare type ResetPasswordResponse = {
3238
+ export type ResetPasswordResponse = {
3238
3239
  __typename?: 'ResetPasswordResponse';
3239
3240
  attrs?: Maybe<ResetPasswordResponseAttributes>;
3240
3241
  };
3241
- export declare type ResetPasswordResponseAttributes = {
3242
+ export type ResetPasswordResponseAttributes = {
3242
3243
  __typename?: 'ResetPasswordResponseAttributes';
3243
3244
  _attrs?: Maybe<AccountInfoAttrs>;
3244
3245
  };
@@ -3247,47 +3248,47 @@ export declare enum ResetPasswordStatus {
3247
3248
  Enabled = "enabled",
3248
3249
  Suspended = "suspended"
3249
3250
  }
3250
- export declare type RetentionPolicy = {
3251
+ export type RetentionPolicy = {
3251
3252
  __typename?: 'RetentionPolicy';
3252
3253
  keep?: Maybe<Array<Maybe<Policy>>>;
3253
3254
  purge?: Maybe<Array<Maybe<Policy>>>;
3254
3255
  };
3255
- export declare type RetentionPolicyInput = {
3256
+ export type RetentionPolicyInput = {
3256
3257
  keep?: InputMaybe<Array<InputMaybe<PolicyInput>>>;
3257
3258
  purge?: InputMaybe<Array<InputMaybe<PolicyInput>>>;
3258
3259
  };
3259
- export declare type RevokeRightsInput = {
3260
+ export type RevokeRightsInput = {
3260
3261
  access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
3261
3262
  };
3262
- export declare type Right = {
3263
+ export type Right = {
3263
3264
  right: Scalars['String'];
3264
3265
  };
3265
- export declare type RightsResponse = {
3266
+ export type RightsResponse = {
3266
3267
  __typename?: 'RightsResponse';
3267
3268
  access?: Maybe<Array<Maybe<AccountAceInfo>>>;
3268
3269
  };
3269
- export declare type SMimeMessage = {
3270
+ export type SMimeMessage = {
3270
3271
  __typename?: 'SMimeMessage';
3271
3272
  content?: Maybe<Scalars['String']>;
3272
3273
  id?: Maybe<Scalars['ID']>;
3273
3274
  isSecure?: Maybe<Scalars['Boolean']>;
3274
3275
  };
3275
- export declare type SMimePublicCert = {
3276
+ export type SMimePublicCert = {
3276
3277
  __typename?: 'SMimePublicCert';
3277
3278
  _content?: Maybe<Scalars['String']>;
3278
3279
  field: Scalars['String'];
3279
3280
  store: Scalars['String'];
3280
3281
  };
3281
- export declare type SMimePublicCerts = {
3282
+ export type SMimePublicCerts = {
3282
3283
  __typename?: 'SMimePublicCerts';
3283
3284
  cert?: Maybe<Array<Maybe<SMimePublicCert>>>;
3284
3285
  email?: Maybe<Scalars['String']>;
3285
3286
  };
3286
- export declare type SMimePublicCertsResponse = {
3287
+ export type SMimePublicCertsResponse = {
3287
3288
  __typename?: 'SMimePublicCertsResponse';
3288
3289
  certs?: Maybe<Array<Maybe<SMimePublicCerts>>>;
3289
3290
  };
3290
- export declare type SaveDocument = {
3291
+ export type SaveDocument = {
3291
3292
  __typename?: 'SaveDocument';
3292
3293
  id?: Maybe<Scalars['ID']>;
3293
3294
  name?: Maybe<Scalars['String']>;
@@ -3296,7 +3297,7 @@ export declare type SaveDocument = {
3296
3297
  export declare enum SaveDocumentAction {
3297
3298
  Create = "create"
3298
3299
  }
3299
- export declare type SaveDocumentInput = {
3300
+ export type SaveDocumentInput = {
3300
3301
  action?: InputMaybe<SaveDocumentAction>;
3301
3302
  contentType?: InputMaybe<Scalars['String']>;
3302
3303
  descriptionEnabled?: InputMaybe<Scalars['Boolean']>;
@@ -3309,7 +3310,7 @@ export declare type SaveDocumentInput = {
3309
3310
  upload?: InputMaybe<UploadDocument>;
3310
3311
  version?: InputMaybe<Scalars['Float']>;
3311
3312
  };
3312
- export declare type SaveDocumentResponse = {
3313
+ export type SaveDocumentResponse = {
3313
3314
  __typename?: 'SaveDocumentResponse';
3314
3315
  document?: Maybe<Array<Maybe<SaveDocument>>>;
3315
3316
  };
@@ -3318,31 +3319,31 @@ export declare enum SaveDocumentType {
3318
3319
  Presentation = "presentation",
3319
3320
  Spreadsheet = "spreadsheet"
3320
3321
  }
3321
- export declare type SaveDraftResponse = {
3322
+ export type SaveDraftResponse = {
3322
3323
  __typename?: 'SaveDraftResponse';
3323
3324
  message?: Maybe<Array<Maybe<MessageInfo>>>;
3324
3325
  };
3325
- export declare type SaveMessageDataInput = {
3326
+ export type SaveMessageDataInput = {
3326
3327
  content: Scalars['String'];
3327
3328
  id: Scalars['ID'];
3328
3329
  meta: Scalars['String'];
3329
3330
  };
3330
- export declare type SaveSMimeCertInputUpload = {
3331
+ export type SaveSMimeCertInputUpload = {
3331
3332
  id?: InputMaybe<Scalars['String']>;
3332
3333
  };
3333
- export declare type ScratchCode = {
3334
+ export type ScratchCode = {
3334
3335
  __typename?: 'ScratchCode';
3335
3336
  scratchCode?: Maybe<Array<Maybe<ScratchCodeType>>>;
3336
3337
  };
3337
- export declare type ScratchCodeType = {
3338
+ export type ScratchCodeType = {
3338
3339
  __typename?: 'ScratchCodeType';
3339
3340
  _content?: Maybe<Scalars['String']>;
3340
3341
  };
3341
- export declare type ScratchCodes = {
3342
+ export type ScratchCodes = {
3342
3343
  __typename?: 'ScratchCodes';
3343
3344
  scratchCodes?: Maybe<ScratchCode>;
3344
3345
  };
3345
- export declare type SearchCalendarResourcesResponse = {
3346
+ export type SearchCalendarResourcesResponse = {
3346
3347
  __typename?: 'SearchCalendarResourcesResponse';
3347
3348
  calresource?: Maybe<Array<Maybe<CalResource>>>;
3348
3349
  more?: Maybe<Scalars['Boolean']>;
@@ -3350,15 +3351,15 @@ export declare type SearchCalendarResourcesResponse = {
3350
3351
  paginationSupported?: Maybe<Scalars['Boolean']>;
3351
3352
  sortBy?: Maybe<Scalars['String']>;
3352
3353
  };
3353
- export declare type SearchConditionsInput = {
3354
+ export type SearchConditionsInput = {
3354
3355
  conds?: InputMaybe<ConditionsInput>;
3355
3356
  };
3356
- export declare type SearchFolderInput = {
3357
+ export type SearchFolderInput = {
3357
3358
  id: Scalars['ID'];
3358
3359
  query: Scalars['String'];
3359
3360
  types: FolderView;
3360
3361
  };
3361
- export declare type SearchResponse = {
3362
+ export type SearchResponse = {
3362
3363
  __typename?: 'SearchResponse';
3363
3364
  appointments?: Maybe<Array<Maybe<CalendarItemHitInfo>>>;
3364
3365
  contacts?: Maybe<Array<Maybe<Contact>>>;
@@ -3381,11 +3382,11 @@ export declare enum SearchType {
3381
3382
  Task = "task",
3382
3383
  Wiki = "wiki"
3383
3384
  }
3384
- export declare type Secret = {
3385
+ export type Secret = {
3385
3386
  __typename?: 'Secret';
3386
3387
  _content?: Maybe<Scalars['String']>;
3387
3388
  };
3388
- export declare type SendMessageInput = {
3389
+ export type SendMessageInput = {
3389
3390
  attach?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
3390
3391
  attachmentId?: InputMaybe<Scalars['ID']>;
3391
3392
  attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
@@ -3403,11 +3404,11 @@ export declare type SendMessageInput = {
3403
3404
  replyType?: InputMaybe<Scalars['String']>;
3404
3405
  subject?: InputMaybe<Scalars['String']>;
3405
3406
  };
3406
- export declare type SendMessageResponse = {
3407
+ export type SendMessageResponse = {
3407
3408
  __typename?: 'SendMessageResponse';
3408
3409
  message?: Maybe<Array<Maybe<MsgWithGroupInfo>>>;
3409
3410
  };
3410
- export declare type Session = {
3411
+ export type Session = {
3411
3412
  __typename?: 'Session';
3412
3413
  _content?: Maybe<Scalars['String']>;
3413
3414
  id?: Maybe<Scalars['ID']>;
@@ -3421,7 +3422,7 @@ export declare enum SetRecoveryAccountOp {
3421
3422
  SendCode = "sendCode",
3422
3423
  ValidateCode = "validateCode"
3423
3424
  }
3424
- export declare type ShareInfo = {
3425
+ export type ShareInfo = {
3425
3426
  __typename?: 'ShareInfo';
3426
3427
  folderId: Scalars['ID'];
3427
3428
  folderPath?: Maybe<Scalars['String']>;
@@ -3442,55 +3443,55 @@ export declare enum ShareInputAction {
3442
3443
  Expire = "expire",
3443
3444
  Revoke = "revoke"
3444
3445
  }
3445
- export declare type ShareNotificaitonEmailAddressInput = {
3446
+ export type ShareNotificaitonEmailAddressInput = {
3446
3447
  address: Scalars['String'];
3447
3448
  personalName?: InputMaybe<Scalars['String']>;
3448
3449
  type?: InputMaybe<AddressType>;
3449
3450
  };
3450
- export declare type ShareNotification = {
3451
+ export type ShareNotification = {
3451
3452
  __typename?: 'ShareNotification';
3452
3453
  content?: Maybe<Scalars['String']>;
3453
3454
  truncated?: Maybe<Scalars['Boolean']>;
3454
3455
  };
3455
- export declare type ShareNotificationInput = {
3456
+ export type ShareNotificationInput = {
3456
3457
  action?: InputMaybe<ShareInputAction>;
3457
3458
  address: ShareNotificaitonEmailAddressInput;
3458
3459
  item: ShareNotificationItemInput;
3459
3460
  notes?: InputMaybe<Notes>;
3460
3461
  };
3461
- export declare type ShareNotificationItemInput = {
3462
+ export type ShareNotificationItemInput = {
3462
3463
  id: Scalars['ID'];
3463
3464
  };
3464
- export declare type Signature = {
3465
+ export type Signature = {
3465
3466
  __typename?: 'Signature';
3466
3467
  content?: Maybe<Array<Maybe<SignatureContent>>>;
3467
3468
  id?: Maybe<Scalars['ID']>;
3468
3469
  name?: Maybe<Scalars['String']>;
3469
3470
  };
3470
- export declare type SignatureContent = {
3471
+ export type SignatureContent = {
3471
3472
  __typename?: 'SignatureContent';
3472
3473
  _content?: Maybe<Scalars['String']>;
3473
3474
  type?: Maybe<Scalars['String']>;
3474
3475
  };
3475
- export declare type SignatureContentInput = {
3476
+ export type SignatureContentInput = {
3476
3477
  _content?: InputMaybe<Scalars['String']>;
3477
3478
  type?: InputMaybe<Scalars['String']>;
3478
3479
  };
3479
- export declare type SignatureInput = {
3480
+ export type SignatureInput = {
3480
3481
  content?: InputMaybe<Array<InputMaybe<SignatureContentInput>>>;
3481
3482
  contentId?: InputMaybe<Scalars['String']>;
3482
3483
  id?: InputMaybe<Scalars['ID']>;
3483
3484
  name?: InputMaybe<Scalars['String']>;
3484
3485
  };
3485
- export declare type SignatureResponse = {
3486
+ export type SignatureResponse = {
3486
3487
  __typename?: 'SignatureResponse';
3487
3488
  signature?: Maybe<Array<Maybe<NameId>>>;
3488
3489
  };
3489
- export declare type Signatures = {
3490
+ export type Signatures = {
3490
3491
  __typename?: 'Signatures';
3491
3492
  signature?: Maybe<Array<Maybe<Signature>>>;
3492
3493
  };
3493
- export declare type SimpleRepeatingRule = {
3494
+ export type SimpleRepeatingRule = {
3494
3495
  __typename?: 'SimpleRepeatingRule';
3495
3496
  byday?: Maybe<Array<Maybe<ByDayRule>>>;
3496
3497
  bymonth?: Maybe<Array<Maybe<ByMonthRule>>>;
@@ -3501,24 +3502,24 @@ export declare type SimpleRepeatingRule = {
3501
3502
  interval?: Maybe<Array<Maybe<IntervalRule>>>;
3502
3503
  until?: Maybe<Array<Maybe<CalendarItemRecurrenceEndDate>>>;
3503
3504
  };
3504
- export declare type SizeCondition = {
3505
+ export type SizeCondition = {
3505
3506
  __typename?: 'SizeCondition';
3506
3507
  index?: Maybe<Scalars['Int']>;
3507
3508
  negative?: Maybe<Scalars['Boolean']>;
3508
3509
  numberComparison?: Maybe<Scalars['String']>;
3509
3510
  size?: Maybe<Scalars['String']>;
3510
3511
  };
3511
- export declare type SizeConditionInput = {
3512
+ export type SizeConditionInput = {
3512
3513
  index?: InputMaybe<Scalars['Int']>;
3513
3514
  negative?: InputMaybe<Scalars['Boolean']>;
3514
3515
  numberComparison?: InputMaybe<Scalars['String']>;
3515
3516
  size?: InputMaybe<Scalars['String']>;
3516
3517
  };
3517
- export declare type Skin = {
3518
+ export type Skin = {
3518
3519
  __typename?: 'Skin';
3519
3520
  _content?: Maybe<Scalars['String']>;
3520
3521
  };
3521
- export declare type SmimeCert = {
3522
+ export type SmimeCert = {
3522
3523
  __typename?: 'SmimeCert';
3523
3524
  default?: Maybe<Scalars['Boolean']>;
3524
3525
  emailAddress?: Maybe<Scalars['String']>;
@@ -3531,11 +3532,11 @@ export declare type SmimeCert = {
3531
3532
  subjectAltName?: Maybe<SmimeCertSubjectAltName>;
3532
3533
  validity?: Maybe<SmimeCertValidity>;
3533
3534
  };
3534
- export declare type SmimeCertInfoResponse = {
3535
+ export type SmimeCertInfoResponse = {
3535
3536
  __typename?: 'SmimeCertInfoResponse';
3536
3537
  certificates?: Maybe<Array<Maybe<SmimeCert>>>;
3537
3538
  };
3538
- export declare type SmimeCertIssuedBy = {
3539
+ export type SmimeCertIssuedBy = {
3539
3540
  __typename?: 'SmimeCertIssuedBy';
3540
3541
  commonName?: Maybe<Scalars['String']>;
3541
3542
  country?: Maybe<Scalars['String']>;
@@ -3544,7 +3545,7 @@ export declare type SmimeCertIssuedBy = {
3544
3545
  organizationName?: Maybe<Scalars['String']>;
3545
3546
  state?: Maybe<Scalars['String']>;
3546
3547
  };
3547
- export declare type SmimeCertIssuedTo = {
3548
+ export type SmimeCertIssuedTo = {
3548
3549
  __typename?: 'SmimeCertIssuedTo';
3549
3550
  commonName?: Maybe<Scalars['String']>;
3550
3551
  country?: Maybe<Scalars['String']>;
@@ -3553,25 +3554,25 @@ export declare type SmimeCertIssuedTo = {
3553
3554
  organizationUnit?: Maybe<Scalars['String']>;
3554
3555
  state?: Maybe<Scalars['String']>;
3555
3556
  };
3556
- export declare type SmimeCertSignature = {
3557
+ export type SmimeCertSignature = {
3557
3558
  __typename?: 'SmimeCertSignature';
3558
3559
  algorithm?: Maybe<Scalars['String']>;
3559
3560
  serialNo?: Maybe<Scalars['String']>;
3560
3561
  };
3561
- export declare type SmimeCertSubjectAltName = {
3562
+ export type SmimeCertSubjectAltName = {
3562
3563
  __typename?: 'SmimeCertSubjectAltName';
3563
3564
  rfc822Name?: Maybe<Array<Maybe<SmimeCertSubjectRfc822Name>>>;
3564
3565
  };
3565
- export declare type SmimeCertSubjectRfc822Name = {
3566
+ export type SmimeCertSubjectRfc822Name = {
3566
3567
  __typename?: 'SmimeCertSubjectRfc822Name';
3567
3568
  content?: Maybe<Scalars['String']>;
3568
3569
  };
3569
- export declare type SmimeCertValidity = {
3570
+ export type SmimeCertValidity = {
3570
3571
  __typename?: 'SmimeCertValidity';
3571
3572
  endDate?: Maybe<Scalars['Float']>;
3572
3573
  startDate?: Maybe<Scalars['Float']>;
3573
3574
  };
3574
- export declare type SnoozeInput = {
3575
+ export type SnoozeInput = {
3575
3576
  id: Scalars['ID'];
3576
3577
  until: Scalars['Float'];
3577
3578
  };
@@ -3596,11 +3597,11 @@ export declare enum SortBy {
3596
3597
  SubjAsc = "subjAsc",
3597
3598
  SubjDesc = "subjDesc"
3598
3599
  }
3599
- export declare type StringContent = {
3600
+ export type StringContent = {
3600
3601
  __typename?: 'StringContent';
3601
3602
  _content?: Maybe<Scalars['String']>;
3602
3603
  };
3603
- export declare type Tag = {
3604
+ export type Tag = {
3604
3605
  __typename?: 'Tag';
3605
3606
  color?: Maybe<Scalars['Int']>;
3606
3607
  id?: Maybe<Scalars['ID']>;
@@ -3608,35 +3609,35 @@ export declare type Tag = {
3608
3609
  rgb?: Maybe<Scalars['String']>;
3609
3610
  unread?: Maybe<Scalars['Float']>;
3610
3611
  };
3611
- export declare type TagAction = {
3612
+ export type TagAction = {
3612
3613
  __typename?: 'TagAction';
3613
3614
  index?: Maybe<Scalars['Int']>;
3614
3615
  tagName: Scalars['String'];
3615
3616
  };
3616
- export declare type TagActionInput = {
3617
+ export type TagActionInput = {
3617
3618
  index?: InputMaybe<Scalars['Int']>;
3618
3619
  tagName: Scalars['String'];
3619
3620
  };
3620
- export declare type Target = {
3621
+ export type Target = {
3621
3622
  __typename?: 'Target';
3622
3623
  displayName?: Maybe<Scalars['String']>;
3623
3624
  email?: Maybe<Array<Maybe<OnlyEmailAddress>>>;
3624
3625
  type?: Maybe<Scalars['String']>;
3625
3626
  };
3626
- export declare type Targets = {
3627
+ export type Targets = {
3627
3628
  __typename?: 'Targets';
3628
3629
  right?: Maybe<Scalars['String']>;
3629
3630
  target?: Maybe<Array<Maybe<Target>>>;
3630
3631
  };
3631
- export declare type TrustedDevicesEnabled = {
3632
+ export type TrustedDevicesEnabled = {
3632
3633
  __typename?: 'TrustedDevicesEnabled';
3633
3634
  _content?: Maybe<Scalars['Boolean']>;
3634
3635
  };
3635
- export declare type TwoFactorAuthRequired = {
3636
+ export type TwoFactorAuthRequired = {
3636
3637
  __typename?: 'TwoFactorAuthRequired';
3637
3638
  _content?: Maybe<Scalars['Boolean']>;
3638
3639
  };
3639
- export declare type TzOnsetInfo = {
3640
+ export type TzOnsetInfo = {
3640
3641
  __typename?: 'TzOnsetInfo';
3641
3642
  hour?: Maybe<Scalars['Int']>;
3642
3643
  mday?: Maybe<Scalars['Int']>;
@@ -3655,41 +3656,41 @@ export declare enum Weekday {
3655
3656
  Tu = "TU",
3656
3657
  We = "WE"
3657
3658
  }
3658
- export declare type WhiteBlackAddress = {
3659
+ export type WhiteBlackAddress = {
3659
3660
  __typename?: 'WhiteBlackAddress';
3660
3661
  _content: Scalars['String'];
3661
3662
  op?: Maybe<Scalars['String']>;
3662
3663
  };
3663
- export declare type WhiteBlackAddressOpts = {
3664
+ export type WhiteBlackAddressOpts = {
3664
3665
  _content: Scalars['String'];
3665
3666
  op?: InputMaybe<Scalars['String']>;
3666
3667
  };
3667
- export declare type WhiteBlackList = {
3668
+ export type WhiteBlackList = {
3668
3669
  __typename?: 'WhiteBlackList';
3669
3670
  blackList: Array<Maybe<WhiteBlackListArr>>;
3670
3671
  whiteList: Array<Maybe<WhiteBlackListArr>>;
3671
3672
  };
3672
- export declare type WhiteBlackListArr = {
3673
+ export type WhiteBlackListArr = {
3673
3674
  __typename?: 'WhiteBlackListArr';
3674
3675
  addr?: Maybe<Array<Maybe<WhiteBlackAddress>>>;
3675
3676
  };
3676
- export declare type WhiteBlackListArrInput = {
3677
+ export type WhiteBlackListArrInput = {
3677
3678
  addr?: InputMaybe<Array<InputMaybe<WhiteBlackAddressOpts>>>;
3678
3679
  };
3679
- export declare type WhiteBlackListInput = {
3680
+ export type WhiteBlackListInput = {
3680
3681
  blackList?: InputMaybe<WhiteBlackListArrInput>;
3681
3682
  whiteList?: InputMaybe<WhiteBlackListArrInput>;
3682
3683
  };
3683
- export declare type WkDay = {
3684
+ export type WkDay = {
3684
3685
  __typename?: 'WkDay';
3685
3686
  day?: Maybe<Weekday>;
3686
3687
  ordwk?: Maybe<Scalars['Int']>;
3687
3688
  };
3688
- export declare type WkDayInput = {
3689
+ export type WkDayInput = {
3689
3690
  day: Weekday;
3690
3691
  ordwk?: InputMaybe<Scalars['Int']>;
3691
3692
  };
3692
- export declare type WorkingHours = {
3693
+ export type WorkingHours = {
3693
3694
  __typename?: 'WorkingHours';
3694
3695
  busy?: Maybe<Array<Maybe<WorkingHoursInstance>>>;
3695
3696
  free?: Maybe<Array<Maybe<WorkingHoursInstance>>>;
@@ -3698,30 +3699,30 @@ export declare type WorkingHours = {
3698
3699
  tentative?: Maybe<Array<Maybe<WorkingHoursInstance>>>;
3699
3700
  unavailable?: Maybe<Array<Maybe<WorkingHoursInstance>>>;
3700
3701
  };
3701
- export declare type WorkingHoursInstance = {
3702
+ export type WorkingHoursInstance = {
3702
3703
  __typename?: 'WorkingHoursInstance';
3703
3704
  end?: Maybe<Scalars['Float']>;
3704
3705
  start?: Maybe<Scalars['Float']>;
3705
3706
  };
3706
- export declare type ZimletConfigGlobal = {
3707
+ export type ZimletConfigGlobal = {
3707
3708
  __typename?: 'ZimletConfigGlobal';
3708
3709
  property?: Maybe<Array<Maybe<ZimletConfigProperty>>>;
3709
3710
  };
3710
- export declare type ZimletConfigHost = {
3711
+ export type ZimletConfigHost = {
3711
3712
  __typename?: 'ZimletConfigHost';
3712
3713
  property?: Maybe<Array<Maybe<ZimletConfigProperty>>>;
3713
3714
  };
3714
- export declare type ZimletConfigProperty = {
3715
+ export type ZimletConfigProperty = {
3715
3716
  __typename?: 'ZimletConfigProperty';
3716
3717
  content?: Maybe<Scalars['String']>;
3717
3718
  name?: Maybe<Scalars['String']>;
3718
3719
  };
3719
- export declare type ZimletPref = {
3720
+ export type ZimletPref = {
3720
3721
  __typename?: 'ZimletPref';
3721
3722
  name?: Maybe<Scalars['String']>;
3722
3723
  presence?: Maybe<Scalars['String']>;
3723
3724
  };
3724
- export declare type ZimletPreferenceInput = {
3725
+ export type ZimletPreferenceInput = {
3725
3726
  name: Scalars['String'];
3726
3727
  presence: Scalars['String'];
3727
3728
  };
@@ -3730,14 +3731,14 @@ export declare enum ZimletPresence {
3730
3731
  Enabled = "enabled",
3731
3732
  Mandatory = "mandatory"
3732
3733
  }
3733
- export declare type HabRootId = {
3734
+ export type HabRootId = {
3734
3735
  __typename?: 'habRootId';
3735
3736
  _content?: Maybe<Scalars['String']>;
3736
3737
  };
3737
- export declare type MessagePartForDocument = {
3738
+ export type MessagePartForDocument = {
3738
3739
  attachmentPart: Scalars['String'];
3739
3740
  messageId: Scalars['ID'];
3740
3741
  };
3741
- export declare type UploadDocument = {
3742
+ export type UploadDocument = {
3742
3743
  id: Scalars['ID'];
3743
3744
  };