@zimbra/api-client 91.0.0 → 92.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 +5 -1
- package/dist/src/batch-client/index.d.ts +1 -1
- package/dist/src/batch-client/types.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +5 -0
- package/dist/zm-api-js-client.esm.js +18 -6
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +17 -5
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +18 -6
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +333 -275
- package/package.json +6 -3
- package/src/apollo/local-batch-link.ts +9 -9
- package/src/batch-client/index.ts +3 -2
- package/src/batch-client/types.ts +1 -0
- package/src/schema/generated-schema-types.ts +5 -0
- package/src/schema/schema.graphql +5 -1
package/dist/schema.graphql
CHANGED
|
@@ -202,6 +202,7 @@ enum SearchType {
|
|
|
202
202
|
task
|
|
203
203
|
wiki
|
|
204
204
|
document
|
|
205
|
+
unknown
|
|
205
206
|
}
|
|
206
207
|
|
|
207
208
|
enum ContactType {
|
|
@@ -511,6 +512,8 @@ type ClientInfoAttributes {
|
|
|
511
512
|
zimbraFeatureResetPasswordStatus: ResetPasswordStatus
|
|
512
513
|
zimbraHelpModernURL: String
|
|
513
514
|
zimbraClassicWebClientDisabled: Boolean
|
|
515
|
+
zimbraSkinLogoLoginBanner: String
|
|
516
|
+
zimbraSkinLogoAppBanner: String
|
|
514
517
|
}
|
|
515
518
|
|
|
516
519
|
type ClientInfoType {
|
|
@@ -2744,6 +2747,7 @@ input PreferencesInput {
|
|
|
2744
2747
|
zimbraPrefPowerPasteEnabled: Boolean
|
|
2745
2748
|
zimbraPrefDisplayTimeInMailList: Boolean
|
|
2746
2749
|
zimbraPrefPrimaryTwoFactorAuthMethod: String
|
|
2750
|
+
zimbraPrefDeleteInviteOnReply: Boolean
|
|
2747
2751
|
}
|
|
2748
2752
|
|
|
2749
2753
|
input ModifyIdentityInput {
|
|
@@ -3472,7 +3476,7 @@ type Query {
|
|
|
3472
3476
|
downloadDocument(id: ID!, url: String!): Attachment
|
|
3473
3477
|
listDocumentRevisions(id: ID!, version: Int!, count: Int!): Document
|
|
3474
3478
|
discoverRights(right: [DiscoverRightInput!]!): DiscoverRights
|
|
3475
|
-
freeBusy(names: [String!]!, start: Float, end: Float): [FreeBusy]
|
|
3479
|
+
freeBusy(names: [String!]!, start: Float, end: Float, excludeUid: String): [FreeBusy]
|
|
3476
3480
|
getContact(
|
|
3477
3481
|
id: ID
|
|
3478
3482
|
ids: [ID!]
|
|
@@ -78,7 +78,7 @@ export declare class ZimbraBatchClient {
|
|
|
78
78
|
folderAction: (options: ActionOptions) => Promise<boolean>;
|
|
79
79
|
forwardAppointment: (body: ForwardAppointmentInput) => Promise<boolean>;
|
|
80
80
|
forwardAppointmentInvite: (body: ForwardAppointmentInviteInput) => Promise<boolean>;
|
|
81
|
-
freeBusy: ({ start, end, names }: FreeBusyOptions) => Promise<any>;
|
|
81
|
+
freeBusy: ({ start, end, names, excludeUid }: FreeBusyOptions) => Promise<any>;
|
|
82
82
|
generateScratchCodes: (username: String) => Promise<any>;
|
|
83
83
|
getAccountDistributionLists: (attrs: String, ownerOf: number) => Promise<{
|
|
84
84
|
dls: any;
|
|
@@ -775,6 +775,8 @@ export type ClientInfoAttributes = {
|
|
|
775
775
|
zimbraClassicWebClientDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
776
776
|
zimbraFeatureResetPasswordStatus?: Maybe<ResetPasswordStatus>;
|
|
777
777
|
zimbraHelpModernURL?: Maybe<Scalars['String']['output']>;
|
|
778
|
+
zimbraSkinLogoAppBanner?: Maybe<Scalars['String']['output']>;
|
|
779
|
+
zimbraSkinLogoLoginBanner?: Maybe<Scalars['String']['output']>;
|
|
778
780
|
zimbraWebClientLoginURL?: Maybe<Scalars['String']['output']>;
|
|
779
781
|
zimbraWebClientLogoutURL?: Maybe<Scalars['String']['output']>;
|
|
780
782
|
zimbraWebClientSkipLogoff?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3047,6 +3049,7 @@ export type PreferencesInput = {
|
|
|
3047
3049
|
zimbraPrefComposeFormat?: InputMaybe<Mode>;
|
|
3048
3050
|
zimbraPrefDefaultCalendarId?: InputMaybe<Scalars['ID']['input']>;
|
|
3049
3051
|
zimbraPrefDelegatedSendSaveTarget?: InputMaybe<PrefDelegatedSendSaveTarget>;
|
|
3052
|
+
zimbraPrefDeleteInviteOnReply?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3050
3053
|
zimbraPrefDisplayExternalImages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3051
3054
|
zimbraPrefDisplayTimeInMailList?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3052
3055
|
zimbraPrefExternalSendersType?: InputMaybe<ExternalSendersType>;
|
|
@@ -3204,6 +3207,7 @@ export type QueryDownloadMessageArgs = {
|
|
|
3204
3207
|
};
|
|
3205
3208
|
export type QueryFreeBusyArgs = {
|
|
3206
3209
|
end?: InputMaybe<Scalars['Float']['input']>;
|
|
3210
|
+
excludeUid?: InputMaybe<Scalars['String']['input']>;
|
|
3207
3211
|
names: Array<Scalars['String']['input']>;
|
|
3208
3212
|
start?: InputMaybe<Scalars['Float']['input']>;
|
|
3209
3213
|
};
|
|
@@ -3623,6 +3627,7 @@ export declare enum SearchType {
|
|
|
3623
3627
|
Document = "document",
|
|
3624
3628
|
Message = "message",
|
|
3625
3629
|
Task = "task",
|
|
3630
|
+
Unknown = "unknown",
|
|
3626
3631
|
Wiki = "wiki"
|
|
3627
3632
|
}
|
|
3628
3633
|
export type Secret = {
|