@zimbra/api-client 82.0.0 → 83.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 +4 -1
- package/dist/src/schema/generated-schema-types.d.ts +3 -0
- package/dist/zm-api-js-client.esm.js +2 -2
- 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/schema/generated-schema-types.ts +3 -0
- package/src/schema/schema.graphql +4 -1
package/package-lock.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zimbra/api-client",
|
|
3
3
|
"amdName": "zmApiJsClient",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "83.0.0",
|
|
5
5
|
"description": "Zimbra JS API Client and GraphQL client for making requests against the Zimbra SOAP API.",
|
|
6
6
|
"main": "dist/zm-api-js-client.js",
|
|
7
7
|
"source": "index.ts",
|
|
@@ -58,6 +58,7 @@ export type AccountCos = {
|
|
|
58
58
|
|
|
59
59
|
export type AccountInfo = {
|
|
60
60
|
__typename?: 'AccountInfo';
|
|
61
|
+
adminDelegated?: Maybe<Scalars['Boolean']>;
|
|
61
62
|
attrs?: Maybe<AccountInfoAttrs>;
|
|
62
63
|
changePasswordURL?: Maybe<Scalars['String']>;
|
|
63
64
|
cos?: Maybe<AccountCos>;
|
|
@@ -91,12 +92,14 @@ export type AccountInfoAttrs = {
|
|
|
91
92
|
zimbraFeatureCalendarEnabled?: Maybe<Scalars['Boolean']>;
|
|
92
93
|
zimbraFeatureChangePasswordEnabled?: Maybe<Scalars['Boolean']>;
|
|
93
94
|
zimbraFeatureConversationsEnabled?: Maybe<Scalars['Boolean']>;
|
|
95
|
+
zimbraFeatureDiscardInFiltersEnabled?: Maybe<Scalars['Boolean']>;
|
|
94
96
|
zimbraFeatureDocumentEditingEnabled?: Maybe<Scalars['Boolean']>;
|
|
95
97
|
zimbraFeatureFiltersEnabled?: Maybe<Scalars['Boolean']>;
|
|
96
98
|
zimbraFeatureGalAutoCompleteEnabled?: Maybe<Scalars['Boolean']>;
|
|
97
99
|
zimbraFeatureGalEnabled?: Maybe<Scalars['Boolean']>;
|
|
98
100
|
zimbraFeatureIdentitiesEnabled?: Maybe<Scalars['Boolean']>;
|
|
99
101
|
zimbraFeatureImapDataSourceEnabled?: Maybe<Scalars['Boolean']>;
|
|
102
|
+
zimbraFeatureInstantNotify?: Maybe<Scalars['Boolean']>;
|
|
100
103
|
zimbraFeatureMailEnabled?: Maybe<Scalars['Boolean']>;
|
|
101
104
|
zimbraFeatureMailForwardingInFiltersEnabled?: Maybe<Scalars['Boolean']>;
|
|
102
105
|
zimbraFeatureMailPriorityEnabled?: Maybe<Scalars['Boolean']>;
|
|
@@ -1232,6 +1232,7 @@ type AccountInfo {
|
|
|
1232
1232
|
zimlets: AccountZimlet
|
|
1233
1233
|
cos: AccountCos
|
|
1234
1234
|
pasteitcleanedEnabled: Boolean
|
|
1235
|
+
adminDelegated: Boolean
|
|
1235
1236
|
}
|
|
1236
1237
|
|
|
1237
1238
|
type OnlyEmailAddress {
|
|
@@ -1373,6 +1374,8 @@ type AccountInfoAttrs {
|
|
|
1373
1374
|
zimbraTrialConvertAtExpiration: Boolean
|
|
1374
1375
|
zimbraHierarchicalAddressBookRoot: String
|
|
1375
1376
|
zimbraBlockEmailSendFromImapPop: Boolean
|
|
1377
|
+
zimbraFeatureInstantNotify: Boolean
|
|
1378
|
+
zimbraFeatureDiscardInFiltersEnabled: Boolean
|
|
1376
1379
|
}
|
|
1377
1380
|
|
|
1378
1381
|
type AccountCos {
|
|
@@ -2461,7 +2464,7 @@ input InviteReplyInput {
|
|
|
2461
2464
|
}
|
|
2462
2465
|
|
|
2463
2466
|
input PurgetRevisionInput {
|
|
2464
|
-
id: ID!
|
|
2467
|
+
id: ID!
|
|
2465
2468
|
ver: Int!
|
|
2466
2469
|
includeOlderRevisions: Int
|
|
2467
2470
|
}
|