@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.
@@ -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 {
@@ -121,6 +121,7 @@ export type AccountInfoAttrs = {
121
121
  zimbraFeatureCalendarEnabled?: Maybe<Scalars['Boolean']['output']>;
122
122
  zimbraFeatureChangePasswordEnabled?: Maybe<Scalars['Boolean']['output']>;
123
123
  zimbraFeatureConversationsEnabled?: Maybe<Scalars['Boolean']['output']>;
124
+ zimbraFeatureDeliveryStatusNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
124
125
  zimbraFeatureDiscardInFiltersEnabled?: Maybe<Scalars['Boolean']['output']>;
125
126
  zimbraFeatureDistributionListExpandMembersEnabled?: Maybe<Scalars['Boolean']['output']>;
126
127
  zimbraFeatureDistributionListFolderEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -2244,6 +2245,7 @@ export type MessageInfo = MailItem & {
2244
2245
  conversationId?: Maybe<Scalars['ID']['output']>;
2245
2246
  date?: Maybe<Scalars['Float']['output']>;
2246
2247
  decryptionErrorCode?: Maybe<Scalars['String']['output']>;
2248
+ deliveryReport?: Maybe<Scalars['Boolean']['output']>;
2247
2249
  emailAddresses?: Maybe<Array<Maybe<EmailAddress>>>;
2248
2250
  excerpt?: Maybe<Scalars['String']['output']>;
2249
2251
  flags?: Maybe<Scalars['String']['output']>;
@@ -3015,6 +3017,7 @@ export type Preferences = {
3015
3017
  zimbraPrefHtmlEditorDefaultFontFamily?: Maybe<Scalars['String']['output']>;
3016
3018
  zimbraPrefHtmlEditorDefaultFontSize?: Maybe<Scalars['String']['output']>;
3017
3019
  zimbraPrefLocale?: Maybe<Scalars['String']['output']>;
3020
+ zimbraPrefMailDeliveryStatusNotification?: Maybe<Scalars['Boolean']['output']>;
3018
3021
  zimbraPrefMailForwardingAddress?: Maybe<Scalars['String']['output']>;
3019
3022
  zimbraPrefMailLocalDeliveryDisabled?: Maybe<Scalars['Boolean']['output']>;
3020
3023
  zimbraPrefMailPollingInterval?: Maybe<Scalars['String']['output']>;
@@ -3079,6 +3082,7 @@ export type PreferencesInput = {
3079
3082
  zimbraPrefHtmlEditorDefaultFontFamily?: InputMaybe<Scalars['String']['input']>;
3080
3083
  zimbraPrefHtmlEditorDefaultFontSize?: InputMaybe<Scalars['String']['input']>;
3081
3084
  zimbraPrefLocale?: InputMaybe<Scalars['String']['input']>;
3085
+ zimbraPrefMailDeliveryStatusNotification?: InputMaybe<Scalars['Boolean']['input']>;
3082
3086
  zimbraPrefMailForwardingAddress?: InputMaybe<Scalars['String']['input']>;
3083
3087
  zimbraPrefMailLocalDeliveryDisabled?: InputMaybe<Scalars['Boolean']['input']>;
3084
3088
  zimbraPrefMailPollingInterval?: InputMaybe<Scalars['String']['input']>;
@@ -3664,6 +3668,7 @@ export type SendMessageInput = {
3664
3668
  attachmentId?: InputMaybe<Scalars['ID']['input']>;
3665
3669
  attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
3666
3670
  autoSendTime?: InputMaybe<Scalars['Float']['input']>;
3671
+ deliveryReport?: InputMaybe<Scalars['Boolean']['input']>;
3667
3672
  draftId?: InputMaybe<Scalars['ID']['input']>;
3668
3673
  emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
3669
3674
  entityId?: InputMaybe<Scalars['String']['input']>;