@zimbra/api-client 80.1.0 → 81.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/package-lock.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zimbra/api-client",
3
- "version": "80.1.0",
3
+ "version": "81.0.0",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zimbra/api-client",
3
3
  "amdName": "zmApiJsClient",
4
- "version": "80.1.0",
4
+ "version": "81.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",
@@ -521,7 +521,8 @@ export const Document = new Entity({
521
521
  cd: 'revisedCreationDate',
522
522
  loid: 'lockOwnerId',
523
523
  ct: 'contentType',
524
- f: 'flags'
524
+ f: 'flags',
525
+ perm: 'permission'
525
526
  });
526
527
 
527
528
  export const ListDocumentRevisions = new Entity({
@@ -1283,6 +1283,7 @@ export type Document = {
1283
1283
  metadataVersion?: Maybe<Scalars['Float']>;
1284
1284
  modifiedSequence?: Maybe<Scalars['Float']>;
1285
1285
  name?: Maybe<Scalars['String']>;
1286
+ permission?: Maybe<Scalars['String']>;
1286
1287
  revisedCreationDate?: Maybe<Scalars['Float']>;
1287
1288
  revision?: Maybe<Scalars['Float']>;
1288
1289
  revisonCreator?: Maybe<Scalars['String']>;
@@ -1554,6 +1554,7 @@ type Document {
1554
1554
  revisedCreationDate: Float #cd
1555
1555
  lockOwnerId: ID #loid
1556
1556
  flags: String #f
1557
+ permission: String #perm
1557
1558
  docs: [Document]
1558
1559
  }
1559
1560