@zimbra/api-client 70.0.0 → 71.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.
@@ -2013,9 +2013,14 @@ input DocumentInput {
2013
2013
  id: ID
2014
2014
  }
2015
2015
 
2016
+ input EMLInput {
2017
+ id: ID
2018
+ }
2019
+
2016
2020
  input AttachmentInput {
2017
2021
  attachmentId: String
2018
2022
  documents: [DocumentInput]
2023
+ messages: [EMLInput]
2019
2024
  existingAttachments: [ExistingAttachmentInput]
2020
2025
  }
2021
2026
 
@@ -306,6 +306,7 @@ export declare type AttachmentInput = {
306
306
  attachmentId?: Maybe<Scalars['String']>;
307
307
  documents?: Maybe<Array<Maybe<DocumentInput>>>;
308
308
  existingAttachments?: Maybe<Array<Maybe<ExistingAttachmentInput>>>;
309
+ messages?: Maybe<Array<Maybe<EmlInput>>>;
309
310
  };
310
311
  export declare type AuthResponse = {
311
312
  __typename?: 'AuthResponse';
@@ -1168,6 +1169,9 @@ export declare type DtTimeInfo = {
1168
1169
  timezone?: Maybe<Scalars['String']>;
1169
1170
  utc?: Maybe<Scalars['Float']>;
1170
1171
  };
1172
+ export declare type EmlInput = {
1173
+ id?: Maybe<Scalars['ID']>;
1174
+ };
1171
1175
  export declare type EmailAddress = {
1172
1176
  __typename?: 'EmailAddress';
1173
1177
  address?: Maybe<Scalars['String']>;