@connectedxm/admin-sdk 6.32.2 → 6.33.1

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.
Files changed (69) hide show
  1. package/.openapi-generator/FILES +2 -1
  2. package/README.md +6 -1
  3. package/api.ts +546 -206
  4. package/dist/api.d.ts +467 -302
  5. package/dist/api.js +313 -30
  6. package/dist/esm/api.d.ts +467 -302
  7. package/dist/esm/api.js +287 -4
  8. package/docs/AccountsApi.md +97 -0
  9. package/docs/AnnouncementsTranslationsApi.md +4 -4
  10. package/docs/BaseEventActivation.md +2 -0
  11. package/docs/BenefitsTranslationsApi.md +4 -4
  12. package/docs/BookingsPlacesTranslationsApi.md +4 -4
  13. package/docs/BookingsQuestionsChoicesTranslationsApi.md +2 -2
  14. package/docs/BookingsQuestionsTranslationsApi.md +2 -2
  15. package/docs/BookingsSpacesTranslationsApi.md +4 -4
  16. package/docs/ChannelsTranslationsApi.md +8 -8
  17. package/docs/DashboardsApi.md +2 -2
  18. package/docs/DashboardsWidgetsApi.md +2 -2
  19. package/docs/EventActivation.md +2 -0
  20. package/docs/EventActivationCreateInputs.md +2 -0
  21. package/docs/EventActivationRewardType.md +10 -0
  22. package/docs/EventActivationUpdateInputs.md +2 -0
  23. package/docs/EventsAccessApi.md +4 -4
  24. package/docs/EventsActivationsSessionsApi.md +55 -0
  25. package/docs/EventsActivationsTranslationsApi.md +2 -2
  26. package/docs/EventsAddonsTranslationsApi.md +2 -2
  27. package/docs/EventsApi.md +6 -6
  28. package/docs/EventsAttendeesApi.md +52 -0
  29. package/docs/EventsAttendeesPackagesApi.md +2 -2
  30. package/docs/EventsEmailsTranslationsApi.md +4 -4
  31. package/docs/EventsFaqsTranslationsApi.md +8 -8
  32. package/docs/EventsFollowupsTranslationsApi.md +4 -4
  33. package/docs/EventsMediaTranslationsApi.md +2 -2
  34. package/docs/EventsPagesTranslationsApi.md +4 -4
  35. package/docs/EventsPasstypesPriceschedulesApi.md +4 -4
  36. package/docs/EventsPasstypesRefundschedulesApi.md +4 -4
  37. package/docs/EventsPasstypesTranslationsApi.md +4 -4
  38. package/docs/EventsQuestionsApi.md +2 -2
  39. package/docs/EventsQuestionsTranslationsApi.md +8 -8
  40. package/docs/EventsRoomtypesTranslationsApi.md +4 -4
  41. package/docs/EventsSectionsTranslationsApi.md +4 -4
  42. package/docs/EventsSessionsApi.md +2 -2
  43. package/docs/EventsSessionsLocationsTranslationsApi.md +4 -4
  44. package/docs/EventsSessionsQuestionsApi.md +2 -2
  45. package/docs/EventsSessionsQuestionsTranslationsApi.md +8 -8
  46. package/docs/EventsSessionsSectionsTranslationsApi.md +4 -4
  47. package/docs/EventsSessionsTimesApi.md +2 -2
  48. package/docs/EventsSessionsTimesTranslationsApi.md +4 -4
  49. package/docs/EventsSessionsTranslationsApi.md +4 -4
  50. package/docs/EventsSpeakersTranslationsApi.md +4 -4
  51. package/docs/EventsTracksTranslationsApi.md +4 -4
  52. package/docs/EventsTranslationsApi.md +4 -4
  53. package/docs/GroupsTranslationsApi.md +4 -4
  54. package/docs/MeetingsParticipantsApi.md +4 -4
  55. package/docs/MeetingsSessionsApi.md +2 -2
  56. package/docs/NotificationsApi.md +4 -4
  57. package/docs/OrganizationModulesSettingsTranslationsApi.md +4 -4
  58. package/docs/OrganizationPaymentsApi.md +2 -2
  59. package/docs/OrganizationTeammembersApi.md +2 -2
  60. package/docs/SeriesTranslationsApi.md +4 -4
  61. package/docs/SponsorsTranslationsApi.md +4 -4
  62. package/docs/StorageVideosApi.md +4 -4
  63. package/docs/StorageVideosCaptionsApi.md +2 -2
  64. package/docs/SurveysQuestionsApi.md +2 -2
  65. package/docs/SurveysQuestionsTranslationsApi.md +8 -8
  66. package/docs/SurveysSectionsTranslationsApi.md +4 -4
  67. package/docs/SurveysTranslationsApi.md +4 -4
  68. package/docs/{UpdateAnnouncementTranslation200Response.md → SyncAccounts200Response.md} +3 -3
  69. package/package.json +1 -1
package/api.ts CHANGED
@@ -1241,6 +1241,7 @@ export interface BaseEventActivation {
1241
1241
  'maxPoints': number;
1242
1242
  'startAfter': string | null;
1243
1243
  'type': EventActivationType;
1244
+ 'rewardType': EventActivationRewardType;
1244
1245
  'accessLevel': PassTypeAccessLevel;
1245
1246
  'sortOrder': number;
1246
1247
  'survey': BaseSurvey | null;
@@ -4773,6 +4774,7 @@ export interface EventActivation {
4773
4774
  'maxPoints': number;
4774
4775
  'startAfter': string | null;
4775
4776
  'type': EventActivationType;
4777
+ 'rewardType': EventActivationRewardType;
4776
4778
  'accessLevel': PassTypeAccessLevel;
4777
4779
  'sortOrder': number;
4778
4780
  'survey': BaseSurvey | null;
@@ -4808,6 +4810,7 @@ export interface EventActivationCreateInputs {
4808
4810
  'maxPoints'?: AdvertisementCreateInputsWeight | null;
4809
4811
  'startAfter'?: string | null;
4810
4812
  'type'?: EventActivationType;
4813
+ 'rewardType'?: EventActivationRewardType;
4811
4814
  'protectionCode'?: AdvertisementCreateInputsWeight | null;
4812
4815
  'email'?: boolean;
4813
4816
  'push'?: boolean;
@@ -4819,6 +4822,13 @@ export interface EventActivationCreateInputs {
4819
4822
  }
4820
4823
 
4821
4824
 
4825
+
4826
+ export enum EventActivationRewardType {
4827
+ Max = 'max',
4828
+ Input = 'input'
4829
+ }
4830
+
4831
+
4822
4832
  export interface EventActivationTranslation {
4823
4833
  'locale': string;
4824
4834
  'name': string;
@@ -4848,6 +4858,7 @@ export interface EventActivationUpdateInputs {
4848
4858
  'maxPoints'?: AdvertisementCreateInputsWeight | null;
4849
4859
  'startAfter'?: string | null;
4850
4860
  'type'?: EventActivationType;
4861
+ 'rewardType'?: EventActivationRewardType;
4851
4862
  'protectionCode'?: AdvertisementCreateInputsWeight | null;
4852
4863
  'accessLevel'?: PassTypeAccessLevel;
4853
4864
  'continuousScanning'?: boolean;
@@ -13506,6 +13517,16 @@ export interface SurveyUpdateInputs {
13506
13517
  }
13507
13518
 
13508
13519
 
13520
+ export interface SyncAccounts200Response {
13521
+ 'status': SyncAccounts200ResponseStatusEnum;
13522
+ 'message': string;
13523
+ 'data': object;
13524
+ }
13525
+
13526
+ export enum SyncAccounts200ResponseStatusEnum {
13527
+ Ok = 'ok'
13528
+ }
13529
+
13509
13530
  export interface SystemEventLog {
13510
13531
  'id': string;
13511
13532
  'organizationId': string;
@@ -13908,16 +13929,6 @@ export interface TriggerUpdateInputs {
13908
13929
  'code'?: string | null;
13909
13930
  'enabled'?: boolean;
13910
13931
  }
13911
- export interface UpdateAnnouncementTranslation200Response {
13912
- 'status': UpdateAnnouncementTranslation200ResponseStatusEnum;
13913
- 'message': string;
13914
- 'data': object;
13915
- }
13916
-
13917
- export enum UpdateAnnouncementTranslation200ResponseStatusEnum {
13918
- Ok = 'ok'
13919
- }
13920
-
13921
13932
  export interface UpdateBookingSpaceQuestionChoiceTranslation200Response {
13922
13933
  'status': UpdateBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum;
13923
13934
  'message': string;
@@ -15114,6 +15125,82 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
15114
15125
  options: localVarRequestOptions,
15115
15126
  };
15116
15127
  },
15128
+ /**
15129
+ * Sync Account endpoint
15130
+ * @summary Sync Account
15131
+ * @param {string} accountId The account identifier
15132
+ * @param {*} [options] Override http request option.
15133
+ * @throws {RequiredError}
15134
+ */
15135
+ syncAccount: async (accountId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
15136
+ // verify required parameter 'accountId' is not null or undefined
15137
+ assertParamExists('syncAccount', 'accountId', accountId)
15138
+ const localVarPath = `/accounts/{accountId}/sync`
15139
+ .replace(`{${"accountId"}}`, encodeURIComponent(String(accountId)));
15140
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
15141
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
15142
+ let baseOptions;
15143
+ if (configuration) {
15144
+ baseOptions = configuration.baseOptions;
15145
+ }
15146
+
15147
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
15148
+ const localVarHeaderParameter = {} as any;
15149
+ const localVarQueryParameter = {} as any;
15150
+
15151
+ // authentication ApiKeyAuth required
15152
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
15153
+
15154
+ // authentication OrganizationId required
15155
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
15156
+
15157
+ localVarHeaderParameter['Accept'] = 'application/json';
15158
+
15159
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
15160
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
15161
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
15162
+
15163
+ return {
15164
+ url: toPathString(localVarUrlObj),
15165
+ options: localVarRequestOptions,
15166
+ };
15167
+ },
15168
+ /**
15169
+ * Sync Accounts endpoint
15170
+ * @summary Sync Accounts
15171
+ * @param {*} [options] Override http request option.
15172
+ * @throws {RequiredError}
15173
+ */
15174
+ syncAccounts: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
15175
+ const localVarPath = `/accounts/sync`;
15176
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
15177
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
15178
+ let baseOptions;
15179
+ if (configuration) {
15180
+ baseOptions = configuration.baseOptions;
15181
+ }
15182
+
15183
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
15184
+ const localVarHeaderParameter = {} as any;
15185
+ const localVarQueryParameter = {} as any;
15186
+
15187
+ // authentication ApiKeyAuth required
15188
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
15189
+
15190
+ // authentication OrganizationId required
15191
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
15192
+
15193
+ localVarHeaderParameter['Accept'] = 'application/json';
15194
+
15195
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
15196
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
15197
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
15198
+
15199
+ return {
15200
+ url: toPathString(localVarUrlObj),
15201
+ options: localVarRequestOptions,
15202
+ };
15203
+ },
15117
15204
  /**
15118
15205
  * Update Account endpoint
15119
15206
  * @summary Update Account
@@ -15417,6 +15504,31 @@ export const AccountsApiFp = function(configuration?: Configuration) {
15417
15504
  const localVarOperationServerBasePath = operationServerMap['AccountsApi.impersonateAccount']?.[localVarOperationServerIndex]?.url;
15418
15505
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15419
15506
  },
15507
+ /**
15508
+ * Sync Account endpoint
15509
+ * @summary Sync Account
15510
+ * @param {string} accountId The account identifier
15511
+ * @param {*} [options] Override http request option.
15512
+ * @throws {RequiredError}
15513
+ */
15514
+ async syncAccount(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
15515
+ const localVarAxiosArgs = await localVarAxiosParamCreator.syncAccount(accountId, options);
15516
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
15517
+ const localVarOperationServerBasePath = operationServerMap['AccountsApi.syncAccount']?.[localVarOperationServerIndex]?.url;
15518
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15519
+ },
15520
+ /**
15521
+ * Sync Accounts endpoint
15522
+ * @summary Sync Accounts
15523
+ * @param {*} [options] Override http request option.
15524
+ * @throws {RequiredError}
15525
+ */
15526
+ async syncAccounts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
15527
+ const localVarAxiosArgs = await localVarAxiosParamCreator.syncAccounts(options);
15528
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
15529
+ const localVarOperationServerBasePath = operationServerMap['AccountsApi.syncAccounts']?.[localVarOperationServerIndex]?.url;
15530
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15531
+ },
15420
15532
  /**
15421
15533
  * Update Account endpoint
15422
15534
  * @summary Update Account
@@ -15600,6 +15712,25 @@ export const AccountsApiFactory = function (configuration?: Configuration, baseP
15600
15712
  impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response> {
15601
15713
  return localVarFp.impersonateAccount(requestParameters.accountId, requestParameters.username, options).then((request) => request(axios, basePath));
15602
15714
  },
15715
+ /**
15716
+ * Sync Account endpoint
15717
+ * @summary Sync Account
15718
+ * @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
15719
+ * @param {*} [options] Override http request option.
15720
+ * @throws {RequiredError}
15721
+ */
15722
+ syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
15723
+ return localVarFp.syncAccount(requestParameters.accountId, options).then((request) => request(axios, basePath));
15724
+ },
15725
+ /**
15726
+ * Sync Accounts endpoint
15727
+ * @summary Sync Accounts
15728
+ * @param {*} [options] Override http request option.
15729
+ * @throws {RequiredError}
15730
+ */
15731
+ syncAccounts(options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
15732
+ return localVarFp.syncAccounts(options).then((request) => request(axios, basePath));
15733
+ },
15603
15734
  /**
15604
15735
  * Update Account endpoint
15605
15736
  * @summary Update Account
@@ -15975,6 +16106,16 @@ export interface AccountsApiImpersonateAccountRequest {
15975
16106
  readonly username: string
15976
16107
  }
15977
16108
 
16109
+ /**
16110
+ * Request parameters for syncAccount operation in AccountsApi.
16111
+ */
16112
+ export interface AccountsApiSyncAccountRequest {
16113
+ /**
16114
+ * The account identifier
16115
+ */
16116
+ readonly accountId: string
16117
+ }
16118
+
15978
16119
  /**
15979
16120
  * Request parameters for updateAccount operation in AccountsApi.
15980
16121
  */
@@ -16167,6 +16308,27 @@ export class AccountsApi extends BaseAPI {
16167
16308
  return AccountsApiFp(this.configuration).impersonateAccount(requestParameters.accountId, requestParameters.username, options).then((request) => request(this.axios, this.basePath));
16168
16309
  }
16169
16310
 
16311
+ /**
16312
+ * Sync Account endpoint
16313
+ * @summary Sync Account
16314
+ * @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
16315
+ * @param {*} [options] Override http request option.
16316
+ * @throws {RequiredError}
16317
+ */
16318
+ public syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig) {
16319
+ return AccountsApiFp(this.configuration).syncAccount(requestParameters.accountId, options).then((request) => request(this.axios, this.basePath));
16320
+ }
16321
+
16322
+ /**
16323
+ * Sync Accounts endpoint
16324
+ * @summary Sync Accounts
16325
+ * @param {*} [options] Override http request option.
16326
+ * @throws {RequiredError}
16327
+ */
16328
+ public syncAccounts(options?: RawAxiosRequestConfig) {
16329
+ return AccountsApiFp(this.configuration).syncAccounts(options).then((request) => request(this.axios, this.basePath));
16330
+ }
16331
+
16170
16332
  /**
16171
16333
  * Update Account endpoint
16172
16334
  * @summary Update Account
@@ -22639,7 +22801,7 @@ export const AnnouncementsTranslationsApiFp = function(configuration?: Configura
22639
22801
  * @param {*} [options] Override http request option.
22640
22802
  * @throws {RequiredError}
22641
22803
  */
22642
- async deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
22804
+ async deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
22643
22805
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAnnouncementTranslation(announcementId, locale, options);
22644
22806
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
22645
22807
  const localVarOperationServerBasePath = operationServerMap['AnnouncementsTranslationsApi.deleteAnnouncementTranslation']?.[localVarOperationServerIndex]?.url;
@@ -22685,7 +22847,7 @@ export const AnnouncementsTranslationsApiFp = function(configuration?: Configura
22685
22847
  * @param {*} [options] Override http request option.
22686
22848
  * @throws {RequiredError}
22687
22849
  */
22688
- async updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
22850
+ async updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
22689
22851
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateAnnouncementTranslation(announcementId, locale, announcementTranslationUpdateInputs, options);
22690
22852
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
22691
22853
  const localVarOperationServerBasePath = operationServerMap['AnnouncementsTranslationsApi.updateAnnouncementTranslation']?.[localVarOperationServerIndex]?.url;
@@ -22707,7 +22869,7 @@ export const AnnouncementsTranslationsApiFactory = function (configuration?: Con
22707
22869
  * @param {*} [options] Override http request option.
22708
22870
  * @throws {RequiredError}
22709
22871
  */
22710
- deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
22872
+ deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
22711
22873
  return localVarFp.deleteAnnouncementTranslation(requestParameters.announcementId, requestParameters.locale, options).then((request) => request(axios, basePath));
22712
22874
  },
22713
22875
  /**
@@ -22737,7 +22899,7 @@ export const AnnouncementsTranslationsApiFactory = function (configuration?: Con
22737
22899
  * @param {*} [options] Override http request option.
22738
22900
  * @throws {RequiredError}
22739
22901
  */
22740
- updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
22902
+ updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
22741
22903
  return localVarFp.updateAnnouncementTranslation(requestParameters.announcementId, requestParameters.locale, requestParameters.announcementTranslationUpdateInputs, options).then((request) => request(axios, basePath));
22742
22904
  },
22743
22905
  };
