@zimbra/api-client 71.0.0 → 73.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 +2 -0
- package/dist/src/batch-client/index.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +2 -0
- package/dist/zm-api-js-client.esm.js +21 -11
- 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 +136 -152
- package/package.json +8 -8
- package/src/apollo/zimbra-in-memory-cache.ts +6 -2
- package/src/batch-client/index.ts +4 -4
- package/src/schema/generated-schema-types.ts +2 -0
- package/src/schema/schema.graphql +2 -0
- package/src/utils/normalize-mime-parts.ts +10 -2
- package/src/utils/normalize-otherAttribute-contact.ts +21 -1
- package/.tmp/introspected-schema.json +0 -31072
package/dist/schema.graphql
CHANGED
|
@@ -153,6 +153,7 @@ enum InviteCompletionStatus {
|
|
|
153
153
|
enum ParticipationRole {
|
|
154
154
|
REQ # required
|
|
155
155
|
OPT # optional
|
|
156
|
+
CHA # chair
|
|
156
157
|
NON # informational purposes only
|
|
157
158
|
}
|
|
158
159
|
|
|
@@ -2990,6 +2991,7 @@ type SMimePublicCertsResponse {
|
|
|
2990
2991
|
type SMimeMessage {
|
|
2991
2992
|
id: ID
|
|
2992
2993
|
content: String
|
|
2994
|
+
isSecure: Boolean
|
|
2993
2995
|
}
|
|
2994
2996
|
|
|
2995
2997
|
type Attachment {
|
|
@@ -72,6 +72,7 @@ export declare class ZimbraBatchClient {
|
|
|
72
72
|
downloadMessage: ({ id, isSecure }: any) => Promise<{
|
|
73
73
|
id: any;
|
|
74
74
|
content: any;
|
|
75
|
+
isSecure: any;
|
|
75
76
|
}>;
|
|
76
77
|
enableTwoFactorAuth: ({ name, password, authToken, twoFactorCode, csrfTokenSecured }: EnableTwoFactorAuthInput) => Promise<any>;
|
|
77
78
|
folderAction: (options: ActionOptions) => Promise<boolean>;
|
|
@@ -2622,6 +2622,7 @@ export declare type Owner = {
|
|
|
2622
2622
|
by?: Maybe<Scalars['String']>;
|
|
2623
2623
|
};
|
|
2624
2624
|
export declare enum ParticipationRole {
|
|
2625
|
+
Cha = "CHA",
|
|
2625
2626
|
Non = "NON",
|
|
2626
2627
|
Opt = "OPT",
|
|
2627
2628
|
Req = "REQ"
|
|
@@ -3174,6 +3175,7 @@ export declare type SMimeMessage = {
|
|
|
3174
3175
|
__typename?: 'SMimeMessage';
|
|
3175
3176
|
content?: Maybe<Scalars['String']>;
|
|
3176
3177
|
id?: Maybe<Scalars['ID']>;
|
|
3178
|
+
isSecure?: Maybe<Scalars['Boolean']>;
|
|
3177
3179
|
};
|
|
3178
3180
|
export declare type SMimePublicCert = {
|
|
3179
3181
|
__typename?: 'SMimePublicCert';
|