@zimbra/api-client 76.0.0 → 78.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +0 -1
- package/.tmp/introspected-schema.json +31072 -0
- package/dist/schema.graphql +5 -0
- package/dist/src/batch-client/index.d.ts +3 -2
- package/dist/src/batch-client/types.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +716 -710
- package/dist/zm-api-js-client.esm.js +387 -66
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +1 -1
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +1 -1
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +1836 -2743
- package/package.json +29 -31
- package/src/batch-client/index.ts +42 -3
- package/src/batch-client/types.ts +1 -0
- package/src/schema/generated-schema-types.ts +716 -710
- package/src/schema/schema.graphql +5 -0
- package/src/utils/normalize-mime-parts.ts +17 -20
- package/src/utils/normalize-otherAttribute-contact.ts +1 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export 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 = {
|
|
@@ -792,6 +793,7 @@ export type ClientInfoAttributes = {
|
|
|
792
793
|
zimbraFeatureResetPasswordStatus?: Maybe<ResetPasswordStatus>;
|
|
793
794
|
zimbraWebClientLoginURL?: Maybe<Scalars['String']>;
|
|
794
795
|
zimbraWebClientLogoutURL?: Maybe<Scalars['String']>;
|
|
796
|
+
zimbraWebClientSkipLogoff?: Maybe<Scalars['Boolean']>;
|
|
795
797
|
};
|
|
796
798
|
|
|
797
799
|
export type ClientInfoType = {
|
|
@@ -800,13 +802,13 @@ export type ClientInfoType = {
|
|
|
800
802
|
};
|
|
801
803
|
|
|
802
804
|
export type ConditionInput = {
|
|
803
|
-
attr?:
|
|
804
|
-
op?:
|
|
805
|
-
value?:
|
|
805
|
+
attr?: InputMaybe<Scalars['String']>;
|
|
806
|
+
op?: InputMaybe<Scalars['String']>;
|
|
807
|
+
value?: InputMaybe<Scalars['String']>;
|
|
806
808
|
};
|
|
807
809
|
|
|
808
810
|
export type ConditionsInput = {
|
|
809
|
-
cond?:
|
|
811
|
+
cond?: InputMaybe<Array<InputMaybe<ConditionInput>>>;
|
|
810
812
|
};
|
|
811
813
|
|
|
812
814
|
export enum ConnectionType {
|
|
@@ -889,6 +891,7 @@ export type ContactAttributes = {
|
|
|
889
891
|
otherURL?: Maybe<Scalars['String']>;
|
|
890
892
|
pager?: Maybe<Scalars['String']>;
|
|
891
893
|
pager2?: Maybe<Scalars['String']>;
|
|
894
|
+
phoneticCompany?: Maybe<Scalars['String']>;
|
|
892
895
|
phoneticFirstName?: Maybe<Scalars['String']>;
|
|
893
896
|
phoneticLastName?: Maybe<Scalars['String']>;
|
|
894
897
|
thumbnailPhoto?: Maybe<Scalars['String']>;
|
|
@@ -911,78 +914,79 @@ export type ContactAttributes = {
|
|
|
911
914
|
};
|
|
912
915
|
|
|
913
916
|
export type ContactAttrsInput = {
|
|
914
|
-
anniversary?:
|
|
915
|
-
assistantPhone?:
|
|
916
|
-
birthday?:
|
|
917
|
-
callbackPhone?:
|
|
918
|
-
carPhone?:
|
|
919
|
-
company?:
|
|
920
|
-
companyPhone?:
|
|
921
|
-
companyPhone2?:
|
|
922
|
-
department?:
|
|
923
|
-
email?:
|
|
924
|
-
email2?:
|
|
925
|
-
fileAs?:
|
|
926
|
-
firstName?:
|
|
927
|
-
fullName?:
|
|
928
|
-
homeCity?:
|
|
929
|
-
homeCountry?:
|
|
930
|
-
homeEmail?:
|
|
931
|
-
homeEmail2?:
|
|
932
|
-
homeFax?:
|
|
933
|
-
homeFax2?:
|
|
934
|
-
homePhone?:
|
|
935
|
-
homePhone2?:
|
|
936
|
-
homePostalCode?:
|
|
937
|
-
homeState?:
|
|
938
|
-
homeStreet?:
|
|
939
|
-
homeURL?:
|
|
940
|
-
imAddress?:
|
|
941
|
-
imAddress1?:
|
|
942
|
-
imAddress2?:
|
|
943
|
-
imAddress3?:
|
|
944
|
-
imAddress4?:
|
|
945
|
-
imAddress5?:
|
|
946
|
-
image?:
|
|
947
|
-
jobTitle?:
|
|
948
|
-
lastName?:
|
|
949
|
-
maidenName?:
|
|
950
|
-
middleName?:
|
|
951
|
-
mobilePhone?:
|
|
952
|
-
mobilePhone2?:
|
|
953
|
-
namePrefix?:
|
|
954
|
-
nameSuffix?:
|
|
955
|
-
nickname?:
|
|
956
|
-
notes?:
|
|
957
|
-
other?:
|
|
958
|
-
otherCity?:
|
|
959
|
-
otherCountry?:
|
|
960
|
-
otherFax?:
|
|
961
|
-
otherPhone?:
|
|
962
|
-
otherPhone2?:
|
|
963
|
-
otherPostalCode?:
|
|
964
|
-
otherState?:
|
|
965
|
-
otherStreet?:
|
|
966
|
-
otherURL?:
|
|
967
|
-
pager?:
|
|
968
|
-
pager2?:
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
917
|
+
anniversary?: InputMaybe<Scalars['String']>;
|
|
918
|
+
assistantPhone?: InputMaybe<Scalars['String']>;
|
|
919
|
+
birthday?: InputMaybe<Scalars['String']>;
|
|
920
|
+
callbackPhone?: InputMaybe<Scalars['String']>;
|
|
921
|
+
carPhone?: InputMaybe<Scalars['String']>;
|
|
922
|
+
company?: InputMaybe<Scalars['String']>;
|
|
923
|
+
companyPhone?: InputMaybe<Scalars['String']>;
|
|
924
|
+
companyPhone2?: InputMaybe<Scalars['String']>;
|
|
925
|
+
department?: InputMaybe<Scalars['String']>;
|
|
926
|
+
email?: InputMaybe<Scalars['String']>;
|
|
927
|
+
email2?: InputMaybe<Scalars['String']>;
|
|
928
|
+
fileAs?: InputMaybe<Scalars['String']>;
|
|
929
|
+
firstName?: InputMaybe<Scalars['String']>;
|
|
930
|
+
fullName?: InputMaybe<Scalars['String']>;
|
|
931
|
+
homeCity?: InputMaybe<Scalars['String']>;
|
|
932
|
+
homeCountry?: InputMaybe<Scalars['String']>;
|
|
933
|
+
homeEmail?: InputMaybe<Scalars['String']>;
|
|
934
|
+
homeEmail2?: InputMaybe<Scalars['String']>;
|
|
935
|
+
homeFax?: InputMaybe<Scalars['String']>;
|
|
936
|
+
homeFax2?: InputMaybe<Scalars['String']>;
|
|
937
|
+
homePhone?: InputMaybe<Scalars['String']>;
|
|
938
|
+
homePhone2?: InputMaybe<Scalars['String']>;
|
|
939
|
+
homePostalCode?: InputMaybe<Scalars['String']>;
|
|
940
|
+
homeState?: InputMaybe<Scalars['String']>;
|
|
941
|
+
homeStreet?: InputMaybe<Scalars['String']>;
|
|
942
|
+
homeURL?: InputMaybe<Scalars['String']>;
|
|
943
|
+
imAddress?: InputMaybe<Scalars['String']>;
|
|
944
|
+
imAddress1?: InputMaybe<Scalars['String']>;
|
|
945
|
+
imAddress2?: InputMaybe<Scalars['String']>;
|
|
946
|
+
imAddress3?: InputMaybe<Scalars['String']>;
|
|
947
|
+
imAddress4?: InputMaybe<Scalars['String']>;
|
|
948
|
+
imAddress5?: InputMaybe<Scalars['String']>;
|
|
949
|
+
image?: InputMaybe<Scalars['String']>;
|
|
950
|
+
jobTitle?: InputMaybe<Scalars['String']>;
|
|
951
|
+
lastName?: InputMaybe<Scalars['String']>;
|
|
952
|
+
maidenName?: InputMaybe<Scalars['String']>;
|
|
953
|
+
middleName?: InputMaybe<Scalars['String']>;
|
|
954
|
+
mobilePhone?: InputMaybe<Scalars['String']>;
|
|
955
|
+
mobilePhone2?: InputMaybe<Scalars['String']>;
|
|
956
|
+
namePrefix?: InputMaybe<Scalars['String']>;
|
|
957
|
+
nameSuffix?: InputMaybe<Scalars['String']>;
|
|
958
|
+
nickname?: InputMaybe<Scalars['String']>;
|
|
959
|
+
notes?: InputMaybe<Scalars['String']>;
|
|
960
|
+
other?: InputMaybe<Array<InputMaybe<OtherContactAttributeInput>>>;
|
|
961
|
+
otherCity?: InputMaybe<Scalars['String']>;
|
|
962
|
+
otherCountry?: InputMaybe<Scalars['String']>;
|
|
963
|
+
otherFax?: InputMaybe<Scalars['String']>;
|
|
964
|
+
otherPhone?: InputMaybe<Scalars['String']>;
|
|
965
|
+
otherPhone2?: InputMaybe<Scalars['String']>;
|
|
966
|
+
otherPostalCode?: InputMaybe<Scalars['String']>;
|
|
967
|
+
otherState?: InputMaybe<Scalars['String']>;
|
|
968
|
+
otherStreet?: InputMaybe<Scalars['String']>;
|
|
969
|
+
otherURL?: InputMaybe<Scalars['String']>;
|
|
970
|
+
pager?: InputMaybe<Scalars['String']>;
|
|
971
|
+
pager2?: InputMaybe<Scalars['String']>;
|
|
972
|
+
phoneticCompany?: InputMaybe<Scalars['String']>;
|
|
973
|
+
phoneticFirstName?: InputMaybe<Scalars['String']>;
|
|
974
|
+
phoneticLastName?: InputMaybe<Scalars['String']>;
|
|
975
|
+
type?: InputMaybe<Scalars['String']>;
|
|
976
|
+
userCertificate?: InputMaybe<Scalars['String']>;
|
|
977
|
+
website?: InputMaybe<Scalars['String']>;
|
|
978
|
+
workCity?: InputMaybe<Scalars['String']>;
|
|
979
|
+
workCountry?: InputMaybe<Scalars['String']>;
|
|
980
|
+
workEmail?: InputMaybe<Scalars['String']>;
|
|
981
|
+
workEmail2?: InputMaybe<Scalars['String']>;
|
|
982
|
+
workFax?: InputMaybe<Scalars['String']>;
|
|
983
|
+
workFax2?: InputMaybe<Scalars['String']>;
|
|
984
|
+
workPhone?: InputMaybe<Scalars['String']>;
|
|
985
|
+
workPhone2?: InputMaybe<Scalars['String']>;
|
|
986
|
+
workPostalCode?: InputMaybe<Scalars['String']>;
|
|
987
|
+
workState?: InputMaybe<Scalars['String']>;
|
|
988
|
+
workStreet?: InputMaybe<Scalars['String']>;
|
|
989
|
+
workURL?: InputMaybe<Scalars['String']>;
|
|
986
990
|
};
|
|
987
991
|
|
|
988
992
|
export type ContactFrequencyData = {
|
|
@@ -1069,28 +1073,28 @@ export type ConversationCondition = {
|
|
|
1069
1073
|
};
|
|
1070
1074
|
|
|
1071
1075
|
export type ConversationConditionInput = {
|
|
1072
|
-
index?:
|
|
1073
|
-
negative?:
|
|
1074
|
-
where?:
|
|
1076
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1077
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1078
|
+
where?: InputMaybe<Scalars['String']>;
|
|
1075
1079
|
};
|
|
1076
1080
|
|
|
1077
1081
|
export type CounterAppointmentInput = {
|
|
1078
|
-
componentNum?:
|
|
1082
|
+
componentNum?: InputMaybe<Scalars['Int']>;
|
|
1079
1083
|
id: Scalars['ID'];
|
|
1080
1084
|
message: CounterAppointmentMessageInput;
|
|
1081
|
-
modifiedSequence?:
|
|
1082
|
-
revision?:
|
|
1085
|
+
modifiedSequence?: InputMaybe<Scalars['Float']>;
|
|
1086
|
+
revision?: InputMaybe<Scalars['Float']>;
|
|
1083
1087
|
};
|
|
1084
1088
|
|
|
1085
1089
|
export type CounterAppointmentMessageInput = {
|
|
1086
|
-
attachments?:
|
|
1087
|
-
emailAddresses?:
|
|
1088
|
-
folderId?:
|
|
1089
|
-
invitations?:
|
|
1090
|
-
mimeParts?:
|
|
1091
|
-
origId?:
|
|
1092
|
-
replyType?:
|
|
1093
|
-
subject?:
|
|
1090
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
1091
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
1092
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1093
|
+
invitations?: InputMaybe<CalendarCounterAppointmentInput>;
|
|
1094
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
1095
|
+
origId?: InputMaybe<Scalars['ID']>;
|
|
1096
|
+
replyType?: InputMaybe<InviteReplyType>;
|
|
1097
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
1094
1098
|
};
|
|
1095
1099
|
|
|
1096
1100
|
export type CreateAppSpecificPasswordResponse = {
|
|
@@ -1100,21 +1104,21 @@ export type CreateAppSpecificPasswordResponse = {
|
|
|
1100
1104
|
|
|
1101
1105
|
export type CreateContactInput = {
|
|
1102
1106
|
attributes: ContactAttrsInput;
|
|
1103
|
-
folderId?:
|
|
1104
|
-
tagNames?:
|
|
1107
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1108
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
1105
1109
|
};
|
|
1106
1110
|
|
|
1107
1111
|
export type CreateIdentityInput = {
|
|
1108
|
-
attrs?:
|
|
1112
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
1109
1113
|
name: Scalars['String'];
|
|
1110
1114
|
};
|
|
1111
1115
|
|
|
1112
1116
|
export type CreateMountpointInput = {
|
|
1113
|
-
link?:
|
|
1117
|
+
link?: InputMaybe<NewMountpointSpec>;
|
|
1114
1118
|
};
|
|
1115
1119
|
|
|
1116
1120
|
export type CreateTagInput = {
|
|
1117
|
-
color?:
|
|
1121
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
1118
1122
|
name: Scalars['String'];
|
|
1119
1123
|
};
|
|
1120
1124
|
|
|
@@ -1124,10 +1128,10 @@ export type CsrfToken = {
|
|
|
1124
1128
|
};
|
|
1125
1129
|
|
|
1126
1130
|
export type Cursor = {
|
|
1127
|
-
endSortVal?:
|
|
1128
|
-
id?:
|
|
1129
|
-
includeOffset?:
|
|
1130
|
-
sortVal?:
|
|
1131
|
+
endSortVal?: InputMaybe<Scalars['String']>;
|
|
1132
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1133
|
+
includeOffset?: InputMaybe<Scalars['Boolean']>;
|
|
1134
|
+
sortVal?: InputMaybe<Scalars['String']>;
|
|
1131
1135
|
};
|
|
1132
1136
|
|
|
1133
1137
|
export type CustomMetadata = {
|
|
@@ -1142,14 +1146,14 @@ export type CustomMetadataAttrs = {
|
|
|
1142
1146
|
};
|
|
1143
1147
|
|
|
1144
1148
|
export type CustomMetadataAttrsInput = {
|
|
1145
|
-
key?:
|
|
1146
|
-
value?:
|
|
1149
|
+
key?: InputMaybe<Scalars['String']>;
|
|
1150
|
+
value?: InputMaybe<Scalars['String']>;
|
|
1147
1151
|
};
|
|
1148
1152
|
|
|
1149
1153
|
export type CustomMetadataInput = {
|
|
1150
|
-
attrs?:
|
|
1154
|
+
attrs?: InputMaybe<Array<InputMaybe<CustomMetadataAttrsInput>>>;
|
|
1151
1155
|
id: Scalars['ID'];
|
|
1152
|
-
section?:
|
|
1156
|
+
section?: InputMaybe<Scalars['String']>;
|
|
1153
1157
|
};
|
|
1154
1158
|
|
|
1155
1159
|
export type CustomMetadataMeta = {
|
|
@@ -1199,23 +1203,23 @@ export type DateCondition = {
|
|
|
1199
1203
|
};
|
|
1200
1204
|
|
|
1201
1205
|
export type DateConditionInput = {
|
|
1202
|
-
date?:
|
|
1203
|
-
dateComparison?:
|
|
1204
|
-
index?:
|
|
1205
|
-
negative?:
|
|
1206
|
+
date?: InputMaybe<Scalars['Float']>;
|
|
1207
|
+
dateComparison?: InputMaybe<Scalars['String']>;
|
|
1208
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1209
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1206
1210
|
};
|
|
1207
1211
|
|
|
1208
1212
|
export type DeleteAppointmentInput = {
|
|
1209
1213
|
componentNum: Scalars['Int'];
|
|
1210
|
-
instanceDate?:
|
|
1214
|
+
instanceDate?: InputMaybe<InstanceDate>;
|
|
1211
1215
|
inviteId: Scalars['String'];
|
|
1212
|
-
message?:
|
|
1213
|
-
start?:
|
|
1216
|
+
message?: InputMaybe<CalendarItemMessageInput>;
|
|
1217
|
+
start?: InputMaybe<Scalars['Int']>;
|
|
1214
1218
|
};
|
|
1215
1219
|
|
|
1216
1220
|
export type DeleteIdentityInput = {
|
|
1217
1221
|
id: Scalars['ID'];
|
|
1218
|
-
name?:
|
|
1222
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1219
1223
|
};
|
|
1220
1224
|
|
|
1221
1225
|
export type Device = {
|
|
@@ -1234,7 +1238,7 @@ export type Device = {
|
|
|
1234
1238
|
};
|
|
1235
1239
|
|
|
1236
1240
|
export type DiscoverRightInput = {
|
|
1237
|
-
_content?:
|
|
1241
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
1238
1242
|
};
|
|
1239
1243
|
|
|
1240
1244
|
export type DiscoverRights = {
|
|
@@ -1293,7 +1297,7 @@ export type DocumentActionData = {
|
|
|
1293
1297
|
};
|
|
1294
1298
|
|
|
1295
1299
|
export type DocumentInput = {
|
|
1296
|
-
id?:
|
|
1300
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1297
1301
|
};
|
|
1298
1302
|
|
|
1299
1303
|
export type DtTimeInfo = {
|
|
@@ -1304,7 +1308,7 @@ export type DtTimeInfo = {
|
|
|
1304
1308
|
};
|
|
1305
1309
|
|
|
1306
1310
|
export type EmlInput = {
|
|
1307
|
-
id?:
|
|
1311
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1308
1312
|
};
|
|
1309
1313
|
|
|
1310
1314
|
export type EmailAddress = {
|
|
@@ -1322,11 +1326,12 @@ export type EmailAddressInput = {
|
|
|
1322
1326
|
};
|
|
1323
1327
|
|
|
1324
1328
|
export type EnableTwoFactorAuthInput = {
|
|
1325
|
-
authToken?:
|
|
1329
|
+
authToken?: InputMaybe<Scalars['String']>;
|
|
1326
1330
|
csrfTokenSecured: Scalars['Boolean'];
|
|
1331
|
+
ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
|
|
1327
1332
|
name: Scalars['String'];
|
|
1328
|
-
password?:
|
|
1329
|
-
twoFactorCode?:
|
|
1333
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1334
|
+
twoFactorCode?: InputMaybe<Scalars['String']>;
|
|
1330
1335
|
};
|
|
1331
1336
|
|
|
1332
1337
|
export type EnableTwoFactorAuthResponse = {
|
|
@@ -1354,16 +1359,16 @@ export type ExcludeRecurrenceInfo = {
|
|
|
1354
1359
|
};
|
|
1355
1360
|
|
|
1356
1361
|
export type ExistingAttachmentInput = {
|
|
1357
|
-
messageId?:
|
|
1358
|
-
part?:
|
|
1362
|
+
messageId?: InputMaybe<Scalars['ID']>;
|
|
1363
|
+
part?: InputMaybe<Scalars['String']>;
|
|
1359
1364
|
};
|
|
1360
1365
|
|
|
1361
1366
|
export type ExternalAccount = {
|
|
1362
|
-
accountType?:
|
|
1363
|
-
connectionType?:
|
|
1367
|
+
accountType?: InputMaybe<AccountType>;
|
|
1368
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1364
1369
|
host: Scalars['String'];
|
|
1365
1370
|
id: Scalars['ID'];
|
|
1366
|
-
isEnabled?:
|
|
1371
|
+
isEnabled?: InputMaybe<Scalars['Int']>;
|
|
1367
1372
|
name: Scalars['String'];
|
|
1368
1373
|
password: Scalars['String'];
|
|
1369
1374
|
port: Scalars['String'];
|
|
@@ -1371,13 +1376,13 @@ export type ExternalAccount = {
|
|
|
1371
1376
|
};
|
|
1372
1377
|
|
|
1373
1378
|
export type ExternalAccountAddInput = {
|
|
1374
|
-
accountType?:
|
|
1375
|
-
connectionType?:
|
|
1376
|
-
emailAddress?:
|
|
1379
|
+
accountType?: InputMaybe<AccountType>;
|
|
1380
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1381
|
+
emailAddress?: InputMaybe<Scalars['String']>;
|
|
1377
1382
|
host: Scalars['String'];
|
|
1378
|
-
isEnabled?:
|
|
1383
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1379
1384
|
l: Scalars['ID'];
|
|
1380
|
-
leaveOnServer?:
|
|
1385
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1381
1386
|
name: Scalars['String'];
|
|
1382
1387
|
password: Scalars['String'];
|
|
1383
1388
|
port: Scalars['String'];
|
|
@@ -1385,42 +1390,42 @@ export type ExternalAccountAddInput = {
|
|
|
1385
1390
|
};
|
|
1386
1391
|
|
|
1387
1392
|
export type ExternalAccountImportInput = {
|
|
1388
|
-
accountType?:
|
|
1393
|
+
accountType?: InputMaybe<AccountType>;
|
|
1389
1394
|
id: Scalars['ID'];
|
|
1390
1395
|
};
|
|
1391
1396
|
|
|
1392
1397
|
export type ExternalAccountModifyAttrsInput = {
|
|
1393
|
-
accountType?:
|
|
1394
|
-
connectionType?:
|
|
1395
|
-
defaultSignature?:
|
|
1396
|
-
description?:
|
|
1397
|
-
forwardReplySignature?:
|
|
1398
|
-
fromDisplay?:
|
|
1399
|
-
host?:
|
|
1400
|
-
id?:
|
|
1401
|
-
importOnly?:
|
|
1402
|
-
isEnabled?:
|
|
1398
|
+
accountType?: InputMaybe<AccountType>;
|
|
1399
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1400
|
+
defaultSignature?: InputMaybe<Scalars['ID']>;
|
|
1401
|
+
description?: InputMaybe<Scalars['String']>;
|
|
1402
|
+
forwardReplySignature?: InputMaybe<Scalars['ID']>;
|
|
1403
|
+
fromDisplay?: InputMaybe<Scalars['String']>;
|
|
1404
|
+
host?: InputMaybe<Scalars['String']>;
|
|
1405
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1406
|
+
importOnly?: InputMaybe<Scalars['Boolean']>;
|
|
1407
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1403
1408
|
l: Scalars['ID'];
|
|
1404
|
-
leaveOnServer?:
|
|
1405
|
-
name?:
|
|
1406
|
-
password?:
|
|
1407
|
-
port?:
|
|
1408
|
-
replyToAddress?:
|
|
1409
|
-
replyToDisplay?:
|
|
1410
|
-
replyToEnabled?:
|
|
1411
|
-
signatureValue?:
|
|
1412
|
-
smtpPort?:
|
|
1413
|
-
storeAndForward?:
|
|
1414
|
-
useAddressForForwardReply?:
|
|
1415
|
-
username?:
|
|
1409
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1410
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1411
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1412
|
+
port?: InputMaybe<Scalars['String']>;
|
|
1413
|
+
replyToAddress?: InputMaybe<Scalars['String']>;
|
|
1414
|
+
replyToDisplay?: InputMaybe<Scalars['String']>;
|
|
1415
|
+
replyToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1416
|
+
signatureValue?: InputMaybe<Scalars['String']>;
|
|
1417
|
+
smtpPort?: InputMaybe<Scalars['String']>;
|
|
1418
|
+
storeAndForward?: InputMaybe<Scalars['String']>;
|
|
1419
|
+
useAddressForForwardReply?: InputMaybe<Scalars['Boolean']>;
|
|
1420
|
+
username?: InputMaybe<Scalars['String']>;
|
|
1416
1421
|
};
|
|
1417
1422
|
|
|
1418
1423
|
export type ExternalAccountTestInput = {
|
|
1419
|
-
accountType?:
|
|
1420
|
-
connectionType?:
|
|
1421
|
-
emailAddress?:
|
|
1424
|
+
accountType?: InputMaybe<AccountType>;
|
|
1425
|
+
connectionType?: InputMaybe<ConnectionType>;
|
|
1426
|
+
emailAddress?: InputMaybe<Scalars['String']>;
|
|
1422
1427
|
host: Scalars['String'];
|
|
1423
|
-
leaveOnServer?:
|
|
1428
|
+
leaveOnServer?: InputMaybe<Scalars['Boolean']>;
|
|
1424
1429
|
password: Scalars['String'];
|
|
1425
1430
|
port: Scalars['String'];
|
|
1426
1431
|
username: Scalars['String'];
|
|
@@ -1440,9 +1445,9 @@ export type FileIntoAction = {
|
|
|
1440
1445
|
};
|
|
1441
1446
|
|
|
1442
1447
|
export type FileIntoActionInput = {
|
|
1443
|
-
copy?:
|
|
1444
|
-
folderPath?:
|
|
1445
|
-
index?:
|
|
1448
|
+
copy?: InputMaybe<Scalars['Boolean']>;
|
|
1449
|
+
folderPath?: InputMaybe<Scalars['String']>;
|
|
1450
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1446
1451
|
};
|
|
1447
1452
|
|
|
1448
1453
|
export type Filter = {
|
|
@@ -1467,15 +1472,15 @@ export type FilterAction = {
|
|
|
1467
1472
|
};
|
|
1468
1473
|
|
|
1469
1474
|
export type FilterActionInput = {
|
|
1470
|
-
discard?:
|
|
1471
|
-
fileInto?:
|
|
1472
|
-
flag?:
|
|
1473
|
-
keep?:
|
|
1474
|
-
notify?:
|
|
1475
|
-
redirect?:
|
|
1476
|
-
reply?:
|
|
1477
|
-
stop?:
|
|
1478
|
-
tag?:
|
|
1475
|
+
discard?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1476
|
+
fileInto?: InputMaybe<Array<InputMaybe<FileIntoActionInput>>>;
|
|
1477
|
+
flag?: InputMaybe<Array<InputMaybe<FlagActionInput>>>;
|
|
1478
|
+
keep?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1479
|
+
notify?: InputMaybe<Array<InputMaybe<NotifyActionInput>>>;
|
|
1480
|
+
redirect?: InputMaybe<Array<InputMaybe<RedirectActionInput>>>;
|
|
1481
|
+
reply?: InputMaybe<Array<InputMaybe<ReplyActionInput>>>;
|
|
1482
|
+
stop?: InputMaybe<Array<InputMaybe<BasicActionInput>>>;
|
|
1483
|
+
tag?: InputMaybe<Array<InputMaybe<TagActionInput>>>;
|
|
1479
1484
|
};
|
|
1480
1485
|
|
|
1481
1486
|
export type FilterCondition = {
|
|
@@ -1507,36 +1512,36 @@ export type FilterCondition = {
|
|
|
1507
1512
|
};
|
|
1508
1513
|
|
|
1509
1514
|
export type FilterConditionInput = {
|
|
1510
|
-
address?:
|
|
1511
|
-
addressBook?:
|
|
1515
|
+
address?: InputMaybe<Array<InputMaybe<AddressConditionInput>>>;
|
|
1516
|
+
addressBook?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1512
1517
|
allOrAny: FilterMatchCondition;
|
|
1513
|
-
attachment?:
|
|
1514
|
-
body?:
|
|
1515
|
-
bulk?:
|
|
1516
|
-
communityConnections?:
|
|
1517
|
-
communityContent?:
|
|
1518
|
-
communityRequests?:
|
|
1519
|
-
contactRanking?:
|
|
1520
|
-
conversation?:
|
|
1521
|
-
date?:
|
|
1522
|
-
facebook?:
|
|
1523
|
-
flag?:
|
|
1524
|
-
header?:
|
|
1525
|
-
headerExists?:
|
|
1526
|
-
importance?:
|
|
1527
|
-
invite?:
|
|
1528
|
-
linkedin?:
|
|
1529
|
-
list?:
|
|
1530
|
-
me?:
|
|
1531
|
-
mimeHeader?:
|
|
1532
|
-
size?:
|
|
1533
|
-
twitter?:
|
|
1518
|
+
attachment?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1519
|
+
body?: InputMaybe<Array<InputMaybe<BodyConditionInput>>>;
|
|
1520
|
+
bulk?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1521
|
+
communityConnections?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1522
|
+
communityContent?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1523
|
+
communityRequests?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1524
|
+
contactRanking?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1525
|
+
conversation?: InputMaybe<Array<InputMaybe<ConversationConditionInput>>>;
|
|
1526
|
+
date?: InputMaybe<Array<InputMaybe<DateConditionInput>>>;
|
|
1527
|
+
facebook?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1528
|
+
flag?: InputMaybe<Array<InputMaybe<FlagConditionInput>>>;
|
|
1529
|
+
header?: InputMaybe<Array<InputMaybe<HeaderConditionInput>>>;
|
|
1530
|
+
headerExists?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1531
|
+
importance?: InputMaybe<Array<InputMaybe<ImportanceConditionInput>>>;
|
|
1532
|
+
invite?: InputMaybe<Array<InputMaybe<InviteConditionInput>>>;
|
|
1533
|
+
linkedin?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1534
|
+
list?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1535
|
+
me?: InputMaybe<Array<InputMaybe<HeaderCheckConditionInput>>>;
|
|
1536
|
+
mimeHeader?: InputMaybe<Array<InputMaybe<MimeHeaderConditionInput>>>;
|
|
1537
|
+
size?: InputMaybe<Array<InputMaybe<SizeConditionInput>>>;
|
|
1538
|
+
twitter?: InputMaybe<Array<InputMaybe<BasicConditionInput>>>;
|
|
1534
1539
|
};
|
|
1535
1540
|
|
|
1536
1541
|
export type FilterInput = {
|
|
1537
|
-
actions?:
|
|
1542
|
+
actions?: InputMaybe<Array<InputMaybe<FilterActionInput>>>;
|
|
1538
1543
|
active: Scalars['Boolean'];
|
|
1539
|
-
conditions?:
|
|
1544
|
+
conditions?: InputMaybe<Array<InputMaybe<FilterConditionInput>>>;
|
|
1540
1545
|
name: Scalars['String'];
|
|
1541
1546
|
};
|
|
1542
1547
|
|
|
@@ -1556,8 +1561,8 @@ export type FlagAction = {
|
|
|
1556
1561
|
};
|
|
1557
1562
|
|
|
1558
1563
|
export type FlagActionInput = {
|
|
1559
|
-
flagName?:
|
|
1560
|
-
index?:
|
|
1564
|
+
flagName?: InputMaybe<Scalars['String']>;
|
|
1565
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1561
1566
|
};
|
|
1562
1567
|
|
|
1563
1568
|
export type FlagCondition = {
|
|
@@ -1569,8 +1574,8 @@ export type FlagCondition = {
|
|
|
1569
1574
|
|
|
1570
1575
|
export type FlagConditionInput = {
|
|
1571
1576
|
flagName: Scalars['String'];
|
|
1572
|
-
index?:
|
|
1573
|
-
negative?:
|
|
1577
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1578
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1574
1579
|
};
|
|
1575
1580
|
|
|
1576
1581
|
export type Folder = {
|
|
@@ -1613,23 +1618,23 @@ export type FolderActionChangeColorInput = {
|
|
|
1613
1618
|
|
|
1614
1619
|
export type FolderActionCheckCalendarInput = {
|
|
1615
1620
|
id: Scalars['ID'];
|
|
1616
|
-
value?:
|
|
1621
|
+
value?: InputMaybe<Scalars['Boolean']>;
|
|
1617
1622
|
};
|
|
1618
1623
|
|
|
1619
1624
|
export type FolderActionInput = {
|
|
1620
|
-
color?:
|
|
1621
|
-
folderId?:
|
|
1622
|
-
grant?:
|
|
1625
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
1626
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1627
|
+
grant?: InputMaybe<Array<InputMaybe<GrantInput>>>;
|
|
1623
1628
|
id: Scalars['ID'];
|
|
1624
|
-
name?:
|
|
1629
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1625
1630
|
op: Scalars['String'];
|
|
1626
|
-
zimbraId?:
|
|
1631
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
1627
1632
|
};
|
|
1628
1633
|
|
|
1629
1634
|
export type FolderQueryInput = {
|
|
1630
|
-
id?:
|
|
1631
|
-
uuid?:
|
|
1632
|
-
view?:
|
|
1635
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1636
|
+
uuid?: InputMaybe<Scalars['ID']>;
|
|
1637
|
+
view?: InputMaybe<FolderView>;
|
|
1633
1638
|
};
|
|
1634
1639
|
|
|
1635
1640
|
export enum FolderView {
|
|
@@ -1652,7 +1657,7 @@ export enum FolderView {
|
|
|
1652
1657
|
}
|
|
1653
1658
|
|
|
1654
1659
|
export type ForwardAppointmentInput = {
|
|
1655
|
-
exceptId?:
|
|
1660
|
+
exceptId?: InputMaybe<ForwardExceptIdInput>;
|
|
1656
1661
|
id: Scalars['ID'];
|
|
1657
1662
|
message: ForwardMessageInput;
|
|
1658
1663
|
};
|
|
@@ -1668,9 +1673,9 @@ export type ForwardExceptIdInput = {
|
|
|
1668
1673
|
};
|
|
1669
1674
|
|
|
1670
1675
|
export type ForwardMessageInput = {
|
|
1671
|
-
emailAddresses?:
|
|
1672
|
-
mimeParts?:
|
|
1673
|
-
subject?:
|
|
1676
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
1677
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
1678
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
1674
1679
|
};
|
|
1675
1680
|
|
|
1676
1681
|
export type FreeBusy = {
|
|
@@ -1709,10 +1714,10 @@ export type GetAppointmentResponse = {
|
|
|
1709
1714
|
};
|
|
1710
1715
|
|
|
1711
1716
|
export type GetDocumentShareUrlItemInput = {
|
|
1712
|
-
folderId?:
|
|
1713
|
-
id?:
|
|
1714
|
-
name?:
|
|
1715
|
-
path?:
|
|
1717
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
1718
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1719
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1720
|
+
path?: InputMaybe<Scalars['String']>;
|
|
1716
1721
|
};
|
|
1717
1722
|
|
|
1718
1723
|
export type GetDocumentShareUrlResponse = {
|
|
@@ -1721,13 +1726,13 @@ export type GetDocumentShareUrlResponse = {
|
|
|
1721
1726
|
};
|
|
1722
1727
|
|
|
1723
1728
|
export type GetFolderFolderInput = {
|
|
1724
|
-
parentFolderId?:
|
|
1725
|
-
path?:
|
|
1726
|
-
uuid?:
|
|
1729
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
1730
|
+
path?: InputMaybe<Scalars['String']>;
|
|
1731
|
+
uuid?: InputMaybe<Scalars['ID']>;
|
|
1727
1732
|
};
|
|
1728
1733
|
|
|
1729
1734
|
export type GetRightsInput = {
|
|
1730
|
-
access?:
|
|
1735
|
+
access?: InputMaybe<Array<InputMaybe<Right>>>;
|
|
1731
1736
|
};
|
|
1732
1737
|
|
|
1733
1738
|
export type GetTrustedDevicesResponse = {
|
|
@@ -1737,22 +1742,22 @@ export type GetTrustedDevicesResponse = {
|
|
|
1737
1742
|
};
|
|
1738
1743
|
|
|
1739
1744
|
export type GrantInput = {
|
|
1740
|
-
address?:
|
|
1745
|
+
address?: InputMaybe<Scalars['String']>;
|
|
1741
1746
|
granteeType: GranteeType;
|
|
1742
|
-
key?:
|
|
1743
|
-
password?:
|
|
1747
|
+
key?: InputMaybe<Scalars['String']>;
|
|
1748
|
+
password?: InputMaybe<Scalars['String']>;
|
|
1744
1749
|
permissions: Scalars['String'];
|
|
1745
|
-
zimbraId?:
|
|
1750
|
+
zimbraId?: InputMaybe<Scalars['ID']>;
|
|
1746
1751
|
};
|
|
1747
1752
|
|
|
1748
1753
|
export type GrantRightsInput = {
|
|
1749
|
-
access?:
|
|
1754
|
+
access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
|
|
1750
1755
|
};
|
|
1751
1756
|
|
|
1752
1757
|
export type Grantee = {
|
|
1753
|
-
id?:
|
|
1754
|
-
name?:
|
|
1755
|
-
type?:
|
|
1758
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1759
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1760
|
+
type?: InputMaybe<Scalars['String']>;
|
|
1756
1761
|
};
|
|
1757
1762
|
|
|
1758
1763
|
export enum GranteeType {
|
|
@@ -1805,8 +1810,8 @@ export type HeaderCheckCondition = {
|
|
|
1805
1810
|
|
|
1806
1811
|
export type HeaderCheckConditionInput = {
|
|
1807
1812
|
header: Scalars['String'];
|
|
1808
|
-
index?:
|
|
1809
|
-
negative?:
|
|
1813
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1814
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1810
1815
|
};
|
|
1811
1816
|
|
|
1812
1817
|
export type HeaderCondition = {
|
|
@@ -1822,14 +1827,14 @@ export type HeaderCondition = {
|
|
|
1822
1827
|
};
|
|
1823
1828
|
|
|
1824
1829
|
export type HeaderConditionInput = {
|
|
1825
|
-
caseSensitive?:
|
|
1826
|
-
countComparison?:
|
|
1827
|
-
header?:
|
|
1828
|
-
index?:
|
|
1829
|
-
negative?:
|
|
1830
|
-
stringComparison?:
|
|
1831
|
-
value?:
|
|
1832
|
-
valueComparison?:
|
|
1830
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
1831
|
+
countComparison?: InputMaybe<Scalars['String']>;
|
|
1832
|
+
header?: InputMaybe<Scalars['String']>;
|
|
1833
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1834
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1835
|
+
stringComparison?: InputMaybe<Scalars['String']>;
|
|
1836
|
+
value?: InputMaybe<Scalars['String']>;
|
|
1837
|
+
valueComparison?: InputMaybe<Scalars['String']>;
|
|
1833
1838
|
};
|
|
1834
1839
|
|
|
1835
1840
|
export type Hit = {
|
|
@@ -1873,23 +1878,23 @@ export type IdentityAttrs = {
|
|
|
1873
1878
|
};
|
|
1874
1879
|
|
|
1875
1880
|
export type IdentityAttrsInput = {
|
|
1876
|
-
zimbraPrefDefaultSignatureId?:
|
|
1877
|
-
zimbraPrefForwardReplyFormat?:
|
|
1878
|
-
zimbraPrefForwardReplySignatureId?:
|
|
1879
|
-
zimbraPrefFromAddress?:
|
|
1880
|
-
zimbraPrefFromAddressType?:
|
|
1881
|
-
zimbraPrefFromDisplay?:
|
|
1882
|
-
zimbraPrefIdentityId?:
|
|
1883
|
-
zimbraPrefIdentityName?:
|
|
1884
|
-
zimbraPrefMailSignatureStyle?:
|
|
1885
|
-
zimbraPrefReplyToAddress?:
|
|
1886
|
-
zimbraPrefReplyToDisplay?:
|
|
1887
|
-
zimbraPrefReplyToEnabled?:
|
|
1888
|
-
zimbraPrefSentMailFolder?:
|
|
1889
|
-
zimbraPrefWhenInFolderIds?:
|
|
1890
|
-
zimbraPrefWhenInFoldersEnabled?:
|
|
1891
|
-
zimbraPrefWhenSentToAddresses?:
|
|
1892
|
-
zimbraPrefWhenSentToEnabled?:
|
|
1881
|
+
zimbraPrefDefaultSignatureId?: InputMaybe<Scalars['ID']>;
|
|
1882
|
+
zimbraPrefForwardReplyFormat?: InputMaybe<Scalars['String']>;
|
|
1883
|
+
zimbraPrefForwardReplySignatureId?: InputMaybe<Scalars['ID']>;
|
|
1884
|
+
zimbraPrefFromAddress?: InputMaybe<Scalars['String']>;
|
|
1885
|
+
zimbraPrefFromAddressType?: InputMaybe<Scalars['String']>;
|
|
1886
|
+
zimbraPrefFromDisplay?: InputMaybe<Scalars['String']>;
|
|
1887
|
+
zimbraPrefIdentityId?: InputMaybe<Scalars['ID']>;
|
|
1888
|
+
zimbraPrefIdentityName?: InputMaybe<Scalars['String']>;
|
|
1889
|
+
zimbraPrefMailSignatureStyle?: InputMaybe<Scalars['String']>;
|
|
1890
|
+
zimbraPrefReplyToAddress?: InputMaybe<Scalars['String']>;
|
|
1891
|
+
zimbraPrefReplyToDisplay?: InputMaybe<Scalars['String']>;
|
|
1892
|
+
zimbraPrefReplyToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1893
|
+
zimbraPrefSentMailFolder?: InputMaybe<Scalars['String']>;
|
|
1894
|
+
zimbraPrefWhenInFolderIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1895
|
+
zimbraPrefWhenInFoldersEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1896
|
+
zimbraPrefWhenSentToAddresses?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1897
|
+
zimbraPrefWhenSentToEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1893
1898
|
};
|
|
1894
1899
|
|
|
1895
1900
|
export type ImportStatus = {
|
|
@@ -1921,8 +1926,8 @@ export type ImportanceCondition = {
|
|
|
1921
1926
|
|
|
1922
1927
|
export type ImportanceConditionInput = {
|
|
1923
1928
|
importance: Importance;
|
|
1924
|
-
index?:
|
|
1925
|
-
negative?:
|
|
1929
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
1930
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
1926
1931
|
};
|
|
1927
1932
|
|
|
1928
1933
|
export type Instance = {
|
|
@@ -1957,7 +1962,7 @@ export type Instance = {
|
|
|
1957
1962
|
};
|
|
1958
1963
|
|
|
1959
1964
|
export type InstanceDate = {
|
|
1960
|
-
date?:
|
|
1965
|
+
date?: InputMaybe<Scalars['String']>;
|
|
1961
1966
|
};
|
|
1962
1967
|
|
|
1963
1968
|
export type IntervalRule = {
|
|
@@ -2037,9 +2042,9 @@ export type InviteCondition = {
|
|
|
2037
2042
|
};
|
|
2038
2043
|
|
|
2039
2044
|
export type InviteConditionInput = {
|
|
2040
|
-
index?:
|
|
2041
|
-
methods?:
|
|
2042
|
-
negative?:
|
|
2045
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
2046
|
+
methods?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
2047
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
2043
2048
|
};
|
|
2044
2049
|
|
|
2045
2050
|
export type InviteInfo = {
|
|
@@ -2056,10 +2061,10 @@ export type InviteReplies = {
|
|
|
2056
2061
|
|
|
2057
2062
|
export type InviteReplyInput = {
|
|
2058
2063
|
componentNum: Scalars['Int'];
|
|
2059
|
-
exceptId?:
|
|
2064
|
+
exceptId?: InputMaybe<InstanceDate>;
|
|
2060
2065
|
id: Scalars['ID'];
|
|
2061
|
-
message?:
|
|
2062
|
-
updateOrganizer?:
|
|
2066
|
+
message?: InputMaybe<CalendarItemMessageInput>;
|
|
2067
|
+
updateOrganizer?: InputMaybe<Scalars['Boolean']>;
|
|
2063
2068
|
verb: InviteReplyVerb;
|
|
2064
2069
|
};
|
|
2065
2070
|
|
|
@@ -2139,7 +2144,7 @@ export type MailItem = {
|
|
|
2139
2144
|
|
|
2140
2145
|
export type MailItemEmailAddressInput = {
|
|
2141
2146
|
address: Scalars['String'];
|
|
2142
|
-
name?:
|
|
2147
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2143
2148
|
type: AddressType;
|
|
2144
2149
|
};
|
|
2145
2150
|
|
|
@@ -2184,27 +2189,27 @@ export type MailboxMetadataMeta = {
|
|
|
2184
2189
|
};
|
|
2185
2190
|
|
|
2186
2191
|
export type MailboxMetadataSectionAttrsInput = {
|
|
2187
|
-
archivedFolder?:
|
|
2188
|
-
privacyOverlayPrefs_showOverlay?:
|
|
2189
|
-
privacyOverlayPrefs_timeOut?:
|
|
2190
|
-
zimbraPrefContactSourceFolderID?:
|
|
2191
|
-
zimbraPrefCustomFolderTreeOpen?:
|
|
2192
|
-
zimbraPrefDateFormat?:
|
|
2193
|
-
zimbraPrefFolderTreeSash?:
|
|
2194
|
-
zimbraPrefFoldersExpanded?:
|
|
2195
|
-
zimbraPrefGenerateLinkPreviews?:
|
|
2196
|
-
zimbraPrefGroupByList?:
|
|
2197
|
-
zimbraPrefMessageListDensity?:
|
|
2198
|
-
zimbraPrefMultitasking?:
|
|
2199
|
-
zimbraPrefReadingPaneSashHorizontal?:
|
|
2200
|
-
zimbraPrefReadingPaneSashVertical?:
|
|
2201
|
-
zimbraPrefSMIMEDefaultSetting?:
|
|
2202
|
-
zimbraPrefSMIMELastOperation?:
|
|
2203
|
-
zimbraPrefSharedFolderTreeOpen?:
|
|
2204
|
-
zimbraPrefSmartFolderTreeOpen?:
|
|
2205
|
-
zimbraPrefTimeFormat?:
|
|
2206
|
-
zimbraPrefUndoSendEnabled?:
|
|
2207
|
-
zimbraPrefUndoSendTimeout?:
|
|
2192
|
+
archivedFolder?: InputMaybe<Scalars['String']>;
|
|
2193
|
+
privacyOverlayPrefs_showOverlay?: InputMaybe<Scalars['Boolean']>;
|
|
2194
|
+
privacyOverlayPrefs_timeOut?: InputMaybe<Scalars['Int']>;
|
|
2195
|
+
zimbraPrefContactSourceFolderID?: InputMaybe<Scalars['String']>;
|
|
2196
|
+
zimbraPrefCustomFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
2197
|
+
zimbraPrefDateFormat?: InputMaybe<Scalars['String']>;
|
|
2198
|
+
zimbraPrefFolderTreeSash?: InputMaybe<Scalars['Int']>;
|
|
2199
|
+
zimbraPrefFoldersExpanded?: InputMaybe<Scalars['String']>;
|
|
2200
|
+
zimbraPrefGenerateLinkPreviews?: InputMaybe<Scalars['Boolean']>;
|
|
2201
|
+
zimbraPrefGroupByList?: InputMaybe<Scalars['String']>;
|
|
2202
|
+
zimbraPrefMessageListDensity?: InputMaybe<Scalars['String']>;
|
|
2203
|
+
zimbraPrefMultitasking?: InputMaybe<Scalars['String']>;
|
|
2204
|
+
zimbraPrefReadingPaneSashHorizontal?: InputMaybe<Scalars['Int']>;
|
|
2205
|
+
zimbraPrefReadingPaneSashVertical?: InputMaybe<Scalars['Int']>;
|
|
2206
|
+
zimbraPrefSMIMEDefaultSetting?: InputMaybe<Scalars['String']>;
|
|
2207
|
+
zimbraPrefSMIMELastOperation?: InputMaybe<Scalars['String']>;
|
|
2208
|
+
zimbraPrefSharedFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
2209
|
+
zimbraPrefSmartFolderTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
2210
|
+
zimbraPrefTimeFormat?: InputMaybe<Scalars['String']>;
|
|
2211
|
+
zimbraPrefUndoSendEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
2212
|
+
zimbraPrefUndoSendTimeout?: InputMaybe<Scalars['Int']>;
|
|
2208
2213
|
};
|
|
2209
2214
|
|
|
2210
2215
|
export type MaxAppPasswords = {
|
|
@@ -2272,12 +2277,12 @@ export type MimeHeaderCondition = {
|
|
|
2272
2277
|
};
|
|
2273
2278
|
|
|
2274
2279
|
export type MimeHeaderConditionInput = {
|
|
2275
|
-
caseSensitive?:
|
|
2276
|
-
header?:
|
|
2277
|
-
index?:
|
|
2278
|
-
negative?:
|
|
2279
|
-
stringComparison?:
|
|
2280
|
-
value?:
|
|
2280
|
+
caseSensitive?: InputMaybe<Scalars['Boolean']>;
|
|
2281
|
+
header?: InputMaybe<Scalars['String']>;
|
|
2282
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
2283
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
2284
|
+
stringComparison?: InputMaybe<Scalars['String']>;
|
|
2285
|
+
value?: InputMaybe<Scalars['String']>;
|
|
2281
2286
|
};
|
|
2282
2287
|
|
|
2283
2288
|
export type MimePart = {
|
|
@@ -2299,20 +2304,20 @@ export type MimePart = {
|
|
|
2299
2304
|
};
|
|
2300
2305
|
|
|
2301
2306
|
export type MimePartInput = {
|
|
2302
|
-
attachments?:
|
|
2303
|
-
base64?:
|
|
2304
|
-
body?:
|
|
2305
|
-
content?:
|
|
2306
|
-
contentDisposition?:
|
|
2307
|
-
contentId?:
|
|
2308
|
-
contentType?:
|
|
2309
|
-
filename?:
|
|
2310
|
-
messageId?:
|
|
2311
|
-
mimeParts?:
|
|
2312
|
-
part?:
|
|
2313
|
-
size?:
|
|
2314
|
-
truncated?:
|
|
2315
|
-
url?:
|
|
2307
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
2308
|
+
base64?: InputMaybe<Scalars['String']>;
|
|
2309
|
+
body?: InputMaybe<Scalars['Boolean']>;
|
|
2310
|
+
content?: InputMaybe<Scalars['String']>;
|
|
2311
|
+
contentDisposition?: InputMaybe<Scalars['String']>;
|
|
2312
|
+
contentId?: InputMaybe<Scalars['String']>;
|
|
2313
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
2314
|
+
filename?: InputMaybe<Scalars['String']>;
|
|
2315
|
+
messageId?: InputMaybe<Scalars['ID']>;
|
|
2316
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
2317
|
+
part?: InputMaybe<Scalars['ID']>;
|
|
2318
|
+
size?: InputMaybe<Scalars['Float']>;
|
|
2319
|
+
truncated?: InputMaybe<Scalars['Boolean']>;
|
|
2320
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2316
2321
|
};
|
|
2317
2322
|
|
|
2318
2323
|
export enum Mode {
|
|
@@ -2331,14 +2336,14 @@ export type ModifyAppointmentResponse = {
|
|
|
2331
2336
|
|
|
2332
2337
|
export type ModifyContactInput = {
|
|
2333
2338
|
attributes: ContactAttrsInput;
|
|
2334
|
-
folderId?:
|
|
2339
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2335
2340
|
id: Scalars['ID'];
|
|
2336
|
-
memberOps?:
|
|
2337
|
-
tagNames?:
|
|
2341
|
+
memberOps?: InputMaybe<Array<InputMaybe<ContactListOps>>>;
|
|
2342
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2338
2343
|
};
|
|
2339
2344
|
|
|
2340
2345
|
export type ModifyIdentityInput = {
|
|
2341
|
-
attrs?:
|
|
2346
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2342
2347
|
id: Scalars['ID'];
|
|
2343
2348
|
};
|
|
2344
2349
|
|
|
@@ -2474,24 +2479,24 @@ export type Mutation = {
|
|
|
2474
2479
|
|
|
2475
2480
|
|
|
2476
2481
|
export type MutationAccountOnlyRemoteWipeSyncArgs = {
|
|
2477
|
-
deviceId?:
|
|
2482
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2478
2483
|
};
|
|
2479
2484
|
|
|
2480
2485
|
|
|
2481
2486
|
export type MutationActionArgs = {
|
|
2482
|
-
color?:
|
|
2483
|
-
constraints?:
|
|
2484
|
-
destFolderLocal?:
|
|
2485
|
-
flags?:
|
|
2486
|
-
folderId?:
|
|
2487
|
-
id?:
|
|
2488
|
-
ids?:
|
|
2489
|
-
isLocal?:
|
|
2490
|
-
name?:
|
|
2487
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
2488
|
+
constraints?: InputMaybe<Scalars['String']>;
|
|
2489
|
+
destFolderLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2490
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
2491
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2492
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2493
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
2494
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
2495
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2491
2496
|
op: Scalars['String'];
|
|
2492
|
-
recursive?:
|
|
2493
|
-
rgb?:
|
|
2494
|
-
tagNames?:
|
|
2497
|
+
recursive?: InputMaybe<Scalars['Boolean']>;
|
|
2498
|
+
rgb?: InputMaybe<Scalars['String']>;
|
|
2499
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2495
2500
|
type: ActionTypeName;
|
|
2496
2501
|
};
|
|
2497
2502
|
|
|
@@ -2507,28 +2512,28 @@ export type MutationAddMessageArgs = {
|
|
|
2507
2512
|
|
|
2508
2513
|
|
|
2509
2514
|
export type MutationAllowDeviceSyncArgs = {
|
|
2510
|
-
deviceId?:
|
|
2515
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2511
2516
|
};
|
|
2512
2517
|
|
|
2513
2518
|
|
|
2514
2519
|
export type MutationApplyFilterRulesArgs = {
|
|
2515
|
-
filterRules?:
|
|
2520
|
+
filterRules?: InputMaybe<Array<InputMaybe<FilterRuleInput>>>;
|
|
2516
2521
|
ids: Scalars['String'];
|
|
2517
2522
|
};
|
|
2518
2523
|
|
|
2519
2524
|
|
|
2520
2525
|
export type MutationBlockDeviceSyncArgs = {
|
|
2521
|
-
deviceId?:
|
|
2526
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2522
2527
|
};
|
|
2523
2528
|
|
|
2524
2529
|
|
|
2525
2530
|
export type MutationCancelPendingAccountOnlyRemoteWipeSyncArgs = {
|
|
2526
|
-
deviceId?:
|
|
2531
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2527
2532
|
};
|
|
2528
2533
|
|
|
2529
2534
|
|
|
2530
2535
|
export type MutationCancelPendingRemoteWipeSyncArgs = {
|
|
2531
|
-
deviceId?:
|
|
2536
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2532
2537
|
};
|
|
2533
2538
|
|
|
2534
2539
|
|
|
@@ -2544,7 +2549,7 @@ export type MutationChangeFolderColorArgs = {
|
|
|
2544
2549
|
|
|
2545
2550
|
|
|
2546
2551
|
export type MutationChangePasswordArgs = {
|
|
2547
|
-
dryRun?:
|
|
2552
|
+
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
2548
2553
|
loginNewPassword: Scalars['String'];
|
|
2549
2554
|
password: Scalars['String'];
|
|
2550
2555
|
username: Scalars['String'];
|
|
@@ -2558,11 +2563,11 @@ export type MutationCheckCalendarArgs = {
|
|
|
2558
2563
|
|
|
2559
2564
|
|
|
2560
2565
|
export type MutationContactActionArgs = {
|
|
2561
|
-
folderId?:
|
|
2562
|
-
id?:
|
|
2563
|
-
ids?:
|
|
2566
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2567
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2568
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
2564
2569
|
op: Scalars['String'];
|
|
2565
|
-
tagNames?:
|
|
2570
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2566
2571
|
};
|
|
2567
2572
|
|
|
2568
2573
|
|
|
@@ -2583,13 +2588,13 @@ export type MutationCreateAppSpecificPasswordArgs = {
|
|
|
2583
2588
|
|
|
2584
2589
|
|
|
2585
2590
|
export type MutationCreateAppointmentArgs = {
|
|
2586
|
-
accountName?:
|
|
2591
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2587
2592
|
appointment: CalendarItemInput;
|
|
2588
2593
|
};
|
|
2589
2594
|
|
|
2590
2595
|
|
|
2591
2596
|
export type MutationCreateAppointmentExceptionArgs = {
|
|
2592
|
-
accountName?:
|
|
2597
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2593
2598
|
appointment: CalendarItemInput;
|
|
2594
2599
|
};
|
|
2595
2600
|
|
|
@@ -2597,7 +2602,7 @@ export type MutationCreateAppointmentExceptionArgs = {
|
|
|
2597
2602
|
export type MutationCreateCalendarArgs = {
|
|
2598
2603
|
color: Scalars['Int'];
|
|
2599
2604
|
name: Scalars['String'];
|
|
2600
|
-
url?:
|
|
2605
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2601
2606
|
};
|
|
2602
2607
|
|
|
2603
2608
|
|
|
@@ -2612,19 +2617,19 @@ export type MutationCreateContactListArgs = {
|
|
|
2612
2617
|
|
|
2613
2618
|
|
|
2614
2619
|
export type MutationCreateFolderArgs = {
|
|
2615
|
-
color?:
|
|
2616
|
-
fetchIfExists?:
|
|
2617
|
-
flags?:
|
|
2618
|
-
isLocalFolder?:
|
|
2620
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
2621
|
+
fetchIfExists?: InputMaybe<Scalars['Boolean']>;
|
|
2622
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
2623
|
+
isLocalFolder?: InputMaybe<Scalars['Boolean']>;
|
|
2619
2624
|
name: Scalars['String'];
|
|
2620
|
-
parentFolderId?:
|
|
2621
|
-
url?:
|
|
2622
|
-
view?:
|
|
2625
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2626
|
+
url?: InputMaybe<Scalars['String']>;
|
|
2627
|
+
view?: InputMaybe<FolderView>;
|
|
2623
2628
|
};
|
|
2624
2629
|
|
|
2625
2630
|
|
|
2626
2631
|
export type MutationCreateIdentityArgs = {
|
|
2627
|
-
attrs?:
|
|
2632
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2628
2633
|
name: Scalars['String'];
|
|
2629
2634
|
};
|
|
2630
2635
|
|
|
@@ -2636,9 +2641,9 @@ export type MutationCreateMountpointArgs = {
|
|
|
2636
2641
|
|
|
2637
2642
|
export type MutationCreateSearchFolderArgs = {
|
|
2638
2643
|
name: Scalars['String'];
|
|
2639
|
-
parentFolderId?:
|
|
2644
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2640
2645
|
query: Scalars['String'];
|
|
2641
|
-
types?:
|
|
2646
|
+
types?: InputMaybe<FolderView>;
|
|
2642
2647
|
};
|
|
2643
2648
|
|
|
2644
2649
|
|
|
@@ -2653,7 +2658,7 @@ export type MutationCreateSignatureArgs = {
|
|
|
2653
2658
|
|
|
2654
2659
|
|
|
2655
2660
|
export type MutationCreateTagArgs = {
|
|
2656
|
-
tag?:
|
|
2661
|
+
tag?: InputMaybe<CreateTagInput>;
|
|
2657
2662
|
};
|
|
2658
2663
|
|
|
2659
2664
|
|
|
@@ -2679,7 +2684,7 @@ export type MutationDeleteExternalAccountArgs = {
|
|
|
2679
2684
|
|
|
2680
2685
|
export type MutationDeleteIdentityArgs = {
|
|
2681
2686
|
id: Scalars['ID'];
|
|
2682
|
-
name?:
|
|
2687
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2683
2688
|
};
|
|
2684
2689
|
|
|
2685
2690
|
|
|
@@ -2689,8 +2694,8 @@ export type MutationDeleteSignatureArgs = {
|
|
|
2689
2694
|
|
|
2690
2695
|
|
|
2691
2696
|
export type MutationDismissCalendarItemArgs = {
|
|
2692
|
-
appointment?:
|
|
2693
|
-
task?:
|
|
2697
|
+
appointment?: InputMaybe<Array<InputMaybe<DismissInput>>>;
|
|
2698
|
+
task?: InputMaybe<DismissInput>;
|
|
2694
2699
|
};
|
|
2695
2700
|
|
|
2696
2701
|
|
|
@@ -2735,23 +2740,24 @@ export type MutationImportExternalAccountArgs = {
|
|
|
2735
2740
|
|
|
2736
2741
|
|
|
2737
2742
|
export type MutationItemActionArgs = {
|
|
2738
|
-
folderId?:
|
|
2739
|
-
id?:
|
|
2740
|
-
ids?:
|
|
2741
|
-
name?:
|
|
2743
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
2744
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
2745
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
|
2746
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2742
2747
|
op: Scalars['String'];
|
|
2743
|
-
tagNames?:
|
|
2748
|
+
tagNames?: InputMaybe<Scalars['String']>;
|
|
2744
2749
|
};
|
|
2745
2750
|
|
|
2746
2751
|
|
|
2747
2752
|
export type MutationLoginArgs = {
|
|
2748
2753
|
csrfTokenSecured: Scalars['Boolean'];
|
|
2749
|
-
deviceTrusted?:
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2754
|
+
deviceTrusted?: InputMaybe<Scalars['Boolean']>;
|
|
2755
|
+
ignoreSameSite?: InputMaybe<Scalars['Boolean']>;
|
|
2756
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2757
|
+
persistAuthTokenCookie?: InputMaybe<Scalars['Boolean']>;
|
|
2758
|
+
recoveryCode?: InputMaybe<Scalars['String']>;
|
|
2759
|
+
tokenType?: InputMaybe<Scalars['String']>;
|
|
2760
|
+
twoFactorCode?: InputMaybe<Scalars['String']>;
|
|
2755
2761
|
username: Scalars['String'];
|
|
2756
2762
|
};
|
|
2757
2763
|
|
|
@@ -2763,7 +2769,7 @@ export type MutationMessageActionArgs = {
|
|
|
2763
2769
|
|
|
2764
2770
|
|
|
2765
2771
|
export type MutationModifyAppointmentArgs = {
|
|
2766
|
-
accountName?:
|
|
2772
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2767
2773
|
appointment: CalendarItemInput;
|
|
2768
2774
|
};
|
|
2769
2775
|
|
|
@@ -2781,17 +2787,17 @@ export type MutationModifyContactListArgs = {
|
|
|
2781
2787
|
export type MutationModifyExternalAccountArgs = {
|
|
2782
2788
|
attrs: ExternalAccountModifyAttrsInput;
|
|
2783
2789
|
id: Scalars['ID'];
|
|
2784
|
-
type?:
|
|
2790
|
+
type?: InputMaybe<AccountType>;
|
|
2785
2791
|
};
|
|
2786
2792
|
|
|
2787
2793
|
|
|
2788
2794
|
export type MutationModifyFilterRulesArgs = {
|
|
2789
|
-
filters?:
|
|
2795
|
+
filters?: InputMaybe<Array<FilterInput>>;
|
|
2790
2796
|
};
|
|
2791
2797
|
|
|
2792
2798
|
|
|
2793
2799
|
export type MutationModifyIdentityArgs = {
|
|
2794
|
-
attrs?:
|
|
2800
|
+
attrs?: InputMaybe<IdentityAttrsInput>;
|
|
2795
2801
|
id: Scalars['ID'];
|
|
2796
2802
|
};
|
|
2797
2803
|
|
|
@@ -2802,13 +2808,13 @@ export type MutationModifyPrefsArgs = {
|
|
|
2802
2808
|
|
|
2803
2809
|
|
|
2804
2810
|
export type MutationModifyProfileImageArgs = {
|
|
2805
|
-
content?:
|
|
2806
|
-
contentType?:
|
|
2811
|
+
content?: InputMaybe<Scalars['String']>;
|
|
2812
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
2807
2813
|
};
|
|
2808
2814
|
|
|
2809
2815
|
|
|
2810
2816
|
export type MutationModifyPropsArgs = {
|
|
2811
|
-
props?:
|
|
2817
|
+
props?: InputMaybe<Array<PropertiesInput>>;
|
|
2812
2818
|
};
|
|
2813
2819
|
|
|
2814
2820
|
|
|
@@ -2833,7 +2839,7 @@ export type MutationModifyWhiteBlackListArgs = {
|
|
|
2833
2839
|
|
|
2834
2840
|
|
|
2835
2841
|
export type MutationModifyZimletPrefsArgs = {
|
|
2836
|
-
zimlets?:
|
|
2842
|
+
zimlets?: InputMaybe<Array<ZimletPreferenceInput>>;
|
|
2837
2843
|
};
|
|
2838
2844
|
|
|
2839
2845
|
|
|
@@ -2869,7 +2875,7 @@ export type MutationPrefOutOfOfficeUntilDateArgs = {
|
|
|
2869
2875
|
|
|
2870
2876
|
|
|
2871
2877
|
export type MutationQuarantineDeviceSyncArgs = {
|
|
2872
|
-
deviceId?:
|
|
2878
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2873
2879
|
};
|
|
2874
2880
|
|
|
2875
2881
|
|
|
@@ -2881,20 +2887,20 @@ export type MutationRecoverAccountArgs = {
|
|
|
2881
2887
|
|
|
2882
2888
|
|
|
2883
2889
|
export type MutationRemoteWipeSyncArgs = {
|
|
2884
|
-
deviceId?:
|
|
2890
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2885
2891
|
};
|
|
2886
2892
|
|
|
2887
2893
|
|
|
2888
2894
|
export type MutationRemoveDeviceSyncArgs = {
|
|
2889
|
-
deviceId?:
|
|
2895
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
2890
2896
|
};
|
|
2891
2897
|
|
|
2892
2898
|
|
|
2893
2899
|
export type MutationResetPasswordArgs = {
|
|
2894
|
-
cancelResetPassword?:
|
|
2895
|
-
dryRun?:
|
|
2896
|
-
getPasswordRules?:
|
|
2897
|
-
password?:
|
|
2900
|
+
cancelResetPassword?: InputMaybe<Scalars['Boolean']>;
|
|
2901
|
+
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
2902
|
+
getPasswordRules?: InputMaybe<Scalars['Boolean']>;
|
|
2903
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2898
2904
|
};
|
|
2899
2905
|
|
|
2900
2906
|
|
|
@@ -2909,18 +2915,18 @@ export type MutationRevokeRightsArgs = {
|
|
|
2909
2915
|
|
|
2910
2916
|
|
|
2911
2917
|
export type MutationSaveDocumentArgs = {
|
|
2912
|
-
document?:
|
|
2918
|
+
document?: InputMaybe<SaveDocumentInput>;
|
|
2913
2919
|
};
|
|
2914
2920
|
|
|
2915
2921
|
|
|
2916
2922
|
export type MutationSaveDraftArgs = {
|
|
2917
|
-
accountName?:
|
|
2923
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2918
2924
|
message: SendMessageInput;
|
|
2919
2925
|
};
|
|
2920
2926
|
|
|
2921
2927
|
|
|
2922
2928
|
export type MutationSaveSMimeCertArgs = {
|
|
2923
|
-
password?:
|
|
2929
|
+
password?: InputMaybe<Scalars['String']>;
|
|
2924
2930
|
upload: SaveSMimeCertInputUpload;
|
|
2925
2931
|
};
|
|
2926
2932
|
|
|
@@ -2936,10 +2942,10 @@ export type MutationSendInviteReplyArgs = {
|
|
|
2936
2942
|
|
|
2937
2943
|
|
|
2938
2944
|
export type MutationSendMessageArgs = {
|
|
2939
|
-
accountName?:
|
|
2940
|
-
encrypt?:
|
|
2945
|
+
accountName?: InputMaybe<Scalars['String']>;
|
|
2946
|
+
encrypt?: InputMaybe<Scalars['Boolean']>;
|
|
2941
2947
|
message: SendMessageInput;
|
|
2942
|
-
sign?:
|
|
2948
|
+
sign?: InputMaybe<Scalars['Boolean']>;
|
|
2943
2949
|
};
|
|
2944
2950
|
|
|
2945
2951
|
|
|
@@ -2955,26 +2961,26 @@ export type MutationSetCustomMetadataArgs = {
|
|
|
2955
2961
|
|
|
2956
2962
|
export type MutationSetMailboxMetadataArgs = {
|
|
2957
2963
|
attrs: MailboxMetadataSectionAttrsInput;
|
|
2958
|
-
section?:
|
|
2964
|
+
section?: InputMaybe<Scalars['String']>;
|
|
2959
2965
|
};
|
|
2960
2966
|
|
|
2961
2967
|
|
|
2962
2968
|
export type MutationSetRecoveryAccountArgs = {
|
|
2963
2969
|
channel: SetRecoveryAccountChannel;
|
|
2964
2970
|
op: SetRecoveryAccountOp;
|
|
2965
|
-
recoveryAccount?:
|
|
2966
|
-
recoveryAccountVerificationCode?:
|
|
2971
|
+
recoveryAccount?: InputMaybe<Scalars['String']>;
|
|
2972
|
+
recoveryAccountVerificationCode?: InputMaybe<Scalars['String']>;
|
|
2967
2973
|
};
|
|
2968
2974
|
|
|
2969
2975
|
|
|
2970
2976
|
export type MutationSnoozeCalendarItemArgs = {
|
|
2971
|
-
appointment?:
|
|
2972
|
-
task?:
|
|
2977
|
+
appointment?: InputMaybe<Array<InputMaybe<SnoozeInput>>>;
|
|
2978
|
+
task?: InputMaybe<SnoozeInput>;
|
|
2973
2979
|
};
|
|
2974
2980
|
|
|
2975
2981
|
|
|
2976
2982
|
export type MutationTagActionArgs = {
|
|
2977
|
-
action?:
|
|
2983
|
+
action?: InputMaybe<FolderActionInput>;
|
|
2978
2984
|
};
|
|
2979
2985
|
|
|
2980
2986
|
|
|
@@ -2994,8 +3000,8 @@ export type NameId = {
|
|
|
2994
3000
|
};
|
|
2995
3001
|
|
|
2996
3002
|
export type NameIdInput = {
|
|
2997
|
-
id?:
|
|
2998
|
-
name?:
|
|
3003
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3004
|
+
name?: InputMaybe<Scalars['String']>;
|
|
2999
3005
|
};
|
|
3000
3006
|
|
|
3001
3007
|
export enum NeedIsMemberType {
|
|
@@ -3005,15 +3011,15 @@ export enum NeedIsMemberType {
|
|
|
3005
3011
|
}
|
|
3006
3012
|
|
|
3007
3013
|
export type NewMountpointSpec = {
|
|
3008
|
-
color?:
|
|
3009
|
-
flags?:
|
|
3014
|
+
color?: InputMaybe<Scalars['Int']>;
|
|
3015
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
3010
3016
|
name: Scalars['String'];
|
|
3011
|
-
owner?:
|
|
3012
|
-
ownerZimbraId?:
|
|
3013
|
-
parentFolderId?:
|
|
3014
|
-
reminder?:
|
|
3015
|
-
sharedItemId?:
|
|
3016
|
-
view?:
|
|
3017
|
+
owner?: InputMaybe<Scalars['String']>;
|
|
3018
|
+
ownerZimbraId?: InputMaybe<Scalars['ID']>;
|
|
3019
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
3020
|
+
reminder?: InputMaybe<Scalars['Boolean']>;
|
|
3021
|
+
sharedItemId?: InputMaybe<Scalars['ID']>;
|
|
3022
|
+
view?: InputMaybe<SearchType>;
|
|
3017
3023
|
};
|
|
3018
3024
|
|
|
3019
3025
|
export type NoOpResponse = {
|
|
@@ -3022,7 +3028,7 @@ export type NoOpResponse = {
|
|
|
3022
3028
|
};
|
|
3023
3029
|
|
|
3024
3030
|
export type Notes = {
|
|
3025
|
-
_content?:
|
|
3031
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3026
3032
|
};
|
|
3027
3033
|
|
|
3028
3034
|
export type NotifyAction = {
|
|
@@ -3036,12 +3042,12 @@ export type NotifyAction = {
|
|
|
3036
3042
|
};
|
|
3037
3043
|
|
|
3038
3044
|
export type NotifyActionInput = {
|
|
3039
|
-
address?:
|
|
3040
|
-
content?:
|
|
3041
|
-
index?:
|
|
3042
|
-
maxBodySize?:
|
|
3043
|
-
origHeaders?:
|
|
3044
|
-
subject?:
|
|
3045
|
+
address?: InputMaybe<Scalars['String']>;
|
|
3046
|
+
content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
3047
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3048
|
+
maxBodySize?: InputMaybe<Scalars['Int']>;
|
|
3049
|
+
origHeaders?: InputMaybe<Scalars['String']>;
|
|
3050
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
3045
3051
|
};
|
|
3046
3052
|
|
|
3047
3053
|
export type OnlyEmailAddress = {
|
|
@@ -3056,13 +3062,13 @@ export type OtherContactAttribute = {
|
|
|
3056
3062
|
};
|
|
3057
3063
|
|
|
3058
3064
|
export type OtherContactAttributeInput = {
|
|
3059
|
-
key?:
|
|
3060
|
-
value?:
|
|
3065
|
+
key?: InputMaybe<Scalars['String']>;
|
|
3066
|
+
value?: InputMaybe<Scalars['String']>;
|
|
3061
3067
|
};
|
|
3062
3068
|
|
|
3063
3069
|
export type Owner = {
|
|
3064
|
-
_content?:
|
|
3065
|
-
by?:
|
|
3070
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3071
|
+
by?: InputMaybe<Scalars['String']>;
|
|
3066
3072
|
};
|
|
3067
3073
|
|
|
3068
3074
|
export enum ParticipationRole {
|
|
@@ -3187,61 +3193,61 @@ export type Preferences = {
|
|
|
3187
3193
|
};
|
|
3188
3194
|
|
|
3189
3195
|
export type PreferencesInput = {
|
|
3190
|
-
zimbraPrefAppleIcalDelegationEnabled?:
|
|
3191
|
-
zimbraPrefAutoAddAppointmentsToCalendar?:
|
|
3192
|
-
zimbraPrefBriefcaseReadingPaneLocation?:
|
|
3193
|
-
zimbraPrefCalendarAlwaysShowMiniCal?:
|
|
3194
|
-
zimbraPrefCalendarApptReminderWarningTime?:
|
|
3195
|
-
zimbraPrefCalendarAutoAddInvites?:
|
|
3196
|
-
zimbraPrefCalendarFirstDayOfWeek?:
|
|
3197
|
-
zimbraPrefCalendarInitialView?:
|
|
3198
|
-
zimbraPrefCalendarReminderEmail?:
|
|
3199
|
-
zimbraPrefCalendarShowDeclinedMeetings?:
|
|
3200
|
-
zimbraPrefCalendarShowPastDueReminders?:
|
|
3201
|
-
zimbraPrefCalendarToasterEnabled?:
|
|
3202
|
-
zimbraPrefCalendarWorkingHours?:
|
|
3203
|
-
zimbraPrefClientType?:
|
|
3204
|
-
zimbraPrefComposeDirection?:
|
|
3205
|
-
zimbraPrefComposeFormat?:
|
|
3206
|
-
zimbraPrefDefaultCalendarId?:
|
|
3207
|
-
zimbraPrefDelegatedSendSaveTarget?:
|
|
3208
|
-
zimbraPrefDisplayExternalImages?:
|
|
3209
|
-
zimbraPrefDisplayTimeInMailList?:
|
|
3210
|
-
zimbraPrefGroupMailBy?:
|
|
3211
|
-
zimbraPrefHtmlEditorDefaultFontColor?:
|
|
3212
|
-
zimbraPrefHtmlEditorDefaultFontFamily?:
|
|
3213
|
-
zimbraPrefHtmlEditorDefaultFontSize?:
|
|
3214
|
-
zimbraPrefLocale?:
|
|
3215
|
-
zimbraPrefMailForwardingAddress?:
|
|
3216
|
-
zimbraPrefMailLocalDeliveryDisabled?:
|
|
3217
|
-
zimbraPrefMailPollingInterval?:
|
|
3218
|
-
zimbraPrefMailRequestReadReceipts?:
|
|
3219
|
-
zimbraPrefMailSelectAfterDelete?:
|
|
3220
|
-
zimbraPrefMailSendReadReceipts?:
|
|
3221
|
-
zimbraPrefMailToasterEnabled?:
|
|
3222
|
-
zimbraPrefMailTrustedSenderList?:
|
|
3223
|
-
zimbraPrefMarkMsgRead?:
|
|
3224
|
-
zimbraPrefMessageViewHtmlPreferred?:
|
|
3225
|
-
zimbraPrefOutOfOfficeExternalReply?:
|
|
3226
|
-
zimbraPrefOutOfOfficeExternalReplyEnabled?:
|
|
3227
|
-
zimbraPrefOutOfOfficeFromDate?:
|
|
3228
|
-
zimbraPrefOutOfOfficeReply?:
|
|
3229
|
-
zimbraPrefOutOfOfficeReplyEnabled?:
|
|
3230
|
-
zimbraPrefOutOfOfficeStatusAlertOnLogin?:
|
|
3231
|
-
zimbraPrefOutOfOfficeSuppressExternalReply?:
|
|
3232
|
-
zimbraPrefOutOfOfficeUntilDate?:
|
|
3233
|
-
zimbraPrefPowerPasteEnabled?:
|
|
3234
|
-
zimbraPrefReadingPaneEnabled?:
|
|
3235
|
-
zimbraPrefReadingPaneLocation?:
|
|
3236
|
-
zimbraPrefSaveToSent?:
|
|
3237
|
-
zimbraPrefShowAllNewMailNotifications?:
|
|
3238
|
-
zimbraPrefShowFragments?:
|
|
3239
|
-
zimbraPrefSlackCalendarReminderEnabled?:
|
|
3240
|
-
zimbraPrefSortOrder?:
|
|
3241
|
-
zimbraPrefTagTreeOpen?:
|
|
3242
|
-
zimbraPrefTimeZoneId?:
|
|
3243
|
-
zimbraPrefUseTimeZoneListInCalendar?:
|
|
3244
|
-
zimbraPrefWebClientOfflineBrowserKey?:
|
|
3196
|
+
zimbraPrefAppleIcalDelegationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3197
|
+
zimbraPrefAutoAddAppointmentsToCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
3198
|
+
zimbraPrefBriefcaseReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
|
|
3199
|
+
zimbraPrefCalendarAlwaysShowMiniCal?: InputMaybe<Scalars['Boolean']>;
|
|
3200
|
+
zimbraPrefCalendarApptReminderWarningTime?: InputMaybe<Scalars['Int']>;
|
|
3201
|
+
zimbraPrefCalendarAutoAddInvites?: InputMaybe<Scalars['Boolean']>;
|
|
3202
|
+
zimbraPrefCalendarFirstDayOfWeek?: InputMaybe<Scalars['Int']>;
|
|
3203
|
+
zimbraPrefCalendarInitialView?: InputMaybe<PrefCalendarInitialView>;
|
|
3204
|
+
zimbraPrefCalendarReminderEmail?: InputMaybe<Scalars['String']>;
|
|
3205
|
+
zimbraPrefCalendarShowDeclinedMeetings?: InputMaybe<Scalars['Boolean']>;
|
|
3206
|
+
zimbraPrefCalendarShowPastDueReminders?: InputMaybe<Scalars['Boolean']>;
|
|
3207
|
+
zimbraPrefCalendarToasterEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3208
|
+
zimbraPrefCalendarWorkingHours?: InputMaybe<Scalars['String']>;
|
|
3209
|
+
zimbraPrefClientType?: InputMaybe<PrefClientType>;
|
|
3210
|
+
zimbraPrefComposeDirection?: InputMaybe<Scalars['String']>;
|
|
3211
|
+
zimbraPrefComposeFormat?: InputMaybe<Mode>;
|
|
3212
|
+
zimbraPrefDefaultCalendarId?: InputMaybe<Scalars['ID']>;
|
|
3213
|
+
zimbraPrefDelegatedSendSaveTarget?: InputMaybe<PrefDelegatedSendSaveTarget>;
|
|
3214
|
+
zimbraPrefDisplayExternalImages?: InputMaybe<Scalars['Boolean']>;
|
|
3215
|
+
zimbraPrefDisplayTimeInMailList?: InputMaybe<Scalars['Boolean']>;
|
|
3216
|
+
zimbraPrefGroupMailBy?: InputMaybe<Scalars['String']>;
|
|
3217
|
+
zimbraPrefHtmlEditorDefaultFontColor?: InputMaybe<Scalars['String']>;
|
|
3218
|
+
zimbraPrefHtmlEditorDefaultFontFamily?: InputMaybe<Scalars['String']>;
|
|
3219
|
+
zimbraPrefHtmlEditorDefaultFontSize?: InputMaybe<Scalars['String']>;
|
|
3220
|
+
zimbraPrefLocale?: InputMaybe<Scalars['String']>;
|
|
3221
|
+
zimbraPrefMailForwardingAddress?: InputMaybe<Scalars['String']>;
|
|
3222
|
+
zimbraPrefMailLocalDeliveryDisabled?: InputMaybe<Scalars['Boolean']>;
|
|
3223
|
+
zimbraPrefMailPollingInterval?: InputMaybe<Scalars['String']>;
|
|
3224
|
+
zimbraPrefMailRequestReadReceipts?: InputMaybe<Scalars['Boolean']>;
|
|
3225
|
+
zimbraPrefMailSelectAfterDelete?: InputMaybe<PrefMailSelectAfterDelete>;
|
|
3226
|
+
zimbraPrefMailSendReadReceipts?: InputMaybe<PrefMailSendReadReceipts>;
|
|
3227
|
+
zimbraPrefMailToasterEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3228
|
+
zimbraPrefMailTrustedSenderList?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
3229
|
+
zimbraPrefMarkMsgRead?: InputMaybe<Scalars['Int']>;
|
|
3230
|
+
zimbraPrefMessageViewHtmlPreferred?: InputMaybe<Scalars['Boolean']>;
|
|
3231
|
+
zimbraPrefOutOfOfficeExternalReply?: InputMaybe<Scalars['String']>;
|
|
3232
|
+
zimbraPrefOutOfOfficeExternalReplyEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3233
|
+
zimbraPrefOutOfOfficeFromDate?: InputMaybe<Scalars['String']>;
|
|
3234
|
+
zimbraPrefOutOfOfficeReply?: InputMaybe<Scalars['String']>;
|
|
3235
|
+
zimbraPrefOutOfOfficeReplyEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3236
|
+
zimbraPrefOutOfOfficeStatusAlertOnLogin?: InputMaybe<Scalars['Boolean']>;
|
|
3237
|
+
zimbraPrefOutOfOfficeSuppressExternalReply?: InputMaybe<Scalars['Boolean']>;
|
|
3238
|
+
zimbraPrefOutOfOfficeUntilDate?: InputMaybe<Scalars['String']>;
|
|
3239
|
+
zimbraPrefPowerPasteEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3240
|
+
zimbraPrefReadingPaneEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3241
|
+
zimbraPrefReadingPaneLocation?: InputMaybe<ReadingPaneLocation>;
|
|
3242
|
+
zimbraPrefSaveToSent?: InputMaybe<Scalars['Boolean']>;
|
|
3243
|
+
zimbraPrefShowAllNewMailNotifications?: InputMaybe<Scalars['Boolean']>;
|
|
3244
|
+
zimbraPrefShowFragments?: InputMaybe<Scalars['Boolean']>;
|
|
3245
|
+
zimbraPrefSlackCalendarReminderEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3246
|
+
zimbraPrefSortOrder?: InputMaybe<Scalars['String']>;
|
|
3247
|
+
zimbraPrefTagTreeOpen?: InputMaybe<Scalars['Boolean']>;
|
|
3248
|
+
zimbraPrefTimeZoneId?: InputMaybe<Scalars['String']>;
|
|
3249
|
+
zimbraPrefUseTimeZoneListInCalendar?: InputMaybe<Scalars['Boolean']>;
|
|
3250
|
+
zimbraPrefWebClientOfflineBrowserKey?: InputMaybe<Scalars['String']>;
|
|
3245
3251
|
};
|
|
3246
3252
|
|
|
3247
3253
|
export type ProfileImageChangeResponse = {
|
|
@@ -3262,7 +3268,7 @@ export type PropList = {
|
|
|
3262
3268
|
};
|
|
3263
3269
|
|
|
3264
3270
|
export type PropertiesInput = {
|
|
3265
|
-
_content?:
|
|
3271
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3266
3272
|
name: Scalars['String'];
|
|
3267
3273
|
zimlet: Scalars['String'];
|
|
3268
3274
|
};
|
|
@@ -3323,25 +3329,25 @@ export type Query = {
|
|
|
3323
3329
|
|
|
3324
3330
|
|
|
3325
3331
|
export type QueryAutoCompleteArgs = {
|
|
3326
|
-
folders?:
|
|
3327
|
-
includeGal?:
|
|
3328
|
-
name?:
|
|
3329
|
-
needExp?:
|
|
3330
|
-
type?:
|
|
3332
|
+
folders?: InputMaybe<Scalars['String']>;
|
|
3333
|
+
includeGal?: InputMaybe<Scalars['Boolean']>;
|
|
3334
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3335
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3336
|
+
type?: InputMaybe<GalSearchType>;
|
|
3331
3337
|
};
|
|
3332
3338
|
|
|
3333
3339
|
|
|
3334
3340
|
export type QueryAutoCompleteGalArgs = {
|
|
3335
|
-
limit?:
|
|
3341
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3336
3342
|
name: Scalars['String'];
|
|
3337
|
-
needExp?:
|
|
3338
|
-
type?:
|
|
3343
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3344
|
+
type?: InputMaybe<GalSearchType>;
|
|
3339
3345
|
};
|
|
3340
3346
|
|
|
3341
3347
|
|
|
3342
3348
|
export type QueryClientInfoArgs = {
|
|
3343
|
-
by?:
|
|
3344
|
-
domain?:
|
|
3349
|
+
by?: InputMaybe<Scalars['String']>;
|
|
3350
|
+
domain?: InputMaybe<Scalars['String']>;
|
|
3345
3351
|
};
|
|
3346
3352
|
|
|
3347
3353
|
|
|
@@ -3364,15 +3370,15 @@ export type QueryDownloadDocumentArgs = {
|
|
|
3364
3370
|
|
|
3365
3371
|
export type QueryDownloadMessageArgs = {
|
|
3366
3372
|
id: Scalars['ID'];
|
|
3367
|
-
isLocal?:
|
|
3368
|
-
isSecure?:
|
|
3373
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
3374
|
+
isSecure?: InputMaybe<Scalars['Boolean']>;
|
|
3369
3375
|
};
|
|
3370
3376
|
|
|
3371
3377
|
|
|
3372
3378
|
export type QueryFreeBusyArgs = {
|
|
3373
|
-
end?:
|
|
3379
|
+
end?: InputMaybe<Scalars['Float']>;
|
|
3374
3380
|
names: Array<Scalars['String']>;
|
|
3375
|
-
start?:
|
|
3381
|
+
start?: InputMaybe<Scalars['Float']>;
|
|
3376
3382
|
};
|
|
3377
3383
|
|
|
3378
3384
|
|
|
@@ -3387,93 +3393,93 @@ export type QueryGetAppointmentsArgs = {
|
|
|
3387
3393
|
limit: Scalars['Int'];
|
|
3388
3394
|
offset: Scalars['Int'];
|
|
3389
3395
|
query: Scalars['String'];
|
|
3390
|
-
types?:
|
|
3396
|
+
types?: InputMaybe<SearchType>;
|
|
3391
3397
|
};
|
|
3392
3398
|
|
|
3393
3399
|
|
|
3394
3400
|
export type QueryGetContactArgs = {
|
|
3395
|
-
derefGroupMember?:
|
|
3396
|
-
id?:
|
|
3397
|
-
ids?:
|
|
3398
|
-
memberOf?:
|
|
3401
|
+
derefGroupMember?: InputMaybe<Scalars['Boolean']>;
|
|
3402
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3403
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
3404
|
+
memberOf?: InputMaybe<Scalars['Boolean']>;
|
|
3399
3405
|
};
|
|
3400
3406
|
|
|
3401
3407
|
|
|
3402
3408
|
export type QueryGetContactFrequencyArgs = {
|
|
3403
3409
|
by: Scalars['String'];
|
|
3404
3410
|
email: Scalars['String'];
|
|
3405
|
-
offsetInMinutes?:
|
|
3406
|
-
spec?:
|
|
3411
|
+
offsetInMinutes?: InputMaybe<Scalars['String']>;
|
|
3412
|
+
spec?: InputMaybe<Array<ContactFrequencySpec>>;
|
|
3407
3413
|
};
|
|
3408
3414
|
|
|
3409
3415
|
|
|
3410
3416
|
export type QueryGetConversationArgs = {
|
|
3411
|
-
fetch?:
|
|
3412
|
-
header?:
|
|
3413
|
-
html?:
|
|
3417
|
+
fetch?: InputMaybe<Scalars['String']>;
|
|
3418
|
+
header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
|
|
3419
|
+
html?: InputMaybe<Scalars['Boolean']>;
|
|
3414
3420
|
id: Scalars['ID'];
|
|
3415
|
-
max?:
|
|
3416
|
-
needExp?:
|
|
3421
|
+
max?: InputMaybe<Scalars['Int']>;
|
|
3422
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3417
3423
|
};
|
|
3418
3424
|
|
|
3419
3425
|
|
|
3420
3426
|
export type QueryGetCustomMetadataArgs = {
|
|
3421
3427
|
id: Scalars['ID'];
|
|
3422
|
-
section?:
|
|
3428
|
+
section?: InputMaybe<Scalars['String']>;
|
|
3423
3429
|
};
|
|
3424
3430
|
|
|
3425
3431
|
|
|
3426
3432
|
export type QueryGetDistributionListMembersArgs = {
|
|
3427
|
-
dl?:
|
|
3428
|
-
limit?:
|
|
3429
|
-
offset?:
|
|
3433
|
+
dl?: InputMaybe<Scalars['String']>;
|
|
3434
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3435
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3430
3436
|
};
|
|
3431
3437
|
|
|
3432
3438
|
|
|
3433
3439
|
export type QueryGetDocumentShareUrlArgs = {
|
|
3434
|
-
item?:
|
|
3440
|
+
item?: InputMaybe<GetDocumentShareUrlItemInput>;
|
|
3435
3441
|
};
|
|
3436
3442
|
|
|
3437
3443
|
|
|
3438
3444
|
export type QueryGetFolderArgs = {
|
|
3439
|
-
depth?:
|
|
3440
|
-
folder?:
|
|
3441
|
-
local?:
|
|
3442
|
-
needGranteeName?:
|
|
3443
|
-
traverseMountpoints?:
|
|
3444
|
-
view?:
|
|
3445
|
-
visible?:
|
|
3445
|
+
depth?: InputMaybe<Scalars['Int']>;
|
|
3446
|
+
folder?: InputMaybe<GetFolderFolderInput>;
|
|
3447
|
+
local?: InputMaybe<Scalars['Boolean']>;
|
|
3448
|
+
needGranteeName?: InputMaybe<Scalars['Boolean']>;
|
|
3449
|
+
traverseMountpoints?: InputMaybe<Scalars['Boolean']>;
|
|
3450
|
+
view?: InputMaybe<FolderView>;
|
|
3451
|
+
visible?: InputMaybe<Scalars['Boolean']>;
|
|
3446
3452
|
};
|
|
3447
3453
|
|
|
3448
3454
|
|
|
3449
3455
|
export type QueryGetHabArgs = {
|
|
3450
|
-
habRootGroupId?:
|
|
3456
|
+
habRootGroupId?: InputMaybe<Scalars['ID']>;
|
|
3451
3457
|
};
|
|
3452
3458
|
|
|
3453
3459
|
|
|
3454
3460
|
export type QueryGetMailboxMetadataArgs = {
|
|
3455
|
-
section?:
|
|
3461
|
+
section?: InputMaybe<Scalars['String']>;
|
|
3456
3462
|
};
|
|
3457
3463
|
|
|
3458
3464
|
|
|
3459
3465
|
export type QueryGetMessageArgs = {
|
|
3460
|
-
header?:
|
|
3461
|
-
html?:
|
|
3466
|
+
header?: InputMaybe<Array<InputMaybe<MailItemHeaderInput>>>;
|
|
3467
|
+
html?: InputMaybe<Scalars['Boolean']>;
|
|
3462
3468
|
id: Scalars['ID'];
|
|
3463
|
-
isLocal?:
|
|
3464
|
-
max?:
|
|
3465
|
-
needExp?:
|
|
3466
|
-
neuter?:
|
|
3467
|
-
part?:
|
|
3468
|
-
raw?:
|
|
3469
|
-
read?:
|
|
3470
|
-
ridZ?:
|
|
3469
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
3470
|
+
max?: InputMaybe<Scalars['Int']>;
|
|
3471
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3472
|
+
neuter?: InputMaybe<Scalars['Boolean']>;
|
|
3473
|
+
part?: InputMaybe<Scalars['ID']>;
|
|
3474
|
+
raw?: InputMaybe<Scalars['Boolean']>;
|
|
3475
|
+
read?: InputMaybe<Scalars['Boolean']>;
|
|
3476
|
+
ridZ?: InputMaybe<Scalars['String']>;
|
|
3471
3477
|
};
|
|
3472
3478
|
|
|
3473
3479
|
|
|
3474
3480
|
export type QueryGetMessagesMetadataArgs = {
|
|
3475
3481
|
ids: Array<Scalars['ID']>;
|
|
3476
|
-
isLocal?:
|
|
3482
|
+
isLocal?: InputMaybe<Scalars['Boolean']>;
|
|
3477
3483
|
};
|
|
3478
3484
|
|
|
3479
3485
|
|
|
@@ -3483,7 +3489,7 @@ export type QueryGetRemindersArgs = {
|
|
|
3483
3489
|
limit: Scalars['Int'];
|
|
3484
3490
|
offset: Scalars['Int'];
|
|
3485
3491
|
query: Scalars['String'];
|
|
3486
|
-
types?:
|
|
3492
|
+
types?: InputMaybe<SearchType>;
|
|
3487
3493
|
};
|
|
3488
3494
|
|
|
3489
3495
|
|
|
@@ -3493,7 +3499,7 @@ export type QueryGetRightsArgs = {
|
|
|
3493
3499
|
|
|
3494
3500
|
|
|
3495
3501
|
export type QueryGetSMimeCertInfoArgs = {
|
|
3496
|
-
certId?:
|
|
3502
|
+
certId?: InputMaybe<Scalars['String']>;
|
|
3497
3503
|
};
|
|
3498
3504
|
|
|
3499
3505
|
|
|
@@ -3512,20 +3518,20 @@ export type QueryGetTasksArgs = {
|
|
|
3512
3518
|
limit: Scalars['Int'];
|
|
3513
3519
|
offset: Scalars['Int'];
|
|
3514
3520
|
query: Scalars['String'];
|
|
3515
|
-
types?:
|
|
3521
|
+
types?: InputMaybe<SearchType>;
|
|
3516
3522
|
};
|
|
3517
3523
|
|
|
3518
3524
|
|
|
3519
3525
|
export type QueryGetWorkingHoursArgs = {
|
|
3520
|
-
end?:
|
|
3526
|
+
end?: InputMaybe<Scalars['Float']>;
|
|
3521
3527
|
names: Array<Scalars['String']>;
|
|
3522
|
-
start?:
|
|
3528
|
+
start?: InputMaybe<Scalars['Float']>;
|
|
3523
3529
|
};
|
|
3524
3530
|
|
|
3525
3531
|
|
|
3526
3532
|
export type QueryNoopArgs = {
|
|
3527
|
-
limitToOneBlocked?:
|
|
3528
|
-
wait?:
|
|
3533
|
+
limitToOneBlocked?: InputMaybe<Scalars['Int']>;
|
|
3534
|
+
wait?: InputMaybe<Scalars['Int']>;
|
|
3529
3535
|
};
|
|
3530
3536
|
|
|
3531
3537
|
|
|
@@ -3542,50 +3548,50 @@ export type QueryRelatedContactsArgs = {
|
|
|
3542
3548
|
|
|
3543
3549
|
|
|
3544
3550
|
export type QuerySearchArgs = {
|
|
3545
|
-
contact?:
|
|
3546
|
-
cursor?:
|
|
3547
|
-
fetch?:
|
|
3548
|
-
fullConversation?:
|
|
3549
|
-
inDumpster?:
|
|
3550
|
-
limit?:
|
|
3551
|
-
memberOf?:
|
|
3552
|
-
needExp?:
|
|
3553
|
-
offset?:
|
|
3554
|
-
query?:
|
|
3555
|
-
recip?:
|
|
3556
|
-
resultMode?:
|
|
3557
|
-
sortBy?:
|
|
3558
|
-
types?:
|
|
3551
|
+
contact?: InputMaybe<Scalars['String']>;
|
|
3552
|
+
cursor?: InputMaybe<Cursor>;
|
|
3553
|
+
fetch?: InputMaybe<Scalars['String']>;
|
|
3554
|
+
fullConversation?: InputMaybe<Scalars['Boolean']>;
|
|
3555
|
+
inDumpster?: InputMaybe<Scalars['Boolean']>;
|
|
3556
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3557
|
+
memberOf?: InputMaybe<Scalars['Boolean']>;
|
|
3558
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3559
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3560
|
+
query?: InputMaybe<Scalars['String']>;
|
|
3561
|
+
recip?: InputMaybe<Scalars['Int']>;
|
|
3562
|
+
resultMode?: InputMaybe<Scalars['String']>;
|
|
3563
|
+
sortBy?: InputMaybe<SortBy>;
|
|
3564
|
+
types?: InputMaybe<SearchType>;
|
|
3559
3565
|
};
|
|
3560
3566
|
|
|
3561
3567
|
|
|
3562
3568
|
export type QuerySearchCalendarResourcesArgs = {
|
|
3563
|
-
attrs?:
|
|
3564
|
-
limit?:
|
|
3565
|
-
needExp?:
|
|
3566
|
-
offset?:
|
|
3567
|
-
searchFilter?:
|
|
3569
|
+
attrs?: InputMaybe<Scalars['String']>;
|
|
3570
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3571
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3572
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3573
|
+
searchFilter?: InputMaybe<SearchConditionsInput>;
|
|
3568
3574
|
};
|
|
3569
3575
|
|
|
3570
3576
|
|
|
3571
3577
|
export type QuerySearchGalArgs = {
|
|
3572
|
-
limit?:
|
|
3573
|
-
locale?:
|
|
3574
|
-
name?:
|
|
3575
|
-
needExp?:
|
|
3576
|
-
needIsMember?:
|
|
3577
|
-
needIsOwner?:
|
|
3578
|
-
offset?:
|
|
3579
|
-
sortBy?:
|
|
3580
|
-
type?:
|
|
3578
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
3579
|
+
locale?: InputMaybe<Scalars['String']>;
|
|
3580
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3581
|
+
needExp?: InputMaybe<Scalars['Boolean']>;
|
|
3582
|
+
needIsMember?: InputMaybe<NeedIsMemberType>;
|
|
3583
|
+
needIsOwner?: InputMaybe<Scalars['Boolean']>;
|
|
3584
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
3585
|
+
sortBy?: InputMaybe<Scalars['String']>;
|
|
3586
|
+
type?: InputMaybe<GalSearchType>;
|
|
3581
3587
|
};
|
|
3582
3588
|
|
|
3583
3589
|
|
|
3584
3590
|
export type QueryShareInfoArgs = {
|
|
3585
|
-
grantee?:
|
|
3586
|
-
includeSelf?:
|
|
3587
|
-
internal?:
|
|
3588
|
-
owner?:
|
|
3591
|
+
grantee?: InputMaybe<Grantee>;
|
|
3592
|
+
includeSelf?: InputMaybe<Scalars['Boolean']>;
|
|
3593
|
+
internal?: InputMaybe<Scalars['Boolean']>;
|
|
3594
|
+
owner?: InputMaybe<Owner>;
|
|
3589
3595
|
};
|
|
3590
3596
|
|
|
3591
3597
|
export enum ReadingPaneLocation {
|
|
@@ -3622,9 +3628,9 @@ export type RedirectAction = {
|
|
|
3622
3628
|
};
|
|
3623
3629
|
|
|
3624
3630
|
export type RedirectActionInput = {
|
|
3625
|
-
address?:
|
|
3626
|
-
copy?:
|
|
3627
|
-
index?:
|
|
3631
|
+
address?: InputMaybe<Scalars['String']>;
|
|
3632
|
+
copy?: InputMaybe<Scalars['Boolean']>;
|
|
3633
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3628
3634
|
};
|
|
3629
3635
|
|
|
3630
3636
|
export type RelatedContact = {
|
|
@@ -3691,8 +3697,8 @@ export type ReplyAction = {
|
|
|
3691
3697
|
};
|
|
3692
3698
|
|
|
3693
3699
|
export type ReplyActionInput = {
|
|
3694
|
-
content?:
|
|
3695
|
-
index?:
|
|
3700
|
+
content?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
3701
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
3696
3702
|
};
|
|
3697
3703
|
|
|
3698
3704
|
export type ResetPasswordResponse = {
|
|
@@ -3712,7 +3718,7 @@ export enum ResetPasswordStatus {
|
|
|
3712
3718
|
}
|
|
3713
3719
|
|
|
3714
3720
|
export type RevokeRightsInput = {
|
|
3715
|
-
access?:
|
|
3721
|
+
access?: InputMaybe<Array<InputMaybe<AccountAceInfoInput>>>;
|
|
3716
3722
|
};
|
|
3717
3723
|
|
|
3718
3724
|
export type Right = {
|
|
@@ -3761,16 +3767,16 @@ export enum SaveDocumentAction {
|
|
|
3761
3767
|
}
|
|
3762
3768
|
|
|
3763
3769
|
export type SaveDocumentInput = {
|
|
3764
|
-
action?:
|
|
3765
|
-
contentType?:
|
|
3766
|
-
descriptionEnabled?:
|
|
3767
|
-
folderId?:
|
|
3768
|
-
id?:
|
|
3769
|
-
messageData?:
|
|
3770
|
-
name?:
|
|
3771
|
-
type?:
|
|
3772
|
-
upload?:
|
|
3773
|
-
version?:
|
|
3770
|
+
action?: InputMaybe<SaveDocumentAction>;
|
|
3771
|
+
contentType?: InputMaybe<Scalars['String']>;
|
|
3772
|
+
descriptionEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
3773
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
3774
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3775
|
+
messageData?: InputMaybe<Array<InputMaybe<MessagePartForDocument>>>;
|
|
3776
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3777
|
+
type?: InputMaybe<SaveDocumentType>;
|
|
3778
|
+
upload?: InputMaybe<UploadDocument>;
|
|
3779
|
+
version?: InputMaybe<Scalars['Float']>;
|
|
3774
3780
|
};
|
|
3775
3781
|
|
|
3776
3782
|
export type SaveDocumentResponse = {
|
|
@@ -3796,7 +3802,7 @@ export type SaveMessageDataInput = {
|
|
|
3796
3802
|
};
|
|
3797
3803
|
|
|
3798
3804
|
export type SaveSMimeCertInputUpload = {
|
|
3799
|
-
id?:
|
|
3805
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3800
3806
|
};
|
|
3801
3807
|
|
|
3802
3808
|
export type ScratchCode = {
|
|
@@ -3824,7 +3830,7 @@ export type SearchCalendarResourcesResponse = {
|
|
|
3824
3830
|
};
|
|
3825
3831
|
|
|
3826
3832
|
export type SearchConditionsInput = {
|
|
3827
|
-
conds?:
|
|
3833
|
+
conds?: InputMaybe<ConditionsInput>;
|
|
3828
3834
|
};
|
|
3829
3835
|
|
|
3830
3836
|
export type SearchFolderInput = {
|
|
@@ -3864,22 +3870,22 @@ export type Secret = {
|
|
|
3864
3870
|
};
|
|
3865
3871
|
|
|
3866
3872
|
export type SendMessageInput = {
|
|
3867
|
-
attach?:
|
|
3868
|
-
attachmentId?:
|
|
3869
|
-
attachments?:
|
|
3870
|
-
autoSendTime?:
|
|
3871
|
-
draftId?:
|
|
3872
|
-
emailAddresses?:
|
|
3873
|
-
entityId?:
|
|
3874
|
-
flags?:
|
|
3875
|
-
folderId?:
|
|
3876
|
-
id?:
|
|
3877
|
-
inReplyTo?:
|
|
3878
|
-
inlineAttachments?:
|
|
3879
|
-
mimeParts?:
|
|
3880
|
-
origId?:
|
|
3881
|
-
replyType?:
|
|
3882
|
-
subject?:
|
|
3873
|
+
attach?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
3874
|
+
attachmentId?: InputMaybe<Scalars['ID']>;
|
|
3875
|
+
attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
|
|
3876
|
+
autoSendTime?: InputMaybe<Scalars['Float']>;
|
|
3877
|
+
draftId?: InputMaybe<Scalars['ID']>;
|
|
3878
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
3879
|
+
entityId?: InputMaybe<Scalars['String']>;
|
|
3880
|
+
flags?: InputMaybe<Scalars['String']>;
|
|
3881
|
+
folderId?: InputMaybe<Scalars['ID']>;
|
|
3882
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3883
|
+
inReplyTo?: InputMaybe<Scalars['String']>;
|
|
3884
|
+
inlineAttachments?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
3885
|
+
mimeParts?: InputMaybe<Array<InputMaybe<MimePartInput>>>;
|
|
3886
|
+
origId?: InputMaybe<Scalars['ID']>;
|
|
3887
|
+
replyType?: InputMaybe<Scalars['String']>;
|
|
3888
|
+
subject?: InputMaybe<Scalars['String']>;
|
|
3883
3889
|
};
|
|
3884
3890
|
|
|
3885
3891
|
export type SendMessageResponse = {
|
|
@@ -3929,8 +3935,8 @@ export enum ShareInputAction {
|
|
|
3929
3935
|
|
|
3930
3936
|
export type ShareNotificaitonEmailAddressInput = {
|
|
3931
3937
|
address: Scalars['String'];
|
|
3932
|
-
personalName?:
|
|
3933
|
-
type?:
|
|
3938
|
+
personalName?: InputMaybe<Scalars['String']>;
|
|
3939
|
+
type?: InputMaybe<AddressType>;
|
|
3934
3940
|
};
|
|
3935
3941
|
|
|
3936
3942
|
export type ShareNotification = {
|
|
@@ -3940,10 +3946,10 @@ export type ShareNotification = {
|
|
|
3940
3946
|
};
|
|
3941
3947
|
|
|
3942
3948
|
export type ShareNotificationInput = {
|
|
3943
|
-
action?:
|
|
3949
|
+
action?: InputMaybe<ShareInputAction>;
|
|
3944
3950
|
address: ShareNotificaitonEmailAddressInput;
|
|
3945
3951
|
item: ShareNotificationItemInput;
|
|
3946
|
-
notes?:
|
|
3952
|
+
notes?: InputMaybe<Notes>;
|
|
3947
3953
|
};
|
|
3948
3954
|
|
|
3949
3955
|
export type ShareNotificationItemInput = {
|
|
@@ -3964,15 +3970,15 @@ export type SignatureContent = {
|
|
|
3964
3970
|
};
|
|
3965
3971
|
|
|
3966
3972
|
export type SignatureContentInput = {
|
|
3967
|
-
_content?:
|
|
3968
|
-
type?:
|
|
3973
|
+
_content?: InputMaybe<Scalars['String']>;
|
|
3974
|
+
type?: InputMaybe<Scalars['String']>;
|
|
3969
3975
|
};
|
|
3970
3976
|
|
|
3971
3977
|
export type SignatureInput = {
|
|
3972
|
-
content?:
|
|
3973
|
-
contentId?:
|
|
3974
|
-
id?:
|
|
3975
|
-
name?:
|
|
3978
|
+
content?: InputMaybe<SignatureContentInput>;
|
|
3979
|
+
contentId?: InputMaybe<Scalars['String']>;
|
|
3980
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3981
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3976
3982
|
};
|
|
3977
3983
|
|
|
3978
3984
|
export type SignatureResponse = {
|
|
@@ -4006,10 +4012,10 @@ export type SizeCondition = {
|
|
|
4006
4012
|
};
|
|
4007
4013
|
|
|
4008
4014
|
export type SizeConditionInput = {
|
|
4009
|
-
index?:
|
|
4010
|
-
negative?:
|
|
4011
|
-
numberComparison?:
|
|
4012
|
-
size?:
|
|
4015
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
4016
|
+
negative?: InputMaybe<Scalars['Boolean']>;
|
|
4017
|
+
numberComparison?: InputMaybe<Scalars['String']>;
|
|
4018
|
+
size?: InputMaybe<Scalars['String']>;
|
|
4013
4019
|
};
|
|
4014
4020
|
|
|
4015
4021
|
export type Skin = {
|
|
@@ -4125,7 +4131,7 @@ export type TagAction = {
|
|
|
4125
4131
|
};
|
|
4126
4132
|
|
|
4127
4133
|
export type TagActionInput = {
|
|
4128
|
-
index?:
|
|
4134
|
+
index?: InputMaybe<Scalars['Int']>;
|
|
4129
4135
|
tagName: Scalars['String'];
|
|
4130
4136
|
};
|
|
4131
4137
|
|
|
@@ -4181,7 +4187,7 @@ export type WhiteBlackAddress = {
|
|
|
4181
4187
|
|
|
4182
4188
|
export type WhiteBlackAddressOpts = {
|
|
4183
4189
|
_content: Scalars['String'];
|
|
4184
|
-
op?:
|
|
4190
|
+
op?: InputMaybe<Scalars['String']>;
|
|
4185
4191
|
};
|
|
4186
4192
|
|
|
4187
4193
|
export type WhiteBlackList = {
|
|
@@ -4196,12 +4202,12 @@ export type WhiteBlackListArr = {
|
|
|
4196
4202
|
};
|
|
4197
4203
|
|
|
4198
4204
|
export type WhiteBlackListArrInput = {
|
|
4199
|
-
addr?:
|
|
4205
|
+
addr?: InputMaybe<Array<InputMaybe<WhiteBlackAddressOpts>>>;
|
|
4200
4206
|
};
|
|
4201
4207
|
|
|
4202
4208
|
export type WhiteBlackListInput = {
|
|
4203
|
-
blackList?:
|
|
4204
|
-
whiteList?:
|
|
4209
|
+
blackList?: InputMaybe<WhiteBlackListArrInput>;
|
|
4210
|
+
whiteList?: InputMaybe<WhiteBlackListArrInput>;
|
|
4205
4211
|
};
|
|
4206
4212
|
|
|
4207
4213
|
export type WkDay = {
|
|
@@ -4212,7 +4218,7 @@ export type WkDay = {
|
|
|
4212
4218
|
|
|
4213
4219
|
export type WkDayInput = {
|
|
4214
4220
|
day: Weekday;
|
|
4215
|
-
ordwk?:
|
|
4221
|
+
ordwk?: InputMaybe<Scalars['Int']>;
|
|
4216
4222
|
};
|
|
4217
4223
|
|
|
4218
4224
|
export type WorkingHours = {
|