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