@@ -24284,7 +24446,7 @@ export const BenefitsTranslationsApiFp = function(configuration?: Configuration)
24284
24446
  * @param {*} [options] Override http request option.
24285
24447
  * @throws {RequiredError}
24286
24448
  */
24287
- async deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
24449
+ async deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
24288
24450
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBenefitTranslation(benefitId, locale, options);
24289
24451
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
24290
24452
  const localVarOperationServerBasePath = operationServerMap['BenefitsTranslationsApi.deleteBenefitTranslation']?.[localVarOperationServerIndex]?.url;
@@ -24330,7 +24492,7 @@ export const BenefitsTranslationsApiFp = function(configuration?: Configuration)
24330
24492
  * @param {*} [options] Override http request option.
24331
24493
  * @throws {RequiredError}
24332
24494
  */
24333
- async updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
24495
+ async updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
24334
24496
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateBenefitTranslation(benefitId, locale, benefitTranslationUpdateInputs, options);
24335
24497
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
24336
24498
  const localVarOperationServerBasePath = operationServerMap['BenefitsTranslationsApi.updateBenefitTranslation']?.[localVarOperationServerIndex]?.url;
@@ -24352,7 +24514,7 @@ export const BenefitsTranslationsApiFactory = function (configuration?: Configur
24352
24514
  * @param {*} [options] Override http request option.
24353
24515
  * @throws {RequiredError}
24354
24516
  */
24355
- deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
24517
+ deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
24356
24518
  return localVarFp.deleteBenefitTranslation(requestParameters.benefitId, requestParameters.locale, options).then((request) => request(axios, basePath));
24357
24519
  },
24358
24520
  /**
@@ -24382,7 +24544,7 @@ export const BenefitsTranslationsApiFactory = function (configuration?: Configur
24382
24544
  * @param {*} [options] Override http request option.
24383
24545
  * @throws {RequiredError}
24384
24546
  */
24385
- updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
24547
+ updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
24386
24548
  return localVarFp.updateBenefitTranslation(requestParameters.benefitId, requestParameters.locale, requestParameters.benefitTranslationUpdateInputs, options).then((request) => request(axios, basePath));
24387
24549
  },
24388
24550
  };
@@ -28312,7 +28474,7 @@ export const BookingsPlacesTranslationsApiFp = function(configuration?: Configur
28312
28474
  * @param {*} [options] Override http request option.
28313
28475
  * @throws {RequiredError}
28314
28476
  */
28315
- async deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
28477
+ async deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
28316
28478
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingPlaceTranslation(placeId, locale, options);
28317
28479
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
28318
28480
  const localVarOperationServerBasePath = operationServerMap['BookingsPlacesTranslationsApi.deleteBookingPlaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -28327,7 +28489,7 @@ export const BookingsPlacesTranslationsApiFp = function(configuration?: Configur
28327
28489
  * @param {*} [options] Override http request option.
28328
28490
  * @throws {RequiredError}
28329
28491
  */
28330
- async updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
28492
+ async updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
28331
28493
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateBookingPlaceTranslation(placeId, locale, bookingPlaceTranslationUpdateInputs, options);
28332
28494
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
28333
28495
  const localVarOperationServerBasePath = operationServerMap['BookingsPlacesTranslationsApi.updateBookingPlaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -28349,7 +28511,7 @@ export const BookingsPlacesTranslationsApiFactory = function (configuration?: Co
28349
28511
  * @param {*} [options] Override http request option.
28350
28512
  * @throws {RequiredError}
28351
28513
  */
28352
- deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
28514
+ deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
28353
28515
  return localVarFp.deleteBookingPlaceTranslation(requestParameters.placeId, requestParameters.locale, options).then((request) => request(axios, basePath));
28354
28516
  },
28355
28517
  /**
@@ -28359,7 +28521,7 @@ export const BookingsPlacesTranslationsApiFactory = function (configuration?: Co
28359
28521
  * @param {*} [options] Override http request option.
28360
28522
  * @throws {RequiredError}
28361
28523
  */
28362
- updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
28524
+ updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
28363
28525
  return localVarFp.updateBookingPlaceTranslation(requestParameters.placeId, requestParameters.locale, requestParameters.bookingPlaceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
28364
28526
  },
28365
28527
  };
@@ -30352,7 +30514,7 @@ export const BookingsQuestionsChoicesTranslationsApiFp = function(configuration?
30352
30514
  * @param {*} [options] Override http request option.
30353
30515
  * @throws {RequiredError}
30354
30516
  */
30355
- async deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
30517
+ async deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
30356
30518
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingSpaceQuestionChoiceTranslation(placeId, spaceId, questionId, choiceId, locale, options);
30357
30519
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
30358
30520
  const localVarOperationServerBasePath = operationServerMap['BookingsQuestionsChoicesTranslationsApi.deleteBookingSpaceQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -30425,7 +30587,7 @@ export const BookingsQuestionsChoicesTranslationsApiFactory = function (configur
30425
30587
  * @param {*} [options] Override http request option.
30426
30588
  * @throws {RequiredError}
30427
30589
  */
30428
- deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
30590
+ deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
30429
30591
  return localVarFp.deleteBookingSpaceQuestionChoiceTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
30430
30592
  },
30431
30593
  /**
@@ -30862,7 +31024,7 @@ export const BookingsQuestionsTranslationsApiFp = function(configuration?: Confi
30862
31024
  * @param {*} [options] Override http request option.
30863
31025
  * @throws {RequiredError}
30864
31026
  */
30865
- async deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
31027
+ async deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
30866
31028
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingSpaceQuestionTranslation(placeId, spaceId, questionId, locale, options);
30867
31029
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
30868
31030
  const localVarOperationServerBasePath = operationServerMap['BookingsQuestionsTranslationsApi.deleteBookingSpaceQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -30932,7 +31094,7 @@ export const BookingsQuestionsTranslationsApiFactory = function (configuration?:
30932
31094
  * @param {*} [options] Override http request option.
30933
31095
  * @throws {RequiredError}
30934
31096
  */
30935
- deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
31097
+ deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
30936
31098
  return localVarFp.deleteBookingSpaceQuestionTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
30937
31099
  },
30938
31100
  /**
@@ -31568,7 +31730,7 @@ export const BookingsSpacesTranslationsApiFp = function(configuration?: Configur
31568
31730
  * @param {*} [options] Override http request option.
31569
31731
  * @throws {RequiredError}
31570
31732
  */
31571
- async deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
31733
+ async deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
31572
31734
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingSpaceTranslation(placeId, spaceId, locale, options);
31573
31735
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
31574
31736
  const localVarOperationServerBasePath = operationServerMap['BookingsSpacesTranslationsApi.deleteBookingSpaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -31584,7 +31746,7 @@ export const BookingsSpacesTranslationsApiFp = function(configuration?: Configur
31584
31746
  * @param {*} [options] Override http request option.
31585
31747
  * @throws {RequiredError}
31586
31748
  */
31587
- async updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
31749
+ async updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
31588
31750
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateBookingSpaceTranslation(placeId, spaceId, locale, bookingSpaceTranslationUpdateInputs, options);
31589
31751
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
31590
31752
  const localVarOperationServerBasePath = operationServerMap['BookingsSpacesTranslationsApi.updateBookingSpaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -31606,7 +31768,7 @@ export const BookingsSpacesTranslationsApiFactory = function (configuration?: Co
31606
31768
  * @param {*} [options] Override http request option.
31607
31769
  * @throws {RequiredError}
31608
31770
  */
31609
- deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
31771
+ deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
31610
31772
  return localVarFp.deleteBookingSpaceTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.locale, options).then((request) => request(axios, basePath));
31611
31773
  },
31612
31774
  /**
@@ -31616,7 +31778,7 @@ export const BookingsSpacesTranslationsApiFactory = function (configuration?: Co
31616
31778
  * @param {*} [options] Override http request option.
31617
31779
  * @throws {RequiredError}
31618
31780
  */
31619
- updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
31781
+ updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
31620
31782
  return localVarFp.updateBookingSpaceTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.locale, requestParameters.bookingSpaceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
31621
31783
  },
31622
31784
  };
@@ -35573,7 +35735,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35573
35735
  * @param {*} [options] Override http request option.
35574
35736
  * @throws {RequiredError}
35575
35737
  */
35576
- async deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35738
+ async deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35577
35739
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteChannelContentGuestTranslation(channelId, contentId, guestId, locale, options);
35578
35740
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35579
35741
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.deleteChannelContentGuestTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35588,7 +35750,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35588
35750
  * @param {*} [options] Override http request option.
35589
35751
  * @throws {RequiredError}
35590
35752
  */
35591
- async deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35753
+ async deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35592
35754
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteChannelContentTranslation(channelId, contentId, locale, options);
35593
35755
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35594
35756
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.deleteChannelContentTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35602,7 +35764,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35602
35764
  * @param {*} [options] Override http request option.
35603
35765
  * @throws {RequiredError}
35604
35766
  */
35605
- async deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35767
+ async deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35606
35768
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteChannelTranslation(channelId, locale, options);
35607
35769
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35608
35770
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.deleteChannelTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35734,7 +35896,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35734
35896
  * @param {*} [options] Override http request option.
35735
35897
  * @throws {RequiredError}
35736
35898
  */
35737
- async updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35899
+ async updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35738
35900
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateChannelContentTranslation(channelId, contentId, locale, channelContentTranslationUpdateInputs, options);
35739
35901
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35740
35902
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.updateChannelContentTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35771,7 +35933,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35771
35933
  * @param {*} [options] Override http request option.
35772
35934
  * @throws {RequiredError}
35773
35935
  */
35774
- deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
35936
+ deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35775
35937
  return localVarFp.deleteChannelContentGuestTranslation(requestParameters.channelId, requestParameters.contentId, requestParameters.guestId, requestParameters.locale, options).then((request) => request(axios, basePath));
35776
35938
  },
35777
35939
  /**
@@ -35781,7 +35943,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35781
35943
  * @param {*} [options] Override http request option.
35782
35944
  * @throws {RequiredError}
35783
35945
  */
35784
- deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
35946
+ deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35785
35947
  return localVarFp.deleteChannelContentTranslation(requestParameters.channelId, requestParameters.contentId, requestParameters.locale, options).then((request) => request(axios, basePath));
35786
35948
  },
35787
35949
  /**
@@ -35791,7 +35953,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35791
35953
  * @param {*} [options] Override http request option.
35792
35954
  * @throws {RequiredError}
35793
35955
  */
35794
- deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
35956
+ deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35795
35957
  return localVarFp.deleteChannelTranslation(requestParameters.channelId, requestParameters.locale, options).then((request) => request(axios, basePath));
35796
35958
  },
35797
35959
  /**
@@ -35871,7 +36033,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35871
36033
  * @param {*} [options] Override http request option.
35872
36034
  * @throws {RequiredError}
35873
36035
  */
35874
- updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
36036
+ updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35875
36037
  return localVarFp.updateChannelContentTranslation(requestParameters.channelId, requestParameters.contentId, requestParameters.locale, requestParameters.channelContentTranslationUpdateInputs, options).then((request) => request(axios, basePath));
35876
36038
  },
35877
36039
  /**
@@ -36578,7 +36740,7 @@ export const DashboardsApiFp = function(configuration?: Configuration) {
36578
36740
  * @param {*} [options] Override http request option.
36579
36741
  * @throws {RequiredError}
36580
36742
  */
36581
- async deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
36743
+ async deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
36582
36744
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDashboard(dashboardId, options);
36583
36745
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36584
36746
  const localVarOperationServerBasePath = operationServerMap['DashboardsApi.deleteDashboard']?.[localVarOperationServerIndex]?.url;
@@ -36654,7 +36816,7 @@ export const DashboardsApiFactory = function (configuration?: Configuration, bas
36654
36816
  * @param {*} [options] Override http request option.
36655
36817
  * @throws {RequiredError}
36656
36818
  */
36657
- deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
36819
+ deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
36658
36820
  return localVarFp.deleteDashboard(requestParameters.dashboardId, options).then((request) => request(axios, basePath));
36659
36821
  },
36660
36822
  /**
@@ -37040,7 +37202,7 @@ export const DashboardsWidgetsApiFp = function(configuration?: Configuration) {
37040
37202
  * @param {*} [options] Override http request option.
37041
37203
  * @throws {RequiredError}
37042
37204
  */
37043
- async deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
37205
+ async deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
37044
37206
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDashboardWidget(dashboardId, widgetId, options);
37045
37207
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37046
37208
  const localVarOperationServerBasePath = operationServerMap['DashboardsWidgetsApi.deleteDashboardWidget']?.[localVarOperationServerIndex]?.url;
