@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/dist/schema.graphql
CHANGED
|
@@ -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
|
}
|
|
@@ -59,6 +59,7 @@ export declare type AccountCos = {
|
|
|
59
59
|
};
|
|
60
60
|
export declare type AccountInfo = {
|
|
61
61
|
__typename?: 'AccountInfo';
|
|
62
|
+
adminDelegated?: Maybe<Scalars['Boolean']>;
|
|
62
63
|
attrs?: Maybe<AccountInfoAttrs>;
|
|
63
64
|
changePasswordURL?: Maybe<Scalars['String']>;
|
|
64
65
|
cos?: Maybe<AccountCos>;
|
|
@@ -91,12 +92,14 @@ export declare 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']>;
|