@zimbra/api-client 95.0.0 → 96.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 +8 -1
- package/dist/src/batch-client/types.d.ts +2 -1
- package/dist/src/schema/generated-schema-types.d.ts +6 -0
- package/dist/zm-api-js-client.esm.js +10 -4
- 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 +1 -1
- package/package.json +1 -1
- package/src/batch-client/types.ts +2 -0
- package/src/schema/generated-schema-types.ts +7 -0
- package/src/schema/schema.graphql +8 -1
- package/src/utils/normalize-mime-parts.ts +13 -4
package/dist/schema.graphql
CHANGED
|
@@ -1460,6 +1460,7 @@ type AccountInfoAttrs {
|
|
|
1460
1460
|
zimbraDumpsterEnabled: Boolean
|
|
1461
1461
|
zimbraIsAdminAccount: Boolean
|
|
1462
1462
|
zimbraIsDelegatedAdminAccount: Boolean
|
|
1463
|
+
zimbraIsExternalVirtualAccount: Boolean
|
|
1463
1464
|
zimbraFeatureMailEnabled: Boolean
|
|
1464
1465
|
zimbraFeatureCalendarEnabled: Boolean
|
|
1465
1466
|
zimbraFeatureBriefcasesEnabled: Boolean
|
|
@@ -1545,6 +1546,7 @@ type AccountInfoAttrs {
|
|
|
1545
1546
|
zimbraFeatureDistributionListFolderEnabled: Boolean
|
|
1546
1547
|
zimbraFeatureBasicOneToOneChatEnabled: Boolean
|
|
1547
1548
|
zimbraFeatureAdvancedChatEnabled: Boolean
|
|
1549
|
+
zimbraMailIdleSessionTimeout: String
|
|
1548
1550
|
}
|
|
1549
1551
|
|
|
1550
1552
|
type AccountCos {
|
|
@@ -3222,6 +3224,10 @@ input uploadDocument {
|
|
|
3222
3224
|
id: ID! #id
|
|
3223
3225
|
}
|
|
3224
3226
|
|
|
3227
|
+
input Timezone {
|
|
3228
|
+
id: ID! #id
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3225
3231
|
input messagePartForDocument {
|
|
3226
3232
|
messageId: ID! #id
|
|
3227
3233
|
attachmentPart: String! #part
|
|
@@ -3637,7 +3643,8 @@ type Query {
|
|
|
3637
3643
|
types: SearchType
|
|
3638
3644
|
resultMode: String
|
|
3639
3645
|
inDumpster: Boolean,
|
|
3640
|
-
header: [MailItemHeaderInput]
|
|
3646
|
+
header: [MailItemHeaderInput],
|
|
3647
|
+
tz: Timezone
|
|
3641
3648
|
): SearchResponse
|
|
3642
3649
|
|
|
3643
3650
|
searchCalendarResources(
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccountType, Cursor, ExternalAccountModifyAttrsInput, FolderView, Grantee, Owner, SearchType, SortBy, UploadDocument } from '../schema/generated-schema-types';
|
|
1
|
+
import { AccountType, Cursor, ExternalAccountModifyAttrsInput, FolderView, Grantee, Owner, SearchType, SortBy, Timezone, UploadDocument } from '../schema/generated-schema-types';
|
|
2
2
|
export declare enum GalSearchType {
|
|
3
3
|
all = "all",
|
|
4
4
|
account = "account",
|
|
@@ -167,6 +167,7 @@ export interface SearchOptions {
|
|
|
167
167
|
sortBy?: SortBy;
|
|
168
168
|
type?: GalSearchType;
|
|
169
169
|
types?: SearchType;
|
|
170
|
+
tz?: Timezone;
|
|
170
171
|
}
|
|
171
172
|
export interface SearchCalendarResourcesCondition {
|
|
172
173
|
attr?: String;
|
|
@@ -166,9 +166,11 @@ export type AccountInfoAttrs = {
|
|
|
166
166
|
zimbraIdentityMaxNumEntries?: Maybe<Scalars['Int']['output']>;
|
|
167
167
|
zimbraIsAdminAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
168
168
|
zimbraIsDelegatedAdminAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
169
|
+
zimbraIsExternalVirtualAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
169
170
|
zimbraMailAlias?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
170
171
|
zimbraMailAttachmentMaxSize?: Maybe<Scalars['Float']['output']>;
|
|
171
172
|
zimbraMailBlacklistMaxNumEntries?: Maybe<Scalars['Int']['output']>;
|
|
173
|
+
zimbraMailIdleSessionTimeout?: Maybe<Scalars['String']['output']>;
|
|
172
174
|
zimbraMailQuota?: Maybe<Scalars['String']['output']>;
|
|
173
175
|
zimbraMailSignatureMaxLength?: Maybe<Scalars['Float']['output']>;
|
|
174
176
|
zimbraMailWhitelistMaxNumEntries?: Maybe<Scalars['Int']['output']>;
|
|
@@ -3379,6 +3381,7 @@ export type QuerySearchArgs = {
|
|
|
3379
3381
|
resultMode?: InputMaybe<Scalars['String']['input']>;
|
|
3380
3382
|
sortBy?: InputMaybe<SortBy>;
|
|
3381
3383
|
types?: InputMaybe<SearchType>;
|
|
3384
|
+
tz?: InputMaybe<Timezone>;
|
|
3382
3385
|
};
|
|
3383
3386
|
export type QuerySearchCalendarResourcesArgs = {
|
|
3384
3387
|
attrs?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3917,6 +3920,9 @@ export type Targets = {
|
|
|
3917
3920
|
right?: Maybe<Scalars['String']['output']>;
|
|
3918
3921
|
target?: Maybe<Array<Maybe<Target>>>;
|
|
3919
3922
|
};
|
|
3923
|
+
export type Timezone = {
|
|
3924
|
+
id: Scalars['ID']['input'];
|
|
3925
|
+
};
|
|
3920
3926
|
export type TrustedDevicesEnabled = {
|
|
3921
3927
|
__typename?: 'TrustedDevicesEnabled';
|
|
3922
3928
|
_content?: Maybe<Scalars['Boolean']['output']>;
|