@@ -37101,7 +37263,7 @@ export const DashboardsWidgetsApiFactory = function (configuration?: Configurati
37101
37263
  * @param {*} [options] Override http request option.
37102
37264
  * @throws {RequiredError}
37103
37265
  */
37104
- deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
37266
+ deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
37105
37267
  return localVarFp.deleteDashboardWidget(requestParameters.dashboardId, requestParameters.widgetId, options).then((request) => request(axios, basePath));
37106
37268
  },
37107
37269
  /**
@@ -38094,7 +38256,7 @@ export const EventsApiFp = function(configuration?: Configuration) {
38094
38256
  * @param {*} [options] Override http request option.
38095
38257
  * @throws {RequiredError}
38096
38258
  */
38097
- async cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
38259
+ async cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38098
38260
  const localVarAxiosArgs = await localVarAxiosParamCreator.cloneEvent(eventId, cloneOptions, options);
38099
38261
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38100
38262
  const localVarOperationServerBasePath = operationServerMap['EventsApi.cloneEvent']?.[localVarOperationServerIndex]?.url;
@@ -38133,7 +38295,7 @@ export const EventsApiFp = function(configuration?: Configuration) {
38133
38295
  * @param {*} [options] Override http request option.
38134
38296
  * @throws {RequiredError}
38135
38297
  */
38136
- async disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
38298
+ async disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38137
38299
  const localVarAxiosArgs = await localVarAxiosParamCreator.disableEventBuildMode(eventId, options);
38138
38300
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38139
38301
  const localVarOperationServerBasePath = operationServerMap['EventsApi.disableEventBuildMode']?.[localVarOperationServerIndex]?.url;
@@ -38146,7 +38308,7 @@ export const EventsApiFp = function(configuration?: Configuration) {
38146
38308
  * @param {*} [options] Override http request option.
38147
38309
  * @throws {RequiredError}
38148
38310
  */
38149
- async enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
38311
+ async enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38150
38312
  const localVarAxiosArgs = await localVarAxiosParamCreator.enableEventBuildMode(eventId, options);
38151
38313
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38152
38314
  const localVarOperationServerBasePath = operationServerMap['EventsApi.enableEventBuildMode']?.[localVarOperationServerIndex]?.url;
@@ -38279,7 +38441,7 @@ export const EventsApiFactory = function (configuration?: Configuration, basePat
38279
38441
  * @param {*} [options] Override http request option.
38280
38442
  * @throws {RequiredError}
38281
38443
  */
38282
- cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
38444
+ cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38283
38445
  return localVarFp.cloneEvent(requestParameters.eventId, requestParameters.cloneOptions, options).then((request) => request(axios, basePath));
38284
38446
  },
38285
38447
  /**
@@ -38309,7 +38471,7 @@ export const EventsApiFactory = function (configuration?: Configuration, basePat
38309
38471
  * @param {*} [options] Override http request option.
38310
38472
  * @throws {RequiredError}
38311
38473
  */
38312
- disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
38474
+ disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38313
38475
  return localVarFp.disableEventBuildMode(requestParameters.eventId, options).then((request) => request(axios, basePath));
38314
38476
  },
38315
38477
  /**
@@ -38319,7 +38481,7 @@ export const EventsApiFactory = function (configuration?: Configuration, basePat
38319
38481
  * @param {*} [options] Override http request option.
38320
38482
  * @throws {RequiredError}
38321
38483
  */
38322
- enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
38484
+ enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38323
38485
  return localVarFp.enableEventBuildMode(requestParameters.eventId, options).then((request) => request(axios, basePath));
38324
38486
  },
38325
38487
  /**
@@ -38923,7 +39085,7 @@ export const EventsAccessApiFp = function(configuration?: Configuration) {
38923
39085
  * @param {*} [options] Override http request option.
38924
39086
  * @throws {RequiredError}
38925
39087
  */
38926
- async addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
39088
+ async addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38927
39089
  const localVarAxiosArgs = await localVarAxiosParamCreator.addEventAccessUser(eventId, email, options);
38928
39090
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38929
39091
  const localVarOperationServerBasePath = operationServerMap['EventsAccessApi.addEventAccessUser']?.[localVarOperationServerIndex]?.url;
@@ -38954,7 +39116,7 @@ export const EventsAccessApiFp = function(configuration?: Configuration) {
38954
39116
  * @param {*} [options] Override http request option.
38955
39117
  * @throws {RequiredError}
38956
39118
  */
38957
- async removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
39119
+ async removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38958
39120
  const localVarAxiosArgs = await localVarAxiosParamCreator.removeEventAccessUser(eventId, userId, options);
38959
39121
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38960
39122
  const localVarOperationServerBasePath = operationServerMap['EventsAccessApi.removeEventAccessUser']?.[localVarOperationServerIndex]?.url;
@@ -38976,7 +39138,7 @@ export const EventsAccessApiFactory = function (configuration?: Configuration, b
38976
39138
  * @param {*} [options] Override http request option.
38977
39139
  * @throws {RequiredError}
38978
39140
  */
38979
- addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
39141
+ addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38980
39142
  return localVarFp.addEventAccessUser(requestParameters.eventId, requestParameters.email, options).then((request) => request(axios, basePath));
38981
39143
  },
38982
39144
  /**
@@ -38996,7 +39158,7 @@ export const EventsAccessApiFactory = function (configuration?: Configuration, b
38996
39158
  * @param {*} [options] Override http request option.
38997
39159
  * @throws {RequiredError}
38998
39160
  */
38999
- removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
39161
+ removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
39000
39162
  return localVarFp.removeEventAccessUser(requestParameters.eventId, requestParameters.userId, options).then((request) => request(axios, basePath));
39001
39163
  },
39002
39164
  };
@@ -40439,6 +40601,50 @@ export const EventsActivationsSessionsApiAxiosParamCreator = function (configura
40439
40601
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40440
40602
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
40441
40603
 
40604
+ return {
40605
+ url: toPathString(localVarUrlObj),
40606
+ options: localVarRequestOptions,
40607
+ };
40608
+ },
40609
+ /**
40610
+ * Remove Event Activation Sessions endpoint
40611
+ * @summary Remove Event Activation Sessions
40612
+ * @param {string} eventId The event identifier
40613
+ * @param {string} activationId The activation identifier
40614
+ * @param {*} [options] Override http request option.
40615
+ * @throws {RequiredError}
40616
+ */
40617
+ removeEventActivationSessions: async (eventId: string, activationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
40618
+ // verify required parameter 'eventId' is not null or undefined
40619
+ assertParamExists('removeEventActivationSessions', 'eventId', eventId)
40620
+ // verify required parameter 'activationId' is not null or undefined
40621
+ assertParamExists('removeEventActivationSessions', 'activationId', activationId)
40622
+ const localVarPath = `/events/{eventId}/activations/{activationId}/sessions`
40623
+ .replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
40624
+ .replace(`{${"activationId"}}`, encodeURIComponent(String(activationId)));
40625
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
40626
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
40627
+ let baseOptions;
40628
+ if (configuration) {
40629
+ baseOptions = configuration.baseOptions;
40630
+ }
40631
+
40632
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
40633
+ const localVarHeaderParameter = {} as any;
40634
+ const localVarQueryParameter = {} as any;
40635
+
40636
+ // authentication ApiKeyAuth required
40637
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
40638
+
40639
+ // authentication OrganizationId required
40640
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
40641
+
40642
+ localVarHeaderParameter['Accept'] = 'application/json';
40643
+
40644
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
40645
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40646
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
40647
+
40442
40648
  return {
40443
40649
  url: toPathString(localVarUrlObj),
40444
40650
  options: localVarRequestOptions,
@@ -40483,6 +40689,20 @@ export const EventsActivationsSessionsApiFp = function(configuration?: Configura
40483
40689
  const localVarOperationServerBasePath = operationServerMap['EventsActivationsSessionsApi.removeEventActivationSession']?.[localVarOperationServerIndex]?.url;
40484
40690
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
40485
40691
  },
40692
+ /**
40693
+ * Remove Event Activation Sessions endpoint
40694
+ * @summary Remove Event Activation Sessions
40695
+ * @param {string} eventId The event identifier
40696
+ * @param {string} activationId The activation identifier
40697
+ * @param {*} [options] Override http request option.
40698
+ * @throws {RequiredError}
40699
+ */
40700
+ async removeEventActivationSessions(eventId: string, activationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventActivation200Response>> {
40701
+ const localVarAxiosArgs = await localVarAxiosParamCreator.removeEventActivationSessions(eventId, activationId, options);
40702
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
40703
+ const localVarOperationServerBasePath = operationServerMap['EventsActivationsSessionsApi.removeEventActivationSessions']?.[localVarOperationServerIndex]?.url;
40704
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
40705
+ },
40486
40706
  }
40487
40707
  };
40488
40708
 
@@ -40512,6 +40732,16 @@ export const EventsActivationsSessionsApiFactory = function (configuration?: Con
40512
40732
  removeEventActivationSession(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventActivation200Response> {
40513
40733
  return localVarFp.removeEventActivationSession(requestParameters.eventId, requestParameters.activationId, requestParameters.sessionId, options).then((request) => request(axios, basePath));
40514
40734
  },
40735
+ /**
40736
+ * Remove Event Activation Sessions endpoint
40737
+ * @summary Remove Event Activation Sessions
40738
+ * @param {EventsActivationsSessionsApiRemoveEventActivationSessionsRequest} requestParameters Request parameters.
40739
+ * @param {*} [options] Override http request option.
40740
+ * @throws {RequiredError}
40741
+ */
40742
+ removeEventActivationSessions(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventActivation200Response> {
40743
+ return localVarFp.removeEventActivationSessions(requestParameters.eventId, requestParameters.activationId, options).then((request) => request(axios, basePath));
40744
+ },
40515
40745
  };
40516
40746
  };
40517
40747
 
@@ -40555,6 +40785,21 @@ export interface EventsActivationsSessionsApiRemoveEventActivationSessionRequest
40555
40785
  readonly sessionId: string
40556
40786
  }
40557
40787
 
40788
+ /**
40789
+ * Request parameters for removeEventActivationSessions operation in EventsActivationsSessionsApi.
40790
+ */
40791
+ export interface EventsActivationsSessionsApiRemoveEventActivationSessionsRequest {
40792
+ /**
40793
+ * The event identifier
40794
+ */
40795
+ readonly eventId: string
40796
+
40797
+ /**
40798
+ * The activation identifier
40799
+ */
40800
+ readonly activationId: string
40801
+ }
40802
+
40558
40803
  /**
40559
40804
  * EventsActivationsSessionsApi - object-oriented interface
40560
40805
  */
@@ -40580,6 +40825,17 @@ export class EventsActivationsSessionsApi extends BaseAPI {
40580
40825
  public removeEventActivationSession(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionRequest, options?: RawAxiosRequestConfig) {
40581
40826
  return EventsActivationsSessionsApiFp(this.configuration).removeEventActivationSession(requestParameters.eventId, requestParameters.activationId, requestParameters.sessionId, options).then((request) => request(this.axios, this.basePath));
40582
40827
  }
40828
+
40829
+ /**
40830
+ * Remove Event Activation Sessions endpoint
40831
+ * @summary Remove Event Activation Sessions
40832
+ * @param {EventsActivationsSessionsApiRemoveEventActivationSessionsRequest} requestParameters Request parameters.
40833
+ * @param {*} [options] Override http request option.
40834
+ * @throws {RequiredError}
40835
+ */
40836
+ public removeEventActivationSessions(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionsRequest, options?: RawAxiosRequestConfig) {
40837
+ return EventsActivationsSessionsApiFp(this.configuration).removeEventActivationSessions(requestParameters.eventId, requestParameters.activationId, options).then((request) => request(this.axios, this.basePath));
40838
+ }
40583
40839
  }
40584
40840
 
40585
40841
 
@@ -40820,7 +41076,7 @@ export const EventsActivationsTranslationsApiFp = function(configuration?: Confi
40820
41076
  * @param {*} [options] Override http request option.
40821
41077
  * @throws {RequiredError}
40822
41078
  */
40823
- async deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
41079
+ async deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
40824
41080
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventActivationTranslation(eventId, activationId, locale, options);
40825
41081
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
40826
41082
  const localVarOperationServerBasePath = operationServerMap['EventsActivationsTranslationsApi.deleteEventActivationTranslation']?.[localVarOperationServerIndex]?.url;
@@ -40891,7 +41147,7 @@ export const EventsActivationsTranslationsApiFactory = function (configuration?:
40891
41147
  * @param {*} [options] Override http request option.
40892
41148
  * @throws {RequiredError}
40893
41149
  */
40894
- deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
41150
+ deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
40895
41151
  return localVarFp.deleteEventActivationTranslation(requestParameters.eventId, requestParameters.activationId, requestParameters.locale, options).then((request) => request(axios, basePath));
40896
41152
  },
40897
41153
  /**
@@ -42730,7 +42986,7 @@ export const EventsAddonsTranslationsApiFp = function(configuration?: Configurat
42730
42986
  * @param {*} [options] Override http request option.
42731
42987
  * @throws {RequiredError}
42732
42988
  */
42733
- async deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
42989
+ async deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
42734
42990
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventAddOnTranslation(eventId, addOnId, locale, options);
42735
42991
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
42736
42992
  const localVarOperationServerBasePath = operationServerMap['EventsAddonsTranslationsApi.deleteEventAddOnTranslation']?.[localVarOperationServerIndex]?.url;
@@ -42801,7 +43057,7 @@ export const EventsAddonsTranslationsApiFactory = function (configuration?: Conf
42801
43057
  * @param {*} [options] Override http request option.
42802
43058
  * @throws {RequiredError}
42803
43059
  */
42804
- deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
43060
+ deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
42805
43061
  return localVarFp.deleteEventAddOnTranslation(requestParameters.eventId, requestParameters.addOnId, requestParameters.locale, options).then((request) => request(axios, basePath));
42806
43062
  },
42807
43063
  /**
@@ -43567,6 +43823,46 @@ export const EventsAttendeesApiAxiosParamCreator = function (configuration?: Con
43567
43823
  options: localVarRequestOptions,
43568
43824
  };
43569
43825
  },
43826
+ /**
43827
+ * Sync Event Attendees endpoint
43828
+ * @summary Sync Event Attendees
43829
+ * @param {string} eventId The event identifier
43830
+ * @param {*} [options] Override http request option.
43831
+ * @throws {RequiredError}
43832
+ */
43833
+ syncEventAttendees: async (eventId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
43834
+ // verify required parameter 'eventId' is not null or undefined
43835
+ assertParamExists('syncEventAttendees', 'eventId', eventId)
43836
+ const localVarPath = `/events/{eventId}/attendees/sync`
43837
+ .replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
43838
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
43839
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
43840
+ let baseOptions;
43841
+ if (configuration) {
43842
+ baseOptions = configuration.baseOptions;
43843
+ }
43844
+
43845
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
43846
+ const localVarHeaderParameter = {} as any;
43847
+ const localVarQueryParameter = {} as any;
43848
+
43849
+ // authentication ApiKeyAuth required
43850
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
43851
+
43852
+ // authentication OrganizationId required
43853
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
43854
+
43855
+ localVarHeaderParameter['Accept'] = 'application/json';
43856
+
43857
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
43858
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
43859
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
43860
+
43861
+ return {
43862
+ url: toPathString(localVarUrlObj),
43863
+ options: localVarRequestOptions,
43864
+ };
43865
+ },
43570
43866
  /**
43571
43867
  * Update Event Attendee endpoint
43572
43868
  * @summary Update Event Attendee
@@ -43792,6 +44088,19 @@ export const EventsAttendeesApiFp = function(configuration?: Configuration) {
43792
44088
  const localVarOperationServerBasePath = operationServerMap['EventsAttendeesApi.resendRegistrationConfirmationEmail']?.[localVarOperationServerIndex]?.url;
43793
44089
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
43794
44090
  },
44091
+ /**
44092
+ * Sync Event Attendees endpoint
44093
+ * @summary Sync Event Attendees
44094
+ * @param {string} eventId The event identifier
44095
+ * @param {*} [options] Override http request option.
44096
+ * @throws {RequiredError}
44097
+ */
44098
+ async syncEventAttendees(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
44099
+ const localVarAxiosArgs = await localVarAxiosParamCreator.syncEventAttendees(eventId, options);
44100
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
44101
+ const localVarOperationServerBasePath = operationServerMap['EventsAttendeesApi.syncEventAttendees']?.[localVarOperationServerIndex]?.url;
44102
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
44103
+ },
43795
44104
  /**
43796
44105
  * Update Event Attendee endpoint
43797
44106
  * @summary Update Event Attendee
@@ -43916,6 +44225,16 @@ export const EventsAttendeesApiFactory = function (configuration?: Configuration
43916
44225
  resendRegistrationConfirmationEmail(requestParameters: EventsAttendeesApiResendRegistrationConfirmationEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response> {
43917
44226
  return localVarFp.resendRegistrationConfirmationEmail(requestParameters.eventId, requestParameters.accountId, options).then((request) => request(axios, basePath));
43918
44227
  },
44228
+ /**
44229
+ * Sync Event Attendees endpoint
44230
+ * @summary Sync Event Attendees
44231
+ * @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
44232
+ * @param {*} [options] Override http request option.
44233
+ * @throws {RequiredError}
44234
+ */
44235
+ syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
44236
+ return localVarFp.syncEventAttendees(requestParameters.eventId, options).then((request) => request(axios, basePath));
44237
+ },
43919
44238
  /**
43920
44239
  * Update Event Attendee endpoint
43921
44240
  * @summary Update Event Attendee
@@ -44211,6 +44530,16 @@ export interface EventsAttendeesApiResendRegistrationConfirmationEmailRequest {
44211
44530
  readonly accountId: string
44212
44531
  }
44213
44532
 
44533
+ /**
44534
+ * Request parameters for syncEventAttendees operation in EventsAttendeesApi.
44535
+ */
44536
+ export interface EventsAttendeesApiSyncEventAttendeesRequest {
44537
+ /**
44538
+ * The event identifier
44539
+ */
44540
+ readonly eventId: string
44541
+ }
44542
+
44214
44543
  /**
44215
44544
  * Request parameters for updateEventAttendee operation in EventsAttendeesApi.
44216
44545
  */
@@ -44342,6 +44671,17 @@ export class EventsAttendeesApi extends BaseAPI {
44342
44671
  return EventsAttendeesApiFp(this.configuration).resendRegistrationConfirmationEmail(requestParameters.eventId, requestParameters.accountId, options).then((request) => request(this.axios, this.basePath));
44343
44672
  }
44344
44673
 
44674
+ /**
44675
+ * Sync Event Attendees endpoint
44676
+ * @summary Sync Event Attendees
44677
+ * @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
44678
+ * @param {*} [options] Override http request option.
44679
+ * @throws {RequiredError}
44680
+ */
44681
+ public syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig) {
44682
+ return EventsAttendeesApiFp(this.configuration).syncEventAttendees(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
44683
+ }
44684
+
44345
44685
  /**
44346
44686
  * Update Event Attendee endpoint
44347
44687
  * @summary Update Event Attendee
@@ -44669,7 +45009,7 @@ export const EventsAttendeesPackagesApiFp = function(configuration?: Configurati
44669
45009
  * @param {*} [options] Override http request option.
44670
45010
  * @throws {RequiredError}
44671
45011
  */
44672
- async deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
45012
+ async deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
44673
45013
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventAttendeePackage(eventId, accountId, packageId, options);
44674
45014
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
44675
45015
  const localVarOperationServerBasePath = operationServerMap['EventsAttendeesPackagesApi.deleteEventAttendeePackage']?.[localVarOperationServerIndex]?.url;
@@ -44751,7 +45091,7 @@ export const EventsAttendeesPackagesApiFactory = function (configuration?: Confi
44751
45091
  * @param {*} [options] Override http request option.
44752
45092
  * @throws {RequiredError}
44753
45093
  */
44754
- deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
45094
+ deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
44755
45095
  return localVarFp.deleteEventAttendeePackage(requestParameters.eventId, requestParameters.accountId, requestParameters.packageId, options).then((request) => request(axios, basePath));
44756
45096
  },
44757
45097
  /**
@@ -50352,7 +50692,7 @@ export const EventsEmailsTranslationsApiFp = function(configuration?: Configurat
50352
50692
  * @param {*} [options] Override http request option.
50353
50693
  * @throws {RequiredError}
50354
50694
  */
50355
- async deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
50695
+ async deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
50356
50696
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventEmailTranslation(eventId, type, locale, options);
50357
50697
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
50358
50698
  const localVarOperationServerBasePath = operationServerMap['EventsEmailsTranslationsApi.deleteEventEmailTranslation']?.[localVarOperationServerIndex]?.url;
@@ -50401,7 +50741,7 @@ export const EventsEmailsTranslationsApiFp = function(configuration?: Configurat
50401
50741
  * @param {*} [options] Override http request option.
50402
50742
  * @throws {RequiredError}
50403
50743
  */
50404
- async updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
50744
+ async updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
50405
50745
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventEmailTranslation(eventId, type, locale, eventEmailTranslationUpdateInputs, options);
50406
50746
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
50407
50747
  const localVarOperationServerBasePath = operationServerMap['EventsEmailsTranslationsApi.updateEventEmailTranslation']?.[localVarOperationServerIndex]?.url;
@@ -50423,7 +50763,7 @@ export const EventsEmailsTranslationsApiFactory = function (configuration?: Conf
50423
50763
  * @param {*} [options] Override http request option.
50424
50764
  * @throws {RequiredError}
50425
50765
  */
50426
- deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
50766
+ deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
50427
50767
  return localVarFp.deleteEventEmailTranslation(requestParameters.eventId, requestParameters.type, requestParameters.locale, options).then((request) => request(axios, basePath));
50428
50768
  },
50429
50769
  /**
@@ -50453,7 +50793,7 @@ export const EventsEmailsTranslationsApiFactory = function (configuration?: Conf
50453
50793
  * @param {*} [options] Override http request option.
50454
50794
  * @throws {RequiredError}
50455
50795
  */
50456
- updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
50796
+ updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
50457
50797
  return localVarFp.updateEventEmailTranslation(requestParameters.eventId, requestParameters.type, requestParameters.locale, requestParameters.eventEmailTranslationUpdateInputs, options).then((request) => request(axios, basePath));
50458
50798
  },
50459
50799
  };
