@zimbra/api-client 97.0.0 → 99.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/dist/schema.graphql +32 -3
- package/dist/src/batch-client/index.d.ts +2 -2
- package/dist/src/batch-client/types.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +29 -1
- package/dist/zm-api-js-client.esm.js +1262 -798
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +8 -8
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +7 -7
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +1801 -1925
- package/package.json +9 -9
- package/src/apollo/zimbra-in-memory-cache.ts +35 -5
- package/src/batch-client/index.ts +17 -6
- package/src/batch-client/types.ts +1 -0
- package/src/normalize/entities.ts +4 -2
- package/src/schema/generated-schema-types.ts +30 -1
- package/src/schema/schema.graphql +32 -3
- package/src/schema/schema.ts +2 -1
package/dist/schema.graphql
CHANGED
|
@@ -203,6 +203,7 @@ enum SearchType {
|
|
|
203
203
|
wiki
|
|
204
204
|
document
|
|
205
205
|
unknown
|
|
206
|
+
briefcase
|
|
206
207
|
}
|
|
207
208
|
|
|
208
209
|
enum ContactType {
|
|
@@ -322,6 +323,13 @@ enum PrefClientType {
|
|
|
322
323
|
standard
|
|
323
324
|
}
|
|
324
325
|
|
|
326
|
+
enum Pop3DeleteOption {
|
|
327
|
+
keep
|
|
328
|
+
read
|
|
329
|
+
trash
|
|
330
|
+
delete
|
|
331
|
+
}
|
|
332
|
+
|
|
325
333
|
enum Mode {
|
|
326
334
|
text
|
|
327
335
|
html
|
|
@@ -1454,6 +1462,8 @@ type AccountZimletConfigInfo {
|
|
|
1454
1462
|
|
|
1455
1463
|
type AccountInfoAttrs {
|
|
1456
1464
|
displayName: String
|
|
1465
|
+
zimbraAttachmentsBlocked: Boolean
|
|
1466
|
+
zimbraAttachmentsViewInHtmlOnly: Boolean
|
|
1457
1467
|
zimbraBrandingFolderName: String
|
|
1458
1468
|
zimbraDataSourceMaxNumEntries: Int
|
|
1459
1469
|
zimbraDomainTrialConvertAtExpiration: Boolean
|
|
@@ -1549,6 +1559,8 @@ type AccountInfoAttrs {
|
|
|
1549
1559
|
zimbraFeatureAdvancedChatEnabled: Boolean
|
|
1550
1560
|
zimbraMailIdleSessionTimeout: String
|
|
1551
1561
|
zimbraFeatureDeliveryStatusNotificationEnabled: Boolean
|
|
1562
|
+
zimbraPop3Enabled: Boolean
|
|
1563
|
+
zimbraFeatureOptionsEnabled: Boolean
|
|
1552
1564
|
}
|
|
1553
1565
|
|
|
1554
1566
|
type AccountCos {
|
|
@@ -1700,6 +1712,11 @@ type Preferences {
|
|
|
1700
1712
|
zimbraPrefDisplayTimeInMailList: Boolean
|
|
1701
1713
|
zimbraPrefPrimaryTwoFactorAuthMethod: String
|
|
1702
1714
|
zimbraPrefMailDeliveryStatusNotification: Boolean
|
|
1715
|
+
zimbraPrefImapEnabled: Boolean
|
|
1716
|
+
zimbraPrefPop3Enabled: Boolean
|
|
1717
|
+
zimbraPrefPop3DownloadSince: String
|
|
1718
|
+
zimbraPrefPop3IncludeSpam: Boolean
|
|
1719
|
+
zimbraPrefPop3DeleteOption: Pop3DeleteOption
|
|
1703
1720
|
}
|
|
1704
1721
|
|
|
1705
1722
|
type GetAppointmentResponse {
|
|
@@ -2427,7 +2444,8 @@ input CalendarItemInviteComponentCounterInput {
|
|
|
2427
2444
|
status: InviteCompletionStatus
|
|
2428
2445
|
noBlob: Boolean
|
|
2429
2446
|
description: [CalendarItemInviteComponentDescriptionInput]
|
|
2430
|
-
draft: Boolean
|
|
2447
|
+
draft: Boolean,
|
|
2448
|
+
seq: Int
|
|
2431
2449
|
}
|
|
2432
2450
|
|
|
2433
2451
|
type CalendarItemAttendee {
|
|
@@ -2437,11 +2455,13 @@ type CalendarItemAttendee {
|
|
|
2437
2455
|
address: String
|
|
2438
2456
|
name: String
|
|
2439
2457
|
calendarUserType: String
|
|
2458
|
+
isGroup: Boolean
|
|
2440
2459
|
}
|
|
2441
2460
|
|
|
2442
2461
|
type CalendarItemReply {
|
|
2443
2462
|
participationStatus: ParticipationStatus
|
|
2444
2463
|
address: String
|
|
2464
|
+
isGroup: Boolean
|
|
2445
2465
|
}
|
|
2446
2466
|
|
|
2447
2467
|
input CalendarItemAttendeesInput {
|
|
@@ -2777,6 +2797,11 @@ input PreferencesInput {
|
|
|
2777
2797
|
zimbraPrefPrimaryTwoFactorAuthMethod: String
|
|
2778
2798
|
zimbraPrefDeleteInviteOnReply: Boolean
|
|
2779
2799
|
zimbraPrefMailDeliveryStatusNotification: Boolean
|
|
2800
|
+
zimbraPrefImapEnabled: Boolean
|
|
2801
|
+
zimbraPrefPop3Enabled: Boolean
|
|
2802
|
+
zimbraPrefPop3DownloadSince: String
|
|
2803
|
+
zimbraPrefPop3IncludeSpam: Boolean
|
|
2804
|
+
zimbraPrefPop3DeleteOption: Pop3DeleteOption
|
|
2780
2805
|
}
|
|
2781
2806
|
|
|
2782
2807
|
input ModifyIdentityInput {
|
|
@@ -3150,7 +3175,8 @@ input NameIdInput {
|
|
|
3150
3175
|
name: String
|
|
3151
3176
|
}
|
|
3152
3177
|
input InstanceDate {
|
|
3153
|
-
date: String
|
|
3178
|
+
date: String,
|
|
3179
|
+
timezone: String
|
|
3154
3180
|
}
|
|
3155
3181
|
input DeleteAppointmentInput {
|
|
3156
3182
|
instanceDate: InstanceDate
|
|
@@ -3691,6 +3717,7 @@ type Mutation {
|
|
|
3691
3717
|
tagNames: String
|
|
3692
3718
|
name: String
|
|
3693
3719
|
isLocal: Boolean
|
|
3720
|
+
isBatchOperation: Boolean
|
|
3694
3721
|
recursive: Boolean
|
|
3695
3722
|
destFolderLocal: Boolean
|
|
3696
3723
|
): Boolean
|
|
@@ -3715,13 +3742,14 @@ type Mutation {
|
|
|
3715
3742
|
content: String
|
|
3716
3743
|
contentType: String
|
|
3717
3744
|
): ProfileImageChangeResponse
|
|
3718
|
-
checkCalendar(id: ID!, value: Boolean!):
|
|
3745
|
+
checkCalendar(id: ID!, value: Boolean!): ActionOpResponse
|
|
3719
3746
|
contactAction(
|
|
3720
3747
|
id: ID
|
|
3721
3748
|
ids: [ID!]
|
|
3722
3749
|
folderId: ID
|
|
3723
3750
|
op: String!
|
|
3724
3751
|
tagNames: String
|
|
3752
|
+
isBatchOperation: Boolean
|
|
3725
3753
|
): ActionOpResponse
|
|
3726
3754
|
conversationAction(ids: [ID!]!, op: String!): Boolean
|
|
3727
3755
|
counterAppointment(
|
|
@@ -3784,6 +3812,7 @@ type Mutation {
|
|
|
3784
3812
|
op: String!
|
|
3785
3813
|
tagNames: String
|
|
3786
3814
|
name: String
|
|
3815
|
+
isBatchOperation: Boolean
|
|
3787
3816
|
): Boolean
|
|
3788
3817
|
importExternalAccount(externalAccount: ExternalAccountImportInput!): Boolean
|
|
3789
3818
|
logout: Boolean
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { JsonRequestOptions } from '../request/types';
|
|
2
|
-
import { AddMsgInput, CalendarItemInput, CounterAppointmentInput, CreateContactInput, CreateIdentityInput, CreateMountpointInput, CreateTagInput, DeleteAppointmentInput, DeleteIdentityInput, DistributionListActionInput, EnableTwoFactorAuthInput, ExternalAccountAddInput, ExternalAccountImportInput, ExternalAccountTestInput, FilterInput, FolderActionChangeColorInput, FolderActionCheckCalendarInput, ForwardAppointmentInput, ForwardAppointmentInviteInput, GetRightsInput, GrantRightsInput, InviteReplyInput, ModifyContactInput, ModifyIdentityInput, PreferencesInput, RevokeRightsInput, SaveSMimeCertInputUpload, SearchFolderInput, SendMessageInput, SendTwoFactorAuthCodeInput, ShareNotificationInput, SignatureInput, WhiteBlackListInput, ZimletPreferenceInput } from '../schema/generated-schema-types';
|
|
2
|
+
import { ActionOpResponse, AddMsgInput, CalendarItemInput, CounterAppointmentInput, CreateContactInput, CreateIdentityInput, CreateMountpointInput, CreateTagInput, DeleteAppointmentInput, DeleteIdentityInput, DistributionListActionInput, EnableTwoFactorAuthInput, ExternalAccountAddInput, ExternalAccountImportInput, ExternalAccountTestInput, FilterInput, FolderActionChangeColorInput, FolderActionCheckCalendarInput, ForwardAppointmentInput, ForwardAppointmentInviteInput, GetRightsInput, GrantRightsInput, InviteReplyInput, ModifyContactInput, ModifyIdentityInput, PreferencesInput, RevokeRightsInput, SaveSMimeCertInputUpload, SearchFolderInput, SendMessageInput, SendTwoFactorAuthCodeInput, ShareNotificationInput, SignatureInput, WhiteBlackListInput, ZimletPreferenceInput } from '../schema/generated-schema-types';
|
|
3
3
|
import { ActionOptions, ActionType, ApplyFilterRulesOptions, AppointmentOptions, AutoCompleteGALOptions, AutoCompleteOptions, ChangePasswordOptions, CreateFolderOptions, CreateSearchFolderOptions, DiscoverRightOptions, ExternalAccountDeleteInput, ExternalAccountModifyInput, FreeBusyOptions, GetContactFrequencyOptions, GetContactOptions, GetConversationOptions, GetCustomMetadataOptions, GetDocumentShareURLOptions, GetFolderOptions, GetMailboxMetadataOptions, GetMessageOptions, GetSMimePublicCertsOptions, LoginOptions, ModifyProfileImageOptions, NoOpOptions, RecoverAccountOptions, RelatedContactsOptions, ResetPasswordOptions, SaveDocumentInput, SearchCalendarResourcesOptions, SearchOptions, SetRecoveryAccountOptions, ShareInfoOptions, WorkingHoursOptions, ZimbraClientOptions } from './types';
|
|
4
4
|
import { Notifier } from './notifier';
|
|
5
5
|
export declare class ZimbraBatchClient {
|
|
@@ -33,7 +33,7 @@ export declare class ZimbraBatchClient {
|
|
|
33
33
|
cancelTask: ({ inviteId }: any) => Promise<boolean>;
|
|
34
34
|
changeFolderColor: ({ id, color }: FolderActionChangeColorInput) => Promise<boolean>;
|
|
35
35
|
changePassword: ({ loginNewPassword, password, username, dryRun, authToken, csrfToken }: ChangePasswordOptions) => Promise<any>;
|
|
36
|
-
checkCalendar: ({ id, value }: FolderActionCheckCalendarInput) => Promise<
|
|
36
|
+
checkCalendar: ({ id, value }: FolderActionCheckCalendarInput) => Promise<ActionOpResponse>;
|
|
37
37
|
clientInfo: ({ by, domain }: any) => Promise<any>;
|
|
38
38
|
contactAction: (options: ActionOptions) => Promise<boolean>;
|
|
39
39
|
conversationAction: (options: ActionOptions) => Promise<boolean>;
|
|
@@ -103,6 +103,8 @@ export type AccountInfo = {
|
|
|
103
103
|
export type AccountInfoAttrs = {
|
|
104
104
|
__typename?: 'AccountInfoAttrs';
|
|
105
105
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
106
|
+
zimbraAttachmentsBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
107
|
+
zimbraAttachmentsViewInHtmlOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
106
108
|
zimbraBlockEmailSendFromImapPop?: Maybe<Scalars['Boolean']['output']>;
|
|
107
109
|
zimbraBrandingFolderName?: Maybe<Scalars['String']['output']>;
|
|
108
110
|
zimbraDataSourceMaxNumEntries?: Maybe<Scalars['Int']['output']>;
|
|
@@ -144,6 +146,7 @@ export type AccountInfoAttrs = {
|
|
|
144
146
|
zimbraFeatureMailSendLaterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
145
147
|
zimbraFeatureManageZimlets?: Maybe<Scalars['Boolean']['output']>;
|
|
146
148
|
zimbraFeatureMobileSyncEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
149
|
+
zimbraFeatureOptionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
147
150
|
zimbraFeatureOutOfOfficeReplyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
148
151
|
zimbraFeaturePop3DataSourceEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
149
152
|
zimbraFeaturePowerPasteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -190,6 +193,7 @@ export type AccountInfoAttrs = {
|
|
|
190
193
|
zimbraPasswordMinNumericChars?: Maybe<Scalars['Int']['output']>;
|
|
191
194
|
zimbraPasswordMinPunctuationChars?: Maybe<Scalars['Int']['output']>;
|
|
192
195
|
zimbraPasswordMinUpperCaseChars?: Maybe<Scalars['Int']['output']>;
|
|
196
|
+
zimbraPop3Enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
193
197
|
zimbraPublicSharingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
194
198
|
zimbraSignupAffiliate?: Maybe<Scalars['String']['output']>;
|
|
195
199
|
zimbraSignupRecoveryEmail?: Maybe<Scalars['String']['output']>;
|
|
@@ -574,6 +578,7 @@ export type CalendarItemAttendee = {
|
|
|
574
578
|
__typename?: 'CalendarItemAttendee';
|
|
575
579
|
address?: Maybe<Scalars['String']['output']>;
|
|
576
580
|
calendarUserType?: Maybe<Scalars['String']['output']>;
|
|
581
|
+
isGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
577
582
|
name?: Maybe<Scalars['String']['output']>;
|
|
578
583
|
participationStatus?: Maybe<ParticipationStatus>;
|
|
579
584
|
role?: Maybe<ParticipationRole>;
|
|
@@ -664,6 +669,7 @@ export type CalendarItemInviteComponentCounterInput = {
|
|
|
664
669
|
percentComplete?: InputMaybe<Scalars['String']['input']>;
|
|
665
670
|
priority?: InputMaybe<Scalars['String']['input']>;
|
|
666
671
|
recurrence?: InputMaybe<CalendarItemRecurrenceInput>;
|
|
672
|
+
seq?: InputMaybe<Scalars['Int']['input']>;
|
|
667
673
|
start: CalendarItemDateTimeInput;
|
|
668
674
|
status?: InputMaybe<InviteCompletionStatus>;
|
|
669
675
|
uid?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -766,6 +772,7 @@ export type CalendarItemRecurrenceRuleInput = {
|
|
|
766
772
|
export type CalendarItemReply = {
|
|
767
773
|
__typename?: 'CalendarItemReply';
|
|
768
774
|
address?: Maybe<Scalars['String']['output']>;
|
|
775
|
+
isGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
769
776
|
participationStatus?: Maybe<ParticipationStatus>;
|
|
770
777
|
};
|
|
771
778
|
export type CalendarOptionalItemDateTimeInput = {
|
|
@@ -1986,6 +1993,7 @@ export type Instance = {
|
|
|
1986
1993
|
};
|
|
1987
1994
|
export type InstanceDate = {
|
|
1988
1995
|
date?: InputMaybe<Scalars['String']['input']>;
|
|
1996
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
1989
1997
|
};
|
|
1990
1998
|
export type IntervalRule = {
|
|
1991
1999
|
__typename?: 'IntervalRule';
|
|
@@ -2408,7 +2416,7 @@ export type Mutation = {
|
|
|
2408
2416
|
cancelTask?: Maybe<Scalars['Boolean']['output']>;
|
|
2409
2417
|
changeFolderColor?: Maybe<Scalars['Boolean']['output']>;
|
|
2410
2418
|
changePassword?: Maybe<AuthResponse>;
|
|
2411
|
-
checkCalendar?: Maybe<
|
|
2419
|
+
checkCalendar?: Maybe<ActionOpResponse>;
|
|
2412
2420
|
contactAction?: Maybe<ActionOpResponse>;
|
|
2413
2421
|
conversationAction?: Maybe<Scalars['Boolean']['output']>;
|
|
2414
2422
|
counterAppointment?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2504,6 +2512,7 @@ export type MutationActionArgs = {
|
|
|
2504
2512
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
2505
2513
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2506
2514
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2515
|
+
isBatchOperation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2507
2516
|
isLocal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2508
2517
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2509
2518
|
op: Scalars['String']['input'];
|
|
@@ -2557,6 +2566,7 @@ export type MutationContactActionArgs = {
|
|
|
2557
2566
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
2558
2567
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2559
2568
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2569
|
+
isBatchOperation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2560
2570
|
op: Scalars['String']['input'];
|
|
2561
2571
|
tagNames?: InputMaybe<Scalars['String']['input']>;
|
|
2562
2572
|
};
|
|
@@ -2679,6 +2689,7 @@ export type MutationItemActionArgs = {
|
|
|
2679
2689
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
2680
2690
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2681
2691
|
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
2692
|
+
isBatchOperation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2682
2693
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2683
2694
|
op: Scalars['String']['input'];
|
|
2684
2695
|
tagNames?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2957,6 +2968,12 @@ export type PolicyAttrsInput = {
|
|
|
2957
2968
|
export type PolicyInput = {
|
|
2958
2969
|
policy?: InputMaybe<Array<InputMaybe<PolicyAttrsInput>>>;
|
|
2959
2970
|
};
|
|
2971
|
+
export declare enum Pop3DeleteOption {
|
|
2972
|
+
Delete = "delete",
|
|
2973
|
+
Keep = "keep",
|
|
2974
|
+
Read = "read",
|
|
2975
|
+
Trash = "trash"
|
|
2976
|
+
}
|
|
2960
2977
|
export declare enum PrefCalendarInitialView {
|
|
2961
2978
|
Day = "day",
|
|
2962
2979
|
List = "list",
|
|
@@ -3016,6 +3033,7 @@ export type Preferences = {
|
|
|
3016
3033
|
zimbraPrefHtmlEditorDefaultFontColor?: Maybe<Scalars['String']['output']>;
|
|
3017
3034
|
zimbraPrefHtmlEditorDefaultFontFamily?: Maybe<Scalars['String']['output']>;
|
|
3018
3035
|
zimbraPrefHtmlEditorDefaultFontSize?: Maybe<Scalars['String']['output']>;
|
|
3036
|
+
zimbraPrefImapEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3019
3037
|
zimbraPrefLocale?: Maybe<Scalars['String']['output']>;
|
|
3020
3038
|
zimbraPrefMailDeliveryStatusNotification?: Maybe<Scalars['Boolean']['output']>;
|
|
3021
3039
|
zimbraPrefMailForwardingAddress?: Maybe<Scalars['String']['output']>;
|
|
@@ -3038,6 +3056,10 @@ export type Preferences = {
|
|
|
3038
3056
|
zimbraPrefOutOfOfficeUntilDate?: Maybe<Scalars['String']['output']>;
|
|
3039
3057
|
zimbraPrefPasswordRecoveryAddress?: Maybe<Scalars['String']['output']>;
|
|
3040
3058
|
zimbraPrefPasswordRecoveryAddressStatus?: Maybe<PasswordRecoveryAddressStatus>;
|
|
3059
|
+
zimbraPrefPop3DeleteOption?: Maybe<Pop3DeleteOption>;
|
|
3060
|
+
zimbraPrefPop3DownloadSince?: Maybe<Scalars['String']['output']>;
|
|
3061
|
+
zimbraPrefPop3Enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3062
|
+
zimbraPrefPop3IncludeSpam?: Maybe<Scalars['Boolean']['output']>;
|
|
3041
3063
|
zimbraPrefPowerPasteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3042
3064
|
zimbraPrefPrimaryTwoFactorAuthMethod?: Maybe<Scalars['String']['output']>;
|
|
3043
3065
|
zimbraPrefReadingPaneEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3081,6 +3103,7 @@ export type PreferencesInput = {
|
|
|
3081
3103
|
zimbraPrefHtmlEditorDefaultFontColor?: InputMaybe<Scalars['String']['input']>;
|
|
3082
3104
|
zimbraPrefHtmlEditorDefaultFontFamily?: InputMaybe<Scalars['String']['input']>;
|
|
3083
3105
|
zimbraPrefHtmlEditorDefaultFontSize?: InputMaybe<Scalars['String']['input']>;
|
|
3106
|
+
zimbraPrefImapEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3084
3107
|
zimbraPrefLocale?: InputMaybe<Scalars['String']['input']>;
|
|
3085
3108
|
zimbraPrefMailDeliveryStatusNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3086
3109
|
zimbraPrefMailForwardingAddress?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3101,6 +3124,10 @@ export type PreferencesInput = {
|
|
|
3101
3124
|
zimbraPrefOutOfOfficeStatusAlertOnLogin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3102
3125
|
zimbraPrefOutOfOfficeSuppressExternalReply?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3103
3126
|
zimbraPrefOutOfOfficeUntilDate?: InputMaybe<Scalars['String']['input']>;
|
|
3127
|
+
zimbraPrefPop3DeleteOption?: InputMaybe<Pop3DeleteOption>;
|
|
3128
|
+
zimbraPrefPop3DownloadSince?: InputMaybe<Scalars['String']['input']>;
|
|
3129
|
+
zimbraPrefPop3Enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3130
|
+
zimbraPrefPop3IncludeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3104
3131
|
zimbraPrefPowerPasteEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3105
3132
|
zimbraPrefPrimaryTwoFactorAuthMethod?: InputMaybe<Scalars['String']['input']>;
|
|
3106
3133
|
zimbraPrefReadingPaneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3651,6 +3678,7 @@ export type SearchResponse = {
|
|
|
3651
3678
|
};
|
|
3652
3679
|
export declare enum SearchType {
|
|
3653
3680
|
Appointment = "appointment",
|
|
3681
|
+
Briefcase = "briefcase",
|
|
3654
3682
|
Contact = "contact",
|
|
3655
3683
|
Conversation = "conversation",
|
|
3656
3684
|
Document = "document",
|