@zimbra/api-client 96.0.0 → 97.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": "96.0.0",
3
+ "version": "97.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": "96.0.0",
4
+ "version": "97.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",
@@ -100,6 +100,7 @@ export type AccountInfoAttrs = {
100
100
  zimbraFeatureCalendarEnabled?: Maybe<Scalars['Boolean']['output']>;
101
101
  zimbraFeatureChangePasswordEnabled?: Maybe<Scalars['Boolean']['output']>;
102
102
  zimbraFeatureConversationsEnabled?: Maybe<Scalars['Boolean']['output']>;
103
+ zimbraFeatureDeliveryStatusNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
103
104
  zimbraFeatureDiscardInFiltersEnabled?: Maybe<Scalars['Boolean']['output']>;
104
105
  zimbraFeatureDistributionListExpandMembersEnabled?: Maybe<Scalars['Boolean']['output']>;
105
106
  zimbraFeatureDistributionListFolderEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -2479,6 +2480,7 @@ export type MessageInfo = MailItem & {
2479
2480
  conversationId?: Maybe<Scalars['ID']['output']>;
2480
2481
  date?: Maybe<Scalars['Float']['output']>;
2481
2482
  decryptionErrorCode?: Maybe<Scalars['String']['output']>;
2483
+ deliveryReport?: Maybe<Scalars['Boolean']['output']>;
2482
2484
  emailAddresses?: Maybe<Array<Maybe<EmailAddress>>>;
2483
2485
  excerpt?: Maybe<Scalars['String']['output']>;
2484
2486
  flags?: Maybe<Scalars['String']['output']>;
@@ -3474,6 +3476,7 @@ export type Preferences = {
3474
3476
  zimbraPrefHtmlEditorDefaultFontFamily?: Maybe<Scalars['String']['output']>;
3475
3477
  zimbraPrefHtmlEditorDefaultFontSize?: Maybe<Scalars['String']['output']>;
3476
3478
  zimbraPrefLocale?: Maybe<Scalars['String']['output']>;
3479
+ zimbraPrefMailDeliveryStatusNotification?: Maybe<Scalars['Boolean']['output']>;
3477
3480
  zimbraPrefMailForwardingAddress?: Maybe<Scalars['String']['output']>;
3478
3481
  zimbraPrefMailLocalDeliveryDisabled?: Maybe<Scalars['Boolean']['output']>;
3479
3482
  zimbraPrefMailPollingInterval?: Maybe<Scalars['String']['output']>;
@@ -3539,6 +3542,7 @@ export type PreferencesInput = {
3539
3542
  zimbraPrefHtmlEditorDefaultFontFamily?: InputMaybe<Scalars['String']['input']>;
3540
3543
  zimbraPrefHtmlEditorDefaultFontSize?: InputMaybe<Scalars['String']['input']>;
3541
3544
  zimbraPrefLocale?: InputMaybe<Scalars['String']['input']>;
3545
+ zimbraPrefMailDeliveryStatusNotification?: InputMaybe<Scalars['Boolean']['input']>;
3542
3546
  zimbraPrefMailForwardingAddress?: InputMaybe<Scalars['String']['input']>;
3543
3547
  zimbraPrefMailLocalDeliveryDisabled?: InputMaybe<Scalars['Boolean']['input']>;
3544
3548
  zimbraPrefMailPollingInterval?: InputMaybe<Scalars['String']['input']>;
@@ -4248,6 +4252,7 @@ export type SendMessageInput = {
4248
4252
  attachmentId?: InputMaybe<Scalars['ID']['input']>;
4249
4253
  attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
4250
4254
  autoSendTime?: InputMaybe<Scalars['Float']['input']>;
4255
+ deliveryReport?: InputMaybe<Scalars['Boolean']['input']>;
4251
4256
  draftId?: InputMaybe<Scalars['ID']['input']>;
4252
4257
  emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
4253
4258
  entityId?: InputMaybe<Scalars['String']['input']>;
@@ -576,6 +576,7 @@ type MessageInfo implements MailItem {
576
576
  part: String
577
577
  meta: [CustomMetadataMeta]
578
578
  _attrs: [CustomHeader]
579
+ deliveryReport: Boolean
579
580
  }
580
581
 
581
582
  type Conversation implements MailItem {
@@ -1547,6 +1548,7 @@ type AccountInfoAttrs {
1547
1548
  zimbraFeatureBasicOneToOneChatEnabled: Boolean
1548
1549
  zimbraFeatureAdvancedChatEnabled: Boolean
1549
1550
  zimbraMailIdleSessionTimeout: String
1551
+ zimbraFeatureDeliveryStatusNotificationEnabled: Boolean
1550
1552
  }
1551
1553
 
1552
1554
  type AccountCos {
@@ -1697,6 +1699,7 @@ type Preferences {
1697
1699
  zimbraPrefPowerPasteEnabled: Boolean
1698
1700
  zimbraPrefDisplayTimeInMailList: Boolean
1699
1701
  zimbraPrefPrimaryTwoFactorAuthMethod: String
1702
+ zimbraPrefMailDeliveryStatusNotification: Boolean
1700
1703
  }
1701
1704
 
1702
1705
  type GetAppointmentResponse {
@@ -2344,6 +2347,7 @@ input SendMessageInput {
2344
2347
  attachments: [AttachmentInput] #attach
2345
2348
  inlineAttachments: [MimePartInput] #attach
2346
2349
  header: [HeaderInput] #header
2350
+ deliveryReport: Boolean #deliveryReport
2347
2351
  }
2348
2352
 
2349
2353
  input HeaderInput {
@@ -2772,6 +2776,7 @@ input PreferencesInput {
2772
2776
  zimbraPrefDisplayTimeInMailList: Boolean
2773
2777
  zimbraPrefPrimaryTwoFactorAuthMethod: String
2774
2778
  zimbraPrefDeleteInviteOnReply: Boolean
2779
+ zimbraPrefMailDeliveryStatusNotification: Boolean
2775
2780
  }
2776
2781
 
2777
2782
  input ModifyIdentityInput {