@@ -52297,7 +52637,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52297
52637
  * @param {*} [options] Override http request option.
52298
52638
  * @throws {RequiredError}
52299
52639
  */
52300
- async deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52640
+ async deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52301
52641
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventFaqSectionQuestionTranslation(eventId, sectionId, questionId, locale, options);
52302
52642
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52303
52643
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.deleteEventFaqSectionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52312,7 +52652,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52312
52652
  * @param {*} [options] Override http request option.
52313
52653
  * @throws {RequiredError}
52314
52654
  */
52315
- async deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52655
+ async deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52316
52656
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventFaqSectionTranslation(eventId, sectionId, locale, options);
52317
52657
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52318
52658
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.deleteEventFaqSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52397,7 +52737,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52397
52737
  * @param {*} [options] Override http request option.
52398
52738
  * @throws {RequiredError}
52399
52739
  */
52400
- async updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52740
+ async updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52401
52741
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventFaqSectionQuestionTranslation(eventId, sectionId, questionId, locale, eventFaqSectionQuestionTranslationUpdateInputs, options);
52402
52742
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52403
52743
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.updateEventFaqSectionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52413,7 +52753,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52413
52753
  * @param {*} [options] Override http request option.
52414
52754
  * @throws {RequiredError}
52415
52755
  */
52416
- async updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52756
+ async updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52417
52757
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventFaqSectionTranslation(eventId, sectionId, locale, eventFaqSectionTranslationUpdateInputs, options);
52418
52758
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52419
52759
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.updateEventFaqSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52435,7 +52775,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52435
52775
  * @param {*} [options] Override http request option.
52436
52776
  * @throws {RequiredError}
52437
52777
  */
52438
- deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52778
+ deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52439
52779
  return localVarFp.deleteEventFaqSectionQuestionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
52440
52780
  },
52441
52781
  /**
@@ -52445,7 +52785,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52445
52785
  * @param {*} [options] Override http request option.
52446
52786
  * @throws {RequiredError}
52447
52787
  */
52448
- deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52788
+ deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52449
52789
  return localVarFp.deleteEventFaqSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
52450
52790
  },
52451
52791
  /**
@@ -52495,7 +52835,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52495
52835
  * @param {*} [options] Override http request option.
52496
52836
  * @throws {RequiredError}
52497
52837
  */
52498
- updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52838
+ updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52499
52839
  return localVarFp.updateEventFaqSectionQuestionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.questionId, requestParameters.locale, requestParameters.eventFaqSectionQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
52500
52840
  },
52501
52841
  /**
@@ -52505,7 +52845,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52505
52845
  * @param {*} [options] Override http request option.
52506
52846
  * @throws {RequiredError}
52507
52847
  */
52508
- updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52848
+ updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52509
52849
  return localVarFp.updateEventFaqSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, requestParameters.eventFaqSectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
52510
52850
  },
52511
52851
  };
@@ -55253,7 +55593,7 @@ export const EventsFollowupsTranslationsApiFp = function(configuration?: Configu
55253
55593
  * @param {*} [options] Override http request option.
55254
55594
  * @throws {RequiredError}
55255
55595
  */
55256
- async deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
55596
+ async deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
55257
55597
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventFollowupTranslation(eventId, followupId, locale, options);
55258
55598
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
55259
55599
  const localVarOperationServerBasePath = operationServerMap['EventsFollowupsTranslationsApi.deleteEventFollowupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -55302,7 +55642,7 @@ export const EventsFollowupsTranslationsApiFp = function(configuration?: Configu
55302
55642
  * @param {*} [options] Override http request option.
55303
55643
  * @throws {RequiredError}
55304
55644
  */
55305
- async updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
55645
+ async updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
55306
55646
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventFollowupTranslation(eventId, followupId, locale, eventFollowupTranslationUpdateInputs, options);
55307
55647
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
55308
55648
  const localVarOperationServerBasePath = operationServerMap['EventsFollowupsTranslationsApi.updateEventFollowupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -55324,7 +55664,7 @@ export const EventsFollowupsTranslationsApiFactory = function (configuration?: C
55324
55664
  * @param {*} [options] Override http request option.
55325
55665
  * @throws {RequiredError}
55326
55666
  */
55327
- deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
55667
+ deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
55328
55668
  return localVarFp.deleteEventFollowupTranslation(requestParameters.eventId, requestParameters.followupId, requestParameters.locale, options).then((request) => request(axios, basePath));
55329
55669
  },
55330
55670
  /**
@@ -55354,7 +55694,7 @@ export const EventsFollowupsTranslationsApiFactory = function (configuration?: C
55354
55694
  * @param {*} [options] Override http request option.
55355
55695
  * @throws {RequiredError}
55356
55696
  */
55357
- updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
55697
+ updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
55358
55698
  return localVarFp.updateEventFollowupTranslation(requestParameters.eventId, requestParameters.followupId, requestParameters.locale, requestParameters.eventFollowupTranslationUpdateInputs, options).then((request) => request(axios, basePath));
55359
55699
  },
55360
55700
  };
@@ -58558,7 +58898,7 @@ export const EventsMediaTranslationsApiFp = function(configuration?: Configurati
58558
58898
  * @param {*} [options] Override http request option.
58559
58899
  * @throws {RequiredError}
58560
58900
  */
58561
- async deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
58901
+ async deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
58562
58902
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventMediaItemTranslation(eventId, mediaItemId, locale, options);
58563
58903
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
58564
58904
  const localVarOperationServerBasePath = operationServerMap['EventsMediaTranslationsApi.deleteEventMediaItemTranslation']?.[localVarOperationServerIndex]?.url;
@@ -58629,7 +58969,7 @@ export const EventsMediaTranslationsApiFactory = function (configuration?: Confi
58629
58969
  * @param {*} [options] Override http request option.
58630
58970
  * @throws {RequiredError}
58631
58971
  */
58632
- deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
58972
+ deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
58633
58973
  return localVarFp.deleteEventMediaItemTranslation(requestParameters.eventId, requestParameters.mediaItemId, requestParameters.locale, options).then((request) => request(axios, basePath));
58634
58974
  },
58635
58975
  /**
@@ -61886,7 +62226,7 @@ export const EventsPagesTranslationsApiFp = function(configuration?: Configurati
61886
62226
  * @param {*} [options] Override http request option.
61887
62227
  * @throws {RequiredError}
61888
62228
  */
61889
- async deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
62229
+ async deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
61890
62230
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPageTranslation(eventId, pageId, locale, options);
61891
62231
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
61892
62232
  const localVarOperationServerBasePath = operationServerMap['EventsPagesTranslationsApi.deleteEventPageTranslation']?.[localVarOperationServerIndex]?.url;
@@ -61935,7 +62275,7 @@ export const EventsPagesTranslationsApiFp = function(configuration?: Configurati
61935
62275
  * @param {*} [options] Override http request option.
61936
62276
  * @throws {RequiredError}
61937
62277
  */
61938
- async updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
62278
+ async updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
61939
62279
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPageTranslation(eventId, pageId, locale, eventPageTranslationUpdateInputs, options);
61940
62280
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
61941
62281
  const localVarOperationServerBasePath = operationServerMap['EventsPagesTranslationsApi.updateEventPageTranslation']?.[localVarOperationServerIndex]?.url;
@@ -61957,7 +62297,7 @@ export const EventsPagesTranslationsApiFactory = function (configuration?: Confi
61957
62297
  * @param {*} [options] Override http request option.
61958
62298
  * @throws {RequiredError}
61959
62299
  */
61960
- deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
62300
+ deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
61961
62301
  return localVarFp.deleteEventPageTranslation(requestParameters.eventId, requestParameters.pageId, requestParameters.locale, options).then((request) => request(axios, basePath));
61962
62302
  },
61963
62303
  /**
@@ -61987,7 +62327,7 @@ export const EventsPagesTranslationsApiFactory = function (configuration?: Confi
61987
62327
  * @param {*} [options] Override http request option.
61988
62328
  * @throws {RequiredError}
61989
62329
  */
61990
- updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
62330
+ updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
61991
62331
  return localVarFp.updateEventPageTranslation(requestParameters.eventId, requestParameters.pageId, requestParameters.locale, requestParameters.eventPageTranslationUpdateInputs, options).then((request) => request(axios, basePath));
61992
62332
  },
61993
62333
  };
