@zimbra/api-client 77.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/src/schema/generated-schema-types.d.ts +714 -713
- package/dist/zm-api-js-client.esm.js +323 -44
- 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/schema/generated-schema-types.ts +714 -713
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export type Maybe<T> = T | null;
|
|
2
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
2
3
|
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
3
4
|
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
4
5
|
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
@@ -39,14 +40,14 @@ export type AccountAceInfo = {
|
|
|
39
40
|
};
|
|
40
41
|
|
|
41
42
|
export type AccountAceInfoInput = {
|
|
42
|
-
address?:
|
|
43
|
-
checkGrantee?:
|
|
44
|
-
deny?:
|
|
43
|
+
address?: InputMaybe<Scalars['String']>;
|
|
44
|
+
checkGrantee?: InputMaybe<Scalars['Boolean']>;
|
|
45
|
+
deny?: InputMaybe<Scalars['Boolean']>;
|
|
45
46
|
granteeType: GranteeType;
|
|
46
|
-
key?:
|
|
47
|
-
password?:
|
|
47
|
+
key?: InputMaybe<Scalars['String']>;
|
|
48
|
+
password?: InputMaybe<Scalars['String']>;
|
|
48
49
|
right: Scalars['String'];
|
|
49
|
-
zimbraId?:
|
|
50
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
50
51
|
};
|
|
51
52
|
|
|
52
53
|
export type AccountCos = {
|
|
@@ -222,10 +223,10 @@ export enum ActionTypeName {
|
|
|
222
223
|
}
|
|
223
224
|
|
|
224
225
|
export type AddMsgInput = {
|
|
225
|
-
absFolderPath?:
|
|
226
|
-
content?:
|
|
226
|
+
absFolderPath?: InputMaybe<Scalars['String']>;
|
|
227
|
+
content?: InputMaybe<Scalars['String']>;
|
|
227
228
|
folderId: Scalars['ID'];
|
|
228
|
-
meta?:
|
|
229
|
+
meta?: InputMaybe<Scalars['String']>;
|
|
229
230
|
};
|
|
230
231
|
|
|
231
232
|
export type AddRecurrenceInfo = {
|
|
@@ -251,15 +252,15 @@ export type AddressCondition = {
|
|
|
251
252
|
};
|
|
252
253
|
|
|
253
254
|
export type AddressConditionInput = {
|
|
254
|
-
caseSensitive?:
|
|
255
|
-
countComparison?:
|
|
255
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
256
|
+
countComparison?: InputMaybe<Scalars['String']>;
|
|
256
257
|
header: Scalars['String'];
|
|
257
|
-
index?:
|
|
258
|
-
negative?:
|
|
258
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
259
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
259
260
|
part: Scalars['String'];
|
|
260
261
|
stringComparison: Scalars['String'];
|
|
261
262
|
value: Scalars['String'];
|
|
262
|
-
valueComparison?:
|
|
263
|
+
valueComparison?: InputMaybe<Scalars['String']>;
|
|
263
264
|
};
|
|
264
265
|
|
|
265
266
|
export enum AddressType {
|
|
@@ -329,10 +330,10 @@ export type Attachment = {
|
|
|
329
330
|
};
|
|
330
331
|
|
|
331
332
|
export type AttachmentInput = {
|
|
332
|
-
attachmentId?:
|
|
333
|
-
documents?:
|
|
334
|
-
existingAttachments?:
|
|
335
|
-
messages?:
|
|
333
|
+
attachmentId?: InputMaybe<Scalars['String']>;
|
|
334
|
+
documents?: InputMaybe<Array<InputMaybe<DocumentInput>>>;
|
|
335
|
+
existingAttachments?: InputMaybe<Array<InputMaybe<ExistingAttachmentInput>>>;
|
|
336
|
+
messages?: InputMaybe<Array<InputMaybe<EmlInput>>>;
|
|
336
337
|
};
|
|
337
338
|
|
|
338
339
|
export type AuthResponse = {
|
|
@@ -393,7 +394,7 @@ export type BasicAction = {
|
|
|
393
394
|
};
|
|
394
395
|
|
|
395
396
|
export type BasicActionInput = {
|
|
396
|
-
index?:
|
|
397
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
397
398
|
};
|
|
398
399
|
|
|
399
400
|
export type BasicCondition = {
|
|
@@ -403,8 +404,8 @@ export type BasicCondition = {
|
|
|
403
404
|
};
|
|
404
405
|
|
|
405
406
|
export type BasicConditionInput = {
|
|
406
|
-
index?:
|
|
407
|
-
negative?:
|
|
407
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
408
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
408
409
|
};
|
|
409
410
|
|
|
410
411
|
export type BodyCondition = {
|
|
@@ -416,10 +417,10 @@ export type BodyCondition = {
|
|
|
416
417
|
};
|
|
417
418
|
|
|
418
419
|
export type BodyConditionInput = {
|
|
419
|
-
caseSensitive?:
|
|
420
|
-
index?:
|
|
421
|
-
negative?:
|
|
422
|
-
value?:
|
|
420
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
421
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
422
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
423
|
+
value?: InputMaybe<Scalars['String']>;
|
|
423
424
|
};
|
|
424
425
|
|
|
425
426
|
export type ByDayRule = {
|
|
@@ -491,7 +492,7 @@ export type CalTzInfo = {
|
|
|
491
492
|
};
|
|
492
493
|
|
|
493
494
|
export type CalendarCounterAppointmentInput = {
|
|
494
|
-
components: Array<
|
|
495
|
+
components: Array<InputMaybe<CalendarItemInviteComponentCounterInput>>;
|
|
495
496
|
};
|
|
496
497
|
|
|
497
498
|
export type CalendarItemAlarm = {
|
|
@@ -512,7 +513,7 @@ export type CalendarItemAlarmAttendeesInput = {
|
|
|
512
513
|
|
|
513
514
|
export type CalendarItemAlarmInput = {
|
|
514
515
|
action: AlarmAction;
|
|
515
|
-
attendees?:
|
|
516
|
+
attendees?: InputMaybe<CalendarItemAlarmAttendeesInput>;
|
|
516
517
|
trigger: CalendarItemAlarmTriggerInput;
|
|
517
518
|
};
|
|
518
519
|
|
|
@@ -526,8 +527,8 @@ export type CalendarItemAlarmTriggerAbsoluteInput = {
|
|
|
526
527
|
};
|
|
527
528
|
|
|
528
529
|
export type CalendarItemAlarmTriggerInput = {
|
|
529
|
-
absolute?:
|
|
530
|
-
relative?:
|
|
530
|
+
absolute?: InputMaybe<CalendarItemAlarmTriggerAbsoluteInput>;
|
|
531
|
+
relative?: InputMaybe<CalendarItemAlarmTriggerRelativeInput>;
|
|
531
532
|
};
|
|
532
533
|
|
|
533
534
|
export type CalendarItemAlarmTriggerRelative = {
|
|
@@ -542,13 +543,13 @@ export type CalendarItemAlarmTriggerRelative = {
|
|
|
542
543
|
};
|
|
543
544
|
|
|
544
545
|
export type CalendarItemAlarmTriggerRelativeInput = {
|
|
545
|
-
days?:
|
|
546
|
-
hours?:
|
|
547
|
-
minutes?:
|
|
548
|
-
negative?:
|
|
549
|
-
relatedTo?:
|
|
550
|
-
seconds?:
|
|
551
|
-
weeks?:
|
|
546
|
+
days?: InputMaybe<Scalars['Int']>;
|
|
547
|
+
hours?: InputMaybe<Scalars['Int']>;
|
|
548
|
+
minutes?: InputMaybe<Scalars['Int']>;
|
|
549
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
550
|
+
relatedTo?: InputMaybe<AlarmRelatedTo>;
|
|
551
|
+
seconds?: InputMaybe<Scalars['Int']>;
|
|
552
|
+
weeks?: InputMaybe<Scalars['Int']>;
|
|
552
553
|
};
|
|
553
554
|
|
|
554
555
|
export type CalendarItemAttendee = {
|
|
@@ -563,11 +564,11 @@ export type CalendarItemAttendee = {
|
|
|
563
564
|
|
|
564
565
|
export type CalendarItemAttendeesInput = {
|
|
565
566
|
address: Scalars['String'];
|
|
566
|
-
calendarUserType?:
|
|
567
|
-
name?:
|
|
568
|
-
participationStatus?:
|
|
569
|
-
role?:
|
|
570
|
-
rsvp?:
|
|
567
|
+
calendarUserType?: InputMaybe<Scalars['String']>;
|
|
568
|
+
name?: InputMaybe<Scalars['String']>;
|
|
569
|
+
participationStatus?: InputMaybe<ParticipationStatus>;
|
|
570
|
+
role?: InputMaybe<ParticipationRole>;
|
|
571
|
+
rsvp?: InputMaybe<Scalars['Boolean']>;
|
|
571
572
|
};
|
|
572
573
|
|
|
573
574
|
export enum CalendarItemClass {
|
|
@@ -578,7 +579,7 @@ export enum CalendarItemClass {
|
|
|
578
579
|
|
|
579
580
|
export type CalendarItemDateTimeInput = {
|
|
580
581
|
date: Scalars['String'];
|
|
581
|
-
timezone?:
|
|
582
|
+
timezone?: InputMaybe<Scalars['String']>;
|
|
582
583
|
};
|
|
583
584
|
|
|
584
585
|
export type CalendarItemHitInfo = {
|
|
@@ -626,86 +627,86 @@ export type CalendarItemHitInfo = {
|
|
|
626
627
|
};
|
|
627
628
|
|
|
628
629
|
export type CalendarItemInput = {
|
|
629
|
-
componentNum?:
|
|
630
|
-
id?:
|
|
630
|
+
componentNum?: InputMaybe<Scalars['Int']>;
|
|
631
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
631
632
|
message: CalendarItemMessageInput;
|
|
632
|
-
modifiedSequence?:
|
|
633
|
-
revision?:
|
|
633
|
+
modifiedSequence?: InputMaybe<Scalars['Float']>;
|
|
634
|
+
revision?: InputMaybe<Scalars['Float']>;
|
|
634
635
|
};
|
|
635
636
|
|
|
636
637
|
export type CalendarItemInviteComponentCounterInput = {
|
|
637
|
-
alarms?:
|
|
638
|
-
allDay?:
|
|
639
|
-
attendees?:
|
|
640
|
-
class?:
|
|
641
|
-
description?:
|
|
642
|
-
draft?:
|
|
638
|
+
alarms?: InputMaybe<Array<InputMaybe<CalendarItemAlarmInput>>>;
|
|
639
|
+
allDay?: InputMaybe<Scalars['Boolean']>;
|
|
640
|
+
attendees?: InputMaybe<Array<InputMaybe<CalendarItemAttendeesInput>>>;
|
|
641
|
+
class?: InputMaybe<CalendarItemClass>;
|
|
642
|
+
description?: InputMaybe<Array<InputMaybe<CalendarItemInviteComponentDescriptionInput>>>;
|
|
643
|
+
draft?: InputMaybe<Scalars['Boolean']>;
|
|
643
644
|
end: CalendarItemDateTimeInput;
|
|
644
|
-
exceptId?:
|
|
645
|
-
freeBusy?:
|
|
646
|
-
location?:
|
|
645
|
+
exceptId?: InputMaybe<CalendarOptionalItemDateTimeInput>;
|
|
646
|
+
freeBusy?: InputMaybe<FreeBusyStatus>;
|
|
647
|
+
location?: InputMaybe<Scalars['String']>;
|
|
647
648
|
name: Scalars['String'];
|
|
648
|
-
noBlob?:
|
|
649
|
-
organizer?:
|
|
650
|
-
percentComplete?:
|
|
651
|
-
priority?:
|
|
652
|
-
recurrence?:
|
|
649
|
+
noBlob?: InputMaybe<Scalars['Boolean']>;
|
|
650
|
+
organizer?: InputMaybe<CalendarItemOrganizerInput>;
|
|
651
|
+
percentComplete?: InputMaybe<Scalars['String']>;
|
|
652
|
+
priority?: InputMaybe<Scalars['String']>;
|
|
653
|
+
recurrence?: InputMaybe<CalendarItemRecurrenceInput>;
|
|
653
654
|
start: CalendarItemDateTimeInput;
|
|
654
|
-
status?:
|
|
655
|
-
uid?:
|
|
655
|
+
status?: InputMaybe<InviteCompletionStatus>;
|
|
656
|
+
uid?: InputMaybe<Scalars['String']>;
|
|
656
657
|
};
|
|
657
658
|
|
|
658
659
|
export type CalendarItemInviteComponentDescriptionInput = {
|
|
659
|
-
_content?:
|
|
660
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
660
661
|
};
|
|
661
662
|
|
|
662
663
|
export type CalendarItemInviteComponentInput = {
|
|
663
|
-
alarms?:
|
|
664
|
-
allDay?:
|
|
665
|
-
attendees?:
|
|
664
|
+
alarms?: InputMaybe<Array<InputMaybe<CalendarItemAlarmInput>>>;
|
|
665
|
+
allDay?: InputMaybe<Scalars['Boolean']>;
|
|
666
|
+
attendees?: InputMaybe<Array<InputMaybe<CalendarItemAttendeesInput>>>;
|
|
666
667
|
class: CalendarItemClass;
|
|
667
|
-
description?:
|
|
668
|
-
draft?:
|
|
669
|
-
end?:
|
|
670
|
-
exceptId?:
|
|
671
|
-
freeBusy?:
|
|
672
|
-
location?:
|
|
673
|
-
name?:
|
|
674
|
-
noBlob?:
|
|
675
|
-
organizer?:
|
|
676
|
-
percentComplete?:
|
|
677
|
-
priority?:
|
|
678
|
-
recurrence?:
|
|
679
|
-
start?:
|
|
680
|
-
status?:
|
|
668
|
+
description?: InputMaybe<Array<InputMaybe<CalendarItemInviteComponentDescriptionInput>>>;
|
|
669
|
+
draft?: InputMaybe<Scalars['Boolean']>;
|
|
670
|
+
end?: InputMaybe<CalendarItemDateTimeInput>;
|
|
671
|
+
exceptId?: InputMaybe<CalendarOptionalItemDateTimeInput>;
|
|
672
|
+
freeBusy?: InputMaybe<FreeBusyStatus>;
|
|
673
|
+
location?: InputMaybe<Scalars['String']>;
|
|
674
|
+
name?: InputMaybe<Scalars['String']>;
|
|
675
|
+
noBlob?: InputMaybe<Scalars['Boolean']>;
|
|
676
|
+
organizer?: InputMaybe<CalendarItemOrganizerInput>;
|
|
677
|
+
percentComplete?: InputMaybe<Scalars['String']>;
|
|
678
|
+
priority?: InputMaybe<Scalars['String']>;
|
|
679
|
+
recurrence?: InputMaybe<CalendarItemRecurrenceInput>;
|
|
680
|
+
start?: InputMaybe<CalendarItemDateTimeInput>;
|
|
681
|
+
status?: InputMaybe<InviteCompletionStatus>;
|
|
681
682
|
};
|
|
682
683
|
|
|
683
684
|
export type CalendarItemInviteInput = {
|
|
684
|
-
components: Array<
|
|
685
|
+
components: Array<InputMaybe<CalendarItemInviteComponentInput>>;
|
|
685
686
|
};
|
|
686
687
|
|
|
687
688
|
export type CalendarItemMessageInput = {
|
|
688
|
-
attachments?:
|
|
689
|
-
emailAddresses?:
|
|
690
|
-
folderId?:
|
|
691
|
-
invitations?:
|
|
692
|
-
mimeParts?:
|
|
693
|
-
replyType?:
|
|
694
|
-
subject?:
|
|
689
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
690
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
691
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
692
|
+
invitations?: InputMaybe<CalendarItemInviteInput>;
|
|
693
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
694
|
+
replyType?: InputMaybe<InviteReplyType>;
|
|
695
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
695
696
|
};
|
|
696
697
|
|
|
697
698
|
export type CalendarItemOrganizerInput = {
|
|
698
|
-
address?:
|
|
699
|
-
name?:
|
|
700
|
-
sentBy?:
|
|
699
|
+
address?: InputMaybe<Scalars['String']>;
|
|
700
|
+
name?: InputMaybe<Scalars['String']>;
|
|
701
|
+
sentBy?: InputMaybe<Scalars['String']>;
|
|
701
702
|
};
|
|
702
703
|
|
|
703
704
|
export type CalendarItemRecurrenceAddInput = {
|
|
704
|
-
rule?:
|
|
705
|
+
rule?: InputMaybe<CalendarItemRecurrenceRuleInput>;
|
|
705
706
|
};
|
|
706
707
|
|
|
707
708
|
export type CalendarItemRecurrenceByDayInput = {
|
|
708
|
-
wkday?:
|
|
709
|
+
wkday?: InputMaybe<Array<InputMaybe<WkDayInput>>>;
|
|
709
710
|
};
|
|
710
711
|
|
|
711
712
|
export type CalendarItemRecurrenceByMonthDayInput = {
|
|
@@ -749,23 +750,23 @@ export enum CalendarItemRecurrenceFrequency {
|
|
|
749
750
|
}
|
|
750
751
|
|
|
751
752
|
export type CalendarItemRecurrenceInput = {
|
|
752
|
-
add?:
|
|
753
|
+
add?: InputMaybe<CalendarItemRecurrenceAddInput>;
|
|
753
754
|
};
|
|
754
755
|
|
|
755
756
|
export type CalendarItemRecurrenceIntervalInput = {
|
|
756
757
|
intervalCount: Scalars['Int'];
|
|
757
|
-
zimbraPrefAutoAddAppointmentsToCalendar?:
|
|
758
|
+
zimbraPrefAutoAddAppointmentsToCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
758
759
|
};
|
|
759
760
|
|
|
760
761
|
export type CalendarItemRecurrenceRuleInput = {
|
|
761
|
-
byday?:
|
|
762
|
-
bymonth?:
|
|
763
|
-
bymonthday?:
|
|
764
|
-
bysetpos?:
|
|
765
|
-
count?:
|
|
766
|
-
frequency?:
|
|
767
|
-
interval?:
|
|
768
|
-
until?:
|
|
762
|
+
byday?: InputMaybe<CalendarItemRecurrenceByDayInput>;
|
|
763
|
+
bymonth?: InputMaybe<CalendarItemRecurrenceByMonthInput>;
|
|
764
|
+
bymonthday?: InputMaybe<CalendarItemRecurrenceByMonthDayInput>;
|
|
765
|
+
bysetpos?: InputMaybe<CalendarItemRecurrenceBySetPosInput>;
|
|
766
|
+
count?: InputMaybe<CalendarItemRecurrenceEndCountInput>;
|
|
767
|
+
frequency?: InputMaybe<CalendarItemRecurrenceFrequency>;
|
|
768
|
+
interval?: InputMaybe<CalendarItemRecurrenceIntervalInput>;
|
|
769
|
+
until?: InputMaybe<CalendarItemRecurrenceEndDateInput>;
|
|
769
770
|
};
|
|
770
771
|
|
|
771
772
|
export type CalendarItemReply = {
|
|
@@ -775,8 +776,8 @@ export type CalendarItemReply = {
|
|
|
775
776
|
};
|
|
776
777
|
|
|
777
778
|
export type CalendarOptionalItemDateTimeInput = {
|
|
778
|
-
date?:
|
|
779
|
-
timezone?:
|
|
779
|
+
date?: InputMaybe<Scalars['String']>;
|
|
780
|
+
timezone?: InputMaybe<Scalars['String']>;
|
|
780
781
|
};
|
|
781
782
|
|
|
782
783
|
export type CancelRuleInfo = {
|
|
@@ -800,13 +801,13 @@ export type ClientInfoType = {
|
|
|
800
801
|
};
|
|
801
802
|
|
|
802
803
|
export type ConditionInput = {
|
|
803
|
-
attr?:
|
|
804
|
-
op?:
|
|
805
|
-
value?:
|
|
804
|
+
attr?: InputMaybe<Scalars['String']>;
|
|
805
|
+
op?: InputMaybe<Scalars['String']>;
|
|
806
|
+
value?: InputMaybe<Scalars['String']>;
|
|
806
807
|
};
|
|
807
808
|
|
|
808
809
|
export type ConditionsInput = {
|
|
809
|
-
cond?:
|
|
810
|
+
cond?: InputMaybe<Array<InputMaybe<ConditionInput>>>;
|
|
810
811
|
};
|
|
811
812
|
|
|
812
813
|
export enum ConnectionType {
|
|
@@ -912,79 +913,79 @@ export type ContactAttributes = {
|
|
|
912
913
|
};
|
|
913
914
|
|
|
914
915
|
export type ContactAttrsInput = {
|
|
915
|
-
anniversary?:
|
|
916
|
-
assistantPhone?:
|
|
917
|
-
birthday?:
|
|
918
|
-
callbackPhone?:
|
|
919
|
-
carPhone?:
|
|
920
|
-
company?:
|
|
921
|
-
companyPhone?:
|
|
922
|
-
companyPhone2?:
|
|
923
|
-
department?:
|
|
924
|
-
email?:
|
|
925
|
-
email2?:
|
|
926
|
-
fileAs?:
|
|
927
|
-
firstName?:
|
|
928
|
-
fullName?:
|
|
929
|
-
homeCity?:
|
|
930
|
-
homeCountry?:
|
|
931
|
-
homeEmail?:
|
|
932
|
-
homeEmail2?:
|
|
933
|
-
homeFax?:
|
|
934
|
-
homeFax2?:
|
|
935
|
-
homePhone?:
|
|
936
|
-
homePhone2?:
|
|
937
|
-
homePostalCode?:
|
|
938
|
-
homeState?:
|
|
939
|
-
homeStreet?:
|
|
940
|
-
homeURL?:
|
|
941
|
-
imAddress?:
|
|
942
|
-
imAddress1?:
|
|
943
|
-
imAddress2?:
|
|
944
|
-
imAddress3?:
|
|
945
|
-
imAddress4?:
|
|
946
|
-
imAddress5?:
|
|
947
|
-
image?:
|
|
948
|
-
jobTitle?:
|
|
949
|
-
lastName?:
|
|
950
|
-
maidenName?:
|
|
951
|
-
middleName?:
|
|
952
|
-
mobilePhone?:
|
|
953
|
-
mobilePhone2?:
|
|
954
|
-
namePrefix?:
|
|
955
|
-
nameSuffix?:
|
|
956
|
-
nickname?:
|
|
957
|
-
notes?:
|
|
958
|
-
other?:
|
|
959
|
-
otherCity?:
|
|
960
|
-
otherCountry?:
|
|
961
|
-
otherFax?:
|
|
962
|
-
otherPhone?:
|
|
963
|
-
otherPhone2?:
|
|
964
|
-
otherPostalCode?:
|
|
965
|
-
otherState?:
|
|
966
|
-
otherStreet?:
|
|
967
|
-
otherURL?:
|
|
968
|
-
pager?:
|
|
969
|
-
pager2?:
|
|
970
|
-
phoneticCompany?:
|
|
971
|
-
phoneticFirstName?:
|
|
972
|
-
phoneticLastName?:
|
|
973
|
-
type?:
|
|
974
|
-
userCertificate?:
|
|
975
|
-
website?:
|
|
976
|
-
workCity?:
|
|
977
|
-
workCountry?:
|
|
978
|
-
workEmail?:
|
|
979
|
-
workEmail2?:
|
|
980
|
-
workFax?:
|
|
981
|
-
workFax2?:
|
|
982
|
-
workPhone?:
|
|
983
|
-
workPhone2?:
|
|
984
|
-
workPostalCode?:
|
|
985
|
-
workState?:
|
|
986
|
-
workStreet?:
|
|
987
|
-
workURL?:
|
|
916
|
+
anniversary?: InputMaybe<Scalars['String']>;
|
|
917
|
+
assistantPhone?: InputMaybe<Scalars['String']>;
|
|
918
|
+
birthday?: InputMaybe<Scalars['String']>;
|
|
919
|
+
callbackPhone?: InputMaybe<Scalars['String']>;
|
|
920
|
+
carPhone?: InputMaybe<Scalars['String']>;
|
|
921
|
+
company?: InputMaybe<Scalars['String']>;
|
|
922
|
+
companyPhone?: InputMaybe<Scalars['String']>;
|
|
923
|
+
companyPhone2?: InputMaybe<Scalars['String']>;
|
|
924
|
+
department?: InputMaybe<Scalars['String']>;
|
|
925
|
+
email?: InputMaybe<Scalars['String']>;
|
|
926
|
+
email2?: InputMaybe<Scalars['String']>;
|
|
927
|
+
fileAs?: InputMaybe<Scalars['String']>;
|
|
928
|
+
firstName?: InputMaybe<Scalars['String']>;
|
|
929
|
+
fullName?: InputMaybe<Scalars['String']>;
|
|
930
|
+
homeCity?: InputMaybe<Scalars['String']>;
|
|
931
|
+
homeCountry?: InputMaybe<Scalars['String']>;
|
|
932
|
+
homeEmail?: InputMaybe<Scalars['String']>;
|
|
933
|
+
homeEmail2?: InputMaybe<Scalars['String']>;
|
|
934
|
+
homeFax?: InputMaybe<Scalars['String']>;
|
|
935
|
+
homeFax2?: InputMaybe<Scalars['String']>;
|
|
936
|
+
homePhone?: InputMaybe<Scalars['String']>;
|
|
937
|
+
homePhone2?: InputMaybe<Scalars['String']>;
|
|
938
|
+
homePostalCode?: InputMaybe<Scalars['String']>;
|
|
939
|
+
homeState?: InputMaybe<Scalars['String']>;
|
|
940
|
+
homeStreet?: InputMaybe<Scalars['String']>;
|
|
941
|
+
homeURL?: InputMaybe<Scalars['String']>;
|
|
942
|
+
imAddress?: InputMaybe<Scalars['String']>;
|
|
943
|
+
imAddress1?: InputMaybe<Scalars['String']>;
|
|
944
|
+
imAddress2?: InputMaybe<Scalars['String']>;
|
|
945
|
+
imAddress3?: InputMaybe<Scalars['String']>;
|
|
946
|
+
imAddress4?: InputMaybe<Scalars['String']>;
|
|
947
|
+
imAddress5?: InputMaybe<Scalars['String']>;
|
|
948
|
+
image?: InputMaybe<Scalars['String']>;
|
|
949
|
+
jobTitle?: InputMaybe<Scalars['String']>;
|
|
950
|
+
lastName?: InputMaybe<Scalars['String']>;
|
|
951
|
+
maidenName?: InputMaybe<Scalars['String']>;
|
|
952
|
+
middleName?: InputMaybe<Scalars['String']>;
|
|
953
|
+
mobilePhone?: InputMaybe<Scalars['String']>;
|
|
954
|
+
mobilePhone2?: InputMaybe<Scalars['String']>;
|
|
955
|
+
namePrefix?: InputMaybe<Scalars['String']>;
|
|
956
|
+
nameSuffix?: InputMaybe<Scalars['String']>;
|
|
957
|
+
nickname?: InputMaybe<Scalars['String']>;
|
|
958
|
+
notes?: InputMaybe<Scalars['String']>;
|
|
959
|
+
other?: InputMaybe<Array<InputMaybe<OtherContactAttributeInput>>>;
|
|
960
|
+
otherCity?: InputMaybe<Scalars['String']>;
|
|
961
|
+
otherCountry?: InputMaybe<Scalars['String']>;
|
|
962
|
+
otherFax?: InputMaybe<Scalars['String']>;
|
|
963
|
+
otherPhone?: InputMaybe<Scalars['String']>;
|
|
964
|
+
otherPhone2?: InputMaybe<Scalars['String']>;
|
|
965
|
+
otherPostalCode?: InputMaybe<Scalars['String']>;
|
|
966
|
+
otherState?: InputMaybe<Scalars['String']>;
|
|
967
|
+
otherStreet?: InputMaybe<Scalars['String']>;
|
|
968
|
+
otherURL?: InputMaybe<Scalars['String']>;
|
|
969
|
+
pager?: InputMaybe<Scalars['String']>;
|
|
970
|
+
pager2?: InputMaybe<Scalars['String']>;
|
|
971
|
+
phoneticCompany?: InputMaybe<Scalars['String']>;
|
|
972
|
+
phoneticFirstName?: InputMaybe<Scalars['String']>;
|
|
973
|
+
phoneticLastName?: InputMaybe<Scalars['String']>;
|
|
974
|
+
type?: InputMaybe<Scalars['String']>;
|
|
975
|
+
userCertificate?: InputMaybe<Scalars['String']>;
|
|
976
|
+
website?: InputMaybe<Scalars['String']>;
|
|
977
|
+
workCity?: InputMaybe<Scalars['String']>;
|
|
978
|
+
workCountry?: InputMaybe<Scalars['String']>;
|
|
979
|
+
workEmail?: InputMaybe<Scalars['String']>;
|
|
980
|
+
workEmail2?: InputMaybe<Scalars['String']>;
|
|
981
|
+
workFax?: InputMaybe<Scalars['String']>;
|
|
982
|
+
workFax2?: InputMaybe<Scalars['String']>;
|
|
983
|
+
workPhone?: InputMaybe<Scalars['String']>;
|
|
984
|
+
workPhone2?: InputMaybe<Scalars['String']>;
|
|
985
|
+
workPostalCode?: InputMaybe<Scalars['String']>;
|
|
986
|
+
workState?: InputMaybe<Scalars['String']>;
|
|
987
|
+
workStreet?: InputMaybe<Scalars['String']>;
|
|
988
|
+
workURL?: InputMaybe<Scalars['String']>;
|
|
988
989
|
};
|
|
989
990
|
|
|
990
991
|
export type ContactFrequencyData = {
|
|
@@ -1071,28 +1072,28 @@ export type ConversationCondition = {
|
|
|
1071
1072
|
};
|
|
1072
1073
|
|
|
1073
1074
|
export type ConversationConditionInput = {
|
|
1074
|
-
index?:
|
|
1075
|
-
negative?:
|
|
1076
|
-
where?:
|
|
1075
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1076
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1077
|
+
where?: InputMaybe<Scalars['String']>;
|
|
1077
1078
|
};
|
|
1078
1079
|
|
|
1079
1080
|
export type CounterAppointmentInput = {
|
|
1080
|
-
componentNum?:
|
|
1081
|
+
componentNum?: InputMaybe<Scalars['Int']>;
|
|
1081
1082
|
id: Scalars['ID'];
|
|
1082
1083
|
message: CounterAppointmentMessageInput;
|
|
1083
|
-
modifiedSequence?:
|
|
1084
|
-
revision?:
|
|
1084
|
+
modifiedSequence?: InputMaybe<Scalars['Float']>;
|
|
1085
|
+
revision?: InputMaybe<Scalars['Float']>;
|
|
1085
1086
|
};
|
|
1086
1087
|
|
|
1087
1088
|
export type CounterAppointmentMessageInput = {
|
|
1088
|
-
attachments?:
|
|
1089
|
-
emailAddresses?:
|
|
1090
|
-
folderId?:
|
|
1091
|
-
invitations?:
|
|
1092
|
-
mimeParts?:
|
|
1093
|
-
origId?:
|
|
1094
|
-
replyType?:
|
|
1095
|
-
subject?:
|
|
1089
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
1090
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
1091
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1092
|
+
invitations?: InputMaybe<CalendarCounterAppointmentInput>;
|
|
1093
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
1094
|
+
origId?: InputMaybe<Scalars['ID']>;
|
|
1095
|
+
replyType?: InputMaybe<InviteReplyType>;
|
|
1096
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
1096
1097
|
};
|
|
1097
1098
|
|
|
1098
1099
|
export type CreateAppSpecificPasswordResponse = {
|
|
@@ -1102,21 +1103,21 @@ export type CreateAppSpecificPasswordResponse = {
|
|
|
1102
1103
|
|
|
1103
1104
|
export type CreateContactInput = {
|
|
1104
1105
|
attributes: ContactAttrsInput;
|
|
1105
|
-
folderId?:
|
|
1106
|
-
tagNames?:
|
|
1106
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1107
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
1107
1108
|
};
|
|
1108
1109
|
|
|
1109
1110
|
export type CreateIdentityInput = {
|
|
1110
|
-
attrs?:
|
|
1111
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
1111
1112
|
name: Scalars['String'];
|
|
1112
1113
|
};
|
|
1113
1114
|
|
|
1114
1115
|
export type CreateMountpointInput = {
|
|
1115
|
-
link?:
|
|
1116
|
+
link?: InputMaybe<NewMountpointSpec>;
|
|
1116
1117
|
};
|
|
1117
1118
|
|
|
1118
1119
|
export type CreateTagInput = {
|
|
1119
|
-
color?:
|
|
1120
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
1120
1121
|
name: Scalars['String'];
|
|
1121
1122
|
};
|
|
1122
1123
|
|
|
@@ -1126,10 +1127,10 @@ export type CsrfToken = {
|
|
|
1126
1127
|
};
|
|
1127
1128
|
|
|
1128
1129
|
export type Cursor = {
|
|
1129
|
-
endSortVal?:
|
|
1130
|
-
id?:
|
|
1131
|
-
includeOffset?:
|
|
1132
|
-
sortVal?:
|
|
1130
|
+
endSortVal?: InputMaybe<Scalars['String']>;
|
|
1131
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1132
|
+
includeOffset?: InputMaybe<Scalars['Boolean']>;
|
|
1133
|
+
sortVal?: InputMaybe<Scalars['String']>;
|
|
1133
1134
|
};
|
|
1134
1135
|
|
|
1135
1136
|
export type CustomMetadata = {
|
|
@@ -1144,14 +1145,14 @@ export type CustomMetadataAttrs = {
|
|
|
1144
1145
|
};
|
|
1145
1146
|
|
|
1146
1147
|
export type CustomMetadataAttrsInput = {
|
|
1147
|
-
key?:
|
|
1148
|
-
value?:
|
|
1148
|
+
key?: InputMaybe<Scalars['String']>;
|
|
1149
|
+
value?: InputMaybe<Scalars['String']>;
|
|
1149
1150
|
};
|
|
1150
1151
|
|
|
1151
1152
|
export type CustomMetadataInput = {
|
|
1152
|
-
attrs?:
|
|
1153
|
+
attrs?: InputMaybe<Array<InputMaybe<CustomMetadataAttrsInput>>>;
|
|
1153
1154
|
id: Scalars['ID'];
|
|
1154
|
-
section?:
|
|
1155
|
+
section?: InputMaybe<Scalars['String']>;
|
|
1155
1156
|
};
|
|
1156
1157
|
|
|
1157
1158
|
export type CustomMetadataMeta = {
|
|
@@ -1201,23 +1202,23 @@ export type DateCondition = {
|
|
|
1201
1202
|
};
|
|
1202
1203
|
|
|
1203
1204
|
export type DateConditionInput = {
|
|
1204
|
-
date?:
|
|
1205
|
-
dateComparison?:
|
|
1206
|
-
index?:
|
|
1207
|
-
negative?:
|
|
1205
|
+
date?: InputMaybe<Scalars['Float']>;
|
|
1206
|
+
dateComparison?: InputMaybe<Scalars['String']>;
|
|
1207
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1208
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1208
1209
|
};
|
|
1209
1210
|
|
|
1210
1211
|
export type DeleteAppointmentInput = {
|
|
1211
1212
|
componentNum: Scalars['Int'];
|
|
1212
|
-
instanceDate?:
|
|
1213
|
+
instanceDate?: InputMaybe<InstanceDate>;
|
|
1213
1214
|
inviteId: Scalars['String'];
|
|
1214
|
-
message?:
|
|
1215
|
-
start?:
|
|
1215
|
+
message?: InputMaybe<CalendarItemMessageInput>;
|
|
1216
|
+
start?: InputMaybe<Scalars['Int']>;
|
|
1216
1217
|
};
|
|
1217
1218
|
|
|
1218
1219
|
export type DeleteIdentityInput = {
|
|
1219
1220
|
id: Scalars['ID'];
|
|
1220
|
-
name?:
|
|
1221
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1221
1222
|
};
|
|
1222
1223
|
|
|
1223
1224
|
export type Device = {
|
|
@@ -1236,7 +1237,7 @@ export type Device = {
|
|
|
1236
1237
|
};
|
|
1237
1238
|
|
|
1238
1239
|
export type DiscoverRightInput = {
|
|
1239
|
-
_content?:
|
|
1240
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
1240
1241
|
};
|
|
1241
1242
|
|
|
1242
1243
|
export type DiscoverRights = {
|
|
@@ -1295,7 +1296,7 @@ export type DocumentActionData = {
|
|
|
1295
1296
|
};
|
|
1296
1297
|
|
|
1297
1298
|
export type DocumentInput = {
|
|
1298
|
-
id?:
|
|
1299
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1299
1300
|
};
|
|
1300
1301
|
|
|
1301
1302
|
export type DtTimeInfo = {
|
|
@@ -1306,7 +1307,7 @@ export type DtTimeInfo = {
|
|
|
1306
1307
|
};
|
|
1307
1308
|
|
|
1308
1309
|
export type EmlInput = {
|
|
1309
|
-
id?:
|
|
1310
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1310
1311
|
};
|
|
1311
1312
|
|
|
1312
1313
|
export type EmailAddress = {
|
|
@@ -1324,12 +1325,12 @@ export type EmailAddressInput = {
|
|
|
1324
1325
|
};
|
|
1325
1326
|
|
|
1326
1327
|
export type EnableTwoFactorAuthInput = {
|
|
1327
|
-
authToken?:
|
|
1328
|
+
authToken?: InputMaybe<Scalars['String']>;
|
|
1328
1329
|
csrfTokenSecured: Scalars['Boolean'];
|
|
1329
|
-
ignoreSameSite?:
|
|
1330
|
+
ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
|
|
1330
1331
|
name: Scalars['String'];
|
|
1331
|
-
password?:
|
|
1332
|
-
twoFactorCode?:
|
|
1332
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1333
|
+
twoFactorCode?: InputMaybe<Scalars['String']>;
|
|
1333
1334
|
};
|
|
1334
1335
|
|
|
1335
1336
|
export type EnableTwoFactorAuthResponse = {
|
|
@@ -1357,16 +1358,16 @@ export type ExcludeRecurrenceInfo = {
|
|
|
1357
1358
|
};
|
|
1358
1359
|
|
|
1359
1360
|
export type ExistingAttachmentInput = {
|
|
1360
|
-
messageId?:
|
|
1361
|
-
part?:
|
|
1361
|
+
messageId?: InputMaybe<Scalars['ID']>;
|
|
1362
|
+
part?: InputMaybe<Scalars['String']>;
|
|
1362
1363
|
};
|
|
1363
1364
|
|
|
1364
1365
|
export type ExternalAccount = {
|
|
1365
|
-
accountType?:
|
|
1366
|
-
connectionType?:
|
|
1366
|
+
accountType?: InputMaybe<AccountType>;
|
|
1367
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1367
1368
|
host: Scalars['String'];
|
|
1368
1369
|
id: Scalars['ID'];
|
|
1369
|
-
isEnabled?:
|
|
1370
|
+
isEnabled?: InputMaybe<Scalars['Int']>;
|
|
1370
1371
|
name: Scalars['String'];
|
|
1371
1372
|
password: Scalars['String'];
|
|
1372
1373
|
port: Scalars['String'];
|
|
@@ -1374,13 +1375,13 @@ export type ExternalAccount = {
|
|
|
1374
1375
|
};
|
|
1375
1376
|
|
|
1376
1377
|
export type ExternalAccountAddInput = {
|
|
1377
|
-
accountType?:
|
|
1378
|
-
connectionType?:
|
|
1379
|
-
emailAddress?:
|
|
1378
|
+
accountType?: InputMaybe<AccountType>;
|
|
1379
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1380
|
+
emailAddress?: InputMaybe<Scalars['String']>;
|
|
1380
1381
|
host: Scalars['String'];
|
|
1381
|
-
isEnabled?:
|
|
1382
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1382
1383
|
l: Scalars['ID'];
|
|
1383
|
-
leaveOnServer?:
|
|
1384
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1384
1385
|
name: Scalars['String'];
|
|
1385
1386
|
password: Scalars['String'];
|
|
1386
1387
|
port: Scalars['String'];
|
|
@@ -1388,42 +1389,42 @@ export type ExternalAccountAddInput = {
|
|
|
1388
1389
|
};
|
|
1389
1390
|
|
|
1390
1391
|
export type ExternalAccountImportInput = {
|
|
1391
|
-
accountType?:
|
|
1392
|
+
accountType?: InputMaybe<AccountType>;
|
|
1392
1393
|
id: Scalars['ID'];
|
|
1393
1394
|
};
|
|
1394
1395
|
|
|
1395
1396
|
export type ExternalAccountModifyAttrsInput = {
|
|
1396
|
-
accountType?:
|
|
1397
|
-
connectionType?:
|
|
1398
|
-
defaultSignature?:
|
|
1399
|
-
description?:
|
|
1400
|
-
forwardReplySignature?:
|
|
1401
|
-
fromDisplay?:
|
|
1402
|
-
host?:
|
|
1403
|
-
id?:
|
|
1404
|
-
importOnly?:
|
|
1405
|
-
isEnabled?:
|
|
1397
|
+
accountType?: InputMaybe<AccountType>;
|
|
1398
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1399
|
+
defaultSignature?: InputMaybe<Scalars['ID']>;
|
|
1400
|
+
description?: InputMaybe<Scalars['String']>;
|
|
1401
|
+
forwardReplySignature?: InputMaybe<Scalars['ID']>;
|
|
1402
|
+
fromDisplay?: InputMaybe<Scalars['String']>;
|
|
1403
|
+
host?: InputMaybe<Scalars['String']>;
|
|
1404
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1405
|
+
importOnly?: InputMaybe<Scalars['Boolean']>;
|
|
1406
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1406
1407
|
l: Scalars['ID'];
|
|
1407
|
-
leaveOnServer?:
|
|
1408
|
-
name?:
|
|
1409
|
-
password?:
|
|
1410
|
-
port?:
|
|
1411
|
-
replyToAddress?:
|
|
1412
|
-
replyToDisplay?:
|
|
1413
|
-
replyToEnabled?:
|
|
1414
|
-
signatureValue?:
|
|
1415
|
-
smtpPort?:
|
|
1416
|
-
storeAndForward?:
|
|
1417
|
-
useAddressForForwardReply?:
|
|
1418
|
-
username?:
|
|
1408
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1409
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1410
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1411
|
+
port?: InputMaybe<Scalars['String']>;
|
|
1412
|
+
replyToAddress?: InputMaybe<Scalars['String']>;
|
|
1413
|
+
replyToDisplay?: InputMaybe<Scalars['String']>;
|
|
1414
|
+
replyToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1415
|
+
signatureValue?: InputMaybe<Scalars['String']>;
|
|
1416
|
+
smtpPort?: InputMaybe<Scalars['String']>;
|
|
1417
|
+
storeAndForward?: InputMaybe<Scalars['String']>;
|
|
1418
|
+
useAddressForForwardReply?: InputMaybe<Scalars['Boolean']>;
|
|
1419
|
+
username?: InputMaybe<Scalars['String']>;
|
|
1419
1420
|
};
|
|
1420
1421
|
|
|
1421
1422
|
export type ExternalAccountTestInput = {
|
|
1422
|
-
accountType?:
|
|
1423
|
-
connectionType?:
|
|
1424
|
-
emailAddress?:
|
|
1423
|
+
accountType?: InputMaybe<AccountType>;
|
|
1424
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1425
|
+
emailAddress?: InputMaybe<Scalars['String']>;
|
|
1425
1426
|
host: Scalars['String'];
|
|
1426
|
-
leaveOnServer?:
|
|
1427
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1427
1428
|
password: Scalars['String'];
|
|
1428
1429
|
port: Scalars['String'];
|
|
1429
1430
|
username: Scalars['String'];
|
|
@@ -1443,9 +1444,9 @@ export type FileIntoAction = {
|
|
|
1443
1444
|
};
|
|
1444
1445
|
|
|
1445
1446
|
export type FileIntoActionInput = {
|
|
1446
|
-
copy?:
|
|
1447
|
-
folderPath?:
|
|
1448
|
-
index?:
|
|
1447
|
+
copy?: InputMaybe<Scalars['Boolean']>;
|
|
1448
|
+
folderPath?: InputMaybe<Scalars['String']>;
|
|
1449
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1449
1450
|
};
|
|
1450
1451
|
|
|
1451
1452
|
export type Filter = {
|
|
@@ -1470,15 +1471,15 @@ export type FilterAction = {
|
|
|
1470
1471
|
};
|
|
1471
1472
|
|
|
1472
1473
|
export type FilterActionInput = {
|
|
1473
|
-
discard?:
|
|
1474
|
-
fileInto?:
|
|
1475
|
-
flag?:
|
|
1476
|
-
keep?:
|
|
1477
|
-
notify?:
|
|
1478
|
-
redirect?:
|
|
1479
|
-
reply?:
|
|
1480
|
-
stop?:
|
|
1481
|
-
tag?:
|
|
1474
|
+
discard?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1475
|
+
fileInto?: InputMaybe<Array<InputMaybe<FileIntoActionInput>>>;
|
|
1476
|
+
flag?: InputMaybe<Array<InputMaybe<FlagActionInput>>>;
|
|
1477
|
+
keep?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1478
|
+
notify?: InputMaybe<Array<InputMaybe<NotifyActionInput>>>;
|
|
1479
|
+
redirect?: InputMaybe<Array<InputMaybe<RedirectActionInput>>>;
|
|
1480
|
+
reply?: InputMaybe<Array<InputMaybe<ReplyActionInput>>>;
|
|
1481
|
+
stop?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1482
|
+
tag?: InputMaybe<Array<InputMaybe<TagActionInput>>>;
|
|
1482
1483
|
};
|
|
1483
1484
|
|
|
1484
1485
|
export type FilterCondition = {
|
|
@@ -1510,36 +1511,36 @@ export type FilterCondition = {
|
|
|
1510
1511
|
};
|
|
1511
1512
|
|
|
1512
1513
|
export type FilterConditionInput = {
|
|
1513
|
-
address?:
|
|
1514
|
-
addressBook?:
|
|
1514
|
+
address?: InputMaybe<Array<InputMaybe<AddressConditionInput>>>;
|
|
1515
|
+
addressBook?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1515
1516
|
allOrAny: FilterMatchCondition;
|
|
1516
|
-
attachment?:
|
|
1517
|
-
body?:
|
|
1518
|
-
bulk?:
|
|
1519
|
-
communityConnections?:
|
|
1520
|
-
communityContent?:
|
|
1521
|
-
communityRequests?:
|
|
1522
|
-
contactRanking?:
|
|
1523
|
-
conversation?:
|
|
1524
|
-
date?:
|
|
1525
|
-
facebook?:
|
|
1526
|
-
flag?:
|
|
1527
|
-
header?:
|
|
1528
|
-
headerExists?:
|
|
1529
|
-
importance?:
|
|
1530
|
-
invite?:
|
|
1531
|
-
linkedin?:
|
|
1532
|
-
list?:
|
|
1533
|
-
me?:
|
|
1534
|
-
mimeHeader?:
|
|
1535
|
-
size?:
|
|
1536
|
-
twitter?:
|
|
1517
|
+
attachment?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1518
|
+
body?: InputMaybe<Array<InputMaybe<BodyConditionInput>>>;
|
|
1519
|
+
bulk?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1520
|
+
communityConnections?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1521
|
+
communityContent?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1522
|
+
communityRequests?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1523
|
+
contactRanking?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1524
|
+
conversation?: InputMaybe<Array<InputMaybe<ConversationConditionInput>>>;
|
|
1525
|
+
date?: InputMaybe<Array<InputMaybe<DateConditionInput>>>;
|
|
1526
|
+
facebook?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1527
|
+
flag?: InputMaybe<Array<InputMaybe<FlagConditionInput>>>;
|
|
1528
|
+
header?: InputMaybe<Array<InputMaybe<HeaderConditionInput>>>;
|
|
1529
|
+
headerExists?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1530
|
+
importance?: InputMaybe<Array<InputMaybe<ImportanceConditionInput>>>;
|
|
1531
|
+
invite?: InputMaybe<Array<InputMaybe<InviteConditionInput>>>;
|
|
1532
|
+
linkedin?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1533
|
+
list?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1534
|
+
me?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1535
|
+
mimeHeader?: InputMaybe<Array<InputMaybe<MimeHeaderConditionInput>>>;
|
|
1536
|
+
size?: InputMaybe<Array<InputMaybe<SizeConditionInput>>>;
|
|
1537
|
+
twitter?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1537
1538
|
};
|
|
1538
1539
|
|
|
1539
1540
|
export type FilterInput = {
|
|
1540
|
-
actions?:
|
|
1541
|
+
actions?: InputMaybe<Array<InputMaybe<FilterActionInput>>>;
|
|
1541
1542
|
active: Scalars['Boolean'];
|
|
1542
|
-
conditions?:
|
|
1543
|
+
conditions?: InputMaybe<Array<InputMaybe<FilterConditionInput>>>;
|
|
1543
1544
|
name: Scalars['String'];
|
|
1544
1545
|
};
|
|
1545
1546
|
|
|
@@ -1559,8 +1560,8 @@ export type FlagAction = {
|
|
|
1559
1560
|
};
|
|
1560
1561
|
|
|
1561
1562
|
export type FlagActionInput = {
|
|
1562
|
-
flagName?:
|
|
1563
|
-
index?:
|
|
1563
|
+
flagName?: InputMaybe<Scalars['String']>;
|
|
1564
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1564
1565
|
};
|
|
1565
1566
|
|
|
1566
1567
|
export type FlagCondition = {
|
|
@@ -1572,8 +1573,8 @@ export type FlagCondition = {
|
|
|
1572
1573
|
|
|
1573
1574
|
export type FlagConditionInput = {
|
|
1574
1575
|
flagName: Scalars['String'];
|
|
1575
|
-
index?:
|
|
1576
|
-
negative?:
|
|
1576
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1577
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1577
1578
|
};
|
|
1578
1579
|
|
|
1579
1580
|
export type Folder = {
|
|
@@ -1616,23 +1617,23 @@ export type FolderActionChangeColorInput = {
|
|
|
1616
1617
|
|
|
1617
1618
|
export type FolderActionCheckCalendarInput = {
|
|
1618
1619
|
id: Scalars['ID'];
|
|
1619
|
-
value?:
|
|
1620
|
+
value?: InputMaybe<Scalars['Boolean']>;
|
|
1620
1621
|
};
|
|
1621
1622
|
|
|
1622
1623
|
export type FolderActionInput = {
|
|
1623
|
-
color?:
|
|
1624
|
-
folderId?:
|
|
1625
|
-
grant?:
|
|
1624
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
1625
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1626
|
+
grant?: InputMaybe<Array<InputMaybe<GrantInput>>>;
|
|
1626
1627
|
id: Scalars['ID'];
|
|
1627
|
-
name?:
|
|
1628
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1628
1629
|
op: Scalars['String'];
|
|
1629
|
-
zimbraId?:
|
|
1630
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
1630
1631
|
};
|
|
1631
1632
|
|
|
1632
1633
|
export type FolderQueryInput = {
|
|
1633
|
-
id?:
|
|
1634
|
-
uuid?:
|
|
1635
|
-
view?:
|
|
1634
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1635
|
+
uuid?: InputMaybe<Scalars['ID']>;
|
|
1636
|
+
view?: InputMaybe<FolderView>;
|
|
1636
1637
|
};
|
|
1637
1638
|
|
|
1638
1639
|
export enum FolderView {
|
|
@@ -1655,7 +1656,7 @@ export enum FolderView {
|
|
|
1655
1656
|
}
|
|
1656
1657
|
|
|
1657
1658
|
export type ForwardAppointmentInput = {
|
|
1658
|
-
exceptId?:
|
|
1659
|
+
exceptId?: InputMaybe<ForwardExceptIdInput>;
|
|
1659
1660
|
id: Scalars['ID'];
|
|
1660
1661
|
message: ForwardMessageInput;
|
|
1661
1662
|
};
|
|
@@ -1671,9 +1672,9 @@ export type ForwardExceptIdInput = {
|
|
|
1671
1672
|
};
|
|
1672
1673
|
|
|
1673
1674
|
export type ForwardMessageInput = {
|
|
1674
|
-
emailAddresses?:
|
|
1675
|
-
mimeParts?:
|
|
1676
|
-
subject?:
|
|
1675
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
1676
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
1677
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
1677
1678
|
};
|
|
1678
1679
|
|
|
1679
1680
|
export type FreeBusy = {
|
|
@@ -1712,10 +1713,10 @@ export type GetAppointmentResponse = {
|
|
|
1712
1713
|
};
|
|
1713
1714
|
|
|
1714
1715
|
export type GetDocumentShareUrlItemInput = {
|
|
1715
|
-
folderId?:
|
|
1716
|
-
id?:
|
|
1717
|
-
name?:
|
|
1718
|
-
path?:
|
|
1716
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1717
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1718
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1719
|
+
path?: InputMaybe<Scalars['String']>;
|
|
1719
1720
|
};
|
|
1720
1721
|
|
|
1721
1722
|
export type GetDocumentShareUrlResponse = {
|
|
@@ -1724,13 +1725,13 @@ export type GetDocumentShareUrlResponse = {
|
|
|
1724
1725
|
};
|
|
1725
1726
|
|
|
1726
1727
|
export type GetFolderFolderInput = {
|
|
1727
|
-
parentFolderId?:
|
|
1728
|
-
path?:
|
|
1729
|
-
uuid?:
|
|
1728
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
1729
|
+
path?: InputMaybe<Scalars['String']>;
|
|
1730
|
+
uuid?: InputMaybe<Scalars['ID']>;
|
|
1730
1731
|
};
|
|
1731
1732
|
|
|
1732
1733
|
export type GetRightsInput = {
|
|
1733
|
-
access?:
|
|
1734
|
+
access?: InputMaybe<Array<InputMaybe<Right>>>;
|
|
1734
1735
|
};
|
|
1735
1736
|
|
|
1736
1737
|
export type GetTrustedDevicesResponse = {
|
|
@@ -1740,22 +1741,22 @@ export type GetTrustedDevicesResponse = {
|
|
|
1740
1741
|
};
|
|
1741
1742
|
|
|
1742
1743
|
export type GrantInput = {
|
|
1743
|
-
address?:
|
|
1744
|
+
address?: InputMaybe<Scalars['String']>;
|
|
1744
1745
|
granteeType: GranteeType;
|
|
1745
|
-
key?:
|
|
1746
|
-
password?:
|
|
1746
|
+
key?: InputMaybe<Scalars['String']>;
|
|
1747
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1747
1748
|
permissions: Scalars['String'];
|
|
1748
|
-
zimbraId?:
|
|
1749
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
1749
1750
|
};
|
|
1750
1751
|
|
|
1751
1752
|
export type GrantRightsInput = {
|
|
1752
|
-
access?:
|
|
1753
|
+
access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
|
|
1753
1754
|
};
|
|
1754
1755
|
|
|
1755
1756
|
export type Grantee = {
|
|
1756
|
-
id?:
|
|
1757
|
-
name?:
|
|
1758
|
-
type?:
|
|
1757
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1758
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1759
|
+
type?: InputMaybe<Scalars['String']>;
|
|
1759
1760
|
};
|
|
1760
1761
|
|
|
1761
1762
|
export enum GranteeType {
|
|
@@ -1808,8 +1809,8 @@ export type HeaderCheckCondition = {
|
|
|
1808
1809
|
|
|
1809
1810
|
export type HeaderCheckConditionInput = {
|
|
1810
1811
|
header: Scalars['String'];
|
|
1811
|
-
index?:
|
|
1812
|
-
negative?:
|
|
1812
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1813
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1813
1814
|
};
|
|
1814
1815
|
|
|
1815
1816
|
export type HeaderCondition = {
|
|
@@ -1825,14 +1826,14 @@ export type HeaderCondition = {
|
|
|
1825
1826
|
};
|
|
1826
1827
|
|
|
1827
1828
|
export type HeaderConditionInput = {
|
|
1828
|
-
caseSensitive?:
|
|
1829
|
-
countComparison?:
|
|
1830
|
-
header?:
|
|
1831
|
-
index?:
|
|
1832
|
-
negative?:
|
|
1833
|
-
stringComparison?:
|
|
1834
|
-
value?:
|
|
1835
|
-
valueComparison?:
|
|
1829
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
1830
|
+
countComparison?: InputMaybe<Scalars['String']>;
|
|
1831
|
+
header?: InputMaybe<Scalars['String']>;
|
|
1832
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1833
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1834
|
+
stringComparison?: InputMaybe<Scalars['String']>;
|
|
1835
|
+
value?: InputMaybe<Scalars['String']>;
|
|
1836
|
+
valueComparison?: InputMaybe<Scalars['String']>;
|
|
1836
1837
|
};
|
|
1837
1838
|
|
|
1838
1839
|
export type Hit = {
|
|
@@ -1876,23 +1877,23 @@ export type IdentityAttrs = {
|
|
|
1876
1877
|
};
|
|
1877
1878
|
|
|
1878
1879
|
export type IdentityAttrsInput = {
|
|
1879
|
-
zimbraPrefDefaultSignatureId?:
|
|
1880
|
-
zimbraPrefForwardReplyFormat?:
|
|
1881
|
-
zimbraPrefForwardReplySignatureId?:
|
|
1882
|
-
zimbraPrefFromAddress?:
|
|
1883
|
-
zimbraPrefFromAddressType?:
|
|
1884
|
-
zimbraPrefFromDisplay?:
|
|
1885
|
-
zimbraPrefIdentityId?:
|
|
1886
|
-
zimbraPrefIdentityName?:
|
|
1887
|
-
zimbraPrefMailSignatureStyle?:
|
|
1888
|
-
zimbraPrefReplyToAddress?:
|
|
1889
|
-
zimbraPrefReplyToDisplay?:
|
|
1890
|
-
zimbraPrefReplyToEnabled?:
|
|
1891
|
-
zimbraPrefSentMailFolder?:
|
|
1892
|
-
zimbraPrefWhenInFolderIds?:
|
|
1893
|
-
zimbraPrefWhenInFoldersEnabled?:
|
|
1894
|
-
zimbraPrefWhenSentToAddresses?:
|
|
1895
|
-
zimbraPrefWhenSentToEnabled?:
|
|
1880
|
+
zimbraPrefDefaultSignatureId?: InputMaybe<Scalars['ID']>;
|
|
1881
|
+
zimbraPrefForwardReplyFormat?: InputMaybe<Scalars['String']>;
|
|
1882
|
+
zimbraPrefForwardReplySignatureId?: InputMaybe<Scalars['ID']>;
|
|
1883
|
+
zimbraPrefFromAddress?: InputMaybe<Scalars['String']>;
|
|
1884
|
+
zimbraPrefFromAddressType?: InputMaybe<Scalars['String']>;
|
|
1885
|
+
zimbraPrefFromDisplay?: InputMaybe<Scalars['String']>;
|
|
1886
|
+
zimbraPrefIdentityId?: InputMaybe<Scalars['ID']>;
|
|
1887
|
+
zimbraPrefIdentityName?: InputMaybe<Scalars['String']>;
|
|
1888
|
+
zimbraPrefMailSignatureStyle?: InputMaybe<Scalars['String']>;
|
|
1889
|
+
zimbraPrefReplyToAddress?: InputMaybe<Scalars['String']>;
|
|
1890
|
+
zimbraPrefReplyToDisplay?: InputMaybe<Scalars['String']>;
|
|
1891
|
+
zimbraPrefReplyToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1892
|
+
zimbraPrefSentMailFolder?: InputMaybe<Scalars['String']>;
|
|
1893
|
+
zimbraPrefWhenInFolderIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1894
|
+
zimbraPrefWhenInFoldersEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1895
|
+
zimbraPrefWhenSentToAddresses?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1896
|
+
zimbraPrefWhenSentToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1896
1897
|
};
|
|
1897
1898
|
|
|
1898
1899
|
export type ImportStatus = {
|
|
@@ -1924,8 +1925,8 @@ export type ImportanceCondition = {
|
|
|
1924
1925
|
|
|
1925
1926
|
export type ImportanceConditionInput = {
|
|
1926
1927
|
importance: Importance;
|
|
1927
|
-
index?:
|
|
1928
|
-
negative?:
|
|
1928
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1929
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1929
1930
|
};
|
|
1930
1931
|
|
|
1931
1932
|
export type Instance = {
|
|
@@ -1960,7 +1961,7 @@ export type Instance = {
|
|
|
1960
1961
|
};
|
|
1961
1962
|
|
|
1962
1963
|
export type InstanceDate = {
|
|
1963
|
-
date?:
|
|
1964
|
+
date?: InputMaybe<Scalars['String']>;
|
|
1964
1965
|
};
|
|
1965
1966
|
|
|
1966
1967
|
export type IntervalRule = {
|
|
@@ -2040,9 +2041,9 @@ export type InviteCondition = {
|
|
|
2040
2041
|
};
|
|
2041
2042
|
|
|
2042
2043
|
export type InviteConditionInput = {
|
|
2043
|
-
index?:
|
|
2044
|
-
methods?:
|
|
2045
|
-
negative?:
|
|
2044
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
2045
|
+
methods?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
2046
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
2046
2047
|
};
|
|
2047
2048
|
|
|
2048
2049
|
export type InviteInfo = {
|
|
@@ -2059,10 +2060,10 @@ export type InviteReplies = {
|
|
|
2059
2060
|
|
|
2060
2061
|
export type InviteReplyInput = {
|
|
2061
2062
|
componentNum: Scalars['Int'];
|
|
2062
|
-
exceptId?:
|
|
2063
|
+
exceptId?: InputMaybe<InstanceDate>;
|
|
2063
2064
|
id: Scalars['ID'];
|
|
2064
|
-
message?:
|
|
2065
|
-
updateOrganizer?:
|
|
2065
|
+
message?: InputMaybe<CalendarItemMessageInput>;
|
|
2066
|
+
updateOrganizer?: InputMaybe<Scalars['Boolean']>;
|
|
2066
2067
|
verb: InviteReplyVerb;
|
|
2067
2068
|
};
|
|
2068
2069
|
|
|
@@ -2142,7 +2143,7 @@ export type MailItem = {
|
|
|
2142
2143
|
|
|
2143
2144
|
export type MailItemEmailAddressInput = {
|
|
2144
2145
|
address: Scalars['String'];
|
|
2145
|
-
name?:
|
|
2146
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2146
2147
|
type: AddressType;
|
|
2147
2148
|
};
|
|
2148
2149
|
|
|
@@ -2187,27 +2188,27 @@ export type MailboxMetadataMeta = {
|
|
|
2187
2188
|
};
|
|
2188
2189
|
|
|
2189
2190
|
export type MailboxMetadataSectionAttrsInput = {
|
|
2190
|
-
archivedFolder?:
|
|
2191
|
-
privacyOverlayPrefs_showOverlay?:
|
|
2192
|
-
privacyOverlayPrefs_timeOut?:
|
|
2193
|
-
zimbraPrefContactSourceFolderID?:
|
|
2194
|
-
zimbraPrefCustomFolderTreeOpen?:
|
|
2195
|
-
zimbraPrefDateFormat?:
|
|
2196
|
-
zimbraPrefFolderTreeSash?:
|
|
2197
|
-
zimbraPrefFoldersExpanded?:
|
|
2198
|
-
zimbraPrefGenerateLinkPreviews?:
|
|
2199
|
-
zimbraPrefGroupByList?:
|
|
2200
|
-
zimbraPrefMessageListDensity?:
|
|
2201
|
-
zimbraPrefMultitasking?:
|
|
2202
|
-
zimbraPrefReadingPaneSashHorizontal?:
|
|
2203
|
-
zimbraPrefReadingPaneSashVertical?:
|
|
2204
|
-
zimbraPrefSMIMEDefaultSetting?:
|
|
2205
|
-
zimbraPrefSMIMELastOperation?:
|
|
2206
|
-
zimbraPrefSharedFolderTreeOpen?:
|
|
2207
|
-
zimbraPrefSmartFolderTreeOpen?:
|
|
2208
|
-
zimbraPrefTimeFormat?:
|
|
2209
|
-
zimbraPrefUndoSendEnabled?:
|
|
2210
|
-
zimbraPrefUndoSendTimeout?:
|
|
2191
|
+
archivedFolder?: InputMaybe<Scalars['String']>;
|
|
2192
|
+
privacyOverlayPrefs_showOverlay?: InputMaybe<Scalars['Boolean']>;
|
|
2193
|
+
privacyOverlayPrefs_timeOut?: InputMaybe<Scalars['Int']>;
|
|
2194
|
+
zimbraPrefContactSourceFolderID?: InputMaybe<Scalars['String']>;
|
|
2195
|
+
zimbraPrefCustomFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
2196
|
+
zimbraPrefDateFormat?: InputMaybe<Scalars['String']>;
|
|
2197
|
+
zimbraPrefFolderTreeSash?: InputMaybe<Scalars['Int']>;
|
|
2198
|
+
zimbraPrefFoldersExpanded?: InputMaybe<Scalars['String']>;
|
|
2199
|
+
zimbraPrefGenerateLinkPreviews?: InputMaybe<Scalars['Boolean']>;
|
|
2200
|
+
zimbraPrefGroupByList?: InputMaybe<Scalars['String']>;
|
|
2201
|
+
zimbraPrefMessageListDensity?: InputMaybe<Scalars['String']>;
|
|
2202
|
+
zimbraPrefMultitasking?: InputMaybe<Scalars['String']>;
|
|
2203
|
+
zimbraPrefReadingPaneSashHorizontal?: InputMaybe<Scalars['Int']>;
|
|
2204
|
+
zimbraPrefReadingPaneSashVertical?: InputMaybe<Scalars['Int']>;
|
|
2205
|
+
zimbraPrefSMIMEDefaultSetting?: InputMaybe<Scalars['String']>;
|
|
2206
|
+
zimbraPrefSMIMELastOperation?: InputMaybe<Scalars['String']>;
|
|
2207
|
+
zimbraPrefSharedFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
2208
|
+
zimbraPrefSmartFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
2209
|
+
zimbraPrefTimeFormat?: InputMaybe<Scalars['String']>;
|
|
2210
|
+
zimbraPrefUndoSendEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2211
|
+
zimbraPrefUndoSendTimeout?: InputMaybe<Scalars['Int']>;
|
|
2211
2212
|
};
|
|
2212
2213
|
|
|
2213
2214
|
export type MaxAppPasswords = {
|
|
@@ -2275,12 +2276,12 @@ export type MimeHeaderCondition = {
|
|
|
2275
2276
|
};
|
|
2276
2277
|
|
|
2277
2278
|
export type MimeHeaderConditionInput = {
|
|
2278
|
-
caseSensitive?:
|
|
2279
|
-
header?:
|
|
2280
|
-
index?:
|
|
2281
|
-
negative?:
|
|
2282
|
-
stringComparison?:
|
|
2283
|
-
value?:
|
|
2279
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
2280
|
+
header?: InputMaybe<Scalars['String']>;
|
|
2281
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
2282
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
2283
|
+
stringComparison?: InputMaybe<Scalars['String']>;
|
|
2284
|
+
value?: InputMaybe<Scalars['String']>;
|
|
2284
2285
|
};
|
|
2285
2286
|
|
|
2286
2287
|
export type MimePart = {
|
|
@@ -2302,20 +2303,20 @@ export type MimePart = {
|
|
|
2302
2303
|
};
|
|
2303
2304
|
|
|
2304
2305
|
export type MimePartInput = {
|
|
2305
|
-
attachments?:
|
|
2306
|
-
base64?:
|
|
2307
|
-
body?:
|
|
2308
|
-
content?:
|
|
2309
|
-
contentDisposition?:
|
|
2310
|
-
contentId?:
|
|
2311
|
-
contentType?:
|
|
2312
|
-
filename?:
|
|
2313
|
-
messageId?:
|
|
2314
|
-
mimeParts?:
|
|
2315
|
-
part?:
|
|
2316
|
-
size?:
|
|
2317
|
-
truncated?:
|
|
2318
|
-
url?:
|
|
2306
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
2307
|
+
base64?: InputMaybe<Scalars['String']>;
|
|
2308
|
+
body?: InputMaybe<Scalars['Boolean']>;
|
|
2309
|
+
content?: InputMaybe<Scalars['String']>;
|
|
2310
|
+
contentDisposition?: InputMaybe<Scalars['String']>;
|
|
2311
|
+
contentId?: InputMaybe<Scalars['String']>;
|
|
2312
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
2313
|
+
filename?: InputMaybe<Scalars['String']>;
|
|
2314
|
+
messageId?: InputMaybe<Scalars['ID']>;
|
|
2315
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
2316
|
+
part?: InputMaybe<Scalars['ID']>;
|
|
2317
|
+
size?: InputMaybe<Scalars['Float']>;
|
|
2318
|
+
truncated?: InputMaybe<Scalars['Boolean']>;
|
|
2319
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2319
2320
|
};
|
|
2320
2321
|
|
|
2321
2322
|
export enum Mode {
|
|
@@ -2334,14 +2335,14 @@ export type ModifyAppointmentResponse = {
|
|
|
2334
2335
|
|
|
2335
2336
|
export type ModifyContactInput = {
|
|
2336
2337
|
attributes: ContactAttrsInput;
|
|
2337
|
-
folderId?:
|
|
2338
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2338
2339
|
id: Scalars['ID'];
|
|
2339
|
-
memberOps?:
|
|
2340
|
-
tagNames?:
|
|
2340
|
+
memberOps?: InputMaybe<Array<InputMaybe<ContactListOps>>>;
|
|
2341
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2341
2342
|
};
|
|
2342
2343
|
|
|
2343
2344
|
export type ModifyIdentityInput = {
|
|
2344
|
-
attrs?:
|
|
2345
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2345
2346
|
id: Scalars['ID'];
|
|
2346
2347
|
};
|
|
2347
2348
|
|
|
@@ -2477,24 +2478,24 @@ export type Mutation = {
|
|
|
2477
2478
|
|
|
2478
2479
|
|
|
2479
2480
|
export type MutationAccountOnlyRemoteWipeSyncArgs = {
|
|
2480
|
-
deviceId?:
|
|
2481
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2481
2482
|
};
|
|
2482
2483
|
|
|
2483
2484
|
|
|
2484
2485
|
export type MutationActionArgs = {
|
|
2485
|
-
color?:
|
|
2486
|
-
constraints?:
|
|
2487
|
-
destFolderLocal?:
|
|
2488
|
-
flags?:
|
|
2489
|
-
folderId?:
|
|
2490
|
-
id?:
|
|
2491
|
-
ids?:
|
|
2492
|
-
isLocal?:
|
|
2493
|
-
name?:
|
|
2486
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
2487
|
+
constraints?: InputMaybe<Scalars['String']>;
|
|
2488
|
+
destFolderLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2489
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
2490
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2491
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2492
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
2493
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2494
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2494
2495
|
op: Scalars['String'];
|
|
2495
|
-
recursive?:
|
|
2496
|
-
rgb?:
|
|
2497
|
-
tagNames?:
|
|
2496
|
+
recursive?: InputMaybe<Scalars['Boolean']>;
|
|
2497
|
+
rgb?: InputMaybe<Scalars['String']>;
|
|
2498
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2498
2499
|
type: ActionTypeName;
|
|
2499
2500
|
};
|
|
2500
2501
|
|
|
@@ -2510,28 +2511,28 @@ export type MutationAddMessageArgs = {
|
|
|
2510
2511
|
|
|
2511
2512
|
|
|
2512
2513
|
export type MutationAllowDeviceSyncArgs = {
|
|
2513
|
-
deviceId?:
|
|
2514
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2514
2515
|
};
|
|
2515
2516
|
|
|
2516
2517
|
|
|
2517
2518
|
export type MutationApplyFilterRulesArgs = {
|
|
2518
|
-
filterRules?:
|
|
2519
|
+
filterRules?: InputMaybe<Array<InputMaybe<FilterRuleInput>>>;
|
|
2519
2520
|
ids: Scalars['String'];
|
|
2520
2521
|
};
|
|
2521
2522
|
|
|
2522
2523
|
|
|
2523
2524
|
export type MutationBlockDeviceSyncArgs = {
|
|
2524
|
-
deviceId?:
|
|
2525
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2525
2526
|
};
|
|
2526
2527
|
|
|
2527
2528
|
|
|
2528
2529
|
export type MutationCancelPendingAccountOnlyRemoteWipeSyncArgs = {
|
|
2529
|
-
deviceId?:
|
|
2530
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2530
2531
|
};
|
|
2531
2532
|
|
|
2532
2533
|
|
|
2533
2534
|
export type MutationCancelPendingRemoteWipeSyncArgs = {
|
|
2534
|
-
deviceId?:
|
|
2535
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2535
2536
|
};
|
|
2536
2537
|
|
|
2537
2538
|
|
|
@@ -2547,7 +2548,7 @@ export type MutationChangeFolderColorArgs = {
|
|
|
2547
2548
|
|
|
2548
2549
|
|
|
2549
2550
|
export type MutationChangePasswordArgs = {
|
|
2550
|
-
dryRun?:
|
|
2551
|
+
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
2551
2552
|
loginNewPassword: Scalars['String'];
|
|
2552
2553
|
password: Scalars['String'];
|
|
2553
2554
|
username: Scalars['String'];
|
|
@@ -2561,11 +2562,11 @@ export type MutationCheckCalendarArgs = {
|
|
|
2561
2562
|
|
|
2562
2563
|
|
|
2563
2564
|
export type MutationContactActionArgs = {
|
|
2564
|
-
folderId?:
|
|
2565
|
-
id?:
|
|
2566
|
-
ids?:
|
|
2565
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2566
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2567
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
2567
2568
|
op: Scalars['String'];
|
|
2568
|
-
tagNames?:
|
|
2569
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2569
2570
|
};
|
|
2570
2571
|
|
|
2571
2572
|
|
|
@@ -2586,13 +2587,13 @@ export type MutationCreateAppSpecificPasswordArgs = {
|
|
|
2586
2587
|
|
|
2587
2588
|
|
|
2588
2589
|
export type MutationCreateAppointmentArgs = {
|
|
2589
|
-
accountName?:
|
|
2590
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2590
2591
|
appointment: CalendarItemInput;
|
|
2591
2592
|
};
|
|
2592
2593
|
|
|
2593
2594
|
|
|
2594
2595
|
export type MutationCreateAppointmentExceptionArgs = {
|
|
2595
|
-
accountName?:
|
|
2596
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2596
2597
|
appointment: CalendarItemInput;
|
|
2597
2598
|
};
|
|
2598
2599
|
|
|
@@ -2600,7 +2601,7 @@ export type MutationCreateAppointmentExceptionArgs = {
|
|
|
2600
2601
|
export type MutationCreateCalendarArgs = {
|
|
2601
2602
|
color: Scalars['Int'];
|
|
2602
2603
|
name: Scalars['String'];
|
|
2603
|
-
url?:
|
|
2604
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2604
2605
|
};
|
|
2605
2606
|
|
|
2606
2607
|
|
|
@@ -2615,19 +2616,19 @@ export type MutationCreateContactListArgs = {
|
|
|
2615
2616
|
|
|
2616
2617
|
|
|
2617
2618
|
export type MutationCreateFolderArgs = {
|
|
2618
|
-
color?:
|
|
2619
|
-
fetchIfExists?:
|
|
2620
|
-
flags?:
|
|
2621
|
-
isLocalFolder?:
|
|
2619
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
2620
|
+
fetchIfExists?: InputMaybe<Scalars['Boolean']>;
|
|
2621
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
2622
|
+
isLocalFolder?: InputMaybe<Scalars['Boolean']>;
|
|
2622
2623
|
name: Scalars['String'];
|
|
2623
|
-
parentFolderId?:
|
|
2624
|
-
url?:
|
|
2625
|
-
view?:
|
|
2624
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2625
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2626
|
+
view?: InputMaybe<FolderView>;
|
|
2626
2627
|
};
|
|
2627
2628
|
|
|
2628
2629
|
|
|
2629
2630
|
export type MutationCreateIdentityArgs = {
|
|
2630
|
-
attrs?:
|
|
2631
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2631
2632
|
name: Scalars['String'];
|
|
2632
2633
|
};
|
|
2633
2634
|
|
|
@@ -2639,9 +2640,9 @@ export type MutationCreateMountpointArgs = {
|
|
|
2639
2640
|
|
|
2640
2641
|
export type MutationCreateSearchFolderArgs = {
|
|
2641
2642
|
name: Scalars['String'];
|
|
2642
|
-
parentFolderId?:
|
|
2643
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2643
2644
|
query: Scalars['String'];
|
|
2644
|
-
types?:
|
|
2645
|
+
types?: InputMaybe<FolderView>;
|
|
2645
2646
|
};
|
|
2646
2647
|
|
|
2647
2648
|
|
|
@@ -2656,7 +2657,7 @@ export type MutationCreateSignatureArgs = {
|
|
|
2656
2657
|
|
|
2657
2658
|
|
|
2658
2659
|
export type MutationCreateTagArgs = {
|
|
2659
|
-
tag?:
|
|
2660
|
+
tag?: InputMaybe<CreateTagInput>;
|
|
2660
2661
|
};
|
|
2661
2662
|
|
|
2662
2663
|
|
|
@@ -2682,7 +2683,7 @@ export type MutationDeleteExternalAccountArgs = {
|
|
|
2682
2683
|
|
|
2683
2684
|
export type MutationDeleteIdentityArgs = {
|
|
2684
2685
|
id: Scalars['ID'];
|
|
2685
|
-
name?:
|
|
2686
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2686
2687
|
};
|
|
2687
2688
|
|
|
2688
2689
|
|
|
@@ -2692,8 +2693,8 @@ export type MutationDeleteSignatureArgs = {
|
|
|
2692
2693
|
|
|
2693
2694
|
|
|
2694
2695
|
export type MutationDismissCalendarItemArgs = {
|
|
2695
|
-
appointment?:
|
|
2696
|
-
task?:
|
|
2696
|
+
appointment?: InputMaybe<Array<InputMaybe<DismissInput>>>;
|
|
2697
|
+
task?: InputMaybe<DismissInput>;
|
|
2697
2698
|
};
|
|
2698
2699
|
|
|
2699
2700
|
|
|
@@ -2738,24 +2739,24 @@ export type MutationImportExternalAccountArgs = {
|
|
|
2738
2739
|
|
|
2739
2740
|
|
|
2740
2741
|
export type MutationItemActionArgs = {
|
|
2741
|
-
folderId?:
|
|
2742
|
-
id?:
|
|
2743
|
-
ids?:
|
|
2744
|
-
name?:
|
|
2742
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2743
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2744
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
|
2745
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2745
2746
|
op: Scalars['String'];
|
|
2746
|
-
tagNames?:
|
|
2747
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2747
2748
|
};
|
|
2748
2749
|
|
|
2749
2750
|
|
|
2750
2751
|
export type MutationLoginArgs = {
|
|
2751
2752
|
csrfTokenSecured: Scalars['Boolean'];
|
|
2752
|
-
deviceTrusted?:
|
|
2753
|
-
ignoreSameSite?:
|
|
2754
|
-
password?:
|
|
2755
|
-
persistAuthTokenCookie?:
|
|
2756
|
-
recoveryCode?:
|
|
2757
|
-
tokenType?:
|
|
2758
|
-
twoFactorCode?:
|
|
2753
|
+
deviceTrusted?: InputMaybe<Scalars['Boolean']>;
|
|
2754
|
+
ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
|
|
2755
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2756
|
+
persistAuthTokenCookie?: InputMaybe<Scalars['Boolean']>;
|
|
2757
|
+
recoveryCode?: InputMaybe<Scalars['String']>;
|
|
2758
|
+
tokenType?: InputMaybe<Scalars['String']>;
|
|
2759
|
+
twoFactorCode?: InputMaybe<Scalars['String']>;
|
|
2759
2760
|
username: Scalars['String'];
|
|
2760
2761
|
};
|
|
2761
2762
|
|
|
@@ -2767,7 +2768,7 @@ export type MutationMessageActionArgs = {
|
|
|
2767
2768
|
|
|
2768
2769
|
|
|
2769
2770
|
export type MutationModifyAppointmentArgs = {
|
|
2770
|
-
accountName?:
|
|
2771
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2771
2772
|
appointment: CalendarItemInput;
|
|
2772
2773
|
};
|
|
2773
2774
|
|
|
@@ -2785,17 +2786,17 @@ export type MutationModifyContactListArgs = {
|
|
|
2785
2786
|
export type MutationModifyExternalAccountArgs = {
|
|
2786
2787
|
attrs: ExternalAccountModifyAttrsInput;
|
|
2787
2788
|
id: Scalars['ID'];
|
|
2788
|
-
type?:
|
|
2789
|
+
type?: InputMaybe<AccountType>;
|
|
2789
2790
|
};
|
|
2790
2791
|
|
|
2791
2792
|
|
|
2792
2793
|
export type MutationModifyFilterRulesArgs = {
|
|
2793
|
-
filters?:
|
|
2794
|
+
filters?: InputMaybe<Array<FilterInput>>;
|
|
2794
2795
|
};
|
|
2795
2796
|
|
|
2796
2797
|
|
|
2797
2798
|
export type MutationModifyIdentityArgs = {
|
|
2798
|
-
attrs?:
|
|
2799
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2799
2800
|
id: Scalars['ID'];
|
|
2800
2801
|
};
|
|
2801
2802
|
|
|
@@ -2806,13 +2807,13 @@ export type MutationModifyPrefsArgs = {
|
|
|
2806
2807
|
|
|
2807
2808
|
|
|
2808
2809
|
export type MutationModifyProfileImageArgs = {
|
|
2809
|
-
content?:
|
|
2810
|
-
contentType?:
|
|
2810
|
+
content?: InputMaybe<Scalars['String']>;
|
|
2811
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
2811
2812
|
};
|
|
2812
2813
|
|
|
2813
2814
|
|
|
2814
2815
|
export type MutationModifyPropsArgs = {
|
|
2815
|
-
props?:
|
|
2816
|
+
props?: InputMaybe<Array<PropertiesInput>>;
|
|
2816
2817
|
};
|
|
2817
2818
|
|
|
2818
2819
|
|
|
@@ -2837,7 +2838,7 @@ export type MutationModifyWhiteBlackListArgs = {
|
|
|
2837
2838
|
|
|
2838
2839
|
|
|
2839
2840
|
export type MutationModifyZimletPrefsArgs = {
|
|
2840
|
-
zimlets?:
|
|
2841
|
+
zimlets?: InputMaybe<Array<ZimletPreferenceInput>>;
|
|
2841
2842
|
};
|
|
2842
2843
|
|
|
2843
2844
|
|
|
@@ -2873,7 +2874,7 @@ export type MutationPrefOutOfOfficeUntilDateArgs = {
|
|
|
2873
2874
|
|
|
2874
2875
|
|
|
2875
2876
|
export type MutationQuarantineDeviceSyncArgs = {
|
|
2876
|
-
deviceId?:
|
|
2877
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2877
2878
|
};
|
|
2878
2879
|
|
|
2879
2880
|
|
|
@@ -2885,20 +2886,20 @@ export type MutationRecoverAccountArgs = {
|
|
|
2885
2886
|
|
|
2886
2887
|
|
|
2887
2888
|
export type MutationRemoteWipeSyncArgs = {
|
|
2888
|
-
deviceId?:
|
|
2889
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2889
2890
|
};
|
|
2890
2891
|
|
|
2891
2892
|
|
|
2892
2893
|
export type MutationRemoveDeviceSyncArgs = {
|
|
2893
|
-
deviceId?:
|
|
2894
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2894
2895
|
};
|
|
2895
2896
|
|
|
2896
2897
|
|
|
2897
2898
|
export type MutationResetPasswordArgs = {
|
|
2898
|
-
cancelResetPassword?:
|
|
2899
|
-
dryRun?:
|
|
2900
|
-
getPasswordRules?:
|
|
2901
|
-
password?:
|
|
2899
|
+
cancelResetPassword?: InputMaybe<Scalars['Boolean']>;
|
|
2900
|
+
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
2901
|
+
getPasswordRules?: InputMaybe<Scalars['Boolean']>;
|
|
2902
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2902
2903
|
};
|
|
2903
2904
|
|
|
2904
2905
|
|
|
@@ -2913,18 +2914,18 @@ export type MutationRevokeRightsArgs = {
|
|
|
2913
2914
|
|
|
2914
2915
|
|
|
2915
2916
|
export type MutationSaveDocumentArgs = {
|
|
2916
|
-
document?:
|
|
2917
|
+
document?: InputMaybe<SaveDocumentInput>;
|
|
2917
2918
|
};
|
|
2918
2919
|
|
|
2919
2920
|
|
|
2920
2921
|
export type MutationSaveDraftArgs = {
|
|
2921
|
-
accountName?:
|
|
2922
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2922
2923
|
message: SendMessageInput;
|
|
2923
2924
|
};
|
|
2924
2925
|
|
|
2925
2926
|
|
|
2926
2927
|
export type MutationSaveSMimeCertArgs = {
|
|
2927
|
-
password?:
|
|
2928
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2928
2929
|
upload: SaveSMimeCertInputUpload;
|
|
2929
2930
|
};
|
|
2930
2931
|
|
|
@@ -2940,10 +2941,10 @@ export type MutationSendInviteReplyArgs = {
|
|
|
2940
2941
|
|
|
2941
2942
|
|
|
2942
2943
|
export type MutationSendMessageArgs = {
|
|
2943
|
-
accountName?:
|
|
2944
|
-
encrypt?:
|
|
2944
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2945
|
+
encrypt?: InputMaybe<Scalars['Boolean']>;
|
|
2945
2946
|
message: SendMessageInput;
|
|
2946
|
-
sign?:
|
|
2947
|
+
sign?: InputMaybe<Scalars['Boolean']>;
|
|
2947
2948
|
};
|
|
2948
2949
|
|
|
2949
2950
|
|
|
@@ -2959,26 +2960,26 @@ export type MutationSetCustomMetadataArgs = {
|
|
|
2959
2960
|
|
|
2960
2961
|
export type MutationSetMailboxMetadataArgs = {
|
|
2961
2962
|
attrs: MailboxMetadataSectionAttrsInput;
|
|
2962
|
-
section?:
|
|
2963
|
+
section?: InputMaybe<Scalars['String']>;
|
|
2963
2964
|
};
|
|
2964
2965
|
|
|
2965
2966
|
|
|
2966
2967
|
export type MutationSetRecoveryAccountArgs = {
|
|
2967
2968
|
channel: SetRecoveryAccountChannel;
|
|
2968
2969
|
op: SetRecoveryAccountOp;
|
|
2969
|
-
recoveryAccount?:
|
|
2970
|
-
recoveryAccountVerificationCode?:
|
|
2970
|
+
recoveryAccount?: InputMaybe<Scalars['String']>;
|
|
2971
|
+
recoveryAccountVerificationCode?: InputMaybe<Scalars['String']>;
|
|
2971
2972
|
};
|
|
2972
2973
|
|
|
2973
2974
|
|
|
2974
2975
|
export type MutationSnoozeCalendarItemArgs = {
|
|
2975
|
-
appointment?:
|
|
2976
|
-
task?:
|
|
2976
|
+
appointment?: InputMaybe<Array<InputMaybe<SnoozeInput>>>;
|
|
2977
|
+
task?: InputMaybe<SnoozeInput>;
|
|
2977
2978
|
};
|
|
2978
2979
|
|
|
2979
2980
|
|
|
2980
2981
|
export type MutationTagActionArgs = {
|
|
2981
|
-
action?:
|
|
2982
|
+
action?: InputMaybe<FolderActionInput>;
|
|
2982
2983
|
};
|
|
2983
2984
|
|
|
2984
2985
|
|
|
@@ -2998,8 +2999,8 @@ export type NameId = {
|
|
|
2998
2999
|
};
|
|
2999
3000
|
|
|
3000
3001
|
export type NameIdInput = {
|
|
3001
|
-
id?:
|
|
3002
|
-
name?:
|
|
3002
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3003
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3003
3004
|
};
|
|
3004
3005
|
|
|
3005
3006
|
export enum NeedIsMemberType {
|
|
@@ -3009,15 +3010,15 @@ export enum NeedIsMemberType {
|
|
|
3009
3010
|
}
|
|
3010
3011
|
|
|
3011
3012
|
export type NewMountpointSpec = {
|
|
3012
|
-
color?:
|
|
3013
|
-
flags?:
|
|
3013
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
3014
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
3014
3015
|
name: Scalars['String'];
|
|
3015
|
-
owner?:
|
|
3016
|
-
ownerZimbraId?:
|
|
3017
|
-
parentFolderId?:
|
|
3018
|
-
reminder?:
|
|
3019
|
-
sharedItemId?:
|
|
3020
|
-
view?:
|
|
3016
|
+
owner?: InputMaybe<Scalars['String']>;
|
|
3017
|
+
ownerZimbraId?: InputMaybe<Scalars['ID']>;
|
|
3018
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
3019
|
+
reminder?: InputMaybe<Scalars['Boolean']>;
|
|
3020
|
+
sharedItemId?: InputMaybe<Scalars['ID']>;
|
|
3021
|
+
view?: InputMaybe<SearchType>;
|
|
3021
3022
|
};
|
|
3022
3023
|
|
|
3023
3024
|
export type NoOpResponse = {
|
|
@@ -3026,7 +3027,7 @@ export type NoOpResponse = {
|
|
|
3026
3027
|
};
|
|
3027
3028
|
|
|
3028
3029
|
export type Notes = {
|
|
3029
|
-
_content?:
|
|
3030
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3030
3031
|
};
|
|
3031
3032
|
|
|
3032
3033
|
export type NotifyAction = {
|
|
@@ -3040,12 +3041,12 @@ export type NotifyAction = {
|
|
|
3040
3041
|
};
|
|
3041
3042
|
|
|
3042
3043
|
export type NotifyActionInput = {
|
|
3043
|
-
address?:
|
|
3044
|
-
content?:
|
|
3045
|
-
index?:
|
|
3046
|
-
maxBodySize?:
|
|
3047
|
-
origHeaders?:
|
|
3048
|
-
subject?:
|
|
3044
|
+
address?: InputMaybe<Scalars['String']>;
|
|
3045
|
+
content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
3046
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3047
|
+
maxBodySize?: InputMaybe<Scalars['Int']>;
|
|
3048
|
+
origHeaders?: InputMaybe<Scalars['String']>;
|
|
3049
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
3049
3050
|
};
|
|
3050
3051
|
|
|
3051
3052
|
export type OnlyEmailAddress = {
|
|
@@ -3060,13 +3061,13 @@ export type OtherContactAttribute = {
|
|
|
3060
3061
|
};
|
|
3061
3062
|
|
|
3062
3063
|
export type OtherContactAttributeInput = {
|
|
3063
|
-
key?:
|
|
3064
|
-
value?:
|
|
3064
|
+
key?: InputMaybe<Scalars['String']>;
|
|
3065
|
+
value?: InputMaybe<Scalars['String']>;
|
|
3065
3066
|
};
|
|
3066
3067
|
|
|
3067
3068
|
export type Owner = {
|
|
3068
|
-
_content?:
|
|
3069
|
-
by?:
|
|
3069
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3070
|
+
by?: InputMaybe<Scalars['String']>;
|
|
3070
3071
|
};
|
|
3071
3072
|
|
|
3072
3073
|
export enum ParticipationRole {
|
|
@@ -3191,61 +3192,61 @@ export type Preferences = {
|
|
|
3191
3192
|
};
|
|
3192
3193
|
|
|
3193
3194
|
export type PreferencesInput = {
|
|
3194
|
-
zimbraPrefAppleIcalDelegationEnabled?:
|
|
3195
|
-
zimbraPrefAutoAddAppointmentsToCalendar?:
|
|
3196
|
-
zimbraPrefBriefcaseReadingPaneLocation?:
|
|
3197
|
-
zimbraPrefCalendarAlwaysShowMiniCal?:
|
|
3198
|
-
zimbraPrefCalendarApptReminderWarningTime?:
|
|
3199
|
-
zimbraPrefCalendarAutoAddInvites?:
|
|
3200
|
-
zimbraPrefCalendarFirstDayOfWeek?:
|
|
3201
|
-
zimbraPrefCalendarInitialView?:
|
|
3202
|
-
zimbraPrefCalendarReminderEmail?:
|
|
3203
|
-
zimbraPrefCalendarShowDeclinedMeetings?:
|
|
3204
|
-
zimbraPrefCalendarShowPastDueReminders?:
|
|
3205
|
-
zimbraPrefCalendarToasterEnabled?:
|
|
3206
|
-
zimbraPrefCalendarWorkingHours?:
|
|
3207
|
-
zimbraPrefClientType?:
|
|
3208
|
-
zimbraPrefComposeDirection?:
|
|
3209
|
-
zimbraPrefComposeFormat?:
|
|
3210
|
-
zimbraPrefDefaultCalendarId?:
|
|
3211
|
-
zimbraPrefDelegatedSendSaveTarget?:
|
|
3212
|
-
zimbraPrefDisplayExternalImages?:
|
|
3213
|
-
zimbraPrefDisplayTimeInMailList?:
|
|
3214
|
-
zimbraPrefGroupMailBy?:
|
|
3215
|
-
zimbraPrefHtmlEditorDefaultFontColor?:
|
|
3216
|
-
zimbraPrefHtmlEditorDefaultFontFamily?:
|
|
3217
|
-
zimbraPrefHtmlEditorDefaultFontSize?:
|
|
3218
|
-
zimbraPrefLocale?:
|
|
3219
|
-
zimbraPrefMailForwardingAddress?:
|
|
3220
|
-
zimbraPrefMailLocalDeliveryDisabled?:
|
|
3221
|
-
zimbraPrefMailPollingInterval?:
|
|
3222
|
-
zimbraPrefMailRequestReadReceipts?:
|
|
3223
|
-
zimbraPrefMailSelectAfterDelete?:
|
|
3224
|
-
zimbraPrefMailSendReadReceipts?:
|
|
3225
|
-
zimbraPrefMailToasterEnabled?:
|
|
3226
|
-
zimbraPrefMailTrustedSenderList?:
|
|
3227
|
-
zimbraPrefMarkMsgRead?:
|
|
3228
|
-
zimbraPrefMessageViewHtmlPreferred?:
|
|
3229
|
-
zimbraPrefOutOfOfficeExternalReply?:
|
|
3230
|
-
zimbraPrefOutOfOfficeExternalReplyEnabled?:
|
|
3231
|
-
zimbraPrefOutOfOfficeFromDate?:
|
|
3232
|
-
zimbraPrefOutOfOfficeReply?:
|
|
3233
|
-
zimbraPrefOutOfOfficeReplyEnabled?:
|
|
3234
|
-
zimbraPrefOutOfOfficeStatusAlertOnLogin?:
|
|
3235
|
-
zimbraPrefOutOfOfficeSuppressExternalReply?:
|
|
3236
|
-
zimbraPrefOutOfOfficeUntilDate?:
|
|
3237
|
-
zimbraPrefPowerPasteEnabled?:
|
|
3238
|
-
zimbraPrefReadingPaneEnabled?:
|
|
3239
|
-
zimbraPrefReadingPaneLocation?:
|
|
3240
|
-
zimbraPrefSaveToSent?:
|
|
3241
|
-
zimbraPrefShowAllNewMailNotifications?:
|
|
3242
|
-
zimbraPrefShowFragments?:
|
|
3243
|
-
zimbraPrefSlackCalendarReminderEnabled?:
|
|
3244
|
-
zimbraPrefSortOrder?:
|
|
3245
|
-
zimbraPrefTagTreeOpen?:
|
|
3246
|
-
zimbraPrefTimeZoneId?:
|
|
3247
|
-
zimbraPrefUseTimeZoneListInCalendar?:
|
|
3248
|
-
zimbraPrefWebClientOfflineBrowserKey?:
|
|
3195
|
+
zimbraPrefAppleIcalDelegationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3196
|
+
zimbraPrefAutoAddAppointmentsToCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
3197
|
+
zimbraPrefBriefcaseReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
|
|
3198
|
+
zimbraPrefCalendarAlwaysShowMiniCal?: InputMaybe<Scalars['Boolean']>;
|
|
3199
|
+
zimbraPrefCalendarApptReminderWarningTime?: InputMaybe<Scalars['Int']>;
|
|
3200
|
+
zimbraPrefCalendarAutoAddInvites?: InputMaybe<Scalars['Boolean']>;
|
|
3201
|
+
zimbraPrefCalendarFirstDayOfWeek?: InputMaybe<Scalars['Int']>;
|
|
3202
|
+
zimbraPrefCalendarInitialView?: InputMaybe<PrefCalendarInitialView>;
|
|
3203
|
+
zimbraPrefCalendarReminderEmail?: InputMaybe<Scalars['String']>;
|
|
3204
|
+
zimbraPrefCalendarShowDeclinedMeetings?: InputMaybe<Scalars['Boolean']>;
|
|
3205
|
+
zimbraPrefCalendarShowPastDueReminders?: InputMaybe<Scalars['Boolean']>;
|
|
3206
|
+
zimbraPrefCalendarToasterEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3207
|
+
zimbraPrefCalendarWorkingHours?: InputMaybe<Scalars['String']>;
|
|
3208
|
+
zimbraPrefClientType?: InputMaybe<PrefClientType>;
|
|
3209
|
+
zimbraPrefComposeDirection?: InputMaybe<Scalars['String']>;
|
|
3210
|
+
zimbraPrefComposeFormat?: InputMaybe<Mode>;
|
|
3211
|
+
zimbraPrefDefaultCalendarId?: InputMaybe<Scalars['ID']>;
|
|
3212
|
+
zimbraPrefDelegatedSendSaveTarget?: InputMaybe<PrefDelegatedSendSaveTarget>;
|
|
3213
|
+
zimbraPrefDisplayExternalImages?: InputMaybe<Scalars['Boolean']>;
|
|
3214
|
+
zimbraPrefDisplayTimeInMailList?: InputMaybe<Scalars['Boolean']>;
|
|
3215
|
+
zimbraPrefGroupMailBy?: InputMaybe<Scalars['String']>;
|
|
3216
|
+
zimbraPrefHtmlEditorDefaultFontColor?: InputMaybe<Scalars['String']>;
|
|
3217
|
+
zimbraPrefHtmlEditorDefaultFontFamily?: InputMaybe<Scalars['String']>;
|
|
3218
|
+
zimbraPrefHtmlEditorDefaultFontSize?: InputMaybe<Scalars['String']>;
|
|
3219
|
+
zimbraPrefLocale?: InputMaybe<Scalars['String']>;
|
|
3220
|
+
zimbraPrefMailForwardingAddress?: InputMaybe<Scalars['String']>;
|
|
3221
|
+
zimbraPrefMailLocalDeliveryDisabled?: InputMaybe<Scalars['Boolean']>;
|
|
3222
|
+
zimbraPrefMailPollingInterval?: InputMaybe<Scalars['String']>;
|
|
3223
|
+
zimbraPrefMailRequestReadReceipts?: InputMaybe<Scalars['Boolean']>;
|
|
3224
|
+
zimbraPrefMailSelectAfterDelete?: InputMaybe<PrefMailSelectAfterDelete>;
|
|
3225
|
+
zimbraPrefMailSendReadReceipts?: InputMaybe<PrefMailSendReadReceipts>;
|
|
3226
|
+
zimbraPrefMailToasterEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3227
|
+
zimbraPrefMailTrustedSenderList?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
3228
|
+
zimbraPrefMarkMsgRead?: InputMaybe<Scalars['Int']>;
|
|
3229
|
+
zimbraPrefMessageViewHtmlPreferred?: InputMaybe<Scalars['Boolean']>;
|
|
3230
|
+
zimbraPrefOutOfOfficeExternalReply?: InputMaybe<Scalars['String']>;
|
|
3231
|
+
zimbraPrefOutOfOfficeExternalReplyEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3232
|
+
zimbraPrefOutOfOfficeFromDate?: InputMaybe<Scalars['String']>;
|
|
3233
|
+
zimbraPrefOutOfOfficeReply?: InputMaybe<Scalars['String']>;
|
|
3234
|
+
zimbraPrefOutOfOfficeReplyEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3235
|
+
zimbraPrefOutOfOfficeStatusAlertOnLogin?: InputMaybe<Scalars['Boolean']>;
|
|
3236
|
+
zimbraPrefOutOfOfficeSuppressExternalReply?: InputMaybe<Scalars['Boolean']>;
|
|
3237
|
+
zimbraPrefOutOfOfficeUntilDate?: InputMaybe<Scalars['String']>;
|
|
3238
|
+
zimbraPrefPowerPasteEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3239
|
+
zimbraPrefReadingPaneEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3240
|
+
zimbraPrefReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
|
|
3241
|
+
zimbraPrefSaveToSent?: InputMaybe<Scalars['Boolean']>;
|
|
3242
|
+
zimbraPrefShowAllNewMailNotifications?: InputMaybe<Scalars['Boolean']>;
|
|
3243
|
+
zimbraPrefShowFragments?: InputMaybe<Scalars['Boolean']>;
|
|
3244
|
+
zimbraPrefSlackCalendarReminderEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3245
|
+
zimbraPrefSortOrder?: InputMaybe<Scalars['String']>;
|
|
3246
|
+
zimbraPrefTagTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
3247
|
+
zimbraPrefTimeZoneId?: InputMaybe<Scalars['String']>;
|
|
3248
|
+
zimbraPrefUseTimeZoneListInCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
3249
|
+
zimbraPrefWebClientOfflineBrowserKey?: InputMaybe<Scalars['String']>;
|
|
3249
3250
|
};
|
|
3250
3251
|
|
|
3251
3252
|
export type ProfileImageChangeResponse = {
|
|
@@ -3266,7 +3267,7 @@ export type PropList = {
|
|
|
3266
3267
|
};
|
|
3267
3268
|
|
|
3268
3269
|
export type PropertiesInput = {
|
|
3269
|
-
_content?:
|
|
3270
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3270
3271
|
name: Scalars['String'];
|
|
3271
3272
|
zimlet: Scalars['String'];
|
|
3272
3273
|
};
|
|
@@ -3327,25 +3328,25 @@ export type Query = {
|
|
|
3327
3328
|
|
|
3328
3329
|
|
|
3329
3330
|
export type QueryAutoCompleteArgs = {
|
|
3330
|
-
folders?:
|
|
3331
|
-
includeGal?:
|
|
3332
|
-
name?:
|
|
3333
|
-
needExp?:
|
|
3334
|
-
type?:
|
|
3331
|
+
folders?: InputMaybe<Scalars['String']>;
|
|
3332
|
+
includeGal?: InputMaybe<Scalars['Boolean']>;
|
|
3333
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3334
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3335
|
+
type?: InputMaybe<GalSearchType>;
|
|
3335
3336
|
};
|
|
3336
3337
|
|
|
3337
3338
|
|
|
3338
3339
|
export type QueryAutoCompleteGalArgs = {
|
|
3339
|
-
limit?:
|
|
3340
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3340
3341
|
name: Scalars['String'];
|
|
3341
|
-
needExp?:
|
|
3342
|
-
type?:
|
|
3342
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3343
|
+
type?: InputMaybe<GalSearchType>;
|
|
3343
3344
|
};
|
|
3344
3345
|
|
|
3345
3346
|
|
|
3346
3347
|
export type QueryClientInfoArgs = {
|
|
3347
|
-
by?:
|
|
3348
|
-
domain?:
|
|
3348
|
+
by?: InputMaybe<Scalars['String']>;
|
|
3349
|
+
domain?: InputMaybe<Scalars['String']>;
|
|
3349
3350
|
};
|
|
3350
3351
|
|
|
3351
3352
|
|
|
@@ -3368,15 +3369,15 @@ export type QueryDownloadDocumentArgs = {
|
|
|
3368
3369
|
|
|
3369
3370
|
export type QueryDownloadMessageArgs = {
|
|
3370
3371
|
id: Scalars['ID'];
|
|
3371
|
-
isLocal?:
|
|
3372
|
-
isSecure?:
|
|
3372
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
3373
|
+
isSecure?: InputMaybe<Scalars['Boolean']>;
|
|
3373
3374
|
};
|
|
3374
3375
|
|
|
3375
3376
|
|
|
3376
3377
|
export type QueryFreeBusyArgs = {
|
|
3377
|
-
end?:
|
|
3378
|
+
end?: InputMaybe<Scalars['Float']>;
|
|
3378
3379
|
names: Array<Scalars['String']>;
|
|
3379
|
-
start?:
|
|
3380
|
+
start?: InputMaybe<Scalars['Float']>;
|
|
3380
3381
|
};
|
|
3381
3382
|
|
|
3382
3383
|
|
|
@@ -3391,93 +3392,93 @@ export type QueryGetAppointmentsArgs = {
|
|
|
3391
3392
|
limit: Scalars['Int'];
|
|
3392
3393
|
offset: Scalars['Int'];
|
|
3393
3394
|
query: Scalars['String'];
|
|
3394
|
-
types?:
|
|
3395
|
+
types?: InputMaybe<SearchType>;
|
|
3395
3396
|
};
|
|
3396
3397
|
|
|
3397
3398
|
|
|
3398
3399
|
export type QueryGetContactArgs = {
|
|
3399
|
-
derefGroupMember?:
|
|
3400
|
-
id?:
|
|
3401
|
-
ids?:
|
|
3402
|
-
memberOf?:
|
|
3400
|
+
derefGroupMember?: InputMaybe<Scalars['Boolean']>;
|
|
3401
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3402
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
3403
|
+
memberOf?: InputMaybe<Scalars['Boolean']>;
|
|
3403
3404
|
};
|
|
3404
3405
|
|
|
3405
3406
|
|
|
3406
3407
|
export type QueryGetContactFrequencyArgs = {
|
|
3407
3408
|
by: Scalars['String'];
|
|
3408
3409
|
email: Scalars['String'];
|
|
3409
|
-
offsetInMinutes?:
|
|
3410
|
-
spec?:
|
|
3410
|
+
offsetInMinutes?: InputMaybe<Scalars['String']>;
|
|
3411
|
+
spec?: InputMaybe<Array<ContactFrequencySpec>>;
|
|
3411
3412
|
};
|
|
3412
3413
|
|
|
3413
3414
|
|
|
3414
3415
|
export type QueryGetConversationArgs = {
|
|
3415
|
-
fetch?:
|
|
3416
|
-
header?:
|
|
3417
|
-
html?:
|
|
3416
|
+
fetch?: InputMaybe<Scalars['String']>;
|
|
3417
|
+
header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
|
|
3418
|
+
html?: InputMaybe<Scalars['Boolean']>;
|
|
3418
3419
|
id: Scalars['ID'];
|
|
3419
|
-
max?:
|
|
3420
|
-
needExp?:
|
|
3420
|
+
max?: InputMaybe<Scalars['Int']>;
|
|
3421
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3421
3422
|
};
|
|
3422
3423
|
|
|
3423
3424
|
|
|
3424
3425
|
export type QueryGetCustomMetadataArgs = {
|
|
3425
3426
|
id: Scalars['ID'];
|
|
3426
|
-
section?:
|
|
3427
|
+
section?: InputMaybe<Scalars['String']>;
|
|
3427
3428
|
};
|
|
3428
3429
|
|
|
3429
3430
|
|
|
3430
3431
|
export type QueryGetDistributionListMembersArgs = {
|
|
3431
|
-
dl?:
|
|
3432
|
-
limit?:
|
|
3433
|
-
offset?:
|
|
3432
|
+
dl?: InputMaybe<Scalars['String']>;
|
|
3433
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3434
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3434
3435
|
};
|
|
3435
3436
|
|
|
3436
3437
|
|
|
3437
3438
|
export type QueryGetDocumentShareUrlArgs = {
|
|
3438
|
-
item?:
|
|
3439
|
+
item?: InputMaybe<GetDocumentShareUrlItemInput>;
|
|
3439
3440
|
};
|
|
3440
3441
|
|
|
3441
3442
|
|
|
3442
3443
|
export type QueryGetFolderArgs = {
|
|
3443
|
-
depth?:
|
|
3444
|
-
folder?:
|
|
3445
|
-
local?:
|
|
3446
|
-
needGranteeName?:
|
|
3447
|
-
traverseMountpoints?:
|
|
3448
|
-
view?:
|
|
3449
|
-
visible?:
|
|
3444
|
+
depth?: InputMaybe<Scalars['Int']>;
|
|
3445
|
+
folder?: InputMaybe<GetFolderFolderInput>;
|
|
3446
|
+
local?: InputMaybe<Scalars['Boolean']>;
|
|
3447
|
+
needGranteeName?: InputMaybe<Scalars['Boolean']>;
|
|
3448
|
+
traverseMountpoints?: InputMaybe<Scalars['Boolean']>;
|
|
3449
|
+
view?: InputMaybe<FolderView>;
|
|
3450
|
+
visible?: InputMaybe<Scalars['Boolean']>;
|
|
3450
3451
|
};
|
|
3451
3452
|
|
|
3452
3453
|
|
|
3453
3454
|
export type QueryGetHabArgs = {
|
|
3454
|
-
habRootGroupId?:
|
|
3455
|
+
habRootGroupId?: InputMaybe<Scalars['ID']>;
|
|
3455
3456
|
};
|
|
3456
3457
|
|
|
3457
3458
|
|
|
3458
3459
|
export type QueryGetMailboxMetadataArgs = {
|
|
3459
|
-
section?:
|
|
3460
|
+
section?: InputMaybe<Scalars['String']>;
|
|
3460
3461
|
};
|
|
3461
3462
|
|
|
3462
3463
|
|
|
3463
3464
|
export type QueryGetMessageArgs = {
|
|
3464
|
-
header?:
|
|
3465
|
-
html?:
|
|
3465
|
+
header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
|
|
3466
|
+
html?: InputMaybe<Scalars['Boolean']>;
|
|
3466
3467
|
id: Scalars['ID'];
|
|
3467
|
-
isLocal?:
|
|
3468
|
-
max?:
|
|
3469
|
-
needExp?:
|
|
3470
|
-
neuter?:
|
|
3471
|
-
part?:
|
|
3472
|
-
raw?:
|
|
3473
|
-
read?:
|
|
3474
|
-
ridZ?:
|
|
3468
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
3469
|
+
max?: InputMaybe<Scalars['Int']>;
|
|
3470
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3471
|
+
neuter?: InputMaybe<Scalars['Boolean']>;
|
|
3472
|
+
part?: InputMaybe<Scalars['ID']>;
|
|
3473
|
+
raw?: InputMaybe<Scalars['Boolean']>;
|
|
3474
|
+
read?: InputMaybe<Scalars['Boolean']>;
|
|
3475
|
+
ridZ?: InputMaybe<Scalars['String']>;
|
|
3475
3476
|
};
|
|
3476
3477
|
|
|
3477
3478
|
|
|
3478
3479
|
export type QueryGetMessagesMetadataArgs = {
|
|
3479
3480
|
ids: Array<Scalars['ID']>;
|
|
3480
|
-
isLocal?:
|
|
3481
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
3481
3482
|
};
|
|
3482
3483
|
|
|
3483
3484
|
|
|
@@ -3487,7 +3488,7 @@ export type QueryGetRemindersArgs = {
|
|
|
3487
3488
|
limit: Scalars['Int'];
|
|
3488
3489
|
offset: Scalars['Int'];
|
|
3489
3490
|
query: Scalars['String'];
|
|
3490
|
-
types?:
|
|
3491
|
+
types?: InputMaybe<SearchType>;
|
|
3491
3492
|
};
|
|
3492
3493
|
|
|
3493
3494
|
|
|
@@ -3497,7 +3498,7 @@ export type QueryGetRightsArgs = {
|
|
|
3497
3498
|
|
|
3498
3499
|
|
|
3499
3500
|
export type QueryGetSMimeCertInfoArgs = {
|
|
3500
|
-
certId?:
|
|
3501
|
+
certId?: InputMaybe<Scalars['String']>;
|
|
3501
3502
|
};
|
|
3502
3503
|
|
|
3503
3504
|
|
|
@@ -3516,20 +3517,20 @@ export type QueryGetTasksArgs = {
|
|
|
3516
3517
|
limit: Scalars['Int'];
|
|
3517
3518
|
offset: Scalars['Int'];
|
|
3518
3519
|
query: Scalars['String'];
|
|
3519
|
-
types?:
|
|
3520
|
+
types?: InputMaybe<SearchType>;
|
|
3520
3521
|
};
|
|
3521
3522
|
|
|
3522
3523
|
|
|
3523
3524
|
export type QueryGetWorkingHoursArgs = {
|
|
3524
|
-
end?:
|
|
3525
|
+
end?: InputMaybe<Scalars['Float']>;
|
|
3525
3526
|
names: Array<Scalars['String']>;
|
|
3526
|
-
start?:
|
|
3527
|
+
start?: InputMaybe<Scalars['Float']>;
|
|
3527
3528
|
};
|
|
3528
3529
|
|
|
3529
3530
|
|
|
3530
3531
|
export type QueryNoopArgs = {
|
|
3531
|
-
limitToOneBlocked?:
|
|
3532
|
-
wait?:
|
|
3532
|
+
limitToOneBlocked?: InputMaybe<Scalars['Int']>;
|
|
3533
|
+
wait?: InputMaybe<Scalars['Int']>;
|
|
3533
3534
|
};
|
|
3534
3535
|
|
|
3535
3536
|
|
|
@@ -3546,50 +3547,50 @@ export type QueryRelatedContactsArgs = {
|
|
|
3546
3547
|
|
|
3547
3548
|
|
|
3548
3549
|
export type QuerySearchArgs = {
|
|
3549
|
-
contact?:
|
|
3550
|
-
cursor?:
|
|
3551
|
-
fetch?:
|
|
3552
|
-
fullConversation?:
|
|
3553
|
-
inDumpster?:
|
|
3554
|
-
limit?:
|
|
3555
|
-
memberOf?:
|
|
3556
|
-
needExp?:
|
|
3557
|
-
offset?:
|
|
3558
|
-
query?:
|
|
3559
|
-
recip?:
|
|
3560
|
-
resultMode?:
|
|
3561
|
-
sortBy?:
|
|
3562
|
-
types?:
|
|
3550
|
+
contact?: InputMaybe<Scalars['String']>;
|
|
3551
|
+
cursor?: InputMaybe<Cursor>;
|
|
3552
|
+
fetch?: InputMaybe<Scalars['String']>;
|
|
3553
|
+
fullConversation?: InputMaybe<Scalars['Boolean']>;
|
|
3554
|
+
inDumpster?: InputMaybe<Scalars['Boolean']>;
|
|
3555
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3556
|
+
memberOf?: InputMaybe<Scalars['Boolean']>;
|
|
3557
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3558
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3559
|
+
query?: InputMaybe<Scalars['String']>;
|
|
3560
|
+
recip?: InputMaybe<Scalars['Int']>;
|
|
3561
|
+
resultMode?: InputMaybe<Scalars['String']>;
|
|
3562
|
+
sortBy?: InputMaybe<SortBy>;
|
|
3563
|
+
types?: InputMaybe<SearchType>;
|
|
3563
3564
|
};
|
|
3564
3565
|
|
|
3565
3566
|
|
|
3566
3567
|
export type QuerySearchCalendarResourcesArgs = {
|
|
3567
|
-
attrs?:
|
|
3568
|
-
limit?:
|
|
3569
|
-
needExp?:
|
|
3570
|
-
offset?:
|
|
3571
|
-
searchFilter?:
|
|
3568
|
+
attrs?: InputMaybe<Scalars['String']>;
|
|
3569
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3570
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3571
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3572
|
+
searchFilter?: InputMaybe<SearchConditionsInput>;
|
|
3572
3573
|
};
|
|
3573
3574
|
|
|
3574
3575
|
|
|
3575
3576
|
export type QuerySearchGalArgs = {
|
|
3576
|
-
limit?:
|
|
3577
|
-
locale?:
|
|
3578
|
-
name?:
|
|
3579
|
-
needExp?:
|
|
3580
|
-
needIsMember?:
|
|
3581
|
-
needIsOwner?:
|
|
3582
|
-
offset?:
|
|
3583
|
-
sortBy?:
|
|
3584
|
-
type?:
|
|
3577
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3578
|
+
locale?: InputMaybe<Scalars['String']>;
|
|
3579
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3580
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3581
|
+
needIsMember?: InputMaybe<NeedIsMemberType>;
|
|
3582
|
+
needIsOwner?: InputMaybe<Scalars['Boolean']>;
|
|
3583
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3584
|
+
sortBy?: InputMaybe<Scalars['String']>;
|
|
3585
|
+
type?: InputMaybe<GalSearchType>;
|
|
3585
3586
|
};
|
|
3586
3587
|
|
|
3587
3588
|
|
|
3588
3589
|
export type QueryShareInfoArgs = {
|
|
3589
|
-
grantee?:
|
|
3590
|
-
includeSelf?:
|
|
3591
|
-
internal?:
|
|
3592
|
-
owner?:
|
|
3590
|
+
grantee?: InputMaybe<Grantee>;
|
|
3591
|
+
includeSelf?: InputMaybe<Scalars['Boolean']>;
|
|
3592
|
+
internal?: InputMaybe<Scalars['Boolean']>;
|
|
3593
|
+
owner?: InputMaybe<Owner>;
|
|
3593
3594
|
};
|
|
3594
3595
|
|
|
3595
3596
|
export enum ReadingPaneLocation {
|
|
@@ -3626,9 +3627,9 @@ export type RedirectAction = {
|
|
|
3626
3627
|
};
|
|
3627
3628
|
|
|
3628
3629
|
export type RedirectActionInput = {
|
|
3629
|
-
address?:
|
|
3630
|
-
copy?:
|
|
3631
|
-
index?:
|
|
3630
|
+
address?: InputMaybe<Scalars['String']>;
|
|
3631
|
+
copy?: InputMaybe<Scalars['Boolean']>;
|
|
3632
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3632
3633
|
};
|
|
3633
3634
|
|
|
3634
3635
|
export type RelatedContact = {
|
|
@@ -3695,8 +3696,8 @@ export type ReplyAction = {
|
|
|
3695
3696
|
};
|
|
3696
3697
|
|
|
3697
3698
|
export type ReplyActionInput = {
|
|
3698
|
-
content?:
|
|
3699
|
-
index?:
|
|
3699
|
+
content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
3700
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3700
3701
|
};
|
|
3701
3702
|
|
|
3702
3703
|
export type ResetPasswordResponse = {
|
|
@@ -3716,7 +3717,7 @@ export enum ResetPasswordStatus {
|
|
|
3716
3717
|
}
|
|
3717
3718
|
|
|
3718
3719
|
export type RevokeRightsInput = {
|
|
3719
|
-
access?:
|
|
3720
|
+
access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
|
|
3720
3721
|
};
|
|
3721
3722
|
|
|
3722
3723
|
export type Right = {
|
|
@@ -3765,16 +3766,16 @@ export enum SaveDocumentAction {
|
|
|
3765
3766
|
}
|
|
3766
3767
|
|
|
3767
3768
|
export type SaveDocumentInput = {
|
|
3768
|
-
action?:
|
|
3769
|
-
contentType?:
|
|
3770
|
-
descriptionEnabled?:
|
|
3771
|
-
folderId?:
|
|
3772
|
-
id?:
|
|
3773
|
-
messageData?:
|
|
3774
|
-
name?:
|
|
3775
|
-
type?:
|
|
3776
|
-
upload?:
|
|
3777
|
-
version?:
|
|
3769
|
+
action?: InputMaybe<SaveDocumentAction>;
|
|
3770
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
3771
|
+
descriptionEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3772
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
3773
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3774
|
+
messageData?: InputMaybe<Array<InputMaybe<MessagePartForDocument>>>;
|
|
3775
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3776
|
+
type?: InputMaybe<SaveDocumentType>;
|
|
3777
|
+
upload?: InputMaybe<UploadDocument>;
|
|
3778
|
+
version?: InputMaybe<Scalars['Float']>;
|
|
3778
3779
|
};
|
|
3779
3780
|
|
|
3780
3781
|
export type SaveDocumentResponse = {
|
|
@@ -3800,7 +3801,7 @@ export type SaveMessageDataInput = {
|
|
|
3800
3801
|
};
|
|
3801
3802
|
|
|
3802
3803
|
export type SaveSMimeCertInputUpload = {
|
|
3803
|
-
id?:
|
|
3804
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3804
3805
|
};
|
|
3805
3806
|
|
|
3806
3807
|
export type ScratchCode = {
|
|
@@ -3828,7 +3829,7 @@ export type SearchCalendarResourcesResponse = {
|
|
|
3828
3829
|
};
|
|
3829
3830
|
|
|
3830
3831
|
export type SearchConditionsInput = {
|
|
3831
|
-
conds?:
|
|
3832
|
+
conds?: InputMaybe<ConditionsInput>;
|
|
3832
3833
|
};
|
|
3833
3834
|
|
|
3834
3835
|
export type SearchFolderInput = {
|
|
@@ -3868,22 +3869,22 @@ export type Secret = {
|
|
|
3868
3869
|
};
|
|
3869
3870
|
|
|
3870
3871
|
export type SendMessageInput = {
|
|
3871
|
-
attach?:
|
|
3872
|
-
attachmentId?:
|
|
3873
|
-
attachments?:
|
|
3874
|
-
autoSendTime?:
|
|
3875
|
-
draftId?:
|
|
3876
|
-
emailAddresses?:
|
|
3877
|
-
entityId?:
|
|
3878
|
-
flags?:
|
|
3879
|
-
folderId?:
|
|
3880
|
-
id?:
|
|
3881
|
-
inReplyTo?:
|
|
3882
|
-
inlineAttachments?:
|
|
3883
|
-
mimeParts?:
|
|
3884
|
-
origId?:
|
|
3885
|
-
replyType?:
|
|
3886
|
-
subject?:
|
|
3872
|
+
attach?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
3873
|
+
attachmentId?: InputMaybe<Scalars['ID']>;
|
|
3874
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
3875
|
+
autoSendTime?: InputMaybe<Scalars['Float']>;
|
|
3876
|
+
draftId?: InputMaybe<Scalars['ID']>;
|
|
3877
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
3878
|
+
entityId?: InputMaybe<Scalars['String']>;
|
|
3879
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
3880
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
3881
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3882
|
+
inReplyTo?: InputMaybe<Scalars['String']>;
|
|
3883
|
+
inlineAttachments?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
3884
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
3885
|
+
origId?: InputMaybe<Scalars['ID']>;
|
|
3886
|
+
replyType?: InputMaybe<Scalars['String']>;
|
|
3887
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
3887
3888
|
};
|
|
3888
3889
|
|
|
3889
3890
|
export type SendMessageResponse = {
|
|
@@ -3933,8 +3934,8 @@ export enum ShareInputAction {
|
|
|
3933
3934
|
|
|
3934
3935
|
export type ShareNotificaitonEmailAddressInput = {
|
|
3935
3936
|
address: Scalars['String'];
|
|
3936
|
-
personalName?:
|
|
3937
|
-
type?:
|
|
3937
|
+
personalName?: InputMaybe<Scalars['String']>;
|
|
3938
|
+
type?: InputMaybe<AddressType>;
|
|
3938
3939
|
};
|
|
3939
3940
|
|
|
3940
3941
|
export type ShareNotification = {
|
|
@@ -3944,10 +3945,10 @@ export type ShareNotification = {
|
|
|
3944
3945
|
};
|
|
3945
3946
|
|
|
3946
3947
|
export type ShareNotificationInput = {
|
|
3947
|
-
action?:
|
|
3948
|
+
action?: InputMaybe<ShareInputAction>;
|
|
3948
3949
|
address: ShareNotificaitonEmailAddressInput;
|
|
3949
3950
|
item: ShareNotificationItemInput;
|
|
3950
|
-
notes?:
|
|
3951
|
+
notes?: InputMaybe<Notes>;
|
|
3951
3952
|
};
|
|
3952
3953
|
|
|
3953
3954
|
export type ShareNotificationItemInput = {
|
|
@@ -3968,15 +3969,15 @@ export type SignatureContent = {
|
|
|
3968
3969
|
};
|
|
3969
3970
|
|
|
3970
3971
|
export type SignatureContentInput = {
|
|
3971
|
-
_content?:
|
|
3972
|
-
type?:
|
|
3972
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3973
|
+
type?: InputMaybe<Scalars['String']>;
|
|
3973
3974
|
};
|
|
3974
3975
|
|
|
3975
3976
|
export type SignatureInput = {
|
|
3976
|
-
content?:
|
|
3977
|
-
contentId?:
|
|
3978
|
-
id?:
|
|
3979
|
-
name?:
|
|
3977
|
+
content?: InputMaybe<SignatureContentInput>;
|
|
3978
|
+
contentId?: InputMaybe<Scalars['String']>;
|
|
3979
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3980
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3980
3981
|
};
|
|
3981
3982
|
|
|
3982
3983
|
export type SignatureResponse = {
|
|
@@ -4010,10 +4011,10 @@ export type SizeCondition = {
|
|
|
4010
4011
|
};
|
|
4011
4012
|
|
|
4012
4013
|
export type SizeConditionInput = {
|
|
4013
|
-
index?:
|
|
4014
|
-
negative?:
|
|
4015
|
-
numberComparison?:
|
|
4016
|
-
size?:
|
|
4014
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
4015
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
4016
|
+
numberComparison?: InputMaybe<Scalars['String']>;
|
|
4017
|
+
size?: InputMaybe<Scalars['String']>;
|
|
4017
4018
|
};
|
|
4018
4019
|
|
|
4019
4020
|
export type Skin = {
|
|
@@ -4129,7 +4130,7 @@ export type TagAction = {
|
|
|
4129
4130
|
};
|
|
4130
4131
|
|
|
4131
4132
|
export type TagActionInput = {
|
|
4132
|
-
index?:
|
|
4133
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
4133
4134
|
tagName: Scalars['String'];
|
|
4134
4135
|
};
|
|
4135
4136
|
|
|
@@ -4185,7 +4186,7 @@ export type WhiteBlackAddress = {
|
|
|
4185
4186
|
|
|
4186
4187
|
export type WhiteBlackAddressOpts = {
|
|
4187
4188
|
_content: Scalars['String'];
|
|
4188
|
-
op?:
|
|
4189
|
+
op?: InputMaybe<Scalars['String']>;
|
|
4189
4190
|
};
|
|
4190
4191
|
|
|
4191
4192
|
export type WhiteBlackList = {
|
|
@@ -4200,12 +4201,12 @@ export type WhiteBlackListArr = {
|
|
|
4200
4201
|
};
|
|
4201
4202
|
|
|
4202
4203
|
export type WhiteBlackListArrInput = {
|
|
4203
|
-
addr?:
|
|
4204
|
+
addr?: InputMaybe<Array<InputMaybe<WhiteBlackAddressOpts>>>;
|
|
4204
4205
|
};
|
|
4205
4206
|
|
|
4206
4207
|
export type WhiteBlackListInput = {
|
|
4207
|
-
blackList?:
|
|
4208
|
-
whiteList?:
|
|
4208
|
+
blackList?: InputMaybe<WhiteBlackListArrInput>;
|
|
4209
|
+
whiteList?: InputMaybe<WhiteBlackListArrInput>;
|
|
4209
4210
|
};
|
|
4210
4211
|
|
|
4211
4212
|
export type WkDay = {
|
|
@@ -4216,7 +4217,7 @@ export type WkDay = {
|
|
|
4216
4217
|
|
|
4217
4218
|
export type WkDayInput = {
|
|
4218
4219
|
day: Weekday;
|
|
4219
|
-
ordwk?:
|
|
4220
|
+
ordwk?: InputMaybe<Scalars['Int']>;
|
|
4220
4221
|
};
|
|
4221
4222
|
|
|
4222
4223
|
export type WorkingHours = {
|