@zimbra/api-client 82.0.0 → 83.1.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 +6 -1
- package/dist/src/schema/generated-schema-types.d.ts +5 -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 +8 -16
- package/package.json +1 -1
- package/src/schema/generated-schema-types.ts +5 -0
- package/src/schema/schema.graphql +6 -1
package/package-lock.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zimbra/api-client",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "83.1.0",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -3173,17 +3173,6 @@
|
|
|
3173
3173
|
"node-fetch": "^2.6.7",
|
|
3174
3174
|
"undici": "^5.12.0",
|
|
3175
3175
|
"web-streams-polyfill": "^3.2.0"
|
|
3176
|
-
},
|
|
3177
|
-
"dependencies": {
|
|
3178
|
-
"undici": {
|
|
3179
|
-
"version": "5.14.0",
|
|
3180
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-5.14.0.tgz",
|
|
3181
|
-
"integrity": "sha512-yJlHYw6yXPPsuOH0x2Ib1Km61vu4hLiRRQoafs+WUgX1vO64vgnxiCEN9dpIrhZyHFsai3F0AEj4P9zy19enEQ==",
|
|
3182
|
-
"dev": true,
|
|
3183
|
-
"requires": {
|
|
3184
|
-
"busboy": "^1.6.0"
|
|
3185
|
-
}
|
|
3186
|
-
}
|
|
3187
3176
|
}
|
|
3188
3177
|
},
|
|
3189
3178
|
"@wry/context": {
|
|
@@ -9949,10 +9938,13 @@
|
|
|
9949
9938
|
"dev": true
|
|
9950
9939
|
},
|
|
9951
9940
|
"undici": {
|
|
9952
|
-
"version": "5.
|
|
9953
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-5.
|
|
9954
|
-
"integrity": "sha512-
|
|
9955
|
-
"dev": true
|
|
9941
|
+
"version": "5.19.1",
|
|
9942
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-5.19.1.tgz",
|
|
9943
|
+
"integrity": "sha512-YiZ61LPIgY73E7syxCDxxa3LV2yl3sN8spnIuTct60boiiRaE1J8mNWHO8Im2Zi/sFrPusjLlmRPrsyraSqX6A==",
|
|
9944
|
+
"dev": true,
|
|
9945
|
+
"requires": {
|
|
9946
|
+
"busboy": "^1.6.0"
|
|
9947
|
+
}
|
|
9956
9948
|
},
|
|
9957
9949
|
"unicode-canonical-property-names-ecmascript": {
|
|
9958
9950
|
"version": "2.0.0",
|
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.1.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>;
|
|
@@ -85,18 +86,22 @@ export type AccountInfoAttrs = {
|
|
|
85
86
|
zimbraDomainTrialExpirationDate?: Maybe<Scalars['String']>;
|
|
86
87
|
zimbraDumpsterEnabled?: Maybe<Scalars['Boolean']>;
|
|
87
88
|
zimbraExternalSharingEnabled?: Maybe<Scalars['Boolean']>;
|
|
89
|
+
zimbraFeatureAdminMailEnabled?: Maybe<Scalars['Boolean']>;
|
|
90
|
+
zimbraFeatureAdminPreferencesEnabled?: Maybe<Scalars['Boolean']>;
|
|
88
91
|
zimbraFeatureAntispamEnabled?: Maybe<Scalars['Boolean']>;
|
|
89
92
|
zimbraFeatureAppSpecificPasswordsEnabled?: Maybe<Scalars['Boolean']>;
|
|
90
93
|
zimbraFeatureBriefcasesEnabled?: Maybe<Scalars['Boolean']>;
|
|
91
94
|
zimbraFeatureCalendarEnabled?: Maybe<Scalars['Boolean']>;
|
|
92
95
|
zimbraFeatureChangePasswordEnabled?: Maybe<Scalars['Boolean']>;
|
|
93
96
|
zimbraFeatureConversationsEnabled?: Maybe<Scalars['Boolean']>;
|
|
97
|
+
zimbraFeatureDiscardInFiltersEnabled?: Maybe<Scalars['Boolean']>;
|
|
94
98
|
zimbraFeatureDocumentEditingEnabled?: Maybe<Scalars['Boolean']>;
|
|
95
99
|
zimbraFeatureFiltersEnabled?: Maybe<Scalars['Boolean']>;
|
|
96
100
|
zimbraFeatureGalAutoCompleteEnabled?: Maybe<Scalars['Boolean']>;
|
|
97
101
|
zimbraFeatureGalEnabled?: Maybe<Scalars['Boolean']>;
|
|
98
102
|
zimbraFeatureIdentitiesEnabled?: Maybe<Scalars['Boolean']>;
|
|
99
103
|
zimbraFeatureImapDataSourceEnabled?: Maybe<Scalars['Boolean']>;
|
|
104
|
+
zimbraFeatureInstantNotify?: Maybe<Scalars['Boolean']>;
|
|
100
105
|
zimbraFeatureMailEnabled?: Maybe<Scalars['Boolean']>;
|
|
101
106
|
zimbraFeatureMailForwardingInFiltersEnabled?: Maybe<Scalars['Boolean']>;
|
|
102
107
|
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,10 @@ type AccountInfoAttrs {
|
|
|
1373
1374
|
zimbraTrialConvertAtExpiration: Boolean
|
|
1374
1375
|
zimbraHierarchicalAddressBookRoot: String
|
|
1375
1376
|
zimbraBlockEmailSendFromImapPop: Boolean
|
|
1377
|
+
zimbraFeatureInstantNotify: Boolean
|
|
1378
|
+
zimbraFeatureDiscardInFiltersEnabled: Boolean
|
|
1379
|
+
zimbraFeatureAdminMailEnabled: Boolean
|
|
1380
|
+
zimbraFeatureAdminPreferencesEnabled: Boolean
|
|
1376
1381
|
}
|
|
1377
1382
|
|
|
1378
1383
|
type AccountCos {
|
|
@@ -2461,7 +2466,7 @@ input InviteReplyInput {
|
|
|
2461
2466
|
}
|
|
2462
2467
|
|
|
2463
2468
|
input PurgetRevisionInput {
|
|
2464
|
-
id: ID!
|
|
2469
|
+
id: ID!
|
|
2465
2470
|
ver: Int!
|
|
2466
2471
|
includeOlderRevisions: Int
|
|
2467
2472
|
}
|