@@ -68966,7 +69306,7 @@ export const EventsPasstypesPriceschedulesApiFp = function(configuration?: Confi
68966
69306
  * @param {*} [options] Override http request option.
68967
69307
  * @throws {RequiredError}
68968
69308
  */
68969
- async deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69309
+ async deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
68970
69310
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPassTypePriceSchedule(eventId, passTypeId, scheduleId, options);
68971
69311
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
68972
69312
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesPriceschedulesApi.deleteEventPassTypePriceSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69015,7 +69355,7 @@ export const EventsPasstypesPriceschedulesApiFp = function(configuration?: Confi
69015
69355
  * @param {*} [options] Override http request option.
69016
69356
  * @throws {RequiredError}
69017
69357
  */
69018
- async updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69358
+ async updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
69019
69359
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPassTypePriceSchedule(eventId, passTypeId, scheduleId, passTypePriceScheduleUpdateInputs, options);
69020
69360
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69021
69361
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesPriceschedulesApi.updateEventPassTypePriceSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69047,7 +69387,7 @@ export const EventsPasstypesPriceschedulesApiFactory = function (configuration?:
69047
69387
  * @param {*} [options] Override http request option.
69048
69388
  * @throws {RequiredError}
69049
69389
  */
69050
- deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
69390
+ deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69051
69391
  return localVarFp.deleteEventPassTypePriceSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, options).then((request) => request(axios, basePath));
69052
69392
  },
69053
69393
  /**
@@ -69077,7 +69417,7 @@ export const EventsPasstypesPriceschedulesApiFactory = function (configuration?:
69077
69417
  * @param {*} [options] Override http request option.
69078
69418
  * @throws {RequiredError}
69079
69419
  */
69080
- updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
69420
+ updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69081
69421
  return localVarFp.updateEventPassTypePriceSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, requestParameters.passTypePriceScheduleUpdateInputs, options).then((request) => request(axios, basePath));
69082
69422
  },
69083
69423
  };
@@ -69559,7 +69899,7 @@ export const EventsPasstypesRefundschedulesApiFp = function(configuration?: Conf
69559
69899
  * @param {*} [options] Override http request option.
69560
69900
  * @throws {RequiredError}
69561
69901
  */
69562
- async deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69902
+ async deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
69563
69903
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPassTypeRefundSchedule(eventId, passTypeId, scheduleId, options);
69564
69904
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69565
69905
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesRefundschedulesApi.deleteEventPassTypeRefundSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69608,7 +69948,7 @@ export const EventsPasstypesRefundschedulesApiFp = function(configuration?: Conf
69608
69948
  * @param {*} [options] Override http request option.
69609
69949
  * @throws {RequiredError}
69610
69950
  */
69611
- async updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69951
+ async updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
69612
69952
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPassTypeRefundSchedule(eventId, passTypeId, scheduleId, passTypeRefundScheduleUpdateInputs, options);
69613
69953
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69614
69954
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesRefundschedulesApi.updateEventPassTypeRefundSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69640,7 +69980,7 @@ export const EventsPasstypesRefundschedulesApiFactory = function (configuration?
69640
69980
  * @param {*} [options] Override http request option.
69641
69981
  * @throws {RequiredError}
69642
69982
  */
69643
- deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
69983
+ deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69644
69984
  return localVarFp.deleteEventPassTypeRefundSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, options).then((request) => request(axios, basePath));
69645
69985
  },
69646
69986
  /**
@@ -69670,7 +70010,7 @@ export const EventsPasstypesRefundschedulesApiFactory = function (configuration?
69670
70010
  * @param {*} [options] Override http request option.
69671
70011
  * @throws {RequiredError}
69672
70012
  */
69673
- updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
70013
+ updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69674
70014
  return localVarFp.updateEventPassTypeRefundSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, requestParameters.passTypeRefundScheduleUpdateInputs, options).then((request) => request(axios, basePath));
69675
70015
  },
69676
70016
  };
@@ -70088,7 +70428,7 @@ export const EventsPasstypesTranslationsApiFp = function(configuration?: Configu
70088
70428
  * @param {*} [options] Override http request option.
70089
70429
  * @throws {RequiredError}
70090
70430
  */
70091
- async deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
70431
+ async deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
70092
70432
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPassTypeTranslation(eventId, passTypeId, locale, options);
70093
70433
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
70094
70434
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesTranslationsApi.deleteEventPassTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -70137,7 +70477,7 @@ export const EventsPasstypesTranslationsApiFp = function(configuration?: Configu
70137
70477
  * @param {*} [options] Override http request option.
70138
70478
  * @throws {RequiredError}
70139
70479
  */
70140
- async updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
70480
+ async updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
70141
70481
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPassTypeTranslation(eventId, passTypeId, locale, eventTranslationUpdateInputs, options);
70142
70482
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
70143
70483
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesTranslationsApi.updateEventPassTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -70159,7 +70499,7 @@ export const EventsPasstypesTranslationsApiFactory = function (configuration?: C
70159
70499
  * @param {*} [options] Override http request option.
70160
70500
  * @throws {RequiredError}
70161
70501
  */
70162
- deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
70502
+ deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
70163
70503
  return localVarFp.deleteEventPassTypeTranslation(requestParameters.eventId, requestParameters.passTypeId, requestParameters.locale, options).then((request) => request(axios, basePath));
70164
70504
  },
70165
70505
  /**
@@ -70189,7 +70529,7 @@ export const EventsPasstypesTranslationsApiFactory = function (configuration?: C
70189
70529
  * @param {*} [options] Override http request option.
70190
70530
  * @throws {RequiredError}
70191
70531
  */
70192
- updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
70532
+ updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
70193
70533
  return localVarFp.updateEventPassTypeTranslation(requestParameters.eventId, requestParameters.passTypeId, requestParameters.locale, requestParameters.eventTranslationUpdateInputs, options).then((request) => request(axios, basePath));
70194
70534
  },
70195
70535
  };
@@ -71839,7 +72179,7 @@ export const EventsQuestionsApiFp = function(configuration?: Configuration) {
71839
72179
  * @param {*} [options] Override http request option.
71840
72180
  * @throws {RequiredError}
71841
72181
  */
71842
- async updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
72182
+ async updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
71843
72183
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventQuestionChoice(eventId, questionId, choiceId, choice, options);
71844
72184
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
71845
72185
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsApi.updateEventQuestionChoice']?.[localVarOperationServerIndex]?.url;
@@ -72078,7 +72418,7 @@ export const EventsQuestionsApiFactory = function (configuration?: Configuration
72078
72418
  * @param {*} [options] Override http request option.
72079
72419
  * @throws {RequiredError}
72080
72420
  */
72081
- updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
72421
+ updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
72082
72422
  return localVarFp.updateEventQuestionChoice(requestParameters.eventId, requestParameters.questionId, requestParameters.choiceId, requestParameters.choice, options).then((request) => request(axios, basePath));
72083
72423
  },
72084
72424
  /**
@@ -73315,7 +73655,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73315
73655
  * @param {*} [options] Override http request option.
73316
73656
  * @throws {RequiredError}
73317
73657
  */
73318
- async deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73658
+ async deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73319
73659
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventQuestionChoiceTranslation(eventId, questionId, choiceId, locale, options);
73320
73660
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73321
73661
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.deleteEventQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73330,7 +73670,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73330
73670
  * @param {*} [options] Override http request option.
73331
73671
  * @throws {RequiredError}
73332
73672
  */
73333
- async deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73673
+ async deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73334
73674
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventQuestionTranslation(eventId, questionId, locale, options);
73335
73675
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73336
73676
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.deleteEventQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73415,7 +73755,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73415
73755
  * @param {*} [options] Override http request option.
73416
73756
  * @throws {RequiredError}
73417
73757
  */
73418
- async updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73758
+ async updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73419
73759
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventQuestionChoiceTranslation(eventId, questionId, choiceId, locale, eventQuestionChoiceTranslationUpdateInputs, options);
73420
73760
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73421
73761
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.updateEventQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73431,7 +73771,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73431
73771
  * @param {*} [options] Override http request option.
73432
73772
  * @throws {RequiredError}
73433
73773
  */
73434
- async updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73774
+ async updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73435
73775
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventQuestionTranslation(eventId, questionId, locale, eventQuestionTranslationUpdateInputs, options);
73436
73776
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73437
73777
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.updateEventQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73453,7 +73793,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73453
73793
  * @param {*} [options] Override http request option.
73454
73794
  * @throws {RequiredError}
73455
73795
  */
73456
- deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73796
+ deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73457
73797
  return localVarFp.deleteEventQuestionChoiceTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
73458
73798
  },
73459
73799
  /**
@@ -73463,7 +73803,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73463
73803
  * @param {*} [options] Override http request option.
73464
73804
  * @throws {RequiredError}
73465
73805
  */
73466
- deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73806
+ deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73467
73807
  return localVarFp.deleteEventQuestionTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
73468
73808
  },
73469
73809
  /**
@@ -73513,7 +73853,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73513
73853
  * @param {*} [options] Override http request option.
73514
73854
  * @throws {RequiredError}
73515
73855
  */
73516
- updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73856
+ updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73517
73857
  return localVarFp.updateEventQuestionChoiceTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, requestParameters.eventQuestionChoiceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
73518
73858
  },
73519
73859
  /**
@@ -73523,7 +73863,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73523
73863
  * @param {*} [options] Override http request option.
73524
73864
  * @throws {RequiredError}
73525
73865
  */
73526
- updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73866
+ updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73527
73867
  return localVarFp.updateEventQuestionTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.locale, requestParameters.eventQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
73528
73868
  },
73529
73869
  };
@@ -76509,7 +76849,7 @@ export const EventsRoomtypesTranslationsApiFp = function(configuration?: Configu
76509
76849
  * @param {*} [options] Override http request option.
76510
76850
  * @throws {RequiredError}
76511
76851
  */
76512
- async deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
76852
+ async deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
76513
76853
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventRoomTypeTranslation(eventId, roomTypeId, locale, options);
76514
76854
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
76515
76855
  const localVarOperationServerBasePath = operationServerMap['EventsRoomtypesTranslationsApi.deleteEventRoomTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -76558,7 +76898,7 @@ export const EventsRoomtypesTranslationsApiFp = function(configuration?: Configu
76558
76898
  * @param {*} [options] Override http request option.
76559
76899
  * @throws {RequiredError}
76560
76900
  */
76561
- async updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
76901
+ async updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
76562
76902
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventRoomTypeTranslation(eventId, roomTypeId, locale, eventRoomTypeTranslationUpdateInputs, options);
76563
76903
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
76564
76904
  const localVarOperationServerBasePath = operationServerMap['EventsRoomtypesTranslationsApi.updateEventRoomTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -76580,7 +76920,7 @@ export const EventsRoomtypesTranslationsApiFactory = function (configuration?: C
76580
76920
  * @param {*} [options] Override http request option.
76581
76921
  * @throws {RequiredError}
76582
76922
  */
76583
- deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
76923
+ deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
76584
76924
  return localVarFp.deleteEventRoomTypeTranslation(requestParameters.eventId, requestParameters.roomTypeId, requestParameters.locale, options).then((request) => request(axios, basePath));
76585
76925
  },
76586
76926
  /**
@@ -76610,7 +76950,7 @@ export const EventsRoomtypesTranslationsApiFactory = function (configuration?: C
76610
76950
  * @param {*} [options] Override http request option.
76611
76951
  * @throws {RequiredError}
76612
76952
  */
76613
- updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
76953
+ updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
76614
76954
  return localVarFp.updateEventRoomTypeTranslation(requestParameters.eventId, requestParameters.roomTypeId, requestParameters.locale, requestParameters.eventRoomTypeTranslationUpdateInputs, options).then((request) => request(axios, basePath));
76615
76955
  },
76616
76956
  };
@@ -79197,7 +79537,7 @@ export const EventsSectionsTranslationsApiFp = function(configuration?: Configur
79197
79537
  * @param {*} [options] Override http request option.
79198
79538
  * @throws {RequiredError}
79199
79539
  */
79200
- async deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
79540
+ async deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
79201
79541
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSectionTranslation(eventId, sectionId, locale, options);
79202
79542
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
79203
79543
  const localVarOperationServerBasePath = operationServerMap['EventsSectionsTranslationsApi.deleteEventSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -79246,7 +79586,7 @@ export const EventsSectionsTranslationsApiFp = function(configuration?: Configur
79246
79586
  * @param {*} [options] Override http request option.
79247
79587
  * @throws {RequiredError}
79248
79588
  */
79249
- async updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
79589
+ async updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
79250
79590
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSectionTranslation(eventId, sectionId, locale, eventSectionTranslationUpdateInputs, options);
79251
79591
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
79252
79592
  const localVarOperationServerBasePath = operationServerMap['EventsSectionsTranslationsApi.updateEventSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -79268,7 +79608,7 @@ export const EventsSectionsTranslationsApiFactory = function (configuration?: Co
79268
79608
  * @param {*} [options] Override http request option.
79269
79609
  * @throws {RequiredError}
79270
79610
  */
79271
- deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
79611
+ deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
79272
79612
  return localVarFp.deleteEventSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
79273
79613
  },
79274
79614
  /**
@@ -79298,7 +79638,7 @@ export const EventsSectionsTranslationsApiFactory = function (configuration?: Co
79298
79638
  * @param {*} [options] Override http request option.
79299
79639
  * @throws {RequiredError}
79300
79640
  */
79301
- updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
79641
+ updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
79302
79642
  return localVarFp.updateEventSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, requestParameters.eventSectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
79303
79643
  },
79304
79644
  };
