@zimbra/api-client 75.0.0 → 78.0.0-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +0 -1
- package/dist/schema.graphql +7 -1
- package/dist/src/batch-client/index.d.ts +2 -2
- package/dist/src/batch-client/types.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +717 -710
- package/dist/zm-api-js-client.esm.js +351 -65
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +1 -1
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +1 -1
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +1836 -2743
- package/package.json +29 -31
- package/src/batch-client/index.ts +6 -2
- package/src/batch-client/types.ts +1 -0
- package/src/schema/generated-schema-types.ts +717 -710
- package/src/schema/schema.graphql +7 -1
- package/src/utils/normalize-mime-parts.ts +17 -20
- package/src/utils/normalize-otherAttribute-contact.ts +1 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare type Maybe<T> = T | null;
|
|
2
|
+
export declare type InputMaybe<T> = Maybe<T>;
|
|
2
3
|
export declare type Exact<T extends {
|
|
3
4
|
[key: string]: unknown;
|
|
4
5
|
}> = {
|
|
@@ -42,14 +43,14 @@ export declare type AccountAceInfo = {
|
|
|
42
43
|
zimbraId?: Maybe<Scalars['ID']>;
|
|
43
44
|
};
|
|
44
45
|
export declare type AccountAceInfoInput = {
|
|
45
|
-
address?:
|
|
46
|
-
checkGrantee?:
|
|
47
|
-
deny?:
|
|
46
|
+
address?: InputMaybe<Scalars['String']>;
|
|
47
|
+
checkGrantee?: InputMaybe<Scalars['Boolean']>;
|
|
48
|
+
deny?: InputMaybe<Scalars['Boolean']>;
|
|
48
49
|
granteeType: GranteeType;
|
|
49
|
-
key?:
|
|
50
|
-
password?:
|
|
50
|
+
key?: InputMaybe<Scalars['String']>;
|
|
51
|
+
password?: InputMaybe<Scalars['String']>;
|
|
51
52
|
right: Scalars['String'];
|
|
52
|
-
zimbraId?:
|
|
53
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
53
54
|
};
|
|
54
55
|
export declare type AccountCos = {
|
|
55
56
|
__typename?: 'AccountCos';
|
|
@@ -83,6 +84,7 @@ export declare type AccountInfoAttrs = {
|
|
|
83
84
|
zimbraDomainTrialExpirationDate?: Maybe<Scalars['String']>;
|
|
84
85
|
zimbraDumpsterEnabled?: Maybe<Scalars['Boolean']>;
|
|
85
86
|
zimbraExternalSharingEnabled?: Maybe<Scalars['Boolean']>;
|
|
87
|
+
zimbraFeatureAntispamEnabled?: Maybe<Scalars['Boolean']>;
|
|
86
88
|
zimbraFeatureAppSpecificPasswordsEnabled?: Maybe<Scalars['Boolean']>;
|
|
87
89
|
zimbraFeatureBriefcasesEnabled?: Maybe<Scalars['Boolean']>;
|
|
88
90
|
zimbraFeatureCalendarEnabled?: Maybe<Scalars['Boolean']>;
|
|
@@ -108,6 +110,7 @@ export declare type AccountInfoAttrs = {
|
|
|
108
110
|
zimbraFeatureResetPasswordStatus?: Maybe<ResetPasswordStatus>;
|
|
109
111
|
zimbraFeatureSharingEnabled?: Maybe<Scalars['Boolean']>;
|
|
110
112
|
zimbraFeatureTaggingEnabled?: Maybe<Scalars['Boolean']>;
|
|
113
|
+
zimbraFeatureTasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
111
114
|
zimbraFeatureTrustedDevicesEnabled?: Maybe<Scalars['Boolean']>;
|
|
112
115
|
zimbraFeatureTwoFactorAuthAvailable?: Maybe<Scalars['Boolean']>;
|
|
113
116
|
zimbraFeatureTwoFactorAuthRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -209,10 +212,10 @@ export declare enum ActionTypeName {
|
|
|
209
212
|
TagAction = "TagAction"
|
|
210
213
|
}
|
|
211
214
|
export declare type AddMsgInput = {
|
|
212
|
-
absFolderPath?:
|
|
213
|
-
content?:
|
|
215
|
+
absFolderPath?: InputMaybe<Scalars['String']>;
|
|
216
|
+
content?: InputMaybe<Scalars['String']>;
|
|
214
217
|
folderId: Scalars['ID'];
|
|
215
|
-
meta?:
|
|
218
|
+
meta?: InputMaybe<Scalars['String']>;
|
|
216
219
|
};
|
|
217
220
|
export declare type AddRecurrenceInfo = {
|
|
218
221
|
__typename?: 'AddRecurrenceInfo';
|
|
@@ -235,15 +238,15 @@ export declare type AddressCondition = {
|
|
|
235
238
|
valueComparison?: Maybe<Scalars['String']>;
|
|
236
239
|
};
|
|
237
240
|
export declare type AddressConditionInput = {
|
|
238
|
-
caseSensitive?:
|
|
239
|
-
countComparison?:
|
|
241
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
242
|
+
countComparison?: InputMaybe<Scalars['String']>;
|
|
240
243
|
header: Scalars['String'];
|
|
241
|
-
index?:
|
|
242
|
-
negative?:
|
|
244
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
245
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
243
246
|
part: Scalars['String'];
|
|
244
247
|
stringComparison: Scalars['String'];
|
|
245
248
|
value: Scalars['String'];
|
|
246
|
-
valueComparison?:
|
|
249
|
+
valueComparison?: InputMaybe<Scalars['String']>;
|
|
247
250
|
};
|
|
248
251
|
export declare enum AddressType {
|
|
249
252
|
B = "b",
|
|
@@ -303,10 +306,10 @@ export declare type Attachment = {
|
|
|
303
306
|
id?: Maybe<Scalars['ID']>;
|
|
304
307
|
};
|
|
305
308
|
export declare type AttachmentInput = {
|
|
306
|
-
attachmentId?:
|
|
307
|
-
documents?:
|
|
308
|
-
existingAttachments?:
|
|
309
|
-
messages?:
|
|
309
|
+
attachmentId?: InputMaybe<Scalars['String']>;
|
|
310
|
+
documents?: InputMaybe<Array<InputMaybe<DocumentInput>>>;
|
|
311
|
+
existingAttachments?: InputMaybe<Array<InputMaybe<ExistingAttachmentInput>>>;
|
|
312
|
+
messages?: InputMaybe<Array<InputMaybe<EmlInput>>>;
|
|
310
313
|
};
|
|
311
314
|
export declare type AuthResponse = {
|
|
312
315
|
__typename?: 'AuthResponse';
|
|
@@ -359,7 +362,7 @@ export declare type BasicAction = {
|
|
|
359
362
|
index?: Maybe<Scalars['Int']>;
|
|
360
363
|
};
|
|
361
364
|
export declare type BasicActionInput = {
|
|
362
|
-
index?:
|
|
365
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
363
366
|
};
|
|
364
367
|
export declare type BasicCondition = {
|
|
365
368
|
__typename?: 'BasicCondition';
|
|
@@ -367,8 +370,8 @@ export declare type BasicCondition = {
|
|
|
367
370
|
negative?: Maybe<Scalars['Boolean']>;
|
|
368
371
|
};
|
|
369
372
|
export declare type BasicConditionInput = {
|
|
370
|
-
index?:
|
|
371
|
-
negative?:
|
|
373
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
374
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
372
375
|
};
|
|
373
376
|
export declare type BodyCondition = {
|
|
374
377
|
__typename?: 'BodyCondition';
|
|
@@ -378,10 +381,10 @@ export declare type BodyCondition = {
|
|
|
378
381
|
value?: Maybe<Scalars['String']>;
|
|
379
382
|
};
|
|
380
383
|
export declare type BodyConditionInput = {
|
|
381
|
-
caseSensitive?:
|
|
382
|
-
index?:
|
|
383
|
-
negative?:
|
|
384
|
-
value?:
|
|
384
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
385
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
386
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
387
|
+
value?: InputMaybe<Scalars['String']>;
|
|
385
388
|
};
|
|
386
389
|
export declare type ByDayRule = {
|
|
387
390
|
__typename?: 'ByDayRule';
|
|
@@ -444,7 +447,7 @@ export declare type CalTzInfo = {
|
|
|
444
447
|
timezoneStdOffset?: Maybe<Scalars['Int']>;
|
|
445
448
|
};
|
|
446
449
|
export declare type CalendarCounterAppointmentInput = {
|
|
447
|
-
components: Array<
|
|
450
|
+
components: Array<InputMaybe<CalendarItemInviteComponentCounterInput>>;
|
|
448
451
|
};
|
|
449
452
|
export declare type CalendarItemAlarm = {
|
|
450
453
|
__typename?: 'CalendarItemAlarm';
|
|
@@ -461,7 +464,7 @@ export declare type CalendarItemAlarmAttendeesInput = {
|
|
|
461
464
|
};
|
|
462
465
|
export declare type CalendarItemAlarmInput = {
|
|
463
466
|
action: AlarmAction;
|
|
464
|
-
attendees?:
|
|
467
|
+
attendees?: InputMaybe<CalendarItemAlarmAttendeesInput>;
|
|
465
468
|
trigger: CalendarItemAlarmTriggerInput;
|
|
466
469
|
};
|
|
467
470
|
export declare type CalendarItemAlarmTrigger = {
|
|
@@ -472,8 +475,8 @@ export declare type CalendarItemAlarmTriggerAbsoluteInput = {
|
|
|
472
475
|
date: Scalars['String'];
|
|
473
476
|
};
|
|
474
477
|
export declare type CalendarItemAlarmTriggerInput = {
|
|
475
|
-
absolute?:
|
|
476
|
-
relative?:
|
|
478
|
+
absolute?: InputMaybe<CalendarItemAlarmTriggerAbsoluteInput>;
|
|
479
|
+
relative?: InputMaybe<CalendarItemAlarmTriggerRelativeInput>;
|
|
477
480
|
};
|
|
478
481
|
export declare type CalendarItemAlarmTriggerRelative = {
|
|
479
482
|
__typename?: 'CalendarItemAlarmTriggerRelative';
|
|
@@ -486,13 +489,13 @@ export declare type CalendarItemAlarmTriggerRelative = {
|
|
|
486
489
|
weeks?: Maybe<Scalars['Int']>;
|
|
487
490
|
};
|
|
488
491
|
export declare type CalendarItemAlarmTriggerRelativeInput = {
|
|
489
|
-
days?:
|
|
490
|
-
hours?:
|
|
491
|
-
minutes?:
|
|
492
|
-
negative?:
|
|
493
|
-
relatedTo?:
|
|
494
|
-
seconds?:
|
|
495
|
-
weeks?:
|
|
492
|
+
days?: InputMaybe<Scalars['Int']>;
|
|
493
|
+
hours?: InputMaybe<Scalars['Int']>;
|
|
494
|
+
minutes?: InputMaybe<Scalars['Int']>;
|
|
495
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
496
|
+
relatedTo?: InputMaybe<AlarmRelatedTo>;
|
|
497
|
+
seconds?: InputMaybe<Scalars['Int']>;
|
|
498
|
+
weeks?: InputMaybe<Scalars['Int']>;
|
|
496
499
|
};
|
|
497
500
|
export declare type CalendarItemAttendee = {
|
|
498
501
|
__typename?: 'CalendarItemAttendee';
|
|
@@ -505,11 +508,11 @@ export declare type CalendarItemAttendee = {
|
|
|
505
508
|
};
|
|
506
509
|
export declare type CalendarItemAttendeesInput = {
|
|
507
510
|
address: Scalars['String'];
|
|
508
|
-
calendarUserType?:
|
|
509
|
-
name?:
|
|
510
|
-
participationStatus?:
|
|
511
|
-
role?:
|
|
512
|
-
rsvp?:
|
|
511
|
+
calendarUserType?: InputMaybe<Scalars['String']>;
|
|
512
|
+
name?: InputMaybe<Scalars['String']>;
|
|
513
|
+
participationStatus?: InputMaybe<ParticipationStatus>;
|
|
514
|
+
role?: InputMaybe<ParticipationRole>;
|
|
515
|
+
rsvp?: InputMaybe<Scalars['Boolean']>;
|
|
513
516
|
};
|
|
514
517
|
export declare enum CalendarItemClass {
|
|
515
518
|
Con = "CON",
|
|
@@ -518,7 +521,7 @@ export declare enum CalendarItemClass {
|
|
|
518
521
|
}
|
|
519
522
|
export declare type CalendarItemDateTimeInput = {
|
|
520
523
|
date: Scalars['String'];
|
|
521
|
-
timezone?:
|
|
524
|
+
timezone?: InputMaybe<Scalars['String']>;
|
|
522
525
|
};
|
|
523
526
|
export declare type CalendarItemHitInfo = {
|
|
524
527
|
__typename?: 'CalendarItemHitInfo';
|
|
@@ -564,78 +567,78 @@ export declare type CalendarItemHitInfo = {
|
|
|
564
567
|
x_uid?: Maybe<Scalars['String']>;
|
|
565
568
|
};
|
|
566
569
|
export declare type CalendarItemInput = {
|
|
567
|
-
componentNum?:
|
|
568
|
-
id?:
|
|
570
|
+
componentNum?: InputMaybe<Scalars['Int']>;
|
|
571
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
569
572
|
message: CalendarItemMessageInput;
|
|
570
|
-
modifiedSequence?:
|
|
571
|
-
revision?:
|
|
573
|
+
modifiedSequence?: InputMaybe<Scalars['Float']>;
|
|
574
|
+
revision?: InputMaybe<Scalars['Float']>;
|
|
572
575
|
};
|
|
573
576
|
export declare type CalendarItemInviteComponentCounterInput = {
|
|
574
|
-
alarms?:
|
|
575
|
-
allDay?:
|
|
576
|
-
attendees?:
|
|
577
|
-
class?:
|
|
578
|
-
description?:
|
|
579
|
-
draft?:
|
|
577
|
+
alarms?: InputMaybe<Array<InputMaybe<CalendarItemAlarmInput>>>;
|
|
578
|
+
allDay?: InputMaybe<Scalars['Boolean']>;
|
|
579
|
+
attendees?: InputMaybe<Array<InputMaybe<CalendarItemAttendeesInput>>>;
|
|
580
|
+
class?: InputMaybe<CalendarItemClass>;
|
|
581
|
+
description?: InputMaybe<Array<InputMaybe<CalendarItemInviteComponentDescriptionInput>>>;
|
|
582
|
+
draft?: InputMaybe<Scalars['Boolean']>;
|
|
580
583
|
end: CalendarItemDateTimeInput;
|
|
581
|
-
exceptId?:
|
|
582
|
-
freeBusy?:
|
|
583
|
-
location?:
|
|
584
|
+
exceptId?: InputMaybe<CalendarOptionalItemDateTimeInput>;
|
|
585
|
+
freeBusy?: InputMaybe<FreeBusyStatus>;
|
|
586
|
+
location?: InputMaybe<Scalars['String']>;
|
|
584
587
|
name: Scalars['String'];
|
|
585
|
-
noBlob?:
|
|
586
|
-
organizer?:
|
|
587
|
-
percentComplete?:
|
|
588
|
-
priority?:
|
|
589
|
-
recurrence?:
|
|
588
|
+
noBlob?: InputMaybe<Scalars['Boolean']>;
|
|
589
|
+
organizer?: InputMaybe<CalendarItemOrganizerInput>;
|
|
590
|
+
percentComplete?: InputMaybe<Scalars['String']>;
|
|
591
|
+
priority?: InputMaybe<Scalars['String']>;
|
|
592
|
+
recurrence?: InputMaybe<CalendarItemRecurrenceInput>;
|
|
590
593
|
start: CalendarItemDateTimeInput;
|
|
591
|
-
status?:
|
|
592
|
-
uid?:
|
|
594
|
+
status?: InputMaybe<InviteCompletionStatus>;
|
|
595
|
+
uid?: InputMaybe<Scalars['String']>;
|
|
593
596
|
};
|
|
594
597
|
export declare type CalendarItemInviteComponentDescriptionInput = {
|
|
595
|
-
_content?:
|
|
598
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
596
599
|
};
|
|
597
600
|
export declare type CalendarItemInviteComponentInput = {
|
|
598
|
-
alarms?:
|
|
599
|
-
allDay?:
|
|
600
|
-
attendees?:
|
|
601
|
+
alarms?: InputMaybe<Array<InputMaybe<CalendarItemAlarmInput>>>;
|
|
602
|
+
allDay?: InputMaybe<Scalars['Boolean']>;
|
|
603
|
+
attendees?: InputMaybe<Array<InputMaybe<CalendarItemAttendeesInput>>>;
|
|
601
604
|
class: CalendarItemClass;
|
|
602
|
-
description?:
|
|
603
|
-
draft?:
|
|
604
|
-
end?:
|
|
605
|
-
exceptId?:
|
|
606
|
-
freeBusy?:
|
|
607
|
-
location?:
|
|
608
|
-
name?:
|
|
609
|
-
noBlob?:
|
|
610
|
-
organizer?:
|
|
611
|
-
percentComplete?:
|
|
612
|
-
priority?:
|
|
613
|
-
recurrence?:
|
|
614
|
-
start?:
|
|
615
|
-
status?:
|
|
605
|
+
description?: InputMaybe<Array<InputMaybe<CalendarItemInviteComponentDescriptionInput>>>;
|
|
606
|
+
draft?: InputMaybe<Scalars['Boolean']>;
|
|
607
|
+
end?: InputMaybe<CalendarItemDateTimeInput>;
|
|
608
|
+
exceptId?: InputMaybe<CalendarOptionalItemDateTimeInput>;
|
|
609
|
+
freeBusy?: InputMaybe<FreeBusyStatus>;
|
|
610
|
+
location?: InputMaybe<Scalars['String']>;
|
|
611
|
+
name?: InputMaybe<Scalars['String']>;
|
|
612
|
+
noBlob?: InputMaybe<Scalars['Boolean']>;
|
|
613
|
+
organizer?: InputMaybe<CalendarItemOrganizerInput>;
|
|
614
|
+
percentComplete?: InputMaybe<Scalars['String']>;
|
|
615
|
+
priority?: InputMaybe<Scalars['String']>;
|
|
616
|
+
recurrence?: InputMaybe<CalendarItemRecurrenceInput>;
|
|
617
|
+
start?: InputMaybe<CalendarItemDateTimeInput>;
|
|
618
|
+
status?: InputMaybe<InviteCompletionStatus>;
|
|
616
619
|
};
|
|
617
620
|
export declare type CalendarItemInviteInput = {
|
|
618
|
-
components: Array<
|
|
621
|
+
components: Array<InputMaybe<CalendarItemInviteComponentInput>>;
|
|
619
622
|
};
|
|
620
623
|
export declare type CalendarItemMessageInput = {
|
|
621
|
-
attachments?:
|
|
622
|
-
emailAddresses?:
|
|
623
|
-
folderId?:
|
|
624
|
-
invitations?:
|
|
625
|
-
mimeParts?:
|
|
626
|
-
replyType?:
|
|
627
|
-
subject?:
|
|
624
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
625
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
626
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
627
|
+
invitations?: InputMaybe<CalendarItemInviteInput>;
|
|
628
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
629
|
+
replyType?: InputMaybe<InviteReplyType>;
|
|
630
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
628
631
|
};
|
|
629
632
|
export declare type CalendarItemOrganizerInput = {
|
|
630
|
-
address?:
|
|
631
|
-
name?:
|
|
632
|
-
sentBy?:
|
|
633
|
+
address?: InputMaybe<Scalars['String']>;
|
|
634
|
+
name?: InputMaybe<Scalars['String']>;
|
|
635
|
+
sentBy?: InputMaybe<Scalars['String']>;
|
|
633
636
|
};
|
|
634
637
|
export declare type CalendarItemRecurrenceAddInput = {
|
|
635
|
-
rule?:
|
|
638
|
+
rule?: InputMaybe<CalendarItemRecurrenceRuleInput>;
|
|
636
639
|
};
|
|
637
640
|
export declare type CalendarItemRecurrenceByDayInput = {
|
|
638
|
-
wkday?:
|
|
641
|
+
wkday?: InputMaybe<Array<InputMaybe<WkDayInput>>>;
|
|
639
642
|
};
|
|
640
643
|
export declare type CalendarItemRecurrenceByMonthDayInput = {
|
|
641
644
|
dayList: Scalars['String'];
|
|
@@ -670,21 +673,21 @@ export declare enum CalendarItemRecurrenceFrequency {
|
|
|
670
673
|
Yea = "YEA"
|
|
671
674
|
}
|
|
672
675
|
export declare type CalendarItemRecurrenceInput = {
|
|
673
|
-
add?:
|
|
676
|
+
add?: InputMaybe<CalendarItemRecurrenceAddInput>;
|
|
674
677
|
};
|
|
675
678
|
export declare type CalendarItemRecurrenceIntervalInput = {
|
|
676
679
|
intervalCount: Scalars['Int'];
|
|
677
|
-
zimbraPrefAutoAddAppointmentsToCalendar?:
|
|
680
|
+
zimbraPrefAutoAddAppointmentsToCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
678
681
|
};
|
|
679
682
|
export declare type CalendarItemRecurrenceRuleInput = {
|
|
680
|
-
byday?:
|
|
681
|
-
bymonth?:
|
|
682
|
-
bymonthday?:
|
|
683
|
-
bysetpos?:
|
|
684
|
-
count?:
|
|
685
|
-
frequency?:
|
|
686
|
-
interval?:
|
|
687
|
-
until?:
|
|
683
|
+
byday?: InputMaybe<CalendarItemRecurrenceByDayInput>;
|
|
684
|
+
bymonth?: InputMaybe<CalendarItemRecurrenceByMonthInput>;
|
|
685
|
+
bymonthday?: InputMaybe<CalendarItemRecurrenceByMonthDayInput>;
|
|
686
|
+
bysetpos?: InputMaybe<CalendarItemRecurrenceBySetPosInput>;
|
|
687
|
+
count?: InputMaybe<CalendarItemRecurrenceEndCountInput>;
|
|
688
|
+
frequency?: InputMaybe<CalendarItemRecurrenceFrequency>;
|
|
689
|
+
interval?: InputMaybe<CalendarItemRecurrenceIntervalInput>;
|
|
690
|
+
until?: InputMaybe<CalendarItemRecurrenceEndDateInput>;
|
|
688
691
|
};
|
|
689
692
|
export declare type CalendarItemReply = {
|
|
690
693
|
__typename?: 'CalendarItemReply';
|
|
@@ -692,8 +695,8 @@ export declare type CalendarItemReply = {
|
|
|
692
695
|
participationStatus?: Maybe<ParticipationStatus>;
|
|
693
696
|
};
|
|
694
697
|
export declare type CalendarOptionalItemDateTimeInput = {
|
|
695
|
-
date?:
|
|
696
|
-
timezone?:
|
|
698
|
+
date?: InputMaybe<Scalars['String']>;
|
|
699
|
+
timezone?: InputMaybe<Scalars['String']>;
|
|
697
700
|
};
|
|
698
701
|
export declare type CancelRuleInfo = {
|
|
699
702
|
__typename?: 'CancelRuleInfo';
|
|
@@ -713,12 +716,12 @@ export declare type ClientInfoType = {
|
|
|
713
716
|
attributes?: Maybe<ClientInfoAttributes>;
|
|
714
717
|
};
|
|
715
718
|
export declare type ConditionInput = {
|
|
716
|
-
attr?:
|
|
717
|
-
op?:
|
|
718
|
-
value?:
|
|
719
|
+
attr?: InputMaybe<Scalars['String']>;
|
|
720
|
+
op?: InputMaybe<Scalars['String']>;
|
|
721
|
+
value?: InputMaybe<Scalars['String']>;
|
|
719
722
|
};
|
|
720
723
|
export declare type ConditionsInput = {
|
|
721
|
-
cond?:
|
|
724
|
+
cond?: InputMaybe<Array<InputMaybe<ConditionInput>>>;
|
|
722
725
|
};
|
|
723
726
|
export declare enum ConnectionType {
|
|
724
727
|
Cleartext = "cleartext",
|
|
@@ -798,6 +801,7 @@ export declare type ContactAttributes = {
|
|
|
798
801
|
otherURL?: Maybe<Scalars['String']>;
|
|
799
802
|
pager?: Maybe<Scalars['String']>;
|
|
800
803
|
pager2?: Maybe<Scalars['String']>;
|
|
804
|
+
phoneticCompany?: Maybe<Scalars['String']>;
|
|
801
805
|
phoneticFirstName?: Maybe<Scalars['String']>;
|
|
802
806
|
phoneticLastName?: Maybe<Scalars['String']>;
|
|
803
807
|
thumbnailPhoto?: Maybe<Scalars['String']>;
|
|
@@ -819,78 +823,79 @@ export declare type ContactAttributes = {
|
|
|
819
823
|
zimbraCalResType?: Maybe<Scalars['String']>;
|
|
820
824
|
};
|
|
821
825
|
export declare type ContactAttrsInput = {
|
|
822
|
-
anniversary?:
|
|
823
|
-
assistantPhone?:
|
|
824
|
-
birthday?:
|
|
825
|
-
callbackPhone?:
|
|
826
|
-
carPhone?:
|
|
827
|
-
company?:
|
|
828
|
-
companyPhone?:
|
|
829
|
-
companyPhone2?:
|
|
830
|
-
department?:
|
|
831
|
-
email?:
|
|
832
|
-
email2?:
|
|
833
|
-
fileAs?:
|
|
834
|
-
firstName?:
|
|
835
|
-
fullName?:
|
|
836
|
-
homeCity?:
|
|
837
|
-
homeCountry?:
|
|
838
|
-
homeEmail?:
|
|
839
|
-
homeEmail2?:
|
|
840
|
-
homeFax?:
|
|
841
|
-
homeFax2?:
|
|
842
|
-
homePhone?:
|
|
843
|
-
homePhone2?:
|
|
844
|
-
homePostalCode?:
|
|
845
|
-
homeState?:
|
|
846
|
-
homeStreet?:
|
|
847
|
-
homeURL?:
|
|
848
|
-
imAddress?:
|
|
849
|
-
imAddress1?:
|
|
850
|
-
imAddress2?:
|
|
851
|
-
imAddress3?:
|
|
852
|
-
imAddress4?:
|
|
853
|
-
imAddress5?:
|
|
854
|
-
image?:
|
|
855
|
-
jobTitle?:
|
|
856
|
-
lastName?:
|
|
857
|
-
maidenName?:
|
|
858
|
-
middleName?:
|
|
859
|
-
mobilePhone?:
|
|
860
|
-
mobilePhone2?:
|
|
861
|
-
namePrefix?:
|
|
862
|
-
nameSuffix?:
|
|
863
|
-
nickname?:
|
|
864
|
-
notes?:
|
|
865
|
-
other?:
|
|
866
|
-
otherCity?:
|
|
867
|
-
otherCountry?:
|
|
868
|
-
otherFax?:
|
|
869
|
-
otherPhone?:
|
|
870
|
-
otherPhone2?:
|
|
871
|
-
otherPostalCode?:
|
|
872
|
-
otherState?:
|
|
873
|
-
otherStreet?:
|
|
874
|
-
otherURL?:
|
|
875
|
-
pager?:
|
|
876
|
-
pager2?:
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
826
|
+
anniversary?: InputMaybe<Scalars['String']>;
|
|
827
|
+
assistantPhone?: InputMaybe<Scalars['String']>;
|
|
828
|
+
birthday?: InputMaybe<Scalars['String']>;
|
|
829
|
+
callbackPhone?: InputMaybe<Scalars['String']>;
|
|
830
|
+
carPhone?: InputMaybe<Scalars['String']>;
|
|
831
|
+
company?: InputMaybe<Scalars['String']>;
|
|
832
|
+
companyPhone?: InputMaybe<Scalars['String']>;
|
|
833
|
+
companyPhone2?: InputMaybe<Scalars['String']>;
|
|
834
|
+
department?: InputMaybe<Scalars['String']>;
|
|
835
|
+
email?: InputMaybe<Scalars['String']>;
|
|
836
|
+
email2?: InputMaybe<Scalars['String']>;
|
|
837
|
+
fileAs?: InputMaybe<Scalars['String']>;
|
|
838
|
+
firstName?: InputMaybe<Scalars['String']>;
|
|
839
|
+
fullName?: InputMaybe<Scalars['String']>;
|
|
840
|
+
homeCity?: InputMaybe<Scalars['String']>;
|
|
841
|
+
homeCountry?: InputMaybe<Scalars['String']>;
|
|
842
|
+
homeEmail?: InputMaybe<Scalars['String']>;
|
|
843
|
+
homeEmail2?: InputMaybe<Scalars['String']>;
|
|
844
|
+
homeFax?: InputMaybe<Scalars['String']>;
|
|
845
|
+
homeFax2?: InputMaybe<Scalars['String']>;
|
|
846
|
+
homePhone?: InputMaybe<Scalars['String']>;
|
|
847
|
+
homePhone2?: InputMaybe<Scalars['String']>;
|
|
848
|
+
homePostalCode?: InputMaybe<Scalars['String']>;
|
|
849
|
+
homeState?: InputMaybe<Scalars['String']>;
|
|
850
|
+
homeStreet?: InputMaybe<Scalars['String']>;
|
|
851
|
+
homeURL?: InputMaybe<Scalars['String']>;
|
|
852
|
+
imAddress?: InputMaybe<Scalars['String']>;
|
|
853
|
+
imAddress1?: InputMaybe<Scalars['String']>;
|
|
854
|
+
imAddress2?: InputMaybe<Scalars['String']>;
|
|
855
|
+
imAddress3?: InputMaybe<Scalars['String']>;
|
|
856
|
+
imAddress4?: InputMaybe<Scalars['String']>;
|
|
857
|
+
imAddress5?: InputMaybe<Scalars['String']>;
|
|
858
|
+
image?: InputMaybe<Scalars['String']>;
|
|
859
|
+
jobTitle?: InputMaybe<Scalars['String']>;
|
|
860
|
+
lastName?: InputMaybe<Scalars['String']>;
|
|
861
|
+
maidenName?: InputMaybe<Scalars['String']>;
|
|
862
|
+
middleName?: InputMaybe<Scalars['String']>;
|
|
863
|
+
mobilePhone?: InputMaybe<Scalars['String']>;
|
|
864
|
+
mobilePhone2?: InputMaybe<Scalars['String']>;
|
|
865
|
+
namePrefix?: InputMaybe<Scalars['String']>;
|
|
866
|
+
nameSuffix?: InputMaybe<Scalars['String']>;
|
|
867
|
+
nickname?: InputMaybe<Scalars['String']>;
|
|
868
|
+
notes?: InputMaybe<Scalars['String']>;
|
|
869
|
+
other?: InputMaybe<Array<InputMaybe<OtherContactAttributeInput>>>;
|
|
870
|
+
otherCity?: InputMaybe<Scalars['String']>;
|
|
871
|
+
otherCountry?: InputMaybe<Scalars['String']>;
|
|
872
|
+
otherFax?: InputMaybe<Scalars['String']>;
|
|
873
|
+
otherPhone?: InputMaybe<Scalars['String']>;
|
|
874
|
+
otherPhone2?: InputMaybe<Scalars['String']>;
|
|
875
|
+
otherPostalCode?: InputMaybe<Scalars['String']>;
|
|
876
|
+
otherState?: InputMaybe<Scalars['String']>;
|
|
877
|
+
otherStreet?: InputMaybe<Scalars['String']>;
|
|
878
|
+
otherURL?: InputMaybe<Scalars['String']>;
|
|
879
|
+
pager?: InputMaybe<Scalars['String']>;
|
|
880
|
+
pager2?: InputMaybe<Scalars['String']>;
|
|
881
|
+
phoneticCompany?: InputMaybe<Scalars['String']>;
|
|
882
|
+
phoneticFirstName?: InputMaybe<Scalars['String']>;
|
|
883
|
+
phoneticLastName?: InputMaybe<Scalars['String']>;
|
|
884
|
+
type?: InputMaybe<Scalars['String']>;
|
|
885
|
+
userCertificate?: InputMaybe<Scalars['String']>;
|
|
886
|
+
website?: InputMaybe<Scalars['String']>;
|
|
887
|
+
workCity?: InputMaybe<Scalars['String']>;
|
|
888
|
+
workCountry?: InputMaybe<Scalars['String']>;
|
|
889
|
+
workEmail?: InputMaybe<Scalars['String']>;
|
|
890
|
+
workEmail2?: InputMaybe<Scalars['String']>;
|
|
891
|
+
workFax?: InputMaybe<Scalars['String']>;
|
|
892
|
+
workFax2?: InputMaybe<Scalars['String']>;
|
|
893
|
+
workPhone?: InputMaybe<Scalars['String']>;
|
|
894
|
+
workPhone2?: InputMaybe<Scalars['String']>;
|
|
895
|
+
workPostalCode?: InputMaybe<Scalars['String']>;
|
|
896
|
+
workState?: InputMaybe<Scalars['String']>;
|
|
897
|
+
workStreet?: InputMaybe<Scalars['String']>;
|
|
898
|
+
workURL?: InputMaybe<Scalars['String']>;
|
|
894
899
|
};
|
|
895
900
|
export declare type ContactFrequencyData = {
|
|
896
901
|
__typename?: 'ContactFrequencyData';
|
|
@@ -966,26 +971,26 @@ export declare type ConversationCondition = {
|
|
|
966
971
|
where?: Maybe<Scalars['String']>;
|
|
967
972
|
};
|
|
968
973
|
export declare type ConversationConditionInput = {
|
|
969
|
-
index?:
|
|
970
|
-
negative?:
|
|
971
|
-
where?:
|
|
974
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
975
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
976
|
+
where?: InputMaybe<Scalars['String']>;
|
|
972
977
|
};
|
|
973
978
|
export declare type CounterAppointmentInput = {
|
|
974
|
-
componentNum?:
|
|
979
|
+
componentNum?: InputMaybe<Scalars['Int']>;
|
|
975
980
|
id: Scalars['ID'];
|
|
976
981
|
message: CounterAppointmentMessageInput;
|
|
977
|
-
modifiedSequence?:
|
|
978
|
-
revision?:
|
|
982
|
+
modifiedSequence?: InputMaybe<Scalars['Float']>;
|
|
983
|
+
revision?: InputMaybe<Scalars['Float']>;
|
|
979
984
|
};
|
|
980
985
|
export declare type CounterAppointmentMessageInput = {
|
|
981
|
-
attachments?:
|
|
982
|
-
emailAddresses?:
|
|
983
|
-
folderId?:
|
|
984
|
-
invitations?:
|
|
985
|
-
mimeParts?:
|
|
986
|
-
origId?:
|
|
987
|
-
replyType?:
|
|
988
|
-
subject?:
|
|
986
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
987
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
988
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
989
|
+
invitations?: InputMaybe<CalendarCounterAppointmentInput>;
|
|
990
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
991
|
+
origId?: InputMaybe<Scalars['ID']>;
|
|
992
|
+
replyType?: InputMaybe<InviteReplyType>;
|
|
993
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
989
994
|
};
|
|
990
995
|
export declare type CreateAppSpecificPasswordResponse = {
|
|
991
996
|
__typename?: 'CreateAppSpecificPasswordResponse';
|
|
@@ -993,18 +998,18 @@ export declare type CreateAppSpecificPasswordResponse = {
|
|
|
993
998
|
};
|
|
994
999
|
export declare type CreateContactInput = {
|
|
995
1000
|
attributes: ContactAttrsInput;
|
|
996
|
-
folderId?:
|
|
997
|
-
tagNames?:
|
|
1001
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1002
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
998
1003
|
};
|
|
999
1004
|
export declare type CreateIdentityInput = {
|
|
1000
|
-
attrs?:
|
|
1005
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
1001
1006
|
name: Scalars['String'];
|
|
1002
1007
|
};
|
|
1003
1008
|
export declare type CreateMountpointInput = {
|
|
1004
|
-
link?:
|
|
1009
|
+
link?: InputMaybe<NewMountpointSpec>;
|
|
1005
1010
|
};
|
|
1006
1011
|
export declare type CreateTagInput = {
|
|
1007
|
-
color?:
|
|
1012
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
1008
1013
|
name: Scalars['String'];
|
|
1009
1014
|
};
|
|
1010
1015
|
export declare type CsrfToken = {
|
|
@@ -1012,10 +1017,10 @@ export declare type CsrfToken = {
|
|
|
1012
1017
|
_content?: Maybe<Scalars['String']>;
|
|
1013
1018
|
};
|
|
1014
1019
|
export declare type Cursor = {
|
|
1015
|
-
endSortVal?:
|
|
1016
|
-
id?:
|
|
1017
|
-
includeOffset?:
|
|
1018
|
-
|
|
1020
|
+
endSortVal?: InputMaybe<Scalars['String']>;
|
|
1021
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1022
|
+
includeOffset?: InputMaybe<Scalars['Boolean']>;
|
|
1023
|
+
sortVal?: InputMaybe<Scalars['String']>;
|
|
1019
1024
|
};
|
|
1020
1025
|
export declare type CustomMetadata = {
|
|
1021
1026
|
__typename?: 'CustomMetadata';
|
|
@@ -1027,13 +1032,13 @@ export declare type CustomMetadataAttrs = {
|
|
|
1027
1032
|
value?: Maybe<Scalars['String']>;
|
|
1028
1033
|
};
|
|
1029
1034
|
export declare type CustomMetadataAttrsInput = {
|
|
1030
|
-
key?:
|
|
1031
|
-
value?:
|
|
1035
|
+
key?: InputMaybe<Scalars['String']>;
|
|
1036
|
+
value?: InputMaybe<Scalars['String']>;
|
|
1032
1037
|
};
|
|
1033
1038
|
export declare type CustomMetadataInput = {
|
|
1034
|
-
attrs?:
|
|
1039
|
+
attrs?: InputMaybe<Array<InputMaybe<CustomMetadataAttrsInput>>>;
|
|
1035
1040
|
id: Scalars['ID'];
|
|
1036
|
-
section?:
|
|
1041
|
+
section?: InputMaybe<Scalars['String']>;
|
|
1037
1042
|
};
|
|
1038
1043
|
export declare type CustomMetadataMeta = {
|
|
1039
1044
|
__typename?: 'CustomMetadataMeta';
|
|
@@ -1078,21 +1083,21 @@ export declare type DateCondition = {
|
|
|
1078
1083
|
negative?: Maybe<Scalars['Boolean']>;
|
|
1079
1084
|
};
|
|
1080
1085
|
export declare type DateConditionInput = {
|
|
1081
|
-
date?:
|
|
1082
|
-
dateComparison?:
|
|
1083
|
-
index?:
|
|
1084
|
-
negative?:
|
|
1086
|
+
date?: InputMaybe<Scalars['Float']>;
|
|
1087
|
+
dateComparison?: InputMaybe<Scalars['String']>;
|
|
1088
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1089
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1085
1090
|
};
|
|
1086
1091
|
export declare type DeleteAppointmentInput = {
|
|
1087
1092
|
componentNum: Scalars['Int'];
|
|
1088
|
-
instanceDate?:
|
|
1093
|
+
instanceDate?: InputMaybe<InstanceDate>;
|
|
1089
1094
|
inviteId: Scalars['String'];
|
|
1090
|
-
message?:
|
|
1091
|
-
start?:
|
|
1095
|
+
message?: InputMaybe<CalendarItemMessageInput>;
|
|
1096
|
+
start?: InputMaybe<Scalars['Int']>;
|
|
1092
1097
|
};
|
|
1093
1098
|
export declare type DeleteIdentityInput = {
|
|
1094
1099
|
id: Scalars['ID'];
|
|
1095
|
-
name?:
|
|
1100
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1096
1101
|
};
|
|
1097
1102
|
export declare type Device = {
|
|
1098
1103
|
__typename?: 'Device';
|
|
@@ -1109,7 +1114,7 @@ export declare type Device = {
|
|
|
1109
1114
|
ua?: Maybe<Scalars['String']>;
|
|
1110
1115
|
};
|
|
1111
1116
|
export declare type DiscoverRightInput = {
|
|
1112
|
-
_content?:
|
|
1117
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
1113
1118
|
};
|
|
1114
1119
|
export declare type DiscoverRights = {
|
|
1115
1120
|
__typename?: 'DiscoverRights';
|
|
@@ -1161,7 +1166,7 @@ export declare type DocumentActionData = {
|
|
|
1161
1166
|
action?: Maybe<ActionData>;
|
|
1162
1167
|
};
|
|
1163
1168
|
export declare type DocumentInput = {
|
|
1164
|
-
id?:
|
|
1169
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1165
1170
|
};
|
|
1166
1171
|
export declare type DtTimeInfo = {
|
|
1167
1172
|
__typename?: 'DtTimeInfo';
|
|
@@ -1170,7 +1175,7 @@ export declare type DtTimeInfo = {
|
|
|
1170
1175
|
utc?: Maybe<Scalars['Float']>;
|
|
1171
1176
|
};
|
|
1172
1177
|
export declare type EmlInput = {
|
|
1173
|
-
id?:
|
|
1178
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1174
1179
|
};
|
|
1175
1180
|
export declare type EmailAddress = {
|
|
1176
1181
|
__typename?: 'EmailAddress';
|
|
@@ -1185,11 +1190,12 @@ export declare type EmailAddressInput = {
|
|
|
1185
1190
|
shortName: Scalars['String'];
|
|
1186
1191
|
};
|
|
1187
1192
|
export declare type EnableTwoFactorAuthInput = {
|
|
1188
|
-
authToken?:
|
|
1193
|
+
authToken?: InputMaybe<Scalars['String']>;
|
|
1189
1194
|
csrfTokenSecured: Scalars['Boolean'];
|
|
1195
|
+
ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
|
|
1190
1196
|
name: Scalars['String'];
|
|
1191
|
-
password?:
|
|
1192
|
-
twoFactorCode?:
|
|
1197
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1198
|
+
twoFactorCode?: InputMaybe<Scalars['String']>;
|
|
1193
1199
|
};
|
|
1194
1200
|
export declare type EnableTwoFactorAuthResponse = {
|
|
1195
1201
|
__typename?: 'EnableTwoFactorAuthResponse';
|
|
@@ -1213,68 +1219,68 @@ export declare type ExcludeRecurrenceInfo = {
|
|
|
1213
1219
|
exclude?: Maybe<Array<Maybe<ExcludeRecurrenceInfo>>>;
|
|
1214
1220
|
};
|
|
1215
1221
|
export declare type ExistingAttachmentInput = {
|
|
1216
|
-
messageId?:
|
|
1217
|
-
part?:
|
|
1222
|
+
messageId?: InputMaybe<Scalars['ID']>;
|
|
1223
|
+
part?: InputMaybe<Scalars['String']>;
|
|
1218
1224
|
};
|
|
1219
1225
|
export declare type ExternalAccount = {
|
|
1220
|
-
accountType?:
|
|
1221
|
-
connectionType?:
|
|
1226
|
+
accountType?: InputMaybe<AccountType>;
|
|
1227
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1222
1228
|
host: Scalars['String'];
|
|
1223
1229
|
id: Scalars['ID'];
|
|
1224
|
-
isEnabled?:
|
|
1230
|
+
isEnabled?: InputMaybe<Scalars['Int']>;
|
|
1225
1231
|
name: Scalars['String'];
|
|
1226
1232
|
password: Scalars['String'];
|
|
1227
1233
|
port: Scalars['String'];
|
|
1228
1234
|
username: Scalars['String'];
|
|
1229
1235
|
};
|
|
1230
1236
|
export declare type ExternalAccountAddInput = {
|
|
1231
|
-
accountType?:
|
|
1232
|
-
connectionType?:
|
|
1233
|
-
emailAddress?:
|
|
1237
|
+
accountType?: InputMaybe<AccountType>;
|
|
1238
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1239
|
+
emailAddress?: InputMaybe<Scalars['String']>;
|
|
1234
1240
|
host: Scalars['String'];
|
|
1235
|
-
isEnabled?:
|
|
1241
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1236
1242
|
l: Scalars['ID'];
|
|
1237
|
-
leaveOnServer?:
|
|
1243
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1238
1244
|
name: Scalars['String'];
|
|
1239
1245
|
password: Scalars['String'];
|
|
1240
1246
|
port: Scalars['String'];
|
|
1241
1247
|
username: Scalars['String'];
|
|
1242
1248
|
};
|
|
1243
1249
|
export declare type ExternalAccountImportInput = {
|
|
1244
|
-
accountType?:
|
|
1250
|
+
accountType?: InputMaybe<AccountType>;
|
|
1245
1251
|
id: Scalars['ID'];
|
|
1246
1252
|
};
|
|
1247
1253
|
export declare type ExternalAccountModifyAttrsInput = {
|
|
1248
|
-
accountType?:
|
|
1249
|
-
connectionType?:
|
|
1250
|
-
defaultSignature?:
|
|
1251
|
-
description?:
|
|
1252
|
-
forwardReplySignature?:
|
|
1253
|
-
fromDisplay?:
|
|
1254
|
-
host?:
|
|
1255
|
-
id?:
|
|
1256
|
-
importOnly?:
|
|
1257
|
-
isEnabled?:
|
|
1254
|
+
accountType?: InputMaybe<AccountType>;
|
|
1255
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1256
|
+
defaultSignature?: InputMaybe<Scalars['ID']>;
|
|
1257
|
+
description?: InputMaybe<Scalars['String']>;
|
|
1258
|
+
forwardReplySignature?: InputMaybe<Scalars['ID']>;
|
|
1259
|
+
fromDisplay?: InputMaybe<Scalars['String']>;
|
|
1260
|
+
host?: InputMaybe<Scalars['String']>;
|
|
1261
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1262
|
+
importOnly?: InputMaybe<Scalars['Boolean']>;
|
|
1263
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1258
1264
|
l: Scalars['ID'];
|
|
1259
|
-
leaveOnServer?:
|
|
1260
|
-
name?:
|
|
1261
|
-
password?:
|
|
1262
|
-
port?:
|
|
1263
|
-
replyToAddress?:
|
|
1264
|
-
replyToDisplay?:
|
|
1265
|
-
replyToEnabled?:
|
|
1266
|
-
signatureValue?:
|
|
1267
|
-
smtpPort?:
|
|
1268
|
-
storeAndForward?:
|
|
1269
|
-
useAddressForForwardReply?:
|
|
1270
|
-
username?:
|
|
1265
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1266
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1267
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1268
|
+
port?: InputMaybe<Scalars['String']>;
|
|
1269
|
+
replyToAddress?: InputMaybe<Scalars['String']>;
|
|
1270
|
+
replyToDisplay?: InputMaybe<Scalars['String']>;
|
|
1271
|
+
replyToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1272
|
+
signatureValue?: InputMaybe<Scalars['String']>;
|
|
1273
|
+
smtpPort?: InputMaybe<Scalars['String']>;
|
|
1274
|
+
storeAndForward?: InputMaybe<Scalars['String']>;
|
|
1275
|
+
useAddressForForwardReply?: InputMaybe<Scalars['Boolean']>;
|
|
1276
|
+
username?: InputMaybe<Scalars['String']>;
|
|
1271
1277
|
};
|
|
1272
1278
|
export declare type ExternalAccountTestInput = {
|
|
1273
|
-
accountType?:
|
|
1274
|
-
connectionType?:
|
|
1275
|
-
emailAddress?:
|
|
1279
|
+
accountType?: InputMaybe<AccountType>;
|
|
1280
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1281
|
+
emailAddress?: InputMaybe<Scalars['String']>;
|
|
1276
1282
|
host: Scalars['String'];
|
|
1277
|
-
leaveOnServer?:
|
|
1283
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1278
1284
|
password: Scalars['String'];
|
|
1279
1285
|
port: Scalars['String'];
|
|
1280
1286
|
username: Scalars['String'];
|
|
@@ -1291,9 +1297,9 @@ export declare type FileIntoAction = {
|
|
|
1291
1297
|
index?: Maybe<Scalars['Int']>;
|
|
1292
1298
|
};
|
|
1293
1299
|
export declare type FileIntoActionInput = {
|
|
1294
|
-
copy?:
|
|
1295
|
-
folderPath?:
|
|
1296
|
-
index?:
|
|
1300
|
+
copy?: InputMaybe<Scalars['Boolean']>;
|
|
1301
|
+
folderPath?: InputMaybe<Scalars['String']>;
|
|
1302
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1297
1303
|
};
|
|
1298
1304
|
export declare type Filter = {
|
|
1299
1305
|
__typename?: 'Filter';
|
|
@@ -1315,15 +1321,15 @@ export declare type FilterAction = {
|
|
|
1315
1321
|
tag?: Maybe<Array<Maybe<TagAction>>>;
|
|
1316
1322
|
};
|
|
1317
1323
|
export declare type FilterActionInput = {
|
|
1318
|
-
discard?:
|
|
1319
|
-
fileInto?:
|
|
1320
|
-
flag?:
|
|
1321
|
-
keep?:
|
|
1322
|
-
notify?:
|
|
1323
|
-
redirect?:
|
|
1324
|
-
reply?:
|
|
1325
|
-
stop?:
|
|
1326
|
-
tag?:
|
|
1324
|
+
discard?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1325
|
+
fileInto?: InputMaybe<Array<InputMaybe<FileIntoActionInput>>>;
|
|
1326
|
+
flag?: InputMaybe<Array<InputMaybe<FlagActionInput>>>;
|
|
1327
|
+
keep?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1328
|
+
notify?: InputMaybe<Array<InputMaybe<NotifyActionInput>>>;
|
|
1329
|
+
redirect?: InputMaybe<Array<InputMaybe<RedirectActionInput>>>;
|
|
1330
|
+
reply?: InputMaybe<Array<InputMaybe<ReplyActionInput>>>;
|
|
1331
|
+
stop?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1332
|
+
tag?: InputMaybe<Array<InputMaybe<TagActionInput>>>;
|
|
1327
1333
|
};
|
|
1328
1334
|
export declare type FilterCondition = {
|
|
1329
1335
|
__typename?: 'FilterCondition';
|
|
@@ -1353,35 +1359,35 @@ export declare type FilterCondition = {
|
|
|
1353
1359
|
twitter?: Maybe<Array<Maybe<BasicCondition>>>;
|
|
1354
1360
|
};
|
|
1355
1361
|
export declare type FilterConditionInput = {
|
|
1356
|
-
address?:
|
|
1357
|
-
addressBook?:
|
|
1362
|
+
address?: InputMaybe<Array<InputMaybe<AddressConditionInput>>>;
|
|
1363
|
+
addressBook?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1358
1364
|
allOrAny: FilterMatchCondition;
|
|
1359
|
-
attachment?:
|
|
1360
|
-
body?:
|
|
1361
|
-
bulk?:
|
|
1362
|
-
communityConnections?:
|
|
1363
|
-
communityContent?:
|
|
1364
|
-
communityRequests?:
|
|
1365
|
-
contactRanking?:
|
|
1366
|
-
conversation?:
|
|
1367
|
-
date?:
|
|
1368
|
-
facebook?:
|
|
1369
|
-
flag?:
|
|
1370
|
-
header?:
|
|
1371
|
-
headerExists?:
|
|
1372
|
-
importance?:
|
|
1373
|
-
invite?:
|
|
1374
|
-
linkedin?:
|
|
1375
|
-
list?:
|
|
1376
|
-
me?:
|
|
1377
|
-
mimeHeader?:
|
|
1378
|
-
size?:
|
|
1379
|
-
twitter?:
|
|
1365
|
+
attachment?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1366
|
+
body?: InputMaybe<Array<InputMaybe<BodyConditionInput>>>;
|
|
1367
|
+
bulk?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1368
|
+
communityConnections?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1369
|
+
communityContent?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1370
|
+
communityRequests?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1371
|
+
contactRanking?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1372
|
+
conversation?: InputMaybe<Array<InputMaybe<ConversationConditionInput>>>;
|
|
1373
|
+
date?: InputMaybe<Array<InputMaybe<DateConditionInput>>>;
|
|
1374
|
+
facebook?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1375
|
+
flag?: InputMaybe<Array<InputMaybe<FlagConditionInput>>>;
|
|
1376
|
+
header?: InputMaybe<Array<InputMaybe<HeaderConditionInput>>>;
|
|
1377
|
+
headerExists?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1378
|
+
importance?: InputMaybe<Array<InputMaybe<ImportanceConditionInput>>>;
|
|
1379
|
+
invite?: InputMaybe<Array<InputMaybe<InviteConditionInput>>>;
|
|
1380
|
+
linkedin?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1381
|
+
list?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1382
|
+
me?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1383
|
+
mimeHeader?: InputMaybe<Array<InputMaybe<MimeHeaderConditionInput>>>;
|
|
1384
|
+
size?: InputMaybe<Array<InputMaybe<SizeConditionInput>>>;
|
|
1385
|
+
twitter?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1380
1386
|
};
|
|
1381
1387
|
export declare type FilterInput = {
|
|
1382
|
-
actions?:
|
|
1388
|
+
actions?: InputMaybe<Array<InputMaybe<FilterActionInput>>>;
|
|
1383
1389
|
active: Scalars['Boolean'];
|
|
1384
|
-
conditions?:
|
|
1390
|
+
conditions?: InputMaybe<Array<InputMaybe<FilterConditionInput>>>;
|
|
1385
1391
|
name: Scalars['String'];
|
|
1386
1392
|
};
|
|
1387
1393
|
export declare enum FilterMatchCondition {
|
|
@@ -1397,8 +1403,8 @@ export declare type FlagAction = {
|
|
|
1397
1403
|
index?: Maybe<Scalars['Int']>;
|
|
1398
1404
|
};
|
|
1399
1405
|
export declare type FlagActionInput = {
|
|
1400
|
-
flagName?:
|
|
1401
|
-
index?:
|
|
1406
|
+
flagName?: InputMaybe<Scalars['String']>;
|
|
1407
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1402
1408
|
};
|
|
1403
1409
|
export declare type FlagCondition = {
|
|
1404
1410
|
__typename?: 'FlagCondition';
|
|
@@ -1408,8 +1414,8 @@ export declare type FlagCondition = {
|
|
|
1408
1414
|
};
|
|
1409
1415
|
export declare type FlagConditionInput = {
|
|
1410
1416
|
flagName: Scalars['String'];
|
|
1411
|
-
index?:
|
|
1412
|
-
negative?:
|
|
1417
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1418
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1413
1419
|
};
|
|
1414
1420
|
export declare type Folder = {
|
|
1415
1421
|
__typename?: 'Folder';
|
|
@@ -1449,21 +1455,21 @@ export declare type FolderActionChangeColorInput = {
|
|
|
1449
1455
|
};
|
|
1450
1456
|
export declare type FolderActionCheckCalendarInput = {
|
|
1451
1457
|
id: Scalars['ID'];
|
|
1452
|
-
value?:
|
|
1458
|
+
value?: InputMaybe<Scalars['Boolean']>;
|
|
1453
1459
|
};
|
|
1454
1460
|
export declare type FolderActionInput = {
|
|
1455
|
-
color?:
|
|
1456
|
-
folderId?:
|
|
1457
|
-
grant?:
|
|
1461
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
1462
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1463
|
+
grant?: InputMaybe<Array<InputMaybe<GrantInput>>>;
|
|
1458
1464
|
id: Scalars['ID'];
|
|
1459
|
-
name?:
|
|
1465
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1460
1466
|
op: Scalars['String'];
|
|
1461
|
-
zimbraId?:
|
|
1467
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
1462
1468
|
};
|
|
1463
1469
|
export declare type FolderQueryInput = {
|
|
1464
|
-
id?:
|
|
1465
|
-
uuid?:
|
|
1466
|
-
view?:
|
|
1470
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1471
|
+
uuid?: InputMaybe<Scalars['ID']>;
|
|
1472
|
+
view?: InputMaybe<FolderView>;
|
|
1467
1473
|
};
|
|
1468
1474
|
export declare enum FolderView {
|
|
1469
1475
|
Appointment = "appointment",
|
|
@@ -1484,7 +1490,7 @@ export declare enum FolderView {
|
|
|
1484
1490
|
Wiki = "wiki"
|
|
1485
1491
|
}
|
|
1486
1492
|
export declare type ForwardAppointmentInput = {
|
|
1487
|
-
exceptId?:
|
|
1493
|
+
exceptId?: InputMaybe<ForwardExceptIdInput>;
|
|
1488
1494
|
id: Scalars['ID'];
|
|
1489
1495
|
message: ForwardMessageInput;
|
|
1490
1496
|
};
|
|
@@ -1497,9 +1503,9 @@ export declare type ForwardExceptIdInput = {
|
|
|
1497
1503
|
timezone: Scalars['String'];
|
|
1498
1504
|
};
|
|
1499
1505
|
export declare type ForwardMessageInput = {
|
|
1500
|
-
emailAddresses?:
|
|
1501
|
-
mimeParts?:
|
|
1502
|
-
subject?:
|
|
1506
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
1507
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
1508
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
1503
1509
|
};
|
|
1504
1510
|
export declare type FreeBusy = {
|
|
1505
1511
|
__typename?: 'FreeBusy';
|
|
@@ -1532,22 +1538,22 @@ export declare type GetAppointmentResponse = {
|
|
|
1532
1538
|
appointment?: Maybe<Array<Maybe<AppointmentInfo>>>;
|
|
1533
1539
|
};
|
|
1534
1540
|
export declare type GetDocumentShareUrlItemInput = {
|
|
1535
|
-
folderId?:
|
|
1536
|
-
id?:
|
|
1537
|
-
name?:
|
|
1538
|
-
path?:
|
|
1541
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1542
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1543
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1544
|
+
path?: InputMaybe<Scalars['String']>;
|
|
1539
1545
|
};
|
|
1540
1546
|
export declare type GetDocumentShareUrlResponse = {
|
|
1541
1547
|
__typename?: 'GetDocumentShareURLResponse';
|
|
1542
1548
|
content?: Maybe<Scalars['String']>;
|
|
1543
1549
|
};
|
|
1544
1550
|
export declare type GetFolderFolderInput = {
|
|
1545
|
-
parentFolderId?:
|
|
1546
|
-
path?:
|
|
1547
|
-
uuid?:
|
|
1551
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
1552
|
+
path?: InputMaybe<Scalars['String']>;
|
|
1553
|
+
uuid?: InputMaybe<Scalars['ID']>;
|
|
1548
1554
|
};
|
|
1549
1555
|
export declare type GetRightsInput = {
|
|
1550
|
-
access?:
|
|
1556
|
+
access?: InputMaybe<Array<InputMaybe<Right>>>;
|
|
1551
1557
|
};
|
|
1552
1558
|
export declare type GetTrustedDevicesResponse = {
|
|
1553
1559
|
__typename?: 'GetTrustedDevicesResponse';
|
|
@@ -1555,20 +1561,20 @@ export declare type GetTrustedDevicesResponse = {
|
|
|
1555
1561
|
thisDeviceTrusted?: Maybe<Scalars['Boolean']>;
|
|
1556
1562
|
};
|
|
1557
1563
|
export declare type GrantInput = {
|
|
1558
|
-
address?:
|
|
1564
|
+
address?: InputMaybe<Scalars['String']>;
|
|
1559
1565
|
granteeType: GranteeType;
|
|
1560
|
-
key?:
|
|
1561
|
-
password?:
|
|
1566
|
+
key?: InputMaybe<Scalars['String']>;
|
|
1567
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1562
1568
|
permissions: Scalars['String'];
|
|
1563
|
-
zimbraId?:
|
|
1569
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
1564
1570
|
};
|
|
1565
1571
|
export declare type GrantRightsInput = {
|
|
1566
|
-
access?:
|
|
1572
|
+
access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
|
|
1567
1573
|
};
|
|
1568
1574
|
export declare type Grantee = {
|
|
1569
|
-
id?:
|
|
1570
|
-
name?:
|
|
1571
|
-
type?:
|
|
1575
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1576
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1577
|
+
type?: InputMaybe<Scalars['String']>;
|
|
1572
1578
|
};
|
|
1573
1579
|
export declare enum GranteeType {
|
|
1574
1580
|
All = "all",
|
|
@@ -1615,8 +1621,8 @@ export declare type HeaderCheckCondition = {
|
|
|
1615
1621
|
};
|
|
1616
1622
|
export declare type HeaderCheckConditionInput = {
|
|
1617
1623
|
header: Scalars['String'];
|
|
1618
|
-
index?:
|
|
1619
|
-
negative?:
|
|
1624
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1625
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1620
1626
|
};
|
|
1621
1627
|
export declare type HeaderCondition = {
|
|
1622
1628
|
__typename?: 'HeaderCondition';
|
|
@@ -1630,14 +1636,14 @@ export declare type HeaderCondition = {
|
|
|
1630
1636
|
valueComparison?: Maybe<Scalars['String']>;
|
|
1631
1637
|
};
|
|
1632
1638
|
export declare type HeaderConditionInput = {
|
|
1633
|
-
caseSensitive?:
|
|
1634
|
-
countComparison?:
|
|
1635
|
-
header?:
|
|
1636
|
-
index?:
|
|
1637
|
-
negative?:
|
|
1638
|
-
stringComparison?:
|
|
1639
|
-
value?:
|
|
1640
|
-
valueComparison?:
|
|
1639
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
1640
|
+
countComparison?: InputMaybe<Scalars['String']>;
|
|
1641
|
+
header?: InputMaybe<Scalars['String']>;
|
|
1642
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1643
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1644
|
+
stringComparison?: InputMaybe<Scalars['String']>;
|
|
1645
|
+
value?: InputMaybe<Scalars['String']>;
|
|
1646
|
+
valueComparison?: InputMaybe<Scalars['String']>;
|
|
1641
1647
|
};
|
|
1642
1648
|
export declare type Hit = {
|
|
1643
1649
|
__typename?: 'Hit';
|
|
@@ -1676,23 +1682,23 @@ export declare type IdentityAttrs = {
|
|
|
1676
1682
|
zimbraPrefWhenSentToEnabled?: Maybe<Scalars['Boolean']>;
|
|
1677
1683
|
};
|
|
1678
1684
|
export declare type IdentityAttrsInput = {
|
|
1679
|
-
zimbraPrefDefaultSignatureId?:
|
|
1680
|
-
zimbraPrefForwardReplyFormat?:
|
|
1681
|
-
zimbraPrefForwardReplySignatureId?:
|
|
1682
|
-
zimbraPrefFromAddress?:
|
|
1683
|
-
zimbraPrefFromAddressType?:
|
|
1684
|
-
zimbraPrefFromDisplay?:
|
|
1685
|
-
zimbraPrefIdentityId?:
|
|
1686
|
-
zimbraPrefIdentityName?:
|
|
1687
|
-
zimbraPrefMailSignatureStyle?:
|
|
1688
|
-
zimbraPrefReplyToAddress?:
|
|
1689
|
-
zimbraPrefReplyToDisplay?:
|
|
1690
|
-
zimbraPrefReplyToEnabled?:
|
|
1691
|
-
zimbraPrefSentMailFolder?:
|
|
1692
|
-
zimbraPrefWhenInFolderIds?:
|
|
1693
|
-
zimbraPrefWhenInFoldersEnabled?:
|
|
1694
|
-
zimbraPrefWhenSentToAddresses?:
|
|
1695
|
-
zimbraPrefWhenSentToEnabled?:
|
|
1685
|
+
zimbraPrefDefaultSignatureId?: InputMaybe<Scalars['ID']>;
|
|
1686
|
+
zimbraPrefForwardReplyFormat?: InputMaybe<Scalars['String']>;
|
|
1687
|
+
zimbraPrefForwardReplySignatureId?: InputMaybe<Scalars['ID']>;
|
|
1688
|
+
zimbraPrefFromAddress?: InputMaybe<Scalars['String']>;
|
|
1689
|
+
zimbraPrefFromAddressType?: InputMaybe<Scalars['String']>;
|
|
1690
|
+
zimbraPrefFromDisplay?: InputMaybe<Scalars['String']>;
|
|
1691
|
+
zimbraPrefIdentityId?: InputMaybe<Scalars['ID']>;
|
|
1692
|
+
zimbraPrefIdentityName?: InputMaybe<Scalars['String']>;
|
|
1693
|
+
zimbraPrefMailSignatureStyle?: InputMaybe<Scalars['String']>;
|
|
1694
|
+
zimbraPrefReplyToAddress?: InputMaybe<Scalars['String']>;
|
|
1695
|
+
zimbraPrefReplyToDisplay?: InputMaybe<Scalars['String']>;
|
|
1696
|
+
zimbraPrefReplyToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1697
|
+
zimbraPrefSentMailFolder?: InputMaybe<Scalars['String']>;
|
|
1698
|
+
zimbraPrefWhenInFolderIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1699
|
+
zimbraPrefWhenInFoldersEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1700
|
+
zimbraPrefWhenSentToAddresses?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1701
|
+
zimbraPrefWhenSentToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1696
1702
|
};
|
|
1697
1703
|
export declare type ImportStatus = {
|
|
1698
1704
|
__typename?: 'ImportStatus';
|
|
@@ -1719,8 +1725,8 @@ export declare type ImportanceCondition = {
|
|
|
1719
1725
|
};
|
|
1720
1726
|
export declare type ImportanceConditionInput = {
|
|
1721
1727
|
importance: Importance;
|
|
1722
|
-
index?:
|
|
1723
|
-
negative?:
|
|
1728
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1729
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1724
1730
|
};
|
|
1725
1731
|
export declare type Instance = {
|
|
1726
1732
|
__typename?: 'Instance';
|
|
@@ -1753,7 +1759,7 @@ export declare type Instance = {
|
|
|
1753
1759
|
utcRecurrenceId?: Maybe<Scalars['String']>;
|
|
1754
1760
|
};
|
|
1755
1761
|
export declare type InstanceDate = {
|
|
1756
|
-
date?:
|
|
1762
|
+
date?: InputMaybe<Scalars['String']>;
|
|
1757
1763
|
};
|
|
1758
1764
|
export declare type IntervalRule = {
|
|
1759
1765
|
__typename?: 'IntervalRule';
|
|
@@ -1827,9 +1833,9 @@ export declare type InviteCondition = {
|
|
|
1827
1833
|
negative?: Maybe<Scalars['Boolean']>;
|
|
1828
1834
|
};
|
|
1829
1835
|
export declare type InviteConditionInput = {
|
|
1830
|
-
index?:
|
|
1831
|
-
methods?:
|
|
1832
|
-
negative?:
|
|
1836
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1837
|
+
methods?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1838
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1833
1839
|
};
|
|
1834
1840
|
export declare type InviteInfo = {
|
|
1835
1841
|
__typename?: 'InviteInfo';
|
|
@@ -1843,10 +1849,10 @@ export declare type InviteReplies = {
|
|
|
1843
1849
|
};
|
|
1844
1850
|
export declare type InviteReplyInput = {
|
|
1845
1851
|
componentNum: Scalars['Int'];
|
|
1846
|
-
exceptId?:
|
|
1852
|
+
exceptId?: InputMaybe<InstanceDate>;
|
|
1847
1853
|
id: Scalars['ID'];
|
|
1848
|
-
message?:
|
|
1849
|
-
updateOrganizer?:
|
|
1854
|
+
message?: InputMaybe<CalendarItemMessageInput>;
|
|
1855
|
+
updateOrganizer?: InputMaybe<Scalars['Boolean']>;
|
|
1850
1856
|
verb: InviteReplyVerb;
|
|
1851
1857
|
};
|
|
1852
1858
|
export declare type InviteReplyResponse = {
|
|
@@ -1916,7 +1922,7 @@ export declare type MailItem = {
|
|
|
1916
1922
|
};
|
|
1917
1923
|
export declare type MailItemEmailAddressInput = {
|
|
1918
1924
|
address: Scalars['String'];
|
|
1919
|
-
name?:
|
|
1925
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1920
1926
|
type: AddressType;
|
|
1921
1927
|
};
|
|
1922
1928
|
export declare type MailItemHeaderInput = {
|
|
@@ -1956,27 +1962,27 @@ export declare type MailboxMetadataMeta = {
|
|
|
1956
1962
|
section: Scalars['String'];
|
|
1957
1963
|
};
|
|
1958
1964
|
export declare type MailboxMetadataSectionAttrsInput = {
|
|
1959
|
-
archivedFolder?:
|
|
1960
|
-
privacyOverlayPrefs_showOverlay?:
|
|
1961
|
-
privacyOverlayPrefs_timeOut?:
|
|
1962
|
-
zimbraPrefContactSourceFolderID?:
|
|
1963
|
-
zimbraPrefCustomFolderTreeOpen?:
|
|
1964
|
-
zimbraPrefDateFormat?:
|
|
1965
|
-
zimbraPrefFolderTreeSash?:
|
|
1966
|
-
zimbraPrefFoldersExpanded?:
|
|
1967
|
-
zimbraPrefGenerateLinkPreviews?:
|
|
1968
|
-
zimbraPrefGroupByList?:
|
|
1969
|
-
zimbraPrefMessageListDensity?:
|
|
1970
|
-
zimbraPrefMultitasking?:
|
|
1971
|
-
zimbraPrefReadingPaneSashHorizontal?:
|
|
1972
|
-
zimbraPrefReadingPaneSashVertical?:
|
|
1973
|
-
zimbraPrefSMIMEDefaultSetting?:
|
|
1974
|
-
zimbraPrefSMIMELastOperation?:
|
|
1975
|
-
zimbraPrefSharedFolderTreeOpen?:
|
|
1976
|
-
zimbraPrefSmartFolderTreeOpen?:
|
|
1977
|
-
zimbraPrefTimeFormat?:
|
|
1978
|
-
zimbraPrefUndoSendEnabled?:
|
|
1979
|
-
zimbraPrefUndoSendTimeout?:
|
|
1965
|
+
archivedFolder?: InputMaybe<Scalars['String']>;
|
|
1966
|
+
privacyOverlayPrefs_showOverlay?: InputMaybe<Scalars['Boolean']>;
|
|
1967
|
+
privacyOverlayPrefs_timeOut?: InputMaybe<Scalars['Int']>;
|
|
1968
|
+
zimbraPrefContactSourceFolderID?: InputMaybe<Scalars['String']>;
|
|
1969
|
+
zimbraPrefCustomFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
1970
|
+
zimbraPrefDateFormat?: InputMaybe<Scalars['String']>;
|
|
1971
|
+
zimbraPrefFolderTreeSash?: InputMaybe<Scalars['Int']>;
|
|
1972
|
+
zimbraPrefFoldersExpanded?: InputMaybe<Scalars['String']>;
|
|
1973
|
+
zimbraPrefGenerateLinkPreviews?: InputMaybe<Scalars['Boolean']>;
|
|
1974
|
+
zimbraPrefGroupByList?: InputMaybe<Scalars['String']>;
|
|
1975
|
+
zimbraPrefMessageListDensity?: InputMaybe<Scalars['String']>;
|
|
1976
|
+
zimbraPrefMultitasking?: InputMaybe<Scalars['String']>;
|
|
1977
|
+
zimbraPrefReadingPaneSashHorizontal?: InputMaybe<Scalars['Int']>;
|
|
1978
|
+
zimbraPrefReadingPaneSashVertical?: InputMaybe<Scalars['Int']>;
|
|
1979
|
+
zimbraPrefSMIMEDefaultSetting?: InputMaybe<Scalars['String']>;
|
|
1980
|
+
zimbraPrefSMIMELastOperation?: InputMaybe<Scalars['String']>;
|
|
1981
|
+
zimbraPrefSharedFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
1982
|
+
zimbraPrefSmartFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
1983
|
+
zimbraPrefTimeFormat?: InputMaybe<Scalars['String']>;
|
|
1984
|
+
zimbraPrefUndoSendEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1985
|
+
zimbraPrefUndoSendTimeout?: InputMaybe<Scalars['Int']>;
|
|
1980
1986
|
};
|
|
1981
1987
|
export declare type MaxAppPasswords = {
|
|
1982
1988
|
__typename?: 'MaxAppPasswords';
|
|
@@ -2039,12 +2045,12 @@ export declare type MimeHeaderCondition = {
|
|
|
2039
2045
|
value?: Maybe<Scalars['String']>;
|
|
2040
2046
|
};
|
|
2041
2047
|
export declare type MimeHeaderConditionInput = {
|
|
2042
|
-
caseSensitive?:
|
|
2043
|
-
header?:
|
|
2044
|
-
index?:
|
|
2045
|
-
negative?:
|
|
2046
|
-
stringComparison?:
|
|
2047
|
-
value?:
|
|
2048
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
2049
|
+
header?: InputMaybe<Scalars['String']>;
|
|
2050
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
2051
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
2052
|
+
stringComparison?: InputMaybe<Scalars['String']>;
|
|
2053
|
+
value?: InputMaybe<Scalars['String']>;
|
|
2048
2054
|
};
|
|
2049
2055
|
export declare type MimePart = {
|
|
2050
2056
|
__typename?: 'MimePart';
|
|
@@ -2064,20 +2070,20 @@ export declare type MimePart = {
|
|
|
2064
2070
|
url?: Maybe<Scalars['String']>;
|
|
2065
2071
|
};
|
|
2066
2072
|
export declare type MimePartInput = {
|
|
2067
|
-
attachments?:
|
|
2068
|
-
base64?:
|
|
2069
|
-
body?:
|
|
2070
|
-
content?:
|
|
2071
|
-
contentDisposition?:
|
|
2072
|
-
contentId?:
|
|
2073
|
-
contentType?:
|
|
2074
|
-
filename?:
|
|
2075
|
-
messageId?:
|
|
2076
|
-
mimeParts?:
|
|
2077
|
-
part?:
|
|
2078
|
-
size?:
|
|
2079
|
-
truncated?:
|
|
2080
|
-
url?:
|
|
2073
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
2074
|
+
base64?: InputMaybe<Scalars['String']>;
|
|
2075
|
+
body?: InputMaybe<Scalars['Boolean']>;
|
|
2076
|
+
content?: InputMaybe<Scalars['String']>;
|
|
2077
|
+
contentDisposition?: InputMaybe<Scalars['String']>;
|
|
2078
|
+
contentId?: InputMaybe<Scalars['String']>;
|
|
2079
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
2080
|
+
filename?: InputMaybe<Scalars['String']>;
|
|
2081
|
+
messageId?: InputMaybe<Scalars['ID']>;
|
|
2082
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
2083
|
+
part?: InputMaybe<Scalars['ID']>;
|
|
2084
|
+
size?: InputMaybe<Scalars['Float']>;
|
|
2085
|
+
truncated?: InputMaybe<Scalars['Boolean']>;
|
|
2086
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2081
2087
|
};
|
|
2082
2088
|
export declare enum Mode {
|
|
2083
2089
|
Html = "html",
|
|
@@ -2093,13 +2099,13 @@ export declare type ModifyAppointmentResponse = {
|
|
|
2093
2099
|
};
|
|
2094
2100
|
export declare type ModifyContactInput = {
|
|
2095
2101
|
attributes: ContactAttrsInput;
|
|
2096
|
-
folderId?:
|
|
2102
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2097
2103
|
id: Scalars['ID'];
|
|
2098
|
-
memberOps?:
|
|
2099
|
-
tagNames?:
|
|
2104
|
+
memberOps?: InputMaybe<Array<InputMaybe<ContactListOps>>>;
|
|
2105
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2100
2106
|
};
|
|
2101
2107
|
export declare type ModifyIdentityInput = {
|
|
2102
|
-
attrs?:
|
|
2108
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2103
2109
|
id: Scalars['ID'];
|
|
2104
2110
|
};
|
|
2105
2111
|
export declare type ModifyZimletPrefsResponse = {
|
|
@@ -2230,22 +2236,22 @@ export declare type Mutation = {
|
|
|
2230
2236
|
uploadMessage?: Maybe<Scalars['String']>;
|
|
2231
2237
|
};
|
|
2232
2238
|
export declare type MutationAccountOnlyRemoteWipeSyncArgs = {
|
|
2233
|
-
deviceId?:
|
|
2239
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2234
2240
|
};
|
|
2235
2241
|
export declare type MutationActionArgs = {
|
|
2236
|
-
color?:
|
|
2237
|
-
constraints?:
|
|
2238
|
-
destFolderLocal?:
|
|
2239
|
-
flags?:
|
|
2240
|
-
folderId?:
|
|
2241
|
-
id?:
|
|
2242
|
-
ids?:
|
|
2243
|
-
isLocal?:
|
|
2244
|
-
name?:
|
|
2242
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
2243
|
+
constraints?: InputMaybe<Scalars['String']>;
|
|
2244
|
+
destFolderLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2245
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
2246
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2247
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2248
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
2249
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2250
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2245
2251
|
op: Scalars['String'];
|
|
2246
|
-
recursive?:
|
|
2247
|
-
rgb?:
|
|
2248
|
-
tagNames?:
|
|
2252
|
+
recursive?: InputMaybe<Scalars['Boolean']>;
|
|
2253
|
+
rgb?: InputMaybe<Scalars['String']>;
|
|
2254
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2249
2255
|
type: ActionTypeName;
|
|
2250
2256
|
};
|
|
2251
2257
|
export declare type MutationAddExternalAccountArgs = {
|
|
@@ -2255,20 +2261,20 @@ export declare type MutationAddMessageArgs = {
|
|
|
2255
2261
|
message: AddMsgInput;
|
|
2256
2262
|
};
|
|
2257
2263
|
export declare type MutationAllowDeviceSyncArgs = {
|
|
2258
|
-
deviceId?:
|
|
2264
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2259
2265
|
};
|
|
2260
2266
|
export declare type MutationApplyFilterRulesArgs = {
|
|
2261
|
-
filterRules?:
|
|
2267
|
+
filterRules?: InputMaybe<Array<InputMaybe<FilterRuleInput>>>;
|
|
2262
2268
|
ids: Scalars['String'];
|
|
2263
2269
|
};
|
|
2264
2270
|
export declare type MutationBlockDeviceSyncArgs = {
|
|
2265
|
-
deviceId?:
|
|
2271
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2266
2272
|
};
|
|
2267
2273
|
export declare type MutationCancelPendingAccountOnlyRemoteWipeSyncArgs = {
|
|
2268
|
-
deviceId?:
|
|
2274
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2269
2275
|
};
|
|
2270
2276
|
export declare type MutationCancelPendingRemoteWipeSyncArgs = {
|
|
2271
|
-
deviceId?:
|
|
2277
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2272
2278
|
};
|
|
2273
2279
|
export declare type MutationCancelTaskArgs = {
|
|
2274
2280
|
inviteId: Scalars['ID'];
|
|
@@ -2278,7 +2284,7 @@ export declare type MutationChangeFolderColorArgs = {
|
|
|
2278
2284
|
id: Scalars['ID'];
|
|
2279
2285
|
};
|
|
2280
2286
|
export declare type MutationChangePasswordArgs = {
|
|
2281
|
-
dryRun?:
|
|
2287
|
+
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
2282
2288
|
loginNewPassword: Scalars['String'];
|
|
2283
2289
|
password: Scalars['String'];
|
|
2284
2290
|
username: Scalars['String'];
|
|
@@ -2288,11 +2294,11 @@ export declare type MutationCheckCalendarArgs = {
|
|
|
2288
2294
|
value: Scalars['Boolean'];
|
|
2289
2295
|
};
|
|
2290
2296
|
export declare type MutationContactActionArgs = {
|
|
2291
|
-
folderId?:
|
|
2292
|
-
id?:
|
|
2293
|
-
ids?:
|
|
2297
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2298
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2299
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
2294
2300
|
op: Scalars['String'];
|
|
2295
|
-
tagNames?:
|
|
2301
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2296
2302
|
};
|
|
2297
2303
|
export declare type MutationConversationActionArgs = {
|
|
2298
2304
|
ids: Array<Scalars['ID']>;
|
|
@@ -2305,17 +2311,17 @@ export declare type MutationCreateAppSpecificPasswordArgs = {
|
|
|
2305
2311
|
appName: Scalars['String'];
|
|
2306
2312
|
};
|
|
2307
2313
|
export declare type MutationCreateAppointmentArgs = {
|
|
2308
|
-
accountName?:
|
|
2314
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2309
2315
|
appointment: CalendarItemInput;
|
|
2310
2316
|
};
|
|
2311
2317
|
export declare type MutationCreateAppointmentExceptionArgs = {
|
|
2312
|
-
accountName?:
|
|
2318
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2313
2319
|
appointment: CalendarItemInput;
|
|
2314
2320
|
};
|
|
2315
2321
|
export declare type MutationCreateCalendarArgs = {
|
|
2316
2322
|
color: Scalars['Int'];
|
|
2317
2323
|
name: Scalars['String'];
|
|
2318
|
-
url?:
|
|
2324
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2319
2325
|
};
|
|
2320
2326
|
export declare type MutationCreateContactArgs = {
|
|
2321
2327
|
contact: CreateContactInput;
|
|
@@ -2324,17 +2330,17 @@ export declare type MutationCreateContactListArgs = {
|
|
|
2324
2330
|
contact: CreateContactInput;
|
|
2325
2331
|
};
|
|
2326
2332
|
export declare type MutationCreateFolderArgs = {
|
|
2327
|
-
color?:
|
|
2328
|
-
fetchIfExists?:
|
|
2329
|
-
flags?:
|
|
2330
|
-
isLocalFolder?:
|
|
2333
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
2334
|
+
fetchIfExists?: InputMaybe<Scalars['Boolean']>;
|
|
2335
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
2336
|
+
isLocalFolder?: InputMaybe<Scalars['Boolean']>;
|
|
2331
2337
|
name: Scalars['String'];
|
|
2332
|
-
parentFolderId?:
|
|
2333
|
-
url?:
|
|
2334
|
-
view?:
|
|
2338
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2339
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2340
|
+
view?: InputMaybe<FolderView>;
|
|
2335
2341
|
};
|
|
2336
2342
|
export declare type MutationCreateIdentityArgs = {
|
|
2337
|
-
attrs?:
|
|
2343
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2338
2344
|
name: Scalars['String'];
|
|
2339
2345
|
};
|
|
2340
2346
|
export declare type MutationCreateMountpointArgs = {
|
|
@@ -2342,9 +2348,9 @@ export declare type MutationCreateMountpointArgs = {
|
|
|
2342
2348
|
};
|
|
2343
2349
|
export declare type MutationCreateSearchFolderArgs = {
|
|
2344
2350
|
name: Scalars['String'];
|
|
2345
|
-
parentFolderId?:
|
|
2351
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2346
2352
|
query: Scalars['String'];
|
|
2347
|
-
types?:
|
|
2353
|
+
types?: InputMaybe<FolderView>;
|
|
2348
2354
|
};
|
|
2349
2355
|
export declare type MutationCreateSharedCalendarArgs = {
|
|
2350
2356
|
link: NewMountpointSpec;
|
|
@@ -2353,7 +2359,7 @@ export declare type MutationCreateSignatureArgs = {
|
|
|
2353
2359
|
signature: SignatureInput;
|
|
2354
2360
|
};
|
|
2355
2361
|
export declare type MutationCreateTagArgs = {
|
|
2356
|
-
tag?:
|
|
2362
|
+
tag?: InputMaybe<CreateTagInput>;
|
|
2357
2363
|
};
|
|
2358
2364
|
export declare type MutationCreateTaskArgs = {
|
|
2359
2365
|
task: CalendarItemInput;
|
|
@@ -2369,14 +2375,14 @@ export declare type MutationDeleteExternalAccountArgs = {
|
|
|
2369
2375
|
};
|
|
2370
2376
|
export declare type MutationDeleteIdentityArgs = {
|
|
2371
2377
|
id: Scalars['ID'];
|
|
2372
|
-
name?:
|
|
2378
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2373
2379
|
};
|
|
2374
2380
|
export declare type MutationDeleteSignatureArgs = {
|
|
2375
2381
|
signature: NameIdInput;
|
|
2376
2382
|
};
|
|
2377
2383
|
export declare type MutationDismissCalendarItemArgs = {
|
|
2378
|
-
appointment?:
|
|
2379
|
-
task?:
|
|
2384
|
+
appointment?: InputMaybe<Array<InputMaybe<DismissInput>>>;
|
|
2385
|
+
task?: InputMaybe<DismissInput>;
|
|
2380
2386
|
};
|
|
2381
2387
|
export declare type MutationDocumentActionArgs = {
|
|
2382
2388
|
action: FolderActionInput;
|
|
@@ -2403,21 +2409,22 @@ export declare type MutationImportExternalAccountArgs = {
|
|
|
2403
2409
|
externalAccount: ExternalAccountImportInput;
|
|
2404
2410
|
};
|
|
2405
2411
|
export declare type MutationItemActionArgs = {
|
|
2406
|
-
folderId?:
|
|
2407
|
-
id?:
|
|
2408
|
-
ids?:
|
|
2409
|
-
name?:
|
|
2412
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2413
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2414
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
|
2415
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2410
2416
|
op: Scalars['String'];
|
|
2411
|
-
tagNames?:
|
|
2417
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2412
2418
|
};
|
|
2413
2419
|
export declare type MutationLoginArgs = {
|
|
2414
2420
|
csrfTokenSecured: Scalars['Boolean'];
|
|
2415
|
-
deviceTrusted?:
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
+
deviceTrusted?: InputMaybe<Scalars['Boolean']>;
|
|
2422
|
+
ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
|
|
2423
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2424
|
+
persistAuthTokenCookie?: InputMaybe<Scalars['Boolean']>;
|
|
2425
|
+
recoveryCode?: InputMaybe<Scalars['String']>;
|
|
2426
|
+
tokenType?: InputMaybe<Scalars['String']>;
|
|
2427
|
+
twoFactorCode?: InputMaybe<Scalars['String']>;
|
|
2421
2428
|
username: Scalars['String'];
|
|
2422
2429
|
};
|
|
2423
2430
|
export declare type MutationMessageActionArgs = {
|
|
@@ -2425,7 +2432,7 @@ export declare type MutationMessageActionArgs = {
|
|
|
2425
2432
|
op: Scalars['String'];
|
|
2426
2433
|
};
|
|
2427
2434
|
export declare type MutationModifyAppointmentArgs = {
|
|
2428
|
-
accountName?:
|
|
2435
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2429
2436
|
appointment: CalendarItemInput;
|
|
2430
2437
|
};
|
|
2431
2438
|
export declare type MutationModifyContactArgs = {
|
|
@@ -2437,24 +2444,24 @@ export declare type MutationModifyContactListArgs = {
|
|
|
2437
2444
|
export declare type MutationModifyExternalAccountArgs = {
|
|
2438
2445
|
attrs: ExternalAccountModifyAttrsInput;
|
|
2439
2446
|
id: Scalars['ID'];
|
|
2440
|
-
type?:
|
|
2447
|
+
type?: InputMaybe<AccountType>;
|
|
2441
2448
|
};
|
|
2442
2449
|
export declare type MutationModifyFilterRulesArgs = {
|
|
2443
|
-
filters?:
|
|
2450
|
+
filters?: InputMaybe<Array<FilterInput>>;
|
|
2444
2451
|
};
|
|
2445
2452
|
export declare type MutationModifyIdentityArgs = {
|
|
2446
|
-
attrs?:
|
|
2453
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2447
2454
|
id: Scalars['ID'];
|
|
2448
2455
|
};
|
|
2449
2456
|
export declare type MutationModifyPrefsArgs = {
|
|
2450
2457
|
prefs: PreferencesInput;
|
|
2451
2458
|
};
|
|
2452
2459
|
export declare type MutationModifyProfileImageArgs = {
|
|
2453
|
-
content?:
|
|
2454
|
-
contentType?:
|
|
2460
|
+
content?: InputMaybe<Scalars['String']>;
|
|
2461
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
2455
2462
|
};
|
|
2456
2463
|
export declare type MutationModifyPropsArgs = {
|
|
2457
|
-
props?:
|
|
2464
|
+
props?: InputMaybe<Array<PropertiesInput>>;
|
|
2458
2465
|
};
|
|
2459
2466
|
export declare type MutationModifySearchFolderArgs = {
|
|
2460
2467
|
search: SearchFolderInput;
|
|
@@ -2469,7 +2476,7 @@ export declare type MutationModifyWhiteBlackListArgs = {
|
|
|
2469
2476
|
whiteBlackList: WhiteBlackListInput;
|
|
2470
2477
|
};
|
|
2471
2478
|
export declare type MutationModifyZimletPrefsArgs = {
|
|
2472
|
-
zimlets?:
|
|
2479
|
+
zimlets?: InputMaybe<Array<ZimletPreferenceInput>>;
|
|
2473
2480
|
};
|
|
2474
2481
|
export declare type MutationMoveTaskArgs = {
|
|
2475
2482
|
destFolderId: Scalars['ID'];
|
|
@@ -2491,7 +2498,7 @@ export declare type MutationPrefOutOfOfficeUntilDateArgs = {
|
|
|
2491
2498
|
value: Scalars['String'];
|
|
2492
2499
|
};
|
|
2493
2500
|
export declare type MutationQuarantineDeviceSyncArgs = {
|
|
2494
|
-
deviceId?:
|
|
2501
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2495
2502
|
};
|
|
2496
2503
|
export declare type MutationRecoverAccountArgs = {
|
|
2497
2504
|
channel: SetRecoveryAccountChannel;
|
|
@@ -2499,16 +2506,16 @@ export declare type MutationRecoverAccountArgs = {
|
|
|
2499
2506
|
op: RecoverAccountOp;
|
|
2500
2507
|
};
|
|
2501
2508
|
export declare type MutationRemoteWipeSyncArgs = {
|
|
2502
|
-
deviceId?:
|
|
2509
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2503
2510
|
};
|
|
2504
2511
|
export declare type MutationRemoveDeviceSyncArgs = {
|
|
2505
|
-
deviceId?:
|
|
2512
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2506
2513
|
};
|
|
2507
2514
|
export declare type MutationResetPasswordArgs = {
|
|
2508
|
-
cancelResetPassword?:
|
|
2509
|
-
dryRun?:
|
|
2510
|
-
getPasswordRules?:
|
|
2511
|
-
password?:
|
|
2515
|
+
cancelResetPassword?: InputMaybe<Scalars['Boolean']>;
|
|
2516
|
+
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
2517
|
+
getPasswordRules?: InputMaybe<Scalars['Boolean']>;
|
|
2518
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2512
2519
|
};
|
|
2513
2520
|
export declare type MutationRevokeAppSpecificPasswordArgs = {
|
|
2514
2521
|
appName: Scalars['String'];
|
|
@@ -2517,14 +2524,14 @@ export declare type MutationRevokeRightsArgs = {
|
|
|
2517
2524
|
input: RevokeRightsInput;
|
|
2518
2525
|
};
|
|
2519
2526
|
export declare type MutationSaveDocumentArgs = {
|
|
2520
|
-
document?:
|
|
2527
|
+
document?: InputMaybe<SaveDocumentInput>;
|
|
2521
2528
|
};
|
|
2522
2529
|
export declare type MutationSaveDraftArgs = {
|
|
2523
|
-
accountName?:
|
|
2530
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2524
2531
|
message: SendMessageInput;
|
|
2525
2532
|
};
|
|
2526
2533
|
export declare type MutationSaveSMimeCertArgs = {
|
|
2527
|
-
password?:
|
|
2534
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2528
2535
|
upload: SaveSMimeCertInputUpload;
|
|
2529
2536
|
};
|
|
2530
2537
|
export declare type MutationSendDeliveryReportArgs = {
|
|
@@ -2534,10 +2541,10 @@ export declare type MutationSendInviteReplyArgs = {
|
|
|
2534
2541
|
inviteReply: InviteReplyInput;
|
|
2535
2542
|
};
|
|
2536
2543
|
export declare type MutationSendMessageArgs = {
|
|
2537
|
-
accountName?:
|
|
2538
|
-
encrypt?:
|
|
2544
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2545
|
+
encrypt?: InputMaybe<Scalars['Boolean']>;
|
|
2539
2546
|
message: SendMessageInput;
|
|
2540
|
-
sign?:
|
|
2547
|
+
sign?: InputMaybe<Scalars['Boolean']>;
|
|
2541
2548
|
};
|
|
2542
2549
|
export declare type MutationSendShareNotificationArgs = {
|
|
2543
2550
|
shareNotification: ShareNotificationInput;
|
|
@@ -2547,20 +2554,20 @@ export declare type MutationSetCustomMetadataArgs = {
|
|
|
2547
2554
|
};
|
|
2548
2555
|
export declare type MutationSetMailboxMetadataArgs = {
|
|
2549
2556
|
attrs: MailboxMetadataSectionAttrsInput;
|
|
2550
|
-
section?:
|
|
2557
|
+
section?: InputMaybe<Scalars['String']>;
|
|
2551
2558
|
};
|
|
2552
2559
|
export declare type MutationSetRecoveryAccountArgs = {
|
|
2553
2560
|
channel: SetRecoveryAccountChannel;
|
|
2554
2561
|
op: SetRecoveryAccountOp;
|
|
2555
|
-
recoveryAccount?:
|
|
2556
|
-
recoveryAccountVerificationCode?:
|
|
2562
|
+
recoveryAccount?: InputMaybe<Scalars['String']>;
|
|
2563
|
+
recoveryAccountVerificationCode?: InputMaybe<Scalars['String']>;
|
|
2557
2564
|
};
|
|
2558
2565
|
export declare type MutationSnoozeCalendarItemArgs = {
|
|
2559
|
-
appointment?:
|
|
2560
|
-
task?:
|
|
2566
|
+
appointment?: InputMaybe<Array<InputMaybe<SnoozeInput>>>;
|
|
2567
|
+
task?: InputMaybe<SnoozeInput>;
|
|
2561
2568
|
};
|
|
2562
2569
|
export declare type MutationTagActionArgs = {
|
|
2563
|
-
action?:
|
|
2570
|
+
action?: InputMaybe<FolderActionInput>;
|
|
2564
2571
|
};
|
|
2565
2572
|
export declare type MutationTestExternalAccountArgs = {
|
|
2566
2573
|
externalAccount: ExternalAccountTestInput;
|
|
@@ -2574,8 +2581,8 @@ export declare type NameId = {
|
|
|
2574
2581
|
name?: Maybe<Scalars['String']>;
|
|
2575
2582
|
};
|
|
2576
2583
|
export declare type NameIdInput = {
|
|
2577
|
-
id?:
|
|
2578
|
-
name?:
|
|
2584
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2585
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2579
2586
|
};
|
|
2580
2587
|
export declare enum NeedIsMemberType {
|
|
2581
2588
|
All = "all",
|
|
@@ -2583,22 +2590,22 @@ export declare enum NeedIsMemberType {
|
|
|
2583
2590
|
None = "none"
|
|
2584
2591
|
}
|
|
2585
2592
|
export declare type NewMountpointSpec = {
|
|
2586
|
-
color?:
|
|
2587
|
-
flags?:
|
|
2593
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
2594
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
2588
2595
|
name: Scalars['String'];
|
|
2589
|
-
owner?:
|
|
2590
|
-
ownerZimbraId?:
|
|
2591
|
-
parentFolderId?:
|
|
2592
|
-
reminder?:
|
|
2593
|
-
sharedItemId?:
|
|
2594
|
-
view?:
|
|
2596
|
+
owner?: InputMaybe<Scalars['String']>;
|
|
2597
|
+
ownerZimbraId?: InputMaybe<Scalars['ID']>;
|
|
2598
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2599
|
+
reminder?: InputMaybe<Scalars['Boolean']>;
|
|
2600
|
+
sharedItemId?: InputMaybe<Scalars['ID']>;
|
|
2601
|
+
view?: InputMaybe<SearchType>;
|
|
2595
2602
|
};
|
|
2596
2603
|
export declare type NoOpResponse = {
|
|
2597
2604
|
__typename?: 'NoOpResponse';
|
|
2598
2605
|
waitDisallowed?: Maybe<Scalars['Boolean']>;
|
|
2599
2606
|
};
|
|
2600
2607
|
export declare type Notes = {
|
|
2601
|
-
_content?:
|
|
2608
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
2602
2609
|
};
|
|
2603
2610
|
export declare type NotifyAction = {
|
|
2604
2611
|
__typename?: 'NotifyAction';
|
|
@@ -2610,12 +2617,12 @@ export declare type NotifyAction = {
|
|
|
2610
2617
|
subject?: Maybe<Scalars['String']>;
|
|
2611
2618
|
};
|
|
2612
2619
|
export declare type NotifyActionInput = {
|
|
2613
|
-
address?:
|
|
2614
|
-
content?:
|
|
2615
|
-
index?:
|
|
2616
|
-
maxBodySize?:
|
|
2617
|
-
origHeaders?:
|
|
2618
|
-
subject?:
|
|
2620
|
+
address?: InputMaybe<Scalars['String']>;
|
|
2621
|
+
content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
2622
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
2623
|
+
maxBodySize?: InputMaybe<Scalars['Int']>;
|
|
2624
|
+
origHeaders?: InputMaybe<Scalars['String']>;
|
|
2625
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
2619
2626
|
};
|
|
2620
2627
|
export declare type OnlyEmailAddress = {
|
|
2621
2628
|
__typename?: 'OnlyEmailAddress';
|
|
@@ -2627,12 +2634,12 @@ export declare type OtherContactAttribute = {
|
|
|
2627
2634
|
value?: Maybe<Scalars['String']>;
|
|
2628
2635
|
};
|
|
2629
2636
|
export declare type OtherContactAttributeInput = {
|
|
2630
|
-
key?:
|
|
2631
|
-
value?:
|
|
2637
|
+
key?: InputMaybe<Scalars['String']>;
|
|
2638
|
+
value?: InputMaybe<Scalars['String']>;
|
|
2632
2639
|
};
|
|
2633
2640
|
export declare type Owner = {
|
|
2634
|
-
_content?:
|
|
2635
|
-
by?:
|
|
2641
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
2642
|
+
by?: InputMaybe<Scalars['String']>;
|
|
2636
2643
|
};
|
|
2637
2644
|
export declare enum ParticipationRole {
|
|
2638
2645
|
Cha = "CHA",
|
|
@@ -2747,61 +2754,61 @@ export declare type Preferences = {
|
|
|
2747
2754
|
zimbraPrefWebClientOfflineBrowserKey?: Maybe<Scalars['String']>;
|
|
2748
2755
|
};
|
|
2749
2756
|
export declare type PreferencesInput = {
|
|
2750
|
-
zimbraPrefAppleIcalDelegationEnabled?:
|
|
2751
|
-
zimbraPrefAutoAddAppointmentsToCalendar?:
|
|
2752
|
-
zimbraPrefBriefcaseReadingPaneLocation?:
|
|
2753
|
-
zimbraPrefCalendarAlwaysShowMiniCal?:
|
|
2754
|
-
zimbraPrefCalendarApptReminderWarningTime?:
|
|
2755
|
-
zimbraPrefCalendarAutoAddInvites?:
|
|
2756
|
-
zimbraPrefCalendarFirstDayOfWeek?:
|
|
2757
|
-
zimbraPrefCalendarInitialView?:
|
|
2758
|
-
zimbraPrefCalendarReminderEmail?:
|
|
2759
|
-
zimbraPrefCalendarShowDeclinedMeetings?:
|
|
2760
|
-
zimbraPrefCalendarShowPastDueReminders?:
|
|
2761
|
-
zimbraPrefCalendarToasterEnabled?:
|
|
2762
|
-
zimbraPrefCalendarWorkingHours?:
|
|
2763
|
-
zimbraPrefClientType?:
|
|
2764
|
-
zimbraPrefComposeDirection?:
|
|
2765
|
-
zimbraPrefComposeFormat?:
|
|
2766
|
-
zimbraPrefDefaultCalendarId?:
|
|
2767
|
-
zimbraPrefDelegatedSendSaveTarget?:
|
|
2768
|
-
zimbraPrefDisplayExternalImages?:
|
|
2769
|
-
zimbraPrefDisplayTimeInMailList?:
|
|
2770
|
-
zimbraPrefGroupMailBy?:
|
|
2771
|
-
zimbraPrefHtmlEditorDefaultFontColor?:
|
|
2772
|
-
zimbraPrefHtmlEditorDefaultFontFamily?:
|
|
2773
|
-
zimbraPrefHtmlEditorDefaultFontSize?:
|
|
2774
|
-
zimbraPrefLocale?:
|
|
2775
|
-
zimbraPrefMailForwardingAddress?:
|
|
2776
|
-
zimbraPrefMailLocalDeliveryDisabled?:
|
|
2777
|
-
zimbraPrefMailPollingInterval?:
|
|
2778
|
-
zimbraPrefMailRequestReadReceipts?:
|
|
2779
|
-
zimbraPrefMailSelectAfterDelete?:
|
|
2780
|
-
zimbraPrefMailSendReadReceipts?:
|
|
2781
|
-
zimbraPrefMailToasterEnabled?:
|
|
2782
|
-
zimbraPrefMailTrustedSenderList?:
|
|
2783
|
-
zimbraPrefMarkMsgRead?:
|
|
2784
|
-
zimbraPrefMessageViewHtmlPreferred?:
|
|
2785
|
-
zimbraPrefOutOfOfficeExternalReply?:
|
|
2786
|
-
zimbraPrefOutOfOfficeExternalReplyEnabled?:
|
|
2787
|
-
zimbraPrefOutOfOfficeFromDate?:
|
|
2788
|
-
zimbraPrefOutOfOfficeReply?:
|
|
2789
|
-
zimbraPrefOutOfOfficeReplyEnabled?:
|
|
2790
|
-
zimbraPrefOutOfOfficeStatusAlertOnLogin?:
|
|
2791
|
-
zimbraPrefOutOfOfficeSuppressExternalReply?:
|
|
2792
|
-
zimbraPrefOutOfOfficeUntilDate?:
|
|
2793
|
-
zimbraPrefPowerPasteEnabled?:
|
|
2794
|
-
zimbraPrefReadingPaneEnabled?:
|
|
2795
|
-
zimbraPrefReadingPaneLocation?:
|
|
2796
|
-
zimbraPrefSaveToSent?:
|
|
2797
|
-
zimbraPrefShowAllNewMailNotifications?:
|
|
2798
|
-
zimbraPrefShowFragments?:
|
|
2799
|
-
zimbraPrefSlackCalendarReminderEnabled?:
|
|
2800
|
-
zimbraPrefSortOrder?:
|
|
2801
|
-
zimbraPrefTagTreeOpen?:
|
|
2802
|
-
zimbraPrefTimeZoneId?:
|
|
2803
|
-
zimbraPrefUseTimeZoneListInCalendar?:
|
|
2804
|
-
zimbraPrefWebClientOfflineBrowserKey?:
|
|
2757
|
+
zimbraPrefAppleIcalDelegationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2758
|
+
zimbraPrefAutoAddAppointmentsToCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
2759
|
+
zimbraPrefBriefcaseReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
|
|
2760
|
+
zimbraPrefCalendarAlwaysShowMiniCal?: InputMaybe<Scalars['Boolean']>;
|
|
2761
|
+
zimbraPrefCalendarApptReminderWarningTime?: InputMaybe<Scalars['Int']>;
|
|
2762
|
+
zimbraPrefCalendarAutoAddInvites?: InputMaybe<Scalars['Boolean']>;
|
|
2763
|
+
zimbraPrefCalendarFirstDayOfWeek?: InputMaybe<Scalars['Int']>;
|
|
2764
|
+
zimbraPrefCalendarInitialView?: InputMaybe<PrefCalendarInitialView>;
|
|
2765
|
+
zimbraPrefCalendarReminderEmail?: InputMaybe<Scalars['String']>;
|
|
2766
|
+
zimbraPrefCalendarShowDeclinedMeetings?: InputMaybe<Scalars['Boolean']>;
|
|
2767
|
+
zimbraPrefCalendarShowPastDueReminders?: InputMaybe<Scalars['Boolean']>;
|
|
2768
|
+
zimbraPrefCalendarToasterEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2769
|
+
zimbraPrefCalendarWorkingHours?: InputMaybe<Scalars['String']>;
|
|
2770
|
+
zimbraPrefClientType?: InputMaybe<PrefClientType>;
|
|
2771
|
+
zimbraPrefComposeDirection?: InputMaybe<Scalars['String']>;
|
|
2772
|
+
zimbraPrefComposeFormat?: InputMaybe<Mode>;
|
|
2773
|
+
zimbraPrefDefaultCalendarId?: InputMaybe<Scalars['ID']>;
|
|
2774
|
+
zimbraPrefDelegatedSendSaveTarget?: InputMaybe<PrefDelegatedSendSaveTarget>;
|
|
2775
|
+
zimbraPrefDisplayExternalImages?: InputMaybe<Scalars['Boolean']>;
|
|
2776
|
+
zimbraPrefDisplayTimeInMailList?: InputMaybe<Scalars['Boolean']>;
|
|
2777
|
+
zimbraPrefGroupMailBy?: InputMaybe<Scalars['String']>;
|
|
2778
|
+
zimbraPrefHtmlEditorDefaultFontColor?: InputMaybe<Scalars['String']>;
|
|
2779
|
+
zimbraPrefHtmlEditorDefaultFontFamily?: InputMaybe<Scalars['String']>;
|
|
2780
|
+
zimbraPrefHtmlEditorDefaultFontSize?: InputMaybe<Scalars['String']>;
|
|
2781
|
+
zimbraPrefLocale?: InputMaybe<Scalars['String']>;
|
|
2782
|
+
zimbraPrefMailForwardingAddress?: InputMaybe<Scalars['String']>;
|
|
2783
|
+
zimbraPrefMailLocalDeliveryDisabled?: InputMaybe<Scalars['Boolean']>;
|
|
2784
|
+
zimbraPrefMailPollingInterval?: InputMaybe<Scalars['String']>;
|
|
2785
|
+
zimbraPrefMailRequestReadReceipts?: InputMaybe<Scalars['Boolean']>;
|
|
2786
|
+
zimbraPrefMailSelectAfterDelete?: InputMaybe<PrefMailSelectAfterDelete>;
|
|
2787
|
+
zimbraPrefMailSendReadReceipts?: InputMaybe<PrefMailSendReadReceipts>;
|
|
2788
|
+
zimbraPrefMailToasterEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2789
|
+
zimbraPrefMailTrustedSenderList?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
2790
|
+
zimbraPrefMarkMsgRead?: InputMaybe<Scalars['Int']>;
|
|
2791
|
+
zimbraPrefMessageViewHtmlPreferred?: InputMaybe<Scalars['Boolean']>;
|
|
2792
|
+
zimbraPrefOutOfOfficeExternalReply?: InputMaybe<Scalars['String']>;
|
|
2793
|
+
zimbraPrefOutOfOfficeExternalReplyEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2794
|
+
zimbraPrefOutOfOfficeFromDate?: InputMaybe<Scalars['String']>;
|
|
2795
|
+
zimbraPrefOutOfOfficeReply?: InputMaybe<Scalars['String']>;
|
|
2796
|
+
zimbraPrefOutOfOfficeReplyEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2797
|
+
zimbraPrefOutOfOfficeStatusAlertOnLogin?: InputMaybe<Scalars['Boolean']>;
|
|
2798
|
+
zimbraPrefOutOfOfficeSuppressExternalReply?: InputMaybe<Scalars['Boolean']>;
|
|
2799
|
+
zimbraPrefOutOfOfficeUntilDate?: InputMaybe<Scalars['String']>;
|
|
2800
|
+
zimbraPrefPowerPasteEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2801
|
+
zimbraPrefReadingPaneEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2802
|
+
zimbraPrefReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
|
|
2803
|
+
zimbraPrefSaveToSent?: InputMaybe<Scalars['Boolean']>;
|
|
2804
|
+
zimbraPrefShowAllNewMailNotifications?: InputMaybe<Scalars['Boolean']>;
|
|
2805
|
+
zimbraPrefShowFragments?: InputMaybe<Scalars['Boolean']>;
|
|
2806
|
+
zimbraPrefSlackCalendarReminderEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2807
|
+
zimbraPrefSortOrder?: InputMaybe<Scalars['String']>;
|
|
2808
|
+
zimbraPrefTagTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
2809
|
+
zimbraPrefTimeZoneId?: InputMaybe<Scalars['String']>;
|
|
2810
|
+
zimbraPrefUseTimeZoneListInCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
2811
|
+
zimbraPrefWebClientOfflineBrowserKey?: InputMaybe<Scalars['String']>;
|
|
2805
2812
|
};
|
|
2806
2813
|
export declare type ProfileImageChangeResponse = {
|
|
2807
2814
|
__typename?: 'ProfileImageChangeResponse';
|
|
@@ -2818,7 +2825,7 @@ export declare type PropList = {
|
|
|
2818
2825
|
prop?: Maybe<Array<Maybe<Prop>>>;
|
|
2819
2826
|
};
|
|
2820
2827
|
export declare type PropertiesInput = {
|
|
2821
|
-
_content?:
|
|
2828
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
2822
2829
|
name: Scalars['String'];
|
|
2823
2830
|
zimlet: Scalars['String'];
|
|
2824
2831
|
};
|
|
@@ -2876,21 +2883,21 @@ export declare type Query = {
|
|
|
2876
2883
|
taskFolders?: Maybe<Array<Maybe<Folder>>>;
|
|
2877
2884
|
};
|
|
2878
2885
|
export declare type QueryAutoCompleteArgs = {
|
|
2879
|
-
folders?:
|
|
2880
|
-
includeGal?:
|
|
2881
|
-
name?:
|
|
2882
|
-
needExp?:
|
|
2883
|
-
type?:
|
|
2886
|
+
folders?: InputMaybe<Scalars['String']>;
|
|
2887
|
+
includeGal?: InputMaybe<Scalars['Boolean']>;
|
|
2888
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2889
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
2890
|
+
type?: InputMaybe<GalSearchType>;
|
|
2884
2891
|
};
|
|
2885
2892
|
export declare type QueryAutoCompleteGalArgs = {
|
|
2886
|
-
limit?:
|
|
2893
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
2887
2894
|
name: Scalars['String'];
|
|
2888
|
-
needExp?:
|
|
2889
|
-
type?:
|
|
2895
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
2896
|
+
type?: InputMaybe<GalSearchType>;
|
|
2890
2897
|
};
|
|
2891
2898
|
export declare type QueryClientInfoArgs = {
|
|
2892
|
-
by?:
|
|
2893
|
-
domain?:
|
|
2899
|
+
by?: InputMaybe<Scalars['String']>;
|
|
2900
|
+
domain?: InputMaybe<Scalars['String']>;
|
|
2894
2901
|
};
|
|
2895
2902
|
export declare type QueryDiscoverRightsArgs = {
|
|
2896
2903
|
right: Array<DiscoverRightInput>;
|
|
@@ -2905,13 +2912,13 @@ export declare type QueryDownloadDocumentArgs = {
|
|
|
2905
2912
|
};
|
|
2906
2913
|
export declare type QueryDownloadMessageArgs = {
|
|
2907
2914
|
id: Scalars['ID'];
|
|
2908
|
-
isLocal?:
|
|
2909
|
-
isSecure?:
|
|
2915
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2916
|
+
isSecure?: InputMaybe<Scalars['Boolean']>;
|
|
2910
2917
|
};
|
|
2911
2918
|
export declare type QueryFreeBusyArgs = {
|
|
2912
|
-
end?:
|
|
2919
|
+
end?: InputMaybe<Scalars['Float']>;
|
|
2913
2920
|
names: Array<Scalars['String']>;
|
|
2914
|
-
start?:
|
|
2921
|
+
start?: InputMaybe<Scalars['Float']>;
|
|
2915
2922
|
};
|
|
2916
2923
|
export declare type QueryGetAppointmentArgs = {
|
|
2917
2924
|
id: Scalars['ID'];
|
|
@@ -2922,71 +2929,71 @@ export declare type QueryGetAppointmentsArgs = {
|
|
|
2922
2929
|
limit: Scalars['Int'];
|
|
2923
2930
|
offset: Scalars['Int'];
|
|
2924
2931
|
query: Scalars['String'];
|
|
2925
|
-
types?:
|
|
2932
|
+
types?: InputMaybe<SearchType>;
|
|
2926
2933
|
};
|
|
2927
2934
|
export declare type QueryGetContactArgs = {
|
|
2928
|
-
derefGroupMember?:
|
|
2929
|
-
id?:
|
|
2930
|
-
ids?:
|
|
2931
|
-
memberOf?:
|
|
2935
|
+
derefGroupMember?: InputMaybe<Scalars['Boolean']>;
|
|
2936
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2937
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
2938
|
+
memberOf?: InputMaybe<Scalars['Boolean']>;
|
|
2932
2939
|
};
|
|
2933
2940
|
export declare type QueryGetContactFrequencyArgs = {
|
|
2934
2941
|
by: Scalars['String'];
|
|
2935
2942
|
email: Scalars['String'];
|
|
2936
|
-
offsetInMinutes?:
|
|
2937
|
-
spec?:
|
|
2943
|
+
offsetInMinutes?: InputMaybe<Scalars['String']>;
|
|
2944
|
+
spec?: InputMaybe<Array<ContactFrequencySpec>>;
|
|
2938
2945
|
};
|
|
2939
2946
|
export declare type QueryGetConversationArgs = {
|
|
2940
|
-
fetch?:
|
|
2941
|
-
header?:
|
|
2942
|
-
html?:
|
|
2947
|
+
fetch?: InputMaybe<Scalars['String']>;
|
|
2948
|
+
header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
|
|
2949
|
+
html?: InputMaybe<Scalars['Boolean']>;
|
|
2943
2950
|
id: Scalars['ID'];
|
|
2944
|
-
max?:
|
|
2945
|
-
needExp?:
|
|
2951
|
+
max?: InputMaybe<Scalars['Int']>;
|
|
2952
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
2946
2953
|
};
|
|
2947
2954
|
export declare type QueryGetCustomMetadataArgs = {
|
|
2948
2955
|
id: Scalars['ID'];
|
|
2949
|
-
section?:
|
|
2956
|
+
section?: InputMaybe<Scalars['String']>;
|
|
2950
2957
|
};
|
|
2951
2958
|
export declare type QueryGetDistributionListMembersArgs = {
|
|
2952
|
-
dl?:
|
|
2953
|
-
limit?:
|
|
2954
|
-
offset?:
|
|
2959
|
+
dl?: InputMaybe<Scalars['String']>;
|
|
2960
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
2961
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
2955
2962
|
};
|
|
2956
2963
|
export declare type QueryGetDocumentShareUrlArgs = {
|
|
2957
|
-
item?:
|
|
2964
|
+
item?: InputMaybe<GetDocumentShareUrlItemInput>;
|
|
2958
2965
|
};
|
|
2959
2966
|
export declare type QueryGetFolderArgs = {
|
|
2960
|
-
depth?:
|
|
2961
|
-
folder?:
|
|
2962
|
-
local?:
|
|
2963
|
-
needGranteeName?:
|
|
2964
|
-
traverseMountpoints?:
|
|
2965
|
-
view?:
|
|
2966
|
-
visible?:
|
|
2967
|
+
depth?: InputMaybe<Scalars['Int']>;
|
|
2968
|
+
folder?: InputMaybe<GetFolderFolderInput>;
|
|
2969
|
+
local?: InputMaybe<Scalars['Boolean']>;
|
|
2970
|
+
needGranteeName?: InputMaybe<Scalars['Boolean']>;
|
|
2971
|
+
traverseMountpoints?: InputMaybe<Scalars['Boolean']>;
|
|
2972
|
+
view?: InputMaybe<FolderView>;
|
|
2973
|
+
visible?: InputMaybe<Scalars['Boolean']>;
|
|
2967
2974
|
};
|
|
2968
2975
|
export declare type QueryGetHabArgs = {
|
|
2969
|
-
habRootGroupId?:
|
|
2976
|
+
habRootGroupId?: InputMaybe<Scalars['ID']>;
|
|
2970
2977
|
};
|
|
2971
2978
|
export declare type QueryGetMailboxMetadataArgs = {
|
|
2972
|
-
section?:
|
|
2979
|
+
section?: InputMaybe<Scalars['String']>;
|
|
2973
2980
|
};
|
|
2974
2981
|
export declare type QueryGetMessageArgs = {
|
|
2975
|
-
header?:
|
|
2976
|
-
html?:
|
|
2982
|
+
header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
|
|
2983
|
+
html?: InputMaybe<Scalars['Boolean']>;
|
|
2977
2984
|
id: Scalars['ID'];
|
|
2978
|
-
isLocal?:
|
|
2979
|
-
max?:
|
|
2980
|
-
needExp?:
|
|
2981
|
-
neuter?:
|
|
2982
|
-
part?:
|
|
2983
|
-
raw?:
|
|
2984
|
-
read?:
|
|
2985
|
-
ridZ?:
|
|
2985
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2986
|
+
max?: InputMaybe<Scalars['Int']>;
|
|
2987
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
2988
|
+
neuter?: InputMaybe<Scalars['Boolean']>;
|
|
2989
|
+
part?: InputMaybe<Scalars['ID']>;
|
|
2990
|
+
raw?: InputMaybe<Scalars['Boolean']>;
|
|
2991
|
+
read?: InputMaybe<Scalars['Boolean']>;
|
|
2992
|
+
ridZ?: InputMaybe<Scalars['String']>;
|
|
2986
2993
|
};
|
|
2987
2994
|
export declare type QueryGetMessagesMetadataArgs = {
|
|
2988
2995
|
ids: Array<Scalars['ID']>;
|
|
2989
|
-
isLocal?:
|
|
2996
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2990
2997
|
};
|
|
2991
2998
|
export declare type QueryGetRemindersArgs = {
|
|
2992
2999
|
calExpandInstEnd: Scalars['Float'];
|
|
@@ -2994,13 +3001,13 @@ export declare type QueryGetRemindersArgs = {
|
|
|
2994
3001
|
limit: Scalars['Int'];
|
|
2995
3002
|
offset: Scalars['Int'];
|
|
2996
3003
|
query: Scalars['String'];
|
|
2997
|
-
types?:
|
|
3004
|
+
types?: InputMaybe<SearchType>;
|
|
2998
3005
|
};
|
|
2999
3006
|
export declare type QueryGetRightsArgs = {
|
|
3000
3007
|
input: GetRightsInput;
|
|
3001
3008
|
};
|
|
3002
3009
|
export declare type QueryGetSMimeCertInfoArgs = {
|
|
3003
|
-
certId?:
|
|
3010
|
+
certId?: InputMaybe<Scalars['String']>;
|
|
3004
3011
|
};
|
|
3005
3012
|
export declare type QueryGetSMimePublicCertsArgs = {
|
|
3006
3013
|
contactAddr: Scalars['String'];
|
|
@@ -3013,16 +3020,16 @@ export declare type QueryGetTasksArgs = {
|
|
|
3013
3020
|
limit: Scalars['Int'];
|
|
3014
3021
|
offset: Scalars['Int'];
|
|
3015
3022
|
query: Scalars['String'];
|
|
3016
|
-
types?:
|
|
3023
|
+
types?: InputMaybe<SearchType>;
|
|
3017
3024
|
};
|
|
3018
3025
|
export declare type QueryGetWorkingHoursArgs = {
|
|
3019
|
-
end?:
|
|
3026
|
+
end?: InputMaybe<Scalars['Float']>;
|
|
3020
3027
|
names: Array<Scalars['String']>;
|
|
3021
|
-
start?:
|
|
3028
|
+
start?: InputMaybe<Scalars['Float']>;
|
|
3022
3029
|
};
|
|
3023
3030
|
export declare type QueryNoopArgs = {
|
|
3024
|
-
limitToOneBlocked?:
|
|
3025
|
-
wait?:
|
|
3031
|
+
limitToOneBlocked?: InputMaybe<Scalars['Int']>;
|
|
3032
|
+
wait?: InputMaybe<Scalars['Int']>;
|
|
3026
3033
|
};
|
|
3027
3034
|
export declare type QueryRecoverAccountArgs = {
|
|
3028
3035
|
channel: SetRecoveryAccountChannel;
|
|
@@ -3033,44 +3040,44 @@ export declare type QueryRelatedContactsArgs = {
|
|
|
3033
3040
|
email: Scalars['String'];
|
|
3034
3041
|
};
|
|
3035
3042
|
export declare type QuerySearchArgs = {
|
|
3036
|
-
contact?:
|
|
3037
|
-
cursor?:
|
|
3038
|
-
fetch?:
|
|
3039
|
-
fullConversation?:
|
|
3040
|
-
inDumpster?:
|
|
3041
|
-
limit?:
|
|
3042
|
-
memberOf?:
|
|
3043
|
-
needExp?:
|
|
3044
|
-
offset?:
|
|
3045
|
-
query?:
|
|
3046
|
-
recip?:
|
|
3047
|
-
resultMode?:
|
|
3048
|
-
sortBy?:
|
|
3049
|
-
types?:
|
|
3043
|
+
contact?: InputMaybe<Scalars['String']>;
|
|
3044
|
+
cursor?: InputMaybe<Cursor>;
|
|
3045
|
+
fetch?: InputMaybe<Scalars['String']>;
|
|
3046
|
+
fullConversation?: InputMaybe<Scalars['Boolean']>;
|
|
3047
|
+
inDumpster?: InputMaybe<Scalars['Boolean']>;
|
|
3048
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3049
|
+
memberOf?: InputMaybe<Scalars['Boolean']>;
|
|
3050
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3051
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3052
|
+
query?: InputMaybe<Scalars['String']>;
|
|
3053
|
+
recip?: InputMaybe<Scalars['Int']>;
|
|
3054
|
+
resultMode?: InputMaybe<Scalars['String']>;
|
|
3055
|
+
sortBy?: InputMaybe<SortBy>;
|
|
3056
|
+
types?: InputMaybe<SearchType>;
|
|
3050
3057
|
};
|
|
3051
3058
|
export declare type QuerySearchCalendarResourcesArgs = {
|
|
3052
|
-
attrs?:
|
|
3053
|
-
limit?:
|
|
3054
|
-
needExp?:
|
|
3055
|
-
offset?:
|
|
3056
|
-
searchFilter?:
|
|
3059
|
+
attrs?: InputMaybe<Scalars['String']>;
|
|
3060
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3061
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3062
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3063
|
+
searchFilter?: InputMaybe<SearchConditionsInput>;
|
|
3057
3064
|
};
|
|
3058
3065
|
export declare type QuerySearchGalArgs = {
|
|
3059
|
-
limit?:
|
|
3060
|
-
locale?:
|
|
3061
|
-
name?:
|
|
3062
|
-
needExp?:
|
|
3063
|
-
needIsMember?:
|
|
3064
|
-
needIsOwner?:
|
|
3065
|
-
offset?:
|
|
3066
|
-
sortBy?:
|
|
3067
|
-
type?:
|
|
3066
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3067
|
+
locale?: InputMaybe<Scalars['String']>;
|
|
3068
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3069
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3070
|
+
needIsMember?: InputMaybe<NeedIsMemberType>;
|
|
3071
|
+
needIsOwner?: InputMaybe<Scalars['Boolean']>;
|
|
3072
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3073
|
+
sortBy?: InputMaybe<Scalars['String']>;
|
|
3074
|
+
type?: InputMaybe<GalSearchType>;
|
|
3068
3075
|
};
|
|
3069
3076
|
export declare type QueryShareInfoArgs = {
|
|
3070
|
-
grantee?:
|
|
3071
|
-
includeSelf?:
|
|
3072
|
-
internal?:
|
|
3073
|
-
owner?:
|
|
3077
|
+
grantee?: InputMaybe<Grantee>;
|
|
3078
|
+
includeSelf?: InputMaybe<Scalars['Boolean']>;
|
|
3079
|
+
internal?: InputMaybe<Scalars['Boolean']>;
|
|
3080
|
+
owner?: InputMaybe<Owner>;
|
|
3074
3081
|
};
|
|
3075
3082
|
export declare enum ReadingPaneLocation {
|
|
3076
3083
|
Bottom = "bottom",
|
|
@@ -3101,9 +3108,9 @@ export declare type RedirectAction = {
|
|
|
3101
3108
|
index?: Maybe<Scalars['Int']>;
|
|
3102
3109
|
};
|
|
3103
3110
|
export declare type RedirectActionInput = {
|
|
3104
|
-
address?:
|
|
3105
|
-
copy?:
|
|
3106
|
-
index?:
|
|
3111
|
+
address?: InputMaybe<Scalars['String']>;
|
|
3112
|
+
copy?: InputMaybe<Scalars['Boolean']>;
|
|
3113
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3107
3114
|
};
|
|
3108
3115
|
export declare type RelatedContact = {
|
|
3109
3116
|
__typename?: 'RelatedContact';
|
|
@@ -3165,8 +3172,8 @@ export declare type ReplyAction = {
|
|
|
3165
3172
|
index?: Maybe<Scalars['Int']>;
|
|
3166
3173
|
};
|
|
3167
3174
|
export declare type ReplyActionInput = {
|
|
3168
|
-
content?:
|
|
3169
|
-
index?:
|
|
3175
|
+
content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
3176
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3170
3177
|
};
|
|
3171
3178
|
export declare type ResetPasswordResponse = {
|
|
3172
3179
|
__typename?: 'ResetPasswordResponse';
|
|
@@ -3182,7 +3189,7 @@ export declare enum ResetPasswordStatus {
|
|
|
3182
3189
|
Suspended = "suspended"
|
|
3183
3190
|
}
|
|
3184
3191
|
export declare type RevokeRightsInput = {
|
|
3185
|
-
access?:
|
|
3192
|
+
access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
|
|
3186
3193
|
};
|
|
3187
3194
|
export declare type Right = {
|
|
3188
3195
|
right: Scalars['String'];
|
|
@@ -3222,16 +3229,16 @@ export declare enum SaveDocumentAction {
|
|
|
3222
3229
|
Create = "create"
|
|
3223
3230
|
}
|
|
3224
3231
|
export declare type SaveDocumentInput = {
|
|
3225
|
-
action?:
|
|
3226
|
-
contentType?:
|
|
3227
|
-
descriptionEnabled?:
|
|
3228
|
-
folderId?:
|
|
3229
|
-
id?:
|
|
3230
|
-
messageData?:
|
|
3231
|
-
name?:
|
|
3232
|
-
type?:
|
|
3233
|
-
upload?:
|
|
3234
|
-
version?:
|
|
3232
|
+
action?: InputMaybe<SaveDocumentAction>;
|
|
3233
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
3234
|
+
descriptionEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3235
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
3236
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3237
|
+
messageData?: InputMaybe<Array<InputMaybe<MessagePartForDocument>>>;
|
|
3238
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3239
|
+
type?: InputMaybe<SaveDocumentType>;
|
|
3240
|
+
upload?: InputMaybe<UploadDocument>;
|
|
3241
|
+
version?: InputMaybe<Scalars['Float']>;
|
|
3235
3242
|
};
|
|
3236
3243
|
export declare type SaveDocumentResponse = {
|
|
3237
3244
|
__typename?: 'SaveDocumentResponse';
|
|
@@ -3252,7 +3259,7 @@ export declare type SaveMessageDataInput = {
|
|
|
3252
3259
|
meta: Scalars['String'];
|
|
3253
3260
|
};
|
|
3254
3261
|
export declare type SaveSMimeCertInputUpload = {
|
|
3255
|
-
id?:
|
|
3262
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3256
3263
|
};
|
|
3257
3264
|
export declare type ScratchCode = {
|
|
3258
3265
|
__typename?: 'ScratchCode';
|
|
@@ -3275,7 +3282,7 @@ export declare type SearchCalendarResourcesResponse = {
|
|
|
3275
3282
|
sortBy?: Maybe<Scalars['String']>;
|
|
3276
3283
|
};
|
|
3277
3284
|
export declare type SearchConditionsInput = {
|
|
3278
|
-
conds?:
|
|
3285
|
+
conds?: InputMaybe<ConditionsInput>;
|
|
3279
3286
|
};
|
|
3280
3287
|
export declare type SearchFolderInput = {
|
|
3281
3288
|
id: Scalars['ID'];
|
|
@@ -3310,22 +3317,22 @@ export declare type Secret = {
|
|
|
3310
3317
|
_content?: Maybe<Scalars['String']>;
|
|
3311
3318
|
};
|
|
3312
3319
|
export declare type SendMessageInput = {
|
|
3313
|
-
attach?:
|
|
3314
|
-
attachmentId?:
|
|
3315
|
-
attachments?:
|
|
3316
|
-
autoSendTime?:
|
|
3317
|
-
draftId?:
|
|
3318
|
-
emailAddresses?:
|
|
3319
|
-
entityId?:
|
|
3320
|
-
flags?:
|
|
3321
|
-
folderId?:
|
|
3322
|
-
id?:
|
|
3323
|
-
inReplyTo?:
|
|
3324
|
-
inlineAttachments?:
|
|
3325
|
-
mimeParts?:
|
|
3326
|
-
origId?:
|
|
3327
|
-
replyType?:
|
|
3328
|
-
subject?:
|
|
3320
|
+
attach?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
3321
|
+
attachmentId?: InputMaybe<Scalars['ID']>;
|
|
3322
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
3323
|
+
autoSendTime?: InputMaybe<Scalars['Float']>;
|
|
3324
|
+
draftId?: InputMaybe<Scalars['ID']>;
|
|
3325
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
3326
|
+
entityId?: InputMaybe<Scalars['String']>;
|
|
3327
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
3328
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
3329
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3330
|
+
inReplyTo?: InputMaybe<Scalars['String']>;
|
|
3331
|
+
inlineAttachments?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
3332
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
3333
|
+
origId?: InputMaybe<Scalars['ID']>;
|
|
3334
|
+
replyType?: InputMaybe<Scalars['String']>;
|
|
3335
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
3329
3336
|
};
|
|
3330
3337
|
export declare type SendMessageResponse = {
|
|
3331
3338
|
__typename?: 'SendMessageResponse';
|
|
@@ -3368,8 +3375,8 @@ export declare enum ShareInputAction {
|
|
|
3368
3375
|
}
|
|
3369
3376
|
export declare type ShareNotificaitonEmailAddressInput = {
|
|
3370
3377
|
address: Scalars['String'];
|
|
3371
|
-
personalName?:
|
|
3372
|
-
type?:
|
|
3378
|
+
personalName?: InputMaybe<Scalars['String']>;
|
|
3379
|
+
type?: InputMaybe<AddressType>;
|
|
3373
3380
|
};
|
|
3374
3381
|
export declare type ShareNotification = {
|
|
3375
3382
|
__typename?: 'ShareNotification';
|
|
@@ -3377,10 +3384,10 @@ export declare type ShareNotification = {
|
|
|
3377
3384
|
truncated?: Maybe<Scalars['Boolean']>;
|
|
3378
3385
|
};
|
|
3379
3386
|
export declare type ShareNotificationInput = {
|
|
3380
|
-
action?:
|
|
3387
|
+
action?: InputMaybe<ShareInputAction>;
|
|
3381
3388
|
address: ShareNotificaitonEmailAddressInput;
|
|
3382
3389
|
item: ShareNotificationItemInput;
|
|
3383
|
-
notes?:
|
|
3390
|
+
notes?: InputMaybe<Notes>;
|
|
3384
3391
|
};
|
|
3385
3392
|
export declare type ShareNotificationItemInput = {
|
|
3386
3393
|
id: Scalars['ID'];
|
|
@@ -3397,14 +3404,14 @@ export declare type SignatureContent = {
|
|
|
3397
3404
|
type?: Maybe<Scalars['String']>;
|
|
3398
3405
|
};
|
|
3399
3406
|
export declare type SignatureContentInput = {
|
|
3400
|
-
_content?:
|
|
3401
|
-
type?:
|
|
3407
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3408
|
+
type?: InputMaybe<Scalars['String']>;
|
|
3402
3409
|
};
|
|
3403
3410
|
export declare type SignatureInput = {
|
|
3404
|
-
content?:
|
|
3405
|
-
contentId?:
|
|
3406
|
-
id?:
|
|
3407
|
-
name?:
|
|
3411
|
+
content?: InputMaybe<SignatureContentInput>;
|
|
3412
|
+
contentId?: InputMaybe<Scalars['String']>;
|
|
3413
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3414
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3408
3415
|
};
|
|
3409
3416
|
export declare type SignatureResponse = {
|
|
3410
3417
|
__typename?: 'SignatureResponse';
|
|
@@ -3433,10 +3440,10 @@ export declare type SizeCondition = {
|
|
|
3433
3440
|
size?: Maybe<Scalars['String']>;
|
|
3434
3441
|
};
|
|
3435
3442
|
export declare type SizeConditionInput = {
|
|
3436
|
-
index?:
|
|
3437
|
-
negative?:
|
|
3438
|
-
numberComparison?:
|
|
3439
|
-
size?:
|
|
3443
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3444
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
3445
|
+
numberComparison?: InputMaybe<Scalars['String']>;
|
|
3446
|
+
size?: InputMaybe<Scalars['String']>;
|
|
3440
3447
|
};
|
|
3441
3448
|
export declare type Skin = {
|
|
3442
3449
|
__typename?: 'Skin';
|
|
@@ -3537,7 +3544,7 @@ export declare type TagAction = {
|
|
|
3537
3544
|
tagName: Scalars['String'];
|
|
3538
3545
|
};
|
|
3539
3546
|
export declare type TagActionInput = {
|
|
3540
|
-
index?:
|
|
3547
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3541
3548
|
tagName: Scalars['String'];
|
|
3542
3549
|
};
|
|
3543
3550
|
export declare type Target = {
|
|
@@ -3585,7 +3592,7 @@ export declare type WhiteBlackAddress = {
|
|
|
3585
3592
|
};
|
|
3586
3593
|
export declare type WhiteBlackAddressOpts = {
|
|
3587
3594
|
_content: Scalars['String'];
|
|
3588
|
-
op?:
|
|
3595
|
+
op?: InputMaybe<Scalars['String']>;
|
|
3589
3596
|
};
|
|
3590
3597
|
export declare type WhiteBlackList = {
|
|
3591
3598
|
__typename?: 'WhiteBlackList';
|
|
@@ -3597,11 +3604,11 @@ export declare type WhiteBlackListArr = {
|
|
|
3597
3604
|
addr?: Maybe<Array<Maybe<WhiteBlackAddress>>>;
|
|
3598
3605
|
};
|
|
3599
3606
|
export declare type WhiteBlackListArrInput = {
|
|
3600
|
-
addr?:
|
|
3607
|
+
addr?: InputMaybe<Array<InputMaybe<WhiteBlackAddressOpts>>>;
|
|
3601
3608
|
};
|
|
3602
3609
|
export declare type WhiteBlackListInput = {
|
|
3603
|
-
blackList?:
|
|
3604
|
-
whiteList?:
|
|
3610
|
+
blackList?: InputMaybe<WhiteBlackListArrInput>;
|
|
3611
|
+
whiteList?: InputMaybe<WhiteBlackListArrInput>;
|
|
3605
3612
|
};
|
|
3606
3613
|
export declare type WkDay = {
|
|
3607
3614
|
__typename?: 'WkDay';
|
|
@@ -3610,7 +3617,7 @@ export declare type WkDay = {
|
|
|
3610
3617
|
};
|
|
3611
3618
|
export declare type WkDayInput = {
|
|
3612
3619
|
day: Weekday;
|
|
3613
|
-
ordwk?:
|
|
3620
|
+
ordwk?: InputMaybe<Scalars['Int']>;
|
|
3614
3621
|
};
|
|
3615
3622
|
export declare type WorkingHours = {
|
|
3616
3623
|
__typename?: 'WorkingHours';
|