@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.
@@ -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';