@@ -81478,7 +81818,7 @@ export const EventsSessionsApiFp = function(configuration?: Configuration) {
81478
81818
  * @param {*} [options] Override http request option.
81479
81819
  * @throws {RequiredError}
81480
81820
  */
81481
- async cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
81821
+ async cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
81482
81822
  const localVarAxiosArgs = await localVarAxiosParamCreator.cloneEventSession(eventId, sessionId, eventSessionCloneOptions, options);
81483
81823
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
81484
81824
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsApi.cloneEventSession']?.[localVarOperationServerIndex]?.url;
@@ -81998,7 +82338,7 @@ export const EventsSessionsApiFactory = function (configuration?: Configuration,
81998
82338
  * @param {*} [options] Override http request option.
81999
82339
  * @throws {RequiredError}
82000
82340
  */
82001
- cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
82341
+ cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
82002
82342
  return localVarFp.cloneEventSession(requestParameters.eventId, requestParameters.sessionId, requestParameters.eventSessionCloneOptions, options).then((request) => request(axios, basePath));
82003
82343
  },
82004
82344
  /**
@@ -85080,7 +85420,7 @@ export const EventsSessionsLocationsTranslationsApiFp = function(configuration?:
85080
85420
  * @param {*} [options] Override http request option.
85081
85421
  * @throws {RequiredError}
85082
85422
  */
85083
- async deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
85423
+ async deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
85084
85424
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionLocationTranslation(eventId, locationId, locale, options);
85085
85425
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
85086
85426
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsLocationsTranslationsApi.deleteEventSessionLocationTranslation']?.[localVarOperationServerIndex]?.url;
@@ -85129,7 +85469,7 @@ export const EventsSessionsLocationsTranslationsApiFp = function(configuration?:
85129
85469
  * @param {*} [options] Override http request option.
85130
85470
  * @throws {RequiredError}
85131
85471
  */
85132
- async updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
85472
+ async updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
85133
85473
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionLocationTranslation(eventId, locationId, locale, eventSessionLocationTranslationUpdateInputs, options);
85134
85474
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
85135
85475
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsLocationsTranslationsApi.updateEventSessionLocationTranslation']?.[localVarOperationServerIndex]?.url;
@@ -85151,7 +85491,7 @@ export const EventsSessionsLocationsTranslationsApiFactory = function (configura
85151
85491
  * @param {*} [options] Override http request option.
85152
85492
  * @throws {RequiredError}
85153
85493
  */
85154
- deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
85494
+ deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
85155
85495
  return localVarFp.deleteEventSessionLocationTranslation(requestParameters.eventId, requestParameters.locationId, requestParameters.locale, options).then((request) => request(axios, basePath));
85156
85496
  },
85157
85497
  /**
@@ -85181,7 +85521,7 @@ export const EventsSessionsLocationsTranslationsApiFactory = function (configura
85181
85521
  * @param {*} [options] Override http request option.
85182
85522
  * @throws {RequiredError}
85183
85523
  */
85184
- updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
85524
+ updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
85185
85525
  return localVarFp.updateEventSessionLocationTranslation(requestParameters.eventId, requestParameters.locationId, requestParameters.locale, requestParameters.eventSessionLocationTranslationUpdateInputs, options).then((request) => request(axios, basePath));
85186
85526
  },
85187
85527
  };
@@ -89099,7 +89439,7 @@ export const EventsSessionsQuestionsApiFp = function(configuration?: Configurati
89099
89439
  * @param {*} [options] Override http request option.
89100
89440
  * @throws {RequiredError}
89101
89441
  */
89102
- async updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
89442
+ async updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
89103
89443
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionQuestionChoice(eventId, sessionId, questionId, choiceId, choice, options);
89104
89444
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
89105
89445
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsApi.updateEventSessionQuestionChoice']?.[localVarOperationServerIndex]?.url;
@@ -89309,7 +89649,7 @@ export const EventsSessionsQuestionsApiFactory = function (configuration?: Confi
89309
89649
  * @param {*} [options] Override http request option.
89310
89650
  * @throws {RequiredError}
89311
89651
  */
89312
- updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
89652
+ updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
89313
89653
  return localVarFp.updateEventSessionQuestionChoice(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.choiceId, requestParameters.choice, options).then((request) => request(axios, basePath));
89314
89654
  },
89315
89655
  /**
@@ -90581,7 +90921,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90581
90921
  * @param {*} [options] Override http request option.
90582
90922
  * @throws {RequiredError}
90583
90923
  */
90584
- async deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
90924
+ async deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90585
90925
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionQuestionChoiceTranslation(eventId, sessionId, questionId, choiceId, locale, options);
90586
90926
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90587
90927
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.deleteEventSessionQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90597,7 +90937,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90597
90937
  * @param {*} [options] Override http request option.
90598
90938
  * @throws {RequiredError}
90599
90939
  */
90600
- async deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
90940
+ async deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90601
90941
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionQuestionTranslation(eventId, sessionId, questionId, locale, options);
90602
90942
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90603
90943
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.deleteEventSessionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90687,7 +91027,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90687
91027
  * @param {*} [options] Override http request option.
90688
91028
  * @throws {RequiredError}
90689
91029
  */
90690
- async updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
91030
+ async updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90691
91031
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionQuestionChoiceTranslation(eventId, sessionId, questionId, choiceId, locale, eventSessionQuestionChoiceTranslationUpdateInputs, options);
90692
91032
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90693
91033
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.updateEventSessionQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90704,7 +91044,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90704
91044
  * @param {*} [options] Override http request option.
90705
91045
  * @throws {RequiredError}
90706
91046
  */
90707
- async updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
91047
+ async updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90708
91048
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionQuestionTranslation(eventId, sessionId, questionId, locale, eventSessionQuestionTranslationUpdateInputs, options);
90709
91049
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90710
91050
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.updateEventSessionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90726,7 +91066,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90726
91066
  * @param {*} [options] Override http request option.
90727
91067
  * @throws {RequiredError}
90728
91068
  */
90729
- deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
91069
+ deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90730
91070
  return localVarFp.deleteEventSessionQuestionChoiceTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
90731
91071
  },
90732
91072
  /**
@@ -90736,7 +91076,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90736
91076
  * @param {*} [options] Override http request option.
90737
91077
  * @throws {RequiredError}
90738
91078
  */
90739
- deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
91079
+ deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90740
91080
  return localVarFp.deleteEventSessionQuestionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
90741
91081
  },
90742
91082
  /**
@@ -90786,7 +91126,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90786
91126
  * @param {*} [options] Override http request option.
90787
91127
  * @throws {RequiredError}
90788
91128
  */
90789
- updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
91129
+ updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90790
91130
  return localVarFp.updateEventSessionQuestionChoiceTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, requestParameters.eventSessionQuestionChoiceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
90791
91131
  },
90792
91132
  /**
@@ -90796,7 +91136,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90796
91136
  * @param {*} [options] Override http request option.
90797
91137
  * @throws {RequiredError}
90798
91138
  */
90799
- updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
91139
+ updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90800
91140
  return localVarFp.updateEventSessionQuestionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.locale, requestParameters.eventSessionQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
90801
91141
  },
90802
91142
  };
@@ -92624,7 +92964,7 @@ export const EventsSessionsSectionsTranslationsApiFp = function(configuration?:
92624
92964
  * @param {*} [options] Override http request option.
92625
92965
  * @throws {RequiredError}
92626
92966
  */
92627
- async deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
92967
+ async deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
92628
92968
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionSectionTranslation(eventId, sessionId, sectionId, locale, options);
92629
92969
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
92630
92970
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsSectionsTranslationsApi.deleteEventSessionSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -92676,7 +93016,7 @@ export const EventsSessionsSectionsTranslationsApiFp = function(configuration?:
92676
93016
  * @param {*} [options] Override http request option.
92677
93017
  * @throws {RequiredError}
92678
93018
  */
92679
- async updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
93019
+ async updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
92680
93020
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionSectionTranslation(eventId, sessionId, sectionId, locale, eventSessionSectionTranslationUpdateInputs, options);
92681
93021
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
92682
93022
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsSectionsTranslationsApi.updateEventSessionSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -92698,7 +93038,7 @@ export const EventsSessionsSectionsTranslationsApiFactory = function (configurat
92698
93038
  * @param {*} [options] Override http request option.
92699
93039
  * @throws {RequiredError}
92700
93040
  */
92701
- deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
93041
+ deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
92702
93042
  return localVarFp.deleteEventSessionSectionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
92703
93043
  },
92704
93044
  /**
@@ -92728,7 +93068,7 @@ export const EventsSessionsSectionsTranslationsApiFactory = function (configurat
92728
93068
  * @param {*} [options] Override http request option.
92729
93069
  * @throws {RequiredError}
92730
93070
  */
92731
- updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
93071
+ updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
92732
93072
  return localVarFp.updateEventSessionSectionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.sectionId, requestParameters.locale, requestParameters.eventSessionSectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
92733
93073
  },
92734
93074
  };
@@ -93390,7 +93730,7 @@ export const EventsSessionsTimesApiFp = function(configuration?: Configuration)
93390
93730
  * @param {*} [options] Override http request option.
93391
93731
  * @throws {RequiredError}
93392
93732
  */
93393
- async deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
93733
+ async deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
93394
93734
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionTime(eventId, sessionId, timeId, options);
93395
93735
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
93396
93736
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTimesApi.deleteEventSessionTime']?.[localVarOperationServerIndex]?.url;
@@ -93516,7 +93856,7 @@ export const EventsSessionsTimesApiFactory = function (configuration?: Configura
93516
93856
  * @param {*} [options] Override http request option.
93517
93857
  * @throws {RequiredError}
93518
93858
  */
93519
- deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
93859
+ deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
93520
93860
  return localVarFp.deleteEventSessionTime(requestParameters.eventId, requestParameters.sessionId, requestParameters.timeId, options).then((request) => request(axios, basePath));
93521
93861
  },
93522
93862
  /**
@@ -94124,7 +94464,7 @@ export const EventsSessionsTimesTranslationsApiFp = function(configuration?: Con
94124
94464
  * @param {*} [options] Override http request option.
94125
94465
  * @throws {RequiredError}
94126
94466
  */
94127
- async deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
94467
+ async deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94128
94468
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionTimeTranslation(eventId, sessionId, timeId, locale, options);
94129
94469
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94130
94470
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTimesTranslationsApi.deleteEventSessionTimeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94176,7 +94516,7 @@ export const EventsSessionsTimesTranslationsApiFp = function(configuration?: Con
94176
94516
  * @param {*} [options] Override http request option.
94177
94517
  * @throws {RequiredError}
94178
94518
  */
94179
- async updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
94519
+ async updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94180
94520
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionTimeTranslation(eventId, sessionId, timeId, locale, eventSessionTimeTranslationUpdateInputs, options);
94181
94521
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94182
94522
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTimesTranslationsApi.updateEventSessionTimeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94198,7 +94538,7 @@ export const EventsSessionsTimesTranslationsApiFactory = function (configuration
94198
94538
  * @param {*} [options] Override http request option.
94199
94539
  * @throws {RequiredError}
94200
94540
  */
94201
- deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
94541
+ deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94202
94542
  return localVarFp.deleteEventSessionTimeTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.timeId, requestParameters.locale, options).then((request) => request(axios, basePath));
94203
94543
  },
94204
94544
  /**
@@ -94228,7 +94568,7 @@ export const EventsSessionsTimesTranslationsApiFactory = function (configuration
94228
94568
  * @param {*} [options] Override http request option.
94229
94569
  * @throws {RequiredError}
94230
94570
  */
94231
- updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
94571
+ updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94232
94572
  return localVarFp.updateEventSessionTimeTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.timeId, requestParameters.locale, requestParameters.eventSessionTimeTranslationUpdateInputs, options).then((request) => request(axios, basePath));
94233
94573
  },
94234
94574
  };
@@ -94638,7 +94978,7 @@ export const EventsSessionsTranslationsApiFp = function(configuration?: Configur
94638
94978
  * @param {*} [options] Override http request option.
94639
94979
  * @throws {RequiredError}
94640
94980
  */
94641
- async deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
94981
+ async deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94642
94982
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionTranslation(eventId, sessionId, locale, options);
94643
94983
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94644
94984
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTranslationsApi.deleteEventSessionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94687,7 +95027,7 @@ export const EventsSessionsTranslationsApiFp = function(configuration?: Configur
94687
95027
  * @param {*} [options] Override http request option.
94688
95028
  * @throws {RequiredError}
94689
95029
  */
94690
- async updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
95030
+ async updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94691
95031
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionTranslation(eventId, sessionId, locale, eventSessionTranslationUpdateInputs, options);
94692
95032
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94693
95033
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTranslationsApi.updateEventSessionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94709,7 +95049,7 @@ export const EventsSessionsTranslationsApiFactory = function (configuration?: Co
94709
95049
  * @param {*} [options] Override http request option.
94710
95050
  * @throws {RequiredError}
94711
95051
  */
94712
- deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
95052
+ deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94713
95053
  return localVarFp.deleteEventSessionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.locale, options).then((request) => request(axios, basePath));
94714
95054
  },
94715
95055
  /**
@@ -94739,7 +95079,7 @@ export const EventsSessionsTranslationsApiFactory = function (configuration?: Co
94739
95079
  * @param {*} [options] Override http request option.
94740
95080
  * @throws {RequiredError}
94741
95081
  */
94742
- updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
95082
+ updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94743
95083
  return localVarFp.updateEventSessionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.locale, requestParameters.eventSessionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
94744
95084
  },
94745
95085
  };
@@ -96025,7 +96365,7 @@ export const EventsSpeakersTranslationsApiFp = function(configuration?: Configur
96025
96365
  * @param {*} [options] Override http request option.
96026
96366
  * @throws {RequiredError}
96027
96367
  */
96028
- async deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
96368
+ async deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
96029
96369
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSpeakerTranslation(eventId, speakerId, locale, options);
96030
96370
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
96031
96371
  const localVarOperationServerBasePath = operationServerMap['EventsSpeakersTranslationsApi.deleteEventSpeakerTranslation']?.[localVarOperationServerIndex]?.url;
@@ -96074,7 +96414,7 @@ export const EventsSpeakersTranslationsApiFp = function(configuration?: Configur
96074
96414
  * @param {*} [options] Override http request option.
96075
96415
  * @throws {RequiredError}
96076
96416
  */
96077
- async updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
96417
+ async updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
96078
96418
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSpeakerTranslation(eventId, speakerId, locale, eventSpeakerTranslationUpdateInputs, options);
96079
96419
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
96080
96420
  const localVarOperationServerBasePath = operationServerMap['EventsSpeakersTranslationsApi.updateEventSpeakerTranslation']?.[localVarOperationServerIndex]?.url;
@@ -96096,7 +96436,7 @@ export const EventsSpeakersTranslationsApiFactory = function (configuration?: Co
96096
96436
  * @param {*} [options] Override http request option.
96097
96437
  * @throws {RequiredError}
96098
96438
  */
96099
- deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
96439
+ deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
96100
96440
  return localVarFp.deleteEventSpeakerTranslation(requestParameters.eventId, requestParameters.speakerId, requestParameters.locale, options).then((request) => request(axios, basePath));
96101
96441
  },
96102
96442
  /**
@@ -96126,7 +96466,7 @@ export const EventsSpeakersTranslationsApiFactory = function (configuration?: Co
96126
96466
  * @param {*} [options] Override http request option.
96127
96467
  * @throws {RequiredError}
96128
96468
  */
96129
- updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
96469
+ updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
96130
96470
  return localVarFp.updateEventSpeakerTranslation(requestParameters.eventId, requestParameters.speakerId, requestParameters.locale, requestParameters.eventSpeakerTranslationUpdateInputs, options).then((request) => request(axios, basePath));
96131
96471
  },
96132
96472
  };
