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