@zimbra/api-client 102.0.1-PREAPPS-9707.9e46b27.0 → 102.0.1-master.cd150cc.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.
@@ -3530,16 +3530,6 @@ input DiscoverRightInput {
3530
3530
  _content: String
3531
3531
  }
3532
3532
 
3533
- type Misspelling {
3534
- word: String
3535
- suggestions: [String]
3536
- }
3537
-
3538
- type CheckSpellingResponse {
3539
- available: Boolean
3540
- misspelled: [Misspelling]
3541
- }
3542
-
3543
3533
  # Zimbra GraphQL Queries
3544
3534
  # - [[SOAP API Reference]](https://files.zimbra.com/docs/soap_api/8.7.11/api-reference/index.html)
3545
3535
  # - [[SOAP Documentation]](https://github.com/Zimbra/zm-mailbox/blob/develop/store/docs/soap.txt)
@@ -3733,11 +3723,6 @@ type Query {
3733
3723
  taskFolders: [Folder]
3734
3724
 
3735
3725
  getTag: [Tag]
3736
-
3737
- checkSpelling(
3738
- text: String!
3739
- ignore: [String]
3740
- ): CheckSpellingResponse
3741
3726
  }
3742
3727
 
3743
3728
  type Mutation {
@@ -1,6 +1,6 @@
1
1
  import { JsonRequestOptions } from '../request/types';
2
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
- import { ActionOptions, ActionType, ApplyFilterRulesOptions, AppointmentOptions, AutoCompleteGALOptions, AutoCompleteOptions, ChangePasswordOptions, CheckSpellingOptions, 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';
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 {
6
6
  localStoreClient: any;
@@ -188,10 +188,6 @@ export declare class ZimbraBatchClient {
188
188
  taskFolders: () => Promise<any>;
189
189
  testExternalAccount: ({ accountType, ...accountInfo }: ExternalAccountTestInput) => Promise<{}>;
190
190
  uploadMessage: (message: string) => any;
191
- checkSpelling: ({ text, ignore }: CheckSpellingOptions) => Promise<{
192
- available: any;
193
- misspelled: any;
194
- }>;
195
191
  private batchDataHandler;
196
192
  private checkAndUpdateSessionId;
197
193
  private dataHandler;
@@ -317,11 +317,3 @@ export interface DiscoverRightInput {
317
317
  export interface DiscoverRightOptions {
318
318
  right: Array<DiscoverRightInput>;
319
319
  }
320
- export interface CheckSpellingOptions {
321
- text: string;
322
- ignore: Array<string>;
323
- }
324
- export interface Misspelled {
325
- word: string;
326
- suggestions: string;
327
- }
@@ -787,11 +787,6 @@ export type CancelRuleInfo = {
787
787
  ridZ?: Maybe<Scalars['String']['output']>;
788
788
  tz?: Maybe<Scalars['String']['output']>;
789
789
  };
790
- export type CheckSpellingResponse = {
791
- __typename?: 'CheckSpellingResponse';
792
- available?: Maybe<Scalars['Boolean']['output']>;
793
- misspelled?: Maybe<Array<Maybe<Misspelling>>>;
794
- };
795
790
  export type ClientInfoAttributes = {
796
791
  __typename?: 'ClientInfoAttributes';
797
792
  zimbraClassicWebClientDisabled?: Maybe<Scalars['Boolean']['output']>;
@@ -2360,11 +2355,6 @@ export type MimePartInput = {
2360
2355
  truncated?: InputMaybe<Scalars['Boolean']['input']>;
2361
2356
  url?: InputMaybe<Scalars['String']['input']>;
2362
2357
  };
2363
- export type Misspelling = {
2364
- __typename?: 'Misspelling';
2365
- suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2366
- word?: Maybe<Scalars['String']['output']>;
2367
- };
2368
2358
  export declare enum Mode {
2369
2359
  Html = "html",
2370
2360
  Text = "text"
@@ -3199,7 +3189,6 @@ export type Query = {
3199
3189
  accountInfo?: Maybe<AccountInfo>;
3200
3190
  autoComplete?: Maybe<AutoCompleteResponse>;
3201
3191
  autoCompleteGAL?: Maybe<AutoCompleteGalResponse>;
3202
- checkSpelling?: Maybe<CheckSpellingResponse>;
3203
3192
  clientInfo?: Maybe<ClientInfoType>;
3204
3193
  discoverRights?: Maybe<DiscoverRights>;
3205
3194
  downloadAttachment?: Maybe<Attachment>;
@@ -3265,10 +3254,6 @@ export type QueryAutoCompleteGalArgs = {
3265
3254
  needExp?: InputMaybe<Scalars['Boolean']['input']>;
3266
3255
  type?: InputMaybe<GalSearchType>;
3267
3256
  };
3268
- export type QueryCheckSpellingArgs = {
3269
- ignore?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
3270
- text: Scalars['String']['input'];
3271
- };
3272
3257
  export type QueryClientInfoArgs = {
3273
3258
  by?: InputMaybe<Scalars['String']['input']>;
3274
3259
  domain?: InputMaybe<Scalars['String']['input']>;