@@ -100769,7 +101109,7 @@ export const EventsTracksTranslationsApiFp = function(configuration?: Configurat
100769
101109
  * @param {*} [options] Override http request option.
100770
101110
  * @throws {RequiredError}
100771
101111
  */
100772
- async deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101112
+ async deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
100773
101113
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventTrackTranslation(eventId, trackId, locale, options);
100774
101114
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
100775
101115
  const localVarOperationServerBasePath = operationServerMap['EventsTracksTranslationsApi.deleteEventTrackTranslation']?.[localVarOperationServerIndex]?.url;
@@ -100818,7 +101158,7 @@ export const EventsTracksTranslationsApiFp = function(configuration?: Configurat
100818
101158
  * @param {*} [options] Override http request option.
100819
101159
  * @throws {RequiredError}
100820
101160
  */
100821
- async updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101161
+ async updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
100822
101162
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventTrackTranslation(eventId, trackId, locale, eventTrackTranslationUpdateInputs, options);
100823
101163
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
100824
101164
  const localVarOperationServerBasePath = operationServerMap['EventsTracksTranslationsApi.updateEventTrackTranslation']?.[localVarOperationServerIndex]?.url;
@@ -100840,7 +101180,7 @@ export const EventsTracksTranslationsApiFactory = function (configuration?: Conf
100840
101180
  * @param {*} [options] Override http request option.
100841
101181
  * @throws {RequiredError}
100842
101182
  */
100843
- deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101183
+ deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
100844
101184
  return localVarFp.deleteEventTrackTranslation(requestParameters.eventId, requestParameters.trackId, requestParameters.locale, options).then((request) => request(axios, basePath));
100845
101185
  },
100846
101186
  /**
@@ -100870,7 +101210,7 @@ export const EventsTracksTranslationsApiFactory = function (configuration?: Conf
100870
101210
  * @param {*} [options] Override http request option.
100871
101211
  * @throws {RequiredError}
100872
101212
  */
100873
- updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101213
+ updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
100874
101214
  return localVarFp.updateEventTrackTranslation(requestParameters.eventId, requestParameters.trackId, requestParameters.locale, requestParameters.eventTrackTranslationUpdateInputs, options).then((request) => request(axios, basePath));
100875
101215
  },
100876
101216
  };
@@ -101243,7 +101583,7 @@ export const EventsTranslationsApiFp = function(configuration?: Configuration) {
101243
101583
  * @param {*} [options] Override http request option.
101244
101584
  * @throws {RequiredError}
101245
101585
  */
101246
- async deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101586
+ async deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
101247
101587
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventTranslation(eventId, locale, options);
101248
101588
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
101249
101589
  const localVarOperationServerBasePath = operationServerMap['EventsTranslationsApi.deleteEventTranslation']?.[localVarOperationServerIndex]?.url;
@@ -101289,7 +101629,7 @@ export const EventsTranslationsApiFp = function(configuration?: Configuration) {
101289
101629
  * @param {*} [options] Override http request option.
101290
101630
  * @throws {RequiredError}
101291
101631
  */
101292
- async updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101632
+ async updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
101293
101633
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventTranslation(eventId, locale, eventTranslationUpdateInputs, options);
101294
101634
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
101295
101635
  const localVarOperationServerBasePath = operationServerMap['EventsTranslationsApi.updateEventTranslation']?.[localVarOperationServerIndex]?.url;
@@ -101311,7 +101651,7 @@ export const EventsTranslationsApiFactory = function (configuration?: Configurat
101311
101651
  * @param {*} [options] Override http request option.
101312
101652
  * @throws {RequiredError}
101313
101653
  */
101314
- deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101654
+ deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
101315
101655
  return localVarFp.deleteEventTranslation(requestParameters.eventId, requestParameters.locale, options).then((request) => request(axios, basePath));
101316
101656
  },
101317
101657
  /**
@@ -101341,7 +101681,7 @@ export const EventsTranslationsApiFactory = function (configuration?: Configurat
101341
101681
  * @param {*} [options] Override http request option.
101342
101682
  * @throws {RequiredError}
101343
101683
  */
101344
- updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101684
+ updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
101345
101685
  return localVarFp.updateEventTranslation(requestParameters.eventId, requestParameters.locale, requestParameters.eventTranslationUpdateInputs, options).then((request) => request(axios, basePath));
101346
101686
  },
101347
101687
  };
@@ -105752,7 +106092,7 @@ export const GroupsTranslationsApiFp = function(configuration?: Configuration) {
105752
106092
  * @param {*} [options] Override http request option.
105753
106093
  * @throws {RequiredError}
105754
106094
  */
105755
- async deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
106095
+ async deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
105756
106096
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteGroupTranslation(groupId, locale, options);
105757
106097
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
105758
106098
  const localVarOperationServerBasePath = operationServerMap['GroupsTranslationsApi.deleteGroupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -105798,7 +106138,7 @@ export const GroupsTranslationsApiFp = function(configuration?: Configuration) {
105798
106138
  * @param {*} [options] Override http request option.
105799
106139
  * @throws {RequiredError}
105800
106140
  */
105801
- async updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
106141
+ async updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
105802
106142
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateGroupTranslation(groupId, locale, groupTranslationUpdateInputs, options);
105803
106143
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
105804
106144
  const localVarOperationServerBasePath = operationServerMap['GroupsTranslationsApi.updateGroupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -105820,7 +106160,7 @@ export const GroupsTranslationsApiFactory = function (configuration?: Configurat
105820
106160
  * @param {*} [options] Override http request option.
105821
106161
  * @throws {RequiredError}
105822
106162
  */
105823
- deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
106163
+ deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
105824
106164
  return localVarFp.deleteGroupTranslation(requestParameters.groupId, requestParameters.locale, options).then((request) => request(axios, basePath));
105825
106165
  },
105826
106166
  /**
@@ -105850,7 +106190,7 @@ export const GroupsTranslationsApiFactory = function (configuration?: Configurat
105850
106190
  * @param {*} [options] Override http request option.
105851
106191
  * @throws {RequiredError}
105852
106192
  */
105853
- updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
106193
+ updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
105854
106194
  return localVarFp.updateGroupTranslation(requestParameters.groupId, requestParameters.locale, requestParameters.groupTranslationUpdateInputs, options).then((request) => request(axios, basePath));
105855
106195
  },
105856
106196
  };
@@ -112468,7 +112808,7 @@ export const MeetingsParticipantsApiFp = function(configuration?: Configuration)
112468
112808
  * @param {*} [options] Override http request option.
112469
112809
  * @throws {RequiredError}
112470
112810
  */
112471
- async createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
112811
+ async createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
112472
112812
  const localVarAxiosArgs = await localVarAxiosParamCreator.createMeetingParticipant(meetingId, meetingParticipantCreateInputs, options);
112473
112813
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
112474
112814
  const localVarOperationServerBasePath = operationServerMap['MeetingsParticipantsApi.createMeetingParticipant']?.[localVarOperationServerIndex]?.url;
@@ -112527,7 +112867,7 @@ export const MeetingsParticipantsApiFp = function(configuration?: Configuration)
112527
112867
  * @param {*} [options] Override http request option.
112528
112868
  * @throws {RequiredError}
112529
112869
  */
112530
- async regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
112870
+ async regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
112531
112871
  const localVarAxiosArgs = await localVarAxiosParamCreator.regenerateMeetingParticipantToken(meetingId, participantId, options);
112532
112872
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
112533
112873
  const localVarOperationServerBasePath = operationServerMap['MeetingsParticipantsApi.regenerateMeetingParticipantToken']?.[localVarOperationServerIndex]?.url;
@@ -112564,7 +112904,7 @@ export const MeetingsParticipantsApiFactory = function (configuration?: Configur
112564
112904
  * @param {*} [options] Override http request option.
112565
112905
  * @throws {RequiredError}
112566
112906
  */
112567
- createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
112907
+ createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
112568
112908
  return localVarFp.createMeetingParticipant(requestParameters.meetingId, requestParameters.meetingParticipantCreateInputs, options).then((request) => request(axios, basePath));
112569
112909
  },
112570
112910
  /**
@@ -112604,7 +112944,7 @@ export const MeetingsParticipantsApiFactory = function (configuration?: Configur
112604
112944
  * @param {*} [options] Override http request option.
112605
112945
  * @throws {RequiredError}
112606
112946
  */
112607
- regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
112947
+ regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
112608
112948
  return localVarFp.regenerateMeetingParticipantToken(requestParameters.meetingId, requestParameters.participantId, options).then((request) => request(axios, basePath));
112609
112949
  },
112610
112950
  /**
@@ -113924,7 +114264,7 @@ export const MeetingsSessionsApiFp = function(configuration?: Configuration) {
113924
114264
  * @param {*} [options] Override http request option.
113925
114265
  * @throws {RequiredError}
113926
114266
  */
113927
- async generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
114267
+ async generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
113928
114268
  const localVarAxiosArgs = await localVarAxiosParamCreator.generateMeetingSessionSummary(sessionId, options);
113929
114269
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
113930
114270
  const localVarOperationServerBasePath = operationServerMap['MeetingsSessionsApi.generateMeetingSessionSummary']?.[localVarOperationServerIndex]?.url;
@@ -114046,7 +114386,7 @@ export const MeetingsSessionsApiFactory = function (configuration?: Configuratio
114046
114386
  * @param {*} [options] Override http request option.
114047
114387
  * @throws {RequiredError}
114048
114388
  */
114049
- generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
114389
+ generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
114050
114390
  return localVarFp.generateMeetingSessionSummary(requestParameters.sessionId, options).then((request) => request(axios, basePath));
114051
114391
  },
114052
114392
  /**
@@ -114548,7 +114888,7 @@ export const NotificationsApiFp = function(configuration?: Configuration) {
114548
114888
  * @param {*} [options] Override http request option.
114549
114889
  * @throws {RequiredError}
114550
114890
  */
114551
- async getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
114891
+ async getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
114552
114892
  const localVarAxiosArgs = await localVarAxiosParamCreator.getNotificationCount(filters, options);
114553
114893
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
114554
114894
  const localVarOperationServerBasePath = operationServerMap['NotificationsApi.getNotificationCount']?.[localVarOperationServerIndex]?.url;
@@ -114590,7 +114930,7 @@ export const NotificationsApiFp = function(configuration?: Configuration) {
114590
114930
  * @param {*} [options] Override http request option.
114591
114931
  * @throws {RequiredError}
114592
114932
  */
114593
- async markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
114933
+ async markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
114594
114934
  const localVarAxiosArgs = await localVarAxiosParamCreator.markNotificationsRead(notificationIds, options);
114595
114935
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
114596
114936
  const localVarOperationServerBasePath = operationServerMap['NotificationsApi.markNotificationsRead']?.[localVarOperationServerIndex]?.url;
@@ -114612,7 +114952,7 @@ export const NotificationsApiFactory = function (configuration?: Configuration,
114612
114952
  * @param {*} [options] Override http request option.
114613
114953
  * @throws {RequiredError}
114614
114954
  */
114615
- getNotificationCount(requestParameters: NotificationsApiGetNotificationCountRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
114955
+ getNotificationCount(requestParameters: NotificationsApiGetNotificationCountRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
114616
114956
  return localVarFp.getNotificationCount(requestParameters.filters, options).then((request) => request(axios, basePath));
114617
114957
  },
114618
114958
  /**
@@ -114641,7 +114981,7 @@ export const NotificationsApiFactory = function (configuration?: Configuration,
114641
114981
  * @param {*} [options] Override http request option.
114642
114982
  * @throws {RequiredError}
114643
114983
  */
114644
- markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
114984
+ markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
114645
114985
  return localVarFp.markNotificationsRead(requestParameters.notificationIds, options).then((request) => request(axios, basePath));
114646
114986
  },
114647
114987
  };
@@ -118654,7 +118994,7 @@ export const OrganizationModulesSettingsTranslationsApiFp = function(configurati
118654
118994
  * @param {*} [options] Override http request option.
118655
118995
  * @throws {RequiredError}
118656
118996
  */
118657
- async deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
118997
+ async deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
118658
118998
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteOrganizationModuleSettingsTranslation(locale, options);
118659
118999
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
118660
119000
  const localVarOperationServerBasePath = operationServerMap['OrganizationModulesSettingsTranslationsApi.deleteOrganizationModuleSettingsTranslation']?.[localVarOperationServerIndex]?.url;
@@ -118697,7 +119037,7 @@ export const OrganizationModulesSettingsTranslationsApiFp = function(configurati
118697
119037
  * @param {*} [options] Override http request option.
118698
119038
  * @throws {RequiredError}
118699
119039
  */
118700
- async updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
119040
+ async updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
118701
119041
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrganizationModuleSettingsTranslation(locale, organizationModuleSettingsTranslationUpdateInputs, options);
118702
119042
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
118703
119043
  const localVarOperationServerBasePath = operationServerMap['OrganizationModulesSettingsTranslationsApi.updateOrganizationModuleSettingsTranslation']?.[localVarOperationServerIndex]?.url;
@@ -118719,7 +119059,7 @@ export const OrganizationModulesSettingsTranslationsApiFactory = function (confi
118719
119059
  * @param {*} [options] Override http request option.
118720
119060
  * @throws {RequiredError}
118721
119061
  */
118722
- deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
119062
+ deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
118723
119063
  return localVarFp.deleteOrganizationModuleSettingsTranslation(requestParameters.locale, options).then((request) => request(axios, basePath));
118724
119064
  },
118725
119065
  /**
@@ -118749,7 +119089,7 @@ export const OrganizationModulesSettingsTranslationsApiFactory = function (confi
118749
119089
  * @param {*} [options] Override http request option.
118750
119090
  * @throws {RequiredError}
118751
119091
  */
118752
- updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
119092
+ updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
118753
119093
  return localVarFp.updateOrganizationModuleSettingsTranslation(requestParameters.locale, requestParameters.organizationModuleSettingsTranslationUpdateInputs, options).then((request) => request(axios, basePath));
118754
119094
  },
118755
119095
  };
@@ -120010,7 +120350,7 @@ export const OrganizationPaymentsApiFp = function(configuration?: Configuration)
120010
120350
  * @param {*} [options] Override http request option.
120011
120351
  * @throws {RequiredError}
120012
120352
  */
120013
- async deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
120353
+ async deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
120014
120354
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteOrganizationPaymentIntegration(integrationId, options);
120015
120355
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
120016
120356
  const localVarOperationServerBasePath = operationServerMap['OrganizationPaymentsApi.deleteOrganizationPaymentIntegration']?.[localVarOperationServerIndex]?.url;
@@ -120155,7 +120495,7 @@ export const OrganizationPaymentsApiFactory = function (configuration?: Configur
120155
120495
  * @param {*} [options] Override http request option.
120156
120496
  * @throws {RequiredError}
120157
120497
  */
120158
- deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
120498
+ deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
120159
120499
  return localVarFp.deleteOrganizationPaymentIntegration(requestParameters.integrationId, options).then((request) => request(axios, basePath));
120160
120500
  },
120161
120501
  /**
@@ -122295,7 +122635,7 @@ export const OrganizationTeammembersApiFp = function(configuration?: Configurati
122295
122635
  * @param {*} [options] Override http request option.
122296
122636
  * @throws {RequiredError}
122297
122637
  */
122298
- async getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
122638
+ async getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
122299
122639
  const localVarAxiosArgs = await localVarAxiosParamCreator.getOrganizationTeamMember(teamMemberId, options);
122300
122640
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
122301
122641
  const localVarOperationServerBasePath = operationServerMap['OrganizationTeammembersApi.getOrganizationTeamMember']?.[localVarOperationServerIndex]?.url;
@@ -122367,7 +122707,7 @@ export const OrganizationTeammembersApiFactory = function (configuration?: Confi
122367
122707
  * @param {*} [options] Override http request option.
122368
122708
  * @throws {RequiredError}
122369
122709
  */
122370
- getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
122710
+ getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
122371
122711
  return localVarFp.getOrganizationTeamMember(requestParameters.teamMemberId, options).then((request) => request(axios, basePath));
122372
122712
  },
122373
122713
  /**
@@ -131371,7 +131711,7 @@ export const SeriesTranslationsApiFp = function(configuration?: Configuration) {
131371
131711
  * @param {*} [options] Override http request option.
131372
131712
  * @throws {RequiredError}
131373
131713
  */
131374
- async deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
131714
+ async deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
131375
131715
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSeriesTranslation(seriesId, locale, options);
131376
131716
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
131377
131717
  const localVarOperationServerBasePath = operationServerMap['SeriesTranslationsApi.deleteSeriesTranslation']?.[localVarOperationServerIndex]?.url;
@@ -131417,7 +131757,7 @@ export const SeriesTranslationsApiFp = function(configuration?: Configuration) {
131417
131757
  * @param {*} [options] Override http request option.
131418
131758
  * @throws {RequiredError}
131419
131759
  */
131420
- async updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
131760
+ async updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
131421
131761
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSeriesTranslation(seriesId, locale, seriesTranslationUpdateInputs, options);
131422
131762
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
131423
131763
  const localVarOperationServerBasePath = operationServerMap['SeriesTranslationsApi.updateSeriesTranslation']?.[localVarOperationServerIndex]?.url;
@@ -131439,7 +131779,7 @@ export const SeriesTranslationsApiFactory = function (configuration?: Configurat
131439
131779
  * @param {*} [options] Override http request option.
131440
131780
  * @throws {RequiredError}
131441
131781
  */
131442
- deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
131782
+ deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
131443
131783
  return localVarFp.deleteSeriesTranslation(requestParameters.seriesId, requestParameters.locale, options).then((request) => request(axios, basePath));
131444
131784
  },
131445
131785
  /**
@@ -131469,7 +131809,7 @@ export const SeriesTranslationsApiFactory = function (configuration?: Configurat
131469
131809
  * @param {*} [options] Override http request option.
131470
131810
  * @throws {RequiredError}
131471
131811
  */
131472
- updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
131812
+ updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
131473
131813
  return localVarFp.updateSeriesTranslation(requestParameters.seriesId, requestParameters.locale, requestParameters.seriesTranslationUpdateInputs, options).then((request) => request(axios, basePath));
131474
131814
  },
131475
131815
  };
