@zimbra/api-client 83.0.0 → 84.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": "83.0.0",
3
+ "version": "84.0.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.9.1",
9953
- "resolved": "https://registry.npmjs.org/undici/-/undici-5.9.1.tgz",
9954
- "integrity": "sha512-6fB3a+SNnWEm4CJbgo0/CWR8RGcOCQP68SF4X0mxtYTq2VNN8T88NYrWVBAeSX+zb7bny2dx2iYhP3XHi00omg==",
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": "83.0.0",
4
+ "version": "84.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",
@@ -1096,7 +1096,8 @@ export class ZimbraBatchClient {
1096
1096
  folder.view === FolderView.Contact ||
1097
1097
  folder.view === FolderView.Document
1098
1098
  ) {
1099
- const { absFolderPath, oname, folders, ownerZimbraId, sharedItemId } = folder;
1099
+ const { absFolderPath, oname, folders, ownerZimbraId, sharedItemId, linkedFolders } =
1100
+ folder;
1100
1101
 
1101
1102
  /** changed the id to zimbraId:sharedItemId, which is required while moving contact to shared folder and
1102
1103
  * server also returns this id in notfications. The original id is stored in userId.
@@ -1108,6 +1109,9 @@ export class ZimbraBatchClient {
1108
1109
  if (oname && folders) {
1109
1110
  folder.folders = updateAbsoluteFolderPath(oname, absFolderPath, folders);
1110
1111
  }
1112
+ if (linkedFolders) {
1113
+ folder.linkedFolders = updateAbsoluteFolderPath(oname, absFolderPath, linkedFolders);
1114
+ }
1111
1115
  }
1112
1116
 
1113
1117
  return folder;
@@ -86,6 +86,8 @@ export type AccountInfoAttrs = {
86
86
  zimbraDomainTrialExpirationDate?: Maybe<Scalars['String']>;
87
87
  zimbraDumpsterEnabled?: Maybe<Scalars['Boolean']>;
88
88
  zimbraExternalSharingEnabled?: Maybe<Scalars['Boolean']>;
89
+ zimbraFeatureAdminMailEnabled?: Maybe<Scalars['Boolean']>;
90
+ zimbraFeatureAdminPreferencesEnabled?: Maybe<Scalars['Boolean']>;
89
91
  zimbraFeatureAntispamEnabled?: Maybe<Scalars['Boolean']>;
90
92
  zimbraFeatureAppSpecificPasswordsEnabled?: Maybe<Scalars['Boolean']>;
91
93
  zimbraFeatureBriefcasesEnabled?: Maybe<Scalars['Boolean']>;
@@ -1613,6 +1615,7 @@ export type Folder = {
1613
1615
  revision?: Maybe<Scalars['Float']>;
1614
1616
  search?: Maybe<Array<Maybe<Folder>>>;
1615
1617
  sharedItemId?: Maybe<Scalars['ID']>;
1618
+ types?: Maybe<Scalars['String']>;
1616
1619
  unread?: Maybe<Scalars['Float']>;
1617
1620
  unreadDescendent?: Maybe<Scalars['Boolean']>;
1618
1621
  url?: Maybe<Scalars['String']>;
@@ -1140,6 +1140,7 @@ type Folder {
1140
1140
  broken: Boolean #shared folder link is broken or not
1141
1141
  deletable: Boolean
1142
1142
  unreadDescendent: Boolean
1143
+ types: String
1143
1144
  }
1144
1145
 
1145
1146
  type DlAttrs {
@@ -1376,6 +1377,8 @@ type AccountInfoAttrs {
1376
1377
  zimbraBlockEmailSendFromImapPop: Boolean
1377
1378
  zimbraFeatureInstantNotify: Boolean
1378
1379
  zimbraFeatureDiscardInFiltersEnabled: Boolean
1380
+ zimbraFeatureAdminMailEnabled: Boolean
1381
+ zimbraFeatureAdminPreferencesEnabled: Boolean
1379
1382
  }
1380
1383
 
1381
1384
  type AccountCos {