@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.
- package/dist/schema.graphql +5 -0
- package/dist/src/schema/generated-schema-types.d.ts +4 -0
- package/dist/zm-api-js-client.esm.js +3 -2
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +1 -1
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +1 -1
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +1 -1
- package/package.json +1 -1
- package/src/normalize/entities.ts +1 -0
- package/src/schema/generated-schema-types.ts +5 -0
- package/src/schema/schema.graphql +5 -0
- package/src/utils/normalize-mime-parts.ts +1 -2
package/dist/schema.graphql
CHANGED
|
@@ -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']>;
|