@zimbra/api-client 78.0.0-beta → 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.
- package/dist/schema.graphql +1 -0
- package/dist/src/batch-client/index.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +1 -0
- package/dist/zm-api-js-client.esm.js +38 -3
- 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/batch-client/index.ts +36 -1
- package/src/schema/generated-schema-types.ts +1 -0
- package/src/schema/schema.graphql +1 -0
package/dist/schema.graphql
CHANGED
|
@@ -75,6 +75,7 @@ export declare class ZimbraBatchClient {
|
|
|
75
75
|
isSecure: any;
|
|
76
76
|
}>;
|
|
77
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>;
|
|
@@ -710,6 +710,7 @@ export declare type ClientInfoAttributes = {
|
|
|
710
710
|
zimbraFeatureResetPasswordStatus?: Maybe<ResetPasswordStatus>;
|
|
711
711
|
zimbraWebClientLoginURL?: Maybe<Scalars['String']>;
|
|
712
712
|
zimbraWebClientLogoutURL?: Maybe<Scalars['String']>;
|
|
713
|
+
zimbraWebClientSkipLogoff?: Maybe<Scalars['Boolean']>;
|
|
713
714
|
};
|
|
714
715
|
export declare type ClientInfoType = {
|
|
715
716
|
__typename?: 'ClientInfoType';
|