@@ -132671,7 +133011,7 @@ export const SponsorsTranslationsApiFp = function(configuration?: Configuration)
132671
133011
  * @param {*} [options] Override http request option.
132672
133012
  * @throws {RequiredError}
132673
133013
  */
132674
- async deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
133014
+ async deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
132675
133015
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteLevelTranslation(levelId, locale, options);
132676
133016
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
132677
133017
  const localVarOperationServerBasePath = operationServerMap['SponsorsTranslationsApi.deleteLevelTranslation']?.[localVarOperationServerIndex]?.url;
@@ -132717,7 +133057,7 @@ export const SponsorsTranslationsApiFp = function(configuration?: Configuration)
132717
133057
  * @param {*} [options] Override http request option.
132718
133058
  * @throws {RequiredError}
132719
133059
  */
132720
- async updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
133060
+ async updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
132721
133061
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateLevelTranslation(levelId, locale, levelTranslationUpdateInputs, options);
132722
133062
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
132723
133063
  const localVarOperationServerBasePath = operationServerMap['SponsorsTranslationsApi.updateLevelTranslation']?.[localVarOperationServerIndex]?.url;
@@ -132739,7 +133079,7 @@ export const SponsorsTranslationsApiFactory = function (configuration?: Configur
132739
133079
  * @param {*} [options] Override http request option.
132740
133080
  * @throws {RequiredError}
132741
133081
  */
132742
- deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
133082
+ deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
132743
133083
  return localVarFp.deleteLevelTranslation(requestParameters.levelId, requestParameters.locale, options).then((request) => request(axios, basePath));
132744
133084
  },
132745
133085
  /**
@@ -132769,7 +133109,7 @@ export const SponsorsTranslationsApiFactory = function (configuration?: Configur
132769
133109
  * @param {*} [options] Override http request option.
132770
133110
  * @throws {RequiredError}
132771
133111
  */
132772
- updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
133112
+ updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
132773
133113
  return localVarFp.updateLevelTranslation(requestParameters.levelId, requestParameters.locale, requestParameters.levelTranslationUpdateInputs, options).then((request) => request(axios, basePath));
132774
133114
  },
132775
133115
  };
@@ -134400,7 +134740,7 @@ export const StorageVideosApiFp = function(configuration?: Configuration) {
134400
134740
  * @param {*} [options] Override http request option.
134401
134741
  * @throws {RequiredError}
134402
134742
  */
134403
- async getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
134743
+ async getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
134404
134744
  const localVarAxiosArgs = await localVarAxiosParamCreator.getVideoDownloadStatus(videoId, options);
134405
134745
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
134406
134746
  const localVarOperationServerBasePath = operationServerMap['StorageVideosApi.getVideoDownloadStatus']?.[localVarOperationServerIndex]?.url;
@@ -134430,7 +134770,7 @@ export const StorageVideosApiFp = function(configuration?: Configuration) {
134430
134770
  * @param {*} [options] Override http request option.
134431
134771
  * @throws {RequiredError}
134432
134772
  */
134433
- async initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
134773
+ async initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
134434
134774
  const localVarAxiosArgs = await localVarAxiosParamCreator.initiateVideoDownload(videoId, options);
134435
134775
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
134436
134776
  const localVarOperationServerBasePath = operationServerMap['StorageVideosApi.initiateVideoDownload']?.[localVarOperationServerIndex]?.url;
@@ -134496,7 +134836,7 @@ export const StorageVideosApiFactory = function (configuration?: Configuration,
134496
134836
  * @param {*} [options] Override http request option.
134497
134837
  * @throws {RequiredError}
134498
134838
  */
134499
- getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
134839
+ getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
134500
134840
  return localVarFp.getVideoDownloadStatus(requestParameters.videoId, options).then((request) => request(axios, basePath));
134501
134841
  },
134502
134842
  /**
@@ -134516,7 +134856,7 @@ export const StorageVideosApiFactory = function (configuration?: Configuration,
134516
134856
  * @param {*} [options] Override http request option.
134517
134857
  * @throws {RequiredError}
134518
134858
  */
134519
- initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
134859
+ initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
134520
134860
  return localVarFp.initiateVideoDownload(requestParameters.videoId, options).then((request) => request(axios, basePath));
134521
134861
  },
134522
134862
  /**
@@ -134989,7 +135329,7 @@ export const StorageVideosCaptionsApiFp = function(configuration?: Configuration
134989
135329
  * @param {*} [options] Override http request option.
134990
135330
  * @throws {RequiredError}
134991
135331
  */
134992
- async downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
135332
+ async downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
134993
135333
  const localVarAxiosArgs = await localVarAxiosParamCreator.downloadVideoCaption(videoId, language, options);
134994
135334
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
134995
135335
  const localVarOperationServerBasePath = operationServerMap['StorageVideosCaptionsApi.downloadVideoCaption']?.[localVarOperationServerIndex]?.url;
@@ -135068,7 +135408,7 @@ export const StorageVideosCaptionsApiFactory = function (configuration?: Configu
135068
135408
  * @param {*} [options] Override http request option.
135069
135409
  * @throws {RequiredError}
135070
135410
  */
135071
- downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
135411
+ downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
135072
135412
  return localVarFp.downloadVideoCaption(requestParameters.videoId, requestParameters.language, options).then((request) => request(axios, basePath));
135073
135413
  },
135074
135414
  /**
@@ -140586,7 +140926,7 @@ export const SurveysQuestionsApiFp = function(configuration?: Configuration) {
140586
140926
  * @param {*} [options] Override http request option.
140587
140927
  * @throws {RequiredError}
140588
140928
  */
140589
- async updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
140929
+ async updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
140590
140930
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyQuestionChoice(surveyId, questionId, choiceId, choice, options);
140591
140931
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
140592
140932
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsApi.updateSurveyQuestionChoice']?.[localVarOperationServerIndex]?.url;
@@ -140795,7 +141135,7 @@ export const SurveysQuestionsApiFactory = function (configuration?: Configuratio
140795
141135
  * @param {*} [options] Override http request option.
140796
141136
  * @throws {RequiredError}
140797
141137
  */
140798
- updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
141138
+ updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
140799
141139
  return localVarFp.updateSurveyQuestionChoice(requestParameters.surveyId, requestParameters.questionId, requestParameters.choiceId, requestParameters.choice, options).then((request) => request(axios, basePath));
140800
141140
  },
140801
141141
  /**
@@ -141939,7 +142279,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
141939
142279
  * @param {*} [options] Override http request option.
141940
142280
  * @throws {RequiredError}
141941
142281
  */
141942
- async deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142282
+ async deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
141943
142283
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveyQuestionChoiceTranslation(surveyId, questionId, choiceId, locale, options);
141944
142284
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141945
142285
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.deleteSurveyQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -141954,7 +142294,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
141954
142294
  * @param {*} [options] Override http request option.
141955
142295
  * @throws {RequiredError}
141956
142296
  */
141957
- async deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142297
+ async deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
141958
142298
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveyQuestionTranslation(surveyId, questionId, locale, options);
141959
142299
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141960
142300
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.deleteSurveyQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -142039,7 +142379,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
142039
142379
  * @param {*} [options] Override http request option.
142040
142380
  * @throws {RequiredError}
142041
142381
  */
142042
- async updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142382
+ async updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
142043
142383
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyQuestionChoiceTranslation(surveyId, questionId, choiceId, locale, surveyQuestionChoiceTranslationUpdateInputs, options);
142044
142384
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
142045
142385
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.updateSurveyQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -142055,7 +142395,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
142055
142395
  * @param {*} [options] Override http request option.
142056
142396
  * @throws {RequiredError}
142057
142397
  */
142058
- async updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142398
+ async updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
142059
142399
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyQuestionTranslation(surveyId, questionId, locale, surveyQuestionTranslationUpdateInputs, options);
142060
142400
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
142061
142401
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.updateSurveyQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -142077,7 +142417,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142077
142417
  * @param {*} [options] Override http request option.
142078
142418
  * @throws {RequiredError}
142079
142419
  */
142080
- deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142420
+ deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142081
142421
  return localVarFp.deleteSurveyQuestionChoiceTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
142082
142422
  },
142083
142423
  /**
@@ -142087,7 +142427,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142087
142427
  * @param {*} [options] Override http request option.
142088
142428
  * @throws {RequiredError}
142089
142429
  */
142090
- deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142430
+ deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142091
142431
  return localVarFp.deleteSurveyQuestionTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
142092
142432
  },
142093
142433
  /**
@@ -142137,7 +142477,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142137
142477
  * @param {*} [options] Override http request option.
142138
142478
  * @throws {RequiredError}
142139
142479
  */
142140
- updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142480
+ updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142141
142481
  return localVarFp.updateSurveyQuestionChoiceTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, requestParameters.surveyQuestionChoiceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
142142
142482
  },
142143
142483
  /**
@@ -142147,7 +142487,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142147
142487
  * @param {*} [options] Override http request option.
142148
142488
  * @throws {RequiredError}
142149
142489
  */
142150
- updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142490
+ updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142151
142491
  return localVarFp.updateSurveyQuestionTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.locale, requestParameters.surveyQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
142152
142492
  },
142153
142493
  };
@@ -143818,7 +144158,7 @@ export const SurveysSectionsTranslationsApiFp = function(configuration?: Configu
143818
144158
  * @param {*} [options] Override http request option.
143819
144159
  * @throws {RequiredError}
143820
144160
  */
143821
- async deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
144161
+ async deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
143822
144162
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveySectionTranslation(surveyId, sectionId, locale, options);
143823
144163
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
143824
144164
  const localVarOperationServerBasePath = operationServerMap['SurveysSectionsTranslationsApi.deleteSurveySectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -143867,7 +144207,7 @@ export const SurveysSectionsTranslationsApiFp = function(configuration?: Configu
143867
144207
  * @param {*} [options] Override http request option.
143868
144208
  * @throws {RequiredError}
143869
144209
  */
143870
- async updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
144210
+ async updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
143871
144211
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveySectionTranslation(surveyId, sectionId, locale, surveySectionTranslationUpdateInputs, options);
143872
144212
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
143873
144213
  const localVarOperationServerBasePath = operationServerMap['SurveysSectionsTranslationsApi.updateSurveySectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -143889,7 +144229,7 @@ export const SurveysSectionsTranslationsApiFactory = function (configuration?: C
143889
144229
  * @param {*} [options] Override http request option.
143890
144230
  * @throws {RequiredError}
143891
144231
  */
143892
- deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
144232
+ deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
143893
144233
  return localVarFp.deleteSurveySectionTranslation(requestParameters.surveyId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
143894
144234
  },
143895
144235
  /**
@@ -143919,7 +144259,7 @@ export const SurveysSectionsTranslationsApiFactory = function (configuration?: C
143919
144259
  * @param {*} [options] Override http request option.
143920
144260
  * @throws {RequiredError}
143921
144261
  */
143922
- updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
144262
+ updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
143923
144263
  return localVarFp.updateSurveySectionTranslation(requestParameters.surveyId, requestParameters.sectionId, requestParameters.locale, requestParameters.surveySectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
143924
144264
  },
143925
144265
  };
@@ -145363,7 +145703,7 @@ export const SurveysTranslationsApiFp = function(configuration?: Configuration)
145363
145703
  * @param {*} [options] Override http request option.
145364
145704
  * @throws {RequiredError}
145365
145705
  */
145366
- async deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
145706
+ async deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
145367
145707
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveyTranslation(surveyId, locale, options);
145368
145708
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
145369
145709
  const localVarOperationServerBasePath = operationServerMap['SurveysTranslationsApi.deleteSurveyTranslation']?.[localVarOperationServerIndex]?.url;
@@ -145409,7 +145749,7 @@ export const SurveysTranslationsApiFp = function(configuration?: Configuration)
145409
145749
  * @param {*} [options] Override http request option.
145410
145750
  * @throws {RequiredError}
145411
145751
  */
145412
- async updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
145752
+ async updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
145413
145753
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyTranslation(surveyId, locale, surveyTranslationUpdateInputs, options);
145414
145754
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
145415
145755
  const localVarOperationServerBasePath = operationServerMap['SurveysTranslationsApi.updateSurveyTranslation']?.[localVarOperationServerIndex]?.url;
@@ -145431,7 +145771,7 @@ export const SurveysTranslationsApiFactory = function (configuration?: Configura
145431
145771
  * @param {*} [options] Override http request option.
145432
145772
  * @throws {RequiredError}
145433
145773
  */
145434
- deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
145774
+ deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
145435
145775
  return localVarFp.deleteSurveyTranslation(requestParameters.surveyId, requestParameters.locale, options).then((request) => request(axios, basePath));
145436
145776
  },
145437
145777
  /**
@@ -145461,7 +145801,7 @@ export const SurveysTranslationsApiFactory = function (configuration?: Configura
145461
145801
  * @param {*} [options] Override http request option.
145462
145802
  * @throws {RequiredError}
145463
145803
  */
145464
- updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
145804
+ updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
145465
145805
  return localVarFp.updateSurveyTranslation(requestParameters.surveyId, requestParameters.locale, requestParameters.surveyTranslationUpdateInputs, options).then((request) => request(axios, basePath));
145466
145806
  },
145467
145807
  };