@zimbra/api-client 101.0.1-PREAPPS-9557.d0b6df2.0 → 101.0.1-master.1cac479.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 +6 -0
- package/dist/src/batch-client/index.d.ts +2 -1
- package/dist/src/normalize/entities.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +8 -0
- package/dist/zm-api-js-client.esm.js +3778 -3850
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +10 -14
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +10 -14
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package.json +10 -9
- package/rollup.config.js +0 -1
- package/src/batch-client/index.ts +10 -0
- package/src/normalize/entities.ts +9 -0
- package/src/schema/generated-schema-types.ts +11 -0
- package/src/schema/schema.graphql +6 -0
- package/src/schema/schema.ts +2 -0
package/dist/schema.graphql
CHANGED
|
@@ -3047,6 +3047,11 @@ input ForwardMessageInput {
|
|
|
3047
3047
|
emailAddresses: [MailItemEmailAddressInput] #e
|
|
3048
3048
|
}
|
|
3049
3049
|
|
|
3050
|
+
input RedirectMessgeInput {
|
|
3051
|
+
id: ID!
|
|
3052
|
+
emailAddresses: [MailItemEmailAddressInput]
|
|
3053
|
+
}
|
|
3054
|
+
|
|
3050
3055
|
input ShareNotificationInput {
|
|
3051
3056
|
action: ShareInputAction
|
|
3052
3057
|
item: ShareNotificationItemInput!
|
|
@@ -3928,6 +3933,7 @@ type Mutation {
|
|
|
3928
3933
|
cancelPendingRemoteWipeSync(deviceId: String): Device
|
|
3929
3934
|
subscribeDistributionList(op: String!, by: String, dl: String!): String
|
|
3930
3935
|
distributionListAction(dlActions: DistributionListActionInput!): Boolean
|
|
3936
|
+
bounceMessage(message: RedirectMessgeInput): Boolean
|
|
3931
3937
|
}
|
|
3932
3938
|
|
|
3933
3939
|
schema {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { JsonRequestOptions } from '../request/types';
|
|
2
|
-
import { ActionOpResponse, AddMsgInput, CalendarItemInput, CounterAppointmentInput, CreateContactInput, CreateIdentityInput, CreateMountpointInput, CreateTagInput, DeleteAppointmentInput, DeleteIdentityInput, DistributionListActionInput, EnableTwoFactorAuthInput, ExternalAccountAddInput, ExternalAccountImportInput, ExternalAccountTestInput, FilterInput, FolderActionChangeColorInput, FolderActionCheckCalendarInput, ForwardAppointmentInput, ForwardAppointmentInviteInput, GetRightsInput, GrantRightsInput, InviteReplyInput, ModifyContactInput, ModifyIdentityInput, PreferencesInput, RevokeRightsInput, SaveSMimeCertInputUpload, SearchFolderInput, SendMessageInput, SendTwoFactorAuthCodeInput, ShareNotificationInput, SignatureInput, WhiteBlackListInput, ZimletPreferenceInput } from '../schema/generated-schema-types';
|
|
2
|
+
import { ActionOpResponse, AddMsgInput, CalendarItemInput, CounterAppointmentInput, CreateContactInput, CreateIdentityInput, CreateMountpointInput, CreateTagInput, DeleteAppointmentInput, DeleteIdentityInput, DistributionListActionInput, EnableTwoFactorAuthInput, ExternalAccountAddInput, ExternalAccountImportInput, ExternalAccountTestInput, FilterInput, FolderActionChangeColorInput, FolderActionCheckCalendarInput, ForwardAppointmentInput, ForwardAppointmentInviteInput, GetRightsInput, GrantRightsInput, InviteReplyInput, ModifyContactInput, ModifyIdentityInput, PreferencesInput, RedirectMessgeInput, RevokeRightsInput, SaveSMimeCertInputUpload, SearchFolderInput, SendMessageInput, SendTwoFactorAuthCodeInput, ShareNotificationInput, SignatureInput, WhiteBlackListInput, ZimletPreferenceInput } from '../schema/generated-schema-types';
|
|
3
3
|
import { ActionOptions, ActionType, ApplyFilterRulesOptions, AppointmentOptions, AutoCompleteGALOptions, AutoCompleteOptions, ChangePasswordOptions, CreateFolderOptions, CreateSearchFolderOptions, DiscoverRightOptions, ExternalAccountDeleteInput, ExternalAccountModifyInput, FreeBusyOptions, GetContactFrequencyOptions, GetContactOptions, GetConversationOptions, GetCustomMetadataOptions, GetDocumentShareURLOptions, GetFolderOptions, GetMailboxMetadataOptions, GetMessageOptions, GetSMimePublicCertsOptions, LoginOptions, ModifyProfileImageOptions, NoOpOptions, RecoverAccountOptions, RelatedContactsOptions, ResetPasswordOptions, SaveDocumentInput, SearchCalendarResourcesOptions, SearchOptions, SetRecoveryAccountOptions, ShareInfoOptions, WorkingHoursOptions, ZimbraClientOptions } from './types';
|
|
4
4
|
import { Notifier } from './notifier';
|
|
5
5
|
export declare class ZimbraBatchClient {
|
|
@@ -28,6 +28,7 @@ export declare class ZimbraBatchClient {
|
|
|
28
28
|
autoComplete: (options: AutoCompleteOptions) => Promise<any>;
|
|
29
29
|
autoCompleteGAL: (options: AutoCompleteGALOptions) => Promise<any>;
|
|
30
30
|
blockDeviceSync: (deviceId: string) => Promise<any>;
|
|
31
|
+
bounceMsg: (options: RedirectMessgeInput) => Promise<boolean>;
|
|
31
32
|
cancelPendingAccountOnlyRemoteWipeSync: (deviceId: string) => Promise<any>;
|
|
32
33
|
cancelPendingRemoteWipeSync: (deviceId: string) => Promise<any>;
|
|
33
34
|
cancelTask: ({ inviteId }: any) => Promise<boolean>;
|
|
@@ -40,6 +40,7 @@ export declare const CalResourceAttributes: Entity;
|
|
|
40
40
|
export declare const CalResource: Entity;
|
|
41
41
|
export declare const SearchCalendarResourcesResponse: Entity;
|
|
42
42
|
export declare const GetAppointmentResponse: Entity;
|
|
43
|
+
export declare const RedirectMessage: Entity;
|
|
43
44
|
export declare const Filter: Entity;
|
|
44
45
|
export declare const InviteReply: Entity;
|
|
45
46
|
export declare const CreateSignatureRequest: Entity;
|
|
@@ -2420,6 +2420,7 @@ export type Mutation = {
|
|
|
2420
2420
|
allowDeviceSync?: Maybe<Device>;
|
|
2421
2421
|
applyFilterRules?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2422
2422
|
blockDeviceSync?: Maybe<Device>;
|
|
2423
|
+
bounceMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
2423
2424
|
cancelPendingAccountOnlyRemoteWipeSync?: Maybe<Device>;
|
|
2424
2425
|
cancelPendingRemoteWipeSync?: Maybe<Device>;
|
|
2425
2426
|
cancelTask?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2546,6 +2547,9 @@ export type MutationApplyFilterRulesArgs = {
|
|
|
2546
2547
|
export type MutationBlockDeviceSyncArgs = {
|
|
2547
2548
|
deviceId?: InputMaybe<Scalars['String']['input']>;
|
|
2548
2549
|
};
|
|
2550
|
+
export type MutationBounceMessageArgs = {
|
|
2551
|
+
message?: InputMaybe<RedirectMessgeInput>;
|
|
2552
|
+
};
|
|
2549
2553
|
export type MutationCancelPendingAccountOnlyRemoteWipeSyncArgs = {
|
|
2550
2554
|
deviceId?: InputMaybe<Scalars['String']['input']>;
|
|
2551
2555
|
};
|
|
@@ -3486,6 +3490,10 @@ export type RedirectActionInput = {
|
|
|
3486
3490
|
copy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3487
3491
|
index?: InputMaybe<Scalars['Int']['input']>;
|
|
3488
3492
|
};
|
|
3493
|
+
export type RedirectMessgeInput = {
|
|
3494
|
+
emailAddresses?: InputMaybe<Array<InputMaybe<MailItemEmailAddressInput>>>;
|
|
3495
|
+
id: Scalars['ID']['input'];
|
|
3496
|
+
};
|
|
3489
3497
|
export type RelatedContact = {
|
|
3490
3498
|
__typename?: 'RelatedContact';
|
|
3491
3499
|
email?: Maybe<Scalars['String']['output']>;
|