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