@zimbra/api-client 76.0.0 → 78.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.
@@ -485,6 +485,7 @@ interface MailItem {
485
485
  type ClientInfoAttributes {
486
486
  zimbraWebClientLoginURL: String
487
487
  zimbraWebClientLogoutURL: String
488
+ zimbraWebClientSkipLogoff: Boolean
488
489
  zimbraFeatureResetPasswordStatus: ResetPasswordStatus
489
490
  }
490
491
 
@@ -1657,6 +1658,7 @@ type OtherContactAttribute {
1657
1658
  type ContactAttributes {
1658
1659
  firstName: String
1659
1660
  phoneticFirstName: String
1661
+ phoneticCompany: String
1660
1662
  middleName: String
1661
1663
  lastName: String
1662
1664
  phoneticLastName: String
@@ -1761,6 +1763,7 @@ input OtherContactAttributeInput {
1761
1763
  input ContactAttrsInput {
1762
1764
  firstName: String
1763
1765
  phoneticFirstName: String
1766
+ phoneticCompany: String
1764
1767
  middleName: String
1765
1768
  lastName: String
1766
1769
  phoneticLastName: String
@@ -2836,6 +2839,7 @@ input EnableTwoFactorAuthInput {
2836
2839
  twoFactorCode: String
2837
2840
  authToken: String
2838
2841
  csrfTokenSecured: Boolean!
2842
+ ignoreSameSite: Boolean
2839
2843
  }
2840
2844
 
2841
2845
  input ExternalAccountImportInput {
@@ -3459,6 +3463,7 @@ type Mutation {
3459
3463
  twoFactorCode: String
3460
3464
  deviceTrusted: Boolean
3461
3465
  csrfTokenSecured: Boolean!
3466
+ ignoreSameSite: Boolean
3462
3467
  ): AuthResponse
3463
3468
  enableTwoFactorAuth(
3464
3469
  options: EnableTwoFactorAuthInput!
@@ -74,7 +74,8 @@ export declare class ZimbraBatchClient {
74
74
  content: any;
75
75
  isSecure: any;
76
76
  }>;
77
- enableTwoFactorAuth: ({ name, password, authToken, twoFactorCode, csrfTokenSecured }: EnableTwoFactorAuthInput) => Promise<any>;
77
+ enableTwoFactorAuth: ({ name, password, authToken, twoFactorCode, csrfTokenSecured, ignoreSameSite }: EnableTwoFactorAuthInput) => Promise<any>;
78
+ endSessionBeaconRequest: (options: JsonRequestOptions) => void;
78
79
  folderAction: (options: ActionOptions) => Promise<boolean>;
79
80
  forwardAppointment: (body: ForwardAppointmentInput) => Promise<boolean>;
80
81
  forwardAppointmentInvite: (body: ForwardAppointmentInviteInput) => Promise<boolean>;
@@ -124,7 +125,7 @@ export declare class ZimbraBatchClient {
124
125
  importExternalAccount: ({ accountType, id }: ExternalAccountImportInput) => Promise<boolean>;
125
126
  itemAction: (options: ActionOptions) => Promise<boolean>;
126
127
  jsonRequest: (options: JsonRequestOptions) => Promise<any>;
127
- login: ({ username, password, recoveryCode, tokenType, persistAuthTokenCookie, twoFactorCode, deviceTrusted, csrfTokenSecured }: LoginOptions) => Promise<{}>;
128
+ login: ({ username, password, recoveryCode, tokenType, persistAuthTokenCookie, twoFactorCode, deviceTrusted, csrfTokenSecured, ignoreSameSite }: LoginOptions) => Promise<{}>;
128
129
  logout: () => Promise<boolean>;
129
130
  messageAction: (options: ActionOptions) => Promise<boolean>;
130
131
  modifyAppointment: (accountName: string, appointment: CalendarItemInput) => Promise<any>;
@@ -202,6 +202,7 @@ export interface ModifyProfileImageOptions {
202
202
  export interface LoginOptions {
203
203
  csrfTokenSecured: boolean;
204
204
  deviceTrusted?: boolean;
205
+ ignoreSameSite?: boolean;
205
206
  password: string;
206
207
  persistAuthTokenCookie?: boolean;
207
208
  recoveryCode?: string;