@connectedxm/admin-sdk 6.32.1 → 6.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/.openapi-generator/FILES +1 -1
  2. package/README.md +4 -1
  3. package/api.ts +444 -207
  4. package/dist/api.d.ts +415 -303
  5. package/dist/api.js +209 -5
  6. package/dist/esm/api.d.ts +415 -303
  7. package/dist/esm/api.js +208 -4
  8. package/docs/AccountsApi.md +97 -0
  9. package/docs/AnnouncementsTranslationsApi.md +4 -4
  10. package/docs/BenefitsTranslationsApi.md +4 -4
  11. package/docs/BookingsPlacesTranslationsApi.md +4 -4
  12. package/docs/BookingsQuestionsChoicesTranslationsApi.md +2 -2
  13. package/docs/BookingsQuestionsTranslationsApi.md +2 -2
  14. package/docs/BookingsSpacesTranslationsApi.md +4 -4
  15. package/docs/ChannelsTranslationsApi.md +8 -8
  16. package/docs/DashboardsApi.md +2 -2
  17. package/docs/DashboardsWidgetsApi.md +2 -2
  18. package/docs/EventsAccessApi.md +4 -4
  19. package/docs/EventsActivationsTranslationsApi.md +2 -2
  20. package/docs/EventsAddonsTranslationsApi.md +2 -2
  21. package/docs/EventsApi.md +6 -6
  22. package/docs/EventsAttendeesApi.md +52 -0
  23. package/docs/EventsAttendeesPackagesApi.md +2 -2
  24. package/docs/EventsEmailsTranslationsApi.md +4 -4
  25. package/docs/EventsFaqsTranslationsApi.md +8 -8
  26. package/docs/EventsFollowupsTranslationsApi.md +4 -4
  27. package/docs/EventsMediaTranslationsApi.md +2 -2
  28. package/docs/EventsPagesTranslationsApi.md +4 -4
  29. package/docs/EventsPasstypesPriceschedulesApi.md +4 -4
  30. package/docs/EventsPasstypesRefundschedulesApi.md +4 -4
  31. package/docs/EventsPasstypesTranslationsApi.md +4 -4
  32. package/docs/EventsQuestionsApi.md +2 -2
  33. package/docs/EventsQuestionsTranslationsApi.md +8 -8
  34. package/docs/EventsRoomtypesTranslationsApi.md +4 -4
  35. package/docs/EventsSectionsTranslationsApi.md +4 -4
  36. package/docs/EventsSessionsApi.md +2 -2
  37. package/docs/EventsSessionsLocationsTranslationsApi.md +4 -4
  38. package/docs/EventsSessionsQuestionsApi.md +2 -2
  39. package/docs/EventsSessionsQuestionsTranslationsApi.md +8 -8
  40. package/docs/EventsSessionsSectionsTranslationsApi.md +4 -4
  41. package/docs/EventsSessionsTimesApi.md +2 -2
  42. package/docs/EventsSessionsTimesTranslationsApi.md +4 -4
  43. package/docs/EventsSessionsTranslationsApi.md +4 -4
  44. package/docs/EventsSpeakersTranslationsApi.md +4 -4
  45. package/docs/EventsTracksTranslationsApi.md +4 -4
  46. package/docs/EventsTranslationsApi.md +4 -4
  47. package/docs/GroupsTranslationsApi.md +4 -4
  48. package/docs/MeetingsParticipantsApi.md +4 -4
  49. package/docs/MeetingsSessionsApi.md +2 -2
  50. package/docs/NotificationPreferences.md +2 -0
  51. package/docs/NotificationType.md +2 -0
  52. package/docs/NotificationsApi.md +4 -4
  53. package/docs/OrganizationModulesSettingsTranslationsApi.md +4 -4
  54. package/docs/OrganizationPaymentsApi.md +2 -2
  55. package/docs/OrganizationTeammembersApi.md +2 -2
  56. package/docs/SeriesTranslationsApi.md +4 -4
  57. package/docs/SponsorsTranslationsApi.md +4 -4
  58. package/docs/StorageVideosApi.md +4 -4
  59. package/docs/StorageVideosCaptionsApi.md +2 -2
  60. package/docs/SurveysQuestionsApi.md +2 -2
  61. package/docs/SurveysQuestionsTranslationsApi.md +8 -8
  62. package/docs/SurveysSectionsTranslationsApi.md +4 -4
  63. package/docs/SurveysTranslationsApi.md +4 -4
  64. package/docs/{UpdateAnnouncementTranslation200Response.md → SyncAccounts200Response.md} +3 -3
  65. package/package.json +1 -1
package/api.ts CHANGED
@@ -11048,6 +11048,7 @@ export interface NotificationPreferences {
11048
11048
  'chatPush': boolean;
11049
11049
  'chatUnreadEmail': boolean;
11050
11050
  'chatUnreadPush': boolean;
11051
+ 'activityMentionPush': boolean;
11051
11052
  'organizationAnnouncementEmail': boolean;
11052
11053
  'organizationAnnouncementPush': boolean;
11053
11054
  'groupInvitationEmail': boolean;
@@ -11074,7 +11075,8 @@ export enum NotificationType {
11074
11075
  GroupInvitation = 'GROUP_INVITATION',
11075
11076
  GroupRequestAccepted = 'GROUP_REQUEST_ACCEPTED',
11076
11077
  Content = 'CONTENT',
11077
- SupportTicketMessage = 'SUPPORT_TICKET_MESSAGE'
11078
+ SupportTicketMessage = 'SUPPORT_TICKET_MESSAGE',
11079
+ Mention = 'MENTION'
11078
11080
  }
11079
11081
 
11080
11082
 
@@ -13504,6 +13506,16 @@ export interface SurveyUpdateInputs {
13504
13506
  }
13505
13507
 
13506
13508
 
13509
+ export interface SyncAccounts200Response {
13510
+ 'status': SyncAccounts200ResponseStatusEnum;
13511
+ 'message': string;
13512
+ 'data': object;
13513
+ }
13514
+
13515
+ export enum SyncAccounts200ResponseStatusEnum {
13516
+ Ok = 'ok'
13517
+ }
13518
+
13507
13519
  export interface SystemEventLog {
13508
13520
  'id': string;
13509
13521
  'organizationId': string;
@@ -13906,16 +13918,6 @@ export interface TriggerUpdateInputs {
13906
13918
  'code'?: string | null;
13907
13919
  'enabled'?: boolean;
13908
13920
  }
13909
- export interface UpdateAnnouncementTranslation200Response {
13910
- 'status': UpdateAnnouncementTranslation200ResponseStatusEnum;
13911
- 'message': string;
13912
- 'data': object;
13913
- }
13914
-
13915
- export enum UpdateAnnouncementTranslation200ResponseStatusEnum {
13916
- Ok = 'ok'
13917
- }
13918
-
13919
13921
  export interface UpdateBookingSpaceQuestionChoiceTranslation200Response {
13920
13922
  'status': UpdateBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum;
13921
13923
  'message': string;
@@ -15112,6 +15114,82 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
15112
15114
  options: localVarRequestOptions,
15113
15115
  };
15114
15116
  },
15117
+ /**
15118
+ * Sync Account endpoint
15119
+ * @summary Sync Account
15120
+ * @param {string} accountId The account identifier
15121
+ * @param {*} [options] Override http request option.
15122
+ * @throws {RequiredError}
15123
+ */
15124
+ syncAccount: async (accountId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
15125
+ // verify required parameter 'accountId' is not null or undefined
15126
+ assertParamExists('syncAccount', 'accountId', accountId)
15127
+ const localVarPath = `/accounts/{accountId}/sync`
15128
+ .replace(`{${"accountId"}}`, encodeURIComponent(String(accountId)));
15129
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
15130
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
15131
+ let baseOptions;
15132
+ if (configuration) {
15133
+ baseOptions = configuration.baseOptions;
15134
+ }
15135
+
15136
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
15137
+ const localVarHeaderParameter = {} as any;
15138
+ const localVarQueryParameter = {} as any;
15139
+
15140
+ // authentication ApiKeyAuth required
15141
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
15142
+
15143
+ // authentication OrganizationId required
15144
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
15145
+
15146
+ localVarHeaderParameter['Accept'] = 'application/json';
15147
+
15148
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
15149
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
15150
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
15151
+
15152
+ return {
15153
+ url: toPathString(localVarUrlObj),
15154
+ options: localVarRequestOptions,
15155
+ };
15156
+ },
15157
+ /**
15158
+ * Sync Accounts endpoint
15159
+ * @summary Sync Accounts
15160
+ * @param {*} [options] Override http request option.
15161
+ * @throws {RequiredError}
15162
+ */
15163
+ syncAccounts: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
15164
+ const localVarPath = `/accounts/sync`;
15165
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
15166
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
15167
+ let baseOptions;
15168
+ if (configuration) {
15169
+ baseOptions = configuration.baseOptions;
15170
+ }
15171
+
15172
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
15173
+ const localVarHeaderParameter = {} as any;
15174
+ const localVarQueryParameter = {} as any;
15175
+
15176
+ // authentication ApiKeyAuth required
15177
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
15178
+
15179
+ // authentication OrganizationId required
15180
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
15181
+
15182
+ localVarHeaderParameter['Accept'] = 'application/json';
15183
+
15184
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
15185
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
15186
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
15187
+
15188
+ return {
15189
+ url: toPathString(localVarUrlObj),
15190
+ options: localVarRequestOptions,
15191
+ };
15192
+ },
15115
15193
  /**
15116
15194
  * Update Account endpoint
15117
15195
  * @summary Update Account
@@ -15415,6 +15493,31 @@ export const AccountsApiFp = function(configuration?: Configuration) {
15415
15493
  const localVarOperationServerBasePath = operationServerMap['AccountsApi.impersonateAccount']?.[localVarOperationServerIndex]?.url;
15416
15494
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15417
15495
  },
15496
+ /**
15497
+ * Sync Account endpoint
15498
+ * @summary Sync Account
15499
+ * @param {string} accountId The account identifier
15500
+ * @param {*} [options] Override http request option.
15501
+ * @throws {RequiredError}
15502
+ */
15503
+ async syncAccount(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
15504
+ const localVarAxiosArgs = await localVarAxiosParamCreator.syncAccount(accountId, options);
15505
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
15506
+ const localVarOperationServerBasePath = operationServerMap['AccountsApi.syncAccount']?.[localVarOperationServerIndex]?.url;
15507
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15508
+ },
15509
+ /**
15510
+ * Sync Accounts endpoint
15511
+ * @summary Sync Accounts
15512
+ * @param {*} [options] Override http request option.
15513
+ * @throws {RequiredError}
15514
+ */
15515
+ async syncAccounts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
15516
+ const localVarAxiosArgs = await localVarAxiosParamCreator.syncAccounts(options);
15517
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
15518
+ const localVarOperationServerBasePath = operationServerMap['AccountsApi.syncAccounts']?.[localVarOperationServerIndex]?.url;
15519
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15520
+ },
15418
15521
  /**
15419
15522
  * Update Account endpoint
15420
15523
  * @summary Update Account
@@ -15598,6 +15701,25 @@ export const AccountsApiFactory = function (configuration?: Configuration, baseP
15598
15701
  impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response> {
15599
15702
  return localVarFp.impersonateAccount(requestParameters.accountId, requestParameters.username, options).then((request) => request(axios, basePath));
15600
15703
  },
15704
+ /**
15705
+ * Sync Account endpoint
15706
+ * @summary Sync Account
15707
+ * @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
15708
+ * @param {*} [options] Override http request option.
15709
+ * @throws {RequiredError}
15710
+ */
15711
+ syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
15712
+ return localVarFp.syncAccount(requestParameters.accountId, options).then((request) => request(axios, basePath));
15713
+ },
15714
+ /**
15715
+ * Sync Accounts endpoint
15716
+ * @summary Sync Accounts
15717
+ * @param {*} [options] Override http request option.
15718
+ * @throws {RequiredError}
15719
+ */
15720
+ syncAccounts(options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
15721
+ return localVarFp.syncAccounts(options).then((request) => request(axios, basePath));
15722
+ },
15601
15723
  /**
15602
15724
  * Update Account endpoint
15603
15725
  * @summary Update Account
@@ -15973,6 +16095,16 @@ export interface AccountsApiImpersonateAccountRequest {
15973
16095
  readonly username: string
15974
16096
  }
15975
16097
 
16098
+ /**
16099
+ * Request parameters for syncAccount operation in AccountsApi.
16100
+ */
16101
+ export interface AccountsApiSyncAccountRequest {
16102
+ /**
16103
+ * The account identifier
16104
+ */
16105
+ readonly accountId: string
16106
+ }
16107
+
15976
16108
  /**
15977
16109
  * Request parameters for updateAccount operation in AccountsApi.
15978
16110
  */
@@ -16165,6 +16297,27 @@ export class AccountsApi extends BaseAPI {
16165
16297
  return AccountsApiFp(this.configuration).impersonateAccount(requestParameters.accountId, requestParameters.username, options).then((request) => request(this.axios, this.basePath));
16166
16298
  }
16167
16299
 
16300
+ /**
16301
+ * Sync Account endpoint
16302
+ * @summary Sync Account
16303
+ * @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
16304
+ * @param {*} [options] Override http request option.
16305
+ * @throws {RequiredError}
16306
+ */
16307
+ public syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig) {
16308
+ return AccountsApiFp(this.configuration).syncAccount(requestParameters.accountId, options).then((request) => request(this.axios, this.basePath));
16309
+ }
16310
+
16311
+ /**
16312
+ * Sync Accounts endpoint
16313
+ * @summary Sync Accounts
16314
+ * @param {*} [options] Override http request option.
16315
+ * @throws {RequiredError}
16316
+ */
16317
+ public syncAccounts(options?: RawAxiosRequestConfig) {
16318
+ return AccountsApiFp(this.configuration).syncAccounts(options).then((request) => request(this.axios, this.basePath));
16319
+ }
16320
+
16168
16321
  /**
16169
16322
  * Update Account endpoint
16170
16323
  * @summary Update Account
@@ -22637,7 +22790,7 @@ export const AnnouncementsTranslationsApiFp = function(configuration?: Configura
22637
22790
  * @param {*} [options] Override http request option.
22638
22791
  * @throws {RequiredError}
22639
22792
  */
22640
- async deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
22793
+ async deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
22641
22794
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAnnouncementTranslation(announcementId, locale, options);
22642
22795
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
22643
22796
  const localVarOperationServerBasePath = operationServerMap['AnnouncementsTranslationsApi.deleteAnnouncementTranslation']?.[localVarOperationServerIndex]?.url;
@@ -22683,7 +22836,7 @@ export const AnnouncementsTranslationsApiFp = function(configuration?: Configura
22683
22836
  * @param {*} [options] Override http request option.
22684
22837
  * @throws {RequiredError}
22685
22838
  */
22686
- async updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
22839
+ async updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
22687
22840
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateAnnouncementTranslation(announcementId, locale, announcementTranslationUpdateInputs, options);
22688
22841
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
22689
22842
  const localVarOperationServerBasePath = operationServerMap['AnnouncementsTranslationsApi.updateAnnouncementTranslation']?.[localVarOperationServerIndex]?.url;
@@ -22705,7 +22858,7 @@ export const AnnouncementsTranslationsApiFactory = function (configuration?: Con
22705
22858
  * @param {*} [options] Override http request option.
22706
22859
  * @throws {RequiredError}
22707
22860
  */
22708
- deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
22861
+ deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
22709
22862
  return localVarFp.deleteAnnouncementTranslation(requestParameters.announcementId, requestParameters.locale, options).then((request) => request(axios, basePath));
22710
22863
  },
22711
22864
  /**
@@ -22735,7 +22888,7 @@ export const AnnouncementsTranslationsApiFactory = function (configuration?: Con
22735
22888
  * @param {*} [options] Override http request option.
22736
22889
  * @throws {RequiredError}
22737
22890
  */
22738
- updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
22891
+ updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
22739
22892
  return localVarFp.updateAnnouncementTranslation(requestParameters.announcementId, requestParameters.locale, requestParameters.announcementTranslationUpdateInputs, options).then((request) => request(axios, basePath));
22740
22893
  },
22741
22894
  };
@@ -24282,7 +24435,7 @@ export const BenefitsTranslationsApiFp = function(configuration?: Configuration)
24282
24435
  * @param {*} [options] Override http request option.
24283
24436
  * @throws {RequiredError}
24284
24437
  */
24285
- async deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
24438
+ async deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
24286
24439
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBenefitTranslation(benefitId, locale, options);
24287
24440
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
24288
24441
  const localVarOperationServerBasePath = operationServerMap['BenefitsTranslationsApi.deleteBenefitTranslation']?.[localVarOperationServerIndex]?.url;
@@ -24328,7 +24481,7 @@ export const BenefitsTranslationsApiFp = function(configuration?: Configuration)
24328
24481
  * @param {*} [options] Override http request option.
24329
24482
  * @throws {RequiredError}
24330
24483
  */
24331
- async updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
24484
+ async updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
24332
24485
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateBenefitTranslation(benefitId, locale, benefitTranslationUpdateInputs, options);
24333
24486
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
24334
24487
  const localVarOperationServerBasePath = operationServerMap['BenefitsTranslationsApi.updateBenefitTranslation']?.[localVarOperationServerIndex]?.url;
@@ -24350,7 +24503,7 @@ export const BenefitsTranslationsApiFactory = function (configuration?: Configur
24350
24503
  * @param {*} [options] Override http request option.
24351
24504
  * @throws {RequiredError}
24352
24505
  */
24353
- deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
24506
+ deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
24354
24507
  return localVarFp.deleteBenefitTranslation(requestParameters.benefitId, requestParameters.locale, options).then((request) => request(axios, basePath));
24355
24508
  },
24356
24509
  /**
@@ -24380,7 +24533,7 @@ export const BenefitsTranslationsApiFactory = function (configuration?: Configur
24380
24533
  * @param {*} [options] Override http request option.
24381
24534
  * @throws {RequiredError}
24382
24535
  */
24383
- updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
24536
+ updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
24384
24537
  return localVarFp.updateBenefitTranslation(requestParameters.benefitId, requestParameters.locale, requestParameters.benefitTranslationUpdateInputs, options).then((request) => request(axios, basePath));
24385
24538
  },
24386
24539
  };
@@ -28310,7 +28463,7 @@ export const BookingsPlacesTranslationsApiFp = function(configuration?: Configur
28310
28463
  * @param {*} [options] Override http request option.
28311
28464
  * @throws {RequiredError}
28312
28465
  */
28313
- async deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
28466
+ async deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
28314
28467
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingPlaceTranslation(placeId, locale, options);
28315
28468
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
28316
28469
  const localVarOperationServerBasePath = operationServerMap['BookingsPlacesTranslationsApi.deleteBookingPlaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -28325,7 +28478,7 @@ export const BookingsPlacesTranslationsApiFp = function(configuration?: Configur
28325
28478
  * @param {*} [options] Override http request option.
28326
28479
  * @throws {RequiredError}
28327
28480
  */
28328
- async updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
28481
+ async updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
28329
28482
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateBookingPlaceTranslation(placeId, locale, bookingPlaceTranslationUpdateInputs, options);
28330
28483
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
28331
28484
  const localVarOperationServerBasePath = operationServerMap['BookingsPlacesTranslationsApi.updateBookingPlaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -28347,7 +28500,7 @@ export const BookingsPlacesTranslationsApiFactory = function (configuration?: Co
28347
28500
  * @param {*} [options] Override http request option.
28348
28501
  * @throws {RequiredError}
28349
28502
  */
28350
- deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
28503
+ deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
28351
28504
  return localVarFp.deleteBookingPlaceTranslation(requestParameters.placeId, requestParameters.locale, options).then((request) => request(axios, basePath));
28352
28505
  },
28353
28506
  /**
@@ -28357,7 +28510,7 @@ export const BookingsPlacesTranslationsApiFactory = function (configuration?: Co
28357
28510
  * @param {*} [options] Override http request option.
28358
28511
  * @throws {RequiredError}
28359
28512
  */
28360
- updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
28513
+ updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
28361
28514
  return localVarFp.updateBookingPlaceTranslation(requestParameters.placeId, requestParameters.locale, requestParameters.bookingPlaceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
28362
28515
  },
28363
28516
  };
@@ -30350,7 +30503,7 @@ export const BookingsQuestionsChoicesTranslationsApiFp = function(configuration?
30350
30503
  * @param {*} [options] Override http request option.
30351
30504
  * @throws {RequiredError}
30352
30505
  */
30353
- async deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
30506
+ async deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
30354
30507
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingSpaceQuestionChoiceTranslation(placeId, spaceId, questionId, choiceId, locale, options);
30355
30508
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
30356
30509
  const localVarOperationServerBasePath = operationServerMap['BookingsQuestionsChoicesTranslationsApi.deleteBookingSpaceQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -30423,7 +30576,7 @@ export const BookingsQuestionsChoicesTranslationsApiFactory = function (configur
30423
30576
  * @param {*} [options] Override http request option.
30424
30577
  * @throws {RequiredError}
30425
30578
  */
30426
- deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
30579
+ deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
30427
30580
  return localVarFp.deleteBookingSpaceQuestionChoiceTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
30428
30581
  },
30429
30582
  /**
@@ -30860,7 +31013,7 @@ export const BookingsQuestionsTranslationsApiFp = function(configuration?: Confi
30860
31013
  * @param {*} [options] Override http request option.
30861
31014
  * @throws {RequiredError}
30862
31015
  */
30863
- async deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
31016
+ async deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
30864
31017
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingSpaceQuestionTranslation(placeId, spaceId, questionId, locale, options);
30865
31018
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
30866
31019
  const localVarOperationServerBasePath = operationServerMap['BookingsQuestionsTranslationsApi.deleteBookingSpaceQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -30930,7 +31083,7 @@ export const BookingsQuestionsTranslationsApiFactory = function (configuration?:
30930
31083
  * @param {*} [options] Override http request option.
30931
31084
  * @throws {RequiredError}
30932
31085
  */
30933
- deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
31086
+ deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
30934
31087
  return localVarFp.deleteBookingSpaceQuestionTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
30935
31088
  },
30936
31089
  /**
@@ -31566,7 +31719,7 @@ export const BookingsSpacesTranslationsApiFp = function(configuration?: Configur
31566
31719
  * @param {*} [options] Override http request option.
31567
31720
  * @throws {RequiredError}
31568
31721
  */
31569
- async deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
31722
+ async deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
31570
31723
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookingSpaceTranslation(placeId, spaceId, locale, options);
31571
31724
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
31572
31725
  const localVarOperationServerBasePath = operationServerMap['BookingsSpacesTranslationsApi.deleteBookingSpaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -31582,7 +31735,7 @@ export const BookingsSpacesTranslationsApiFp = function(configuration?: Configur
31582
31735
  * @param {*} [options] Override http request option.
31583
31736
  * @throws {RequiredError}
31584
31737
  */
31585
- async updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
31738
+ async updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
31586
31739
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateBookingSpaceTranslation(placeId, spaceId, locale, bookingSpaceTranslationUpdateInputs, options);
31587
31740
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
31588
31741
  const localVarOperationServerBasePath = operationServerMap['BookingsSpacesTranslationsApi.updateBookingSpaceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -31604,7 +31757,7 @@ export const BookingsSpacesTranslationsApiFactory = function (configuration?: Co
31604
31757
  * @param {*} [options] Override http request option.
31605
31758
  * @throws {RequiredError}
31606
31759
  */
31607
- deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
31760
+ deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
31608
31761
  return localVarFp.deleteBookingSpaceTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.locale, options).then((request) => request(axios, basePath));
31609
31762
  },
31610
31763
  /**
@@ -31614,7 +31767,7 @@ export const BookingsSpacesTranslationsApiFactory = function (configuration?: Co
31614
31767
  * @param {*} [options] Override http request option.
31615
31768
  * @throws {RequiredError}
31616
31769
  */
31617
- updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
31770
+ updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
31618
31771
  return localVarFp.updateBookingSpaceTranslation(requestParameters.placeId, requestParameters.spaceId, requestParameters.locale, requestParameters.bookingSpaceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
31619
31772
  },
31620
31773
  };
@@ -35571,7 +35724,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35571
35724
  * @param {*} [options] Override http request option.
35572
35725
  * @throws {RequiredError}
35573
35726
  */
35574
- async deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35727
+ async deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35575
35728
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteChannelContentGuestTranslation(channelId, contentId, guestId, locale, options);
35576
35729
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35577
35730
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.deleteChannelContentGuestTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35586,7 +35739,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35586
35739
  * @param {*} [options] Override http request option.
35587
35740
  * @throws {RequiredError}
35588
35741
  */
35589
- async deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35742
+ async deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35590
35743
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteChannelContentTranslation(channelId, contentId, locale, options);
35591
35744
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35592
35745
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.deleteChannelContentTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35600,7 +35753,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35600
35753
  * @param {*} [options] Override http request option.
35601
35754
  * @throws {RequiredError}
35602
35755
  */
35603
- async deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35756
+ async deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35604
35757
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteChannelTranslation(channelId, locale, options);
35605
35758
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35606
35759
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.deleteChannelTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35732,7 +35885,7 @@ export const ChannelsTranslationsApiFp = function(configuration?: Configuration)
35732
35885
  * @param {*} [options] Override http request option.
35733
35886
  * @throws {RequiredError}
35734
35887
  */
35735
- async updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
35888
+ async updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
35736
35889
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateChannelContentTranslation(channelId, contentId, locale, channelContentTranslationUpdateInputs, options);
35737
35890
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35738
35891
  const localVarOperationServerBasePath = operationServerMap['ChannelsTranslationsApi.updateChannelContentTranslation']?.[localVarOperationServerIndex]?.url;
@@ -35769,7 +35922,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35769
35922
  * @param {*} [options] Override http request option.
35770
35923
  * @throws {RequiredError}
35771
35924
  */
35772
- deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
35925
+ deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35773
35926
  return localVarFp.deleteChannelContentGuestTranslation(requestParameters.channelId, requestParameters.contentId, requestParameters.guestId, requestParameters.locale, options).then((request) => request(axios, basePath));
35774
35927
  },
35775
35928
  /**
@@ -35779,7 +35932,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35779
35932
  * @param {*} [options] Override http request option.
35780
35933
  * @throws {RequiredError}
35781
35934
  */
35782
- deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
35935
+ deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35783
35936
  return localVarFp.deleteChannelContentTranslation(requestParameters.channelId, requestParameters.contentId, requestParameters.locale, options).then((request) => request(axios, basePath));
35784
35937
  },
35785
35938
  /**
@@ -35789,7 +35942,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35789
35942
  * @param {*} [options] Override http request option.
35790
35943
  * @throws {RequiredError}
35791
35944
  */
35792
- deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
35945
+ deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35793
35946
  return localVarFp.deleteChannelTranslation(requestParameters.channelId, requestParameters.locale, options).then((request) => request(axios, basePath));
35794
35947
  },
35795
35948
  /**
@@ -35869,7 +36022,7 @@ export const ChannelsTranslationsApiFactory = function (configuration?: Configur
35869
36022
  * @param {*} [options] Override http request option.
35870
36023
  * @throws {RequiredError}
35871
36024
  */
35872
- updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
36025
+ updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
35873
36026
  return localVarFp.updateChannelContentTranslation(requestParameters.channelId, requestParameters.contentId, requestParameters.locale, requestParameters.channelContentTranslationUpdateInputs, options).then((request) => request(axios, basePath));
35874
36027
  },
35875
36028
  /**
@@ -36576,7 +36729,7 @@ export const DashboardsApiFp = function(configuration?: Configuration) {
36576
36729
  * @param {*} [options] Override http request option.
36577
36730
  * @throws {RequiredError}
36578
36731
  */
36579
- async deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
36732
+ async deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
36580
36733
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDashboard(dashboardId, options);
36581
36734
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36582
36735
  const localVarOperationServerBasePath = operationServerMap['DashboardsApi.deleteDashboard']?.[localVarOperationServerIndex]?.url;
@@ -36652,7 +36805,7 @@ export const DashboardsApiFactory = function (configuration?: Configuration, bas
36652
36805
  * @param {*} [options] Override http request option.
36653
36806
  * @throws {RequiredError}
36654
36807
  */
36655
- deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
36808
+ deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
36656
36809
  return localVarFp.deleteDashboard(requestParameters.dashboardId, options).then((request) => request(axios, basePath));
36657
36810
  },
36658
36811
  /**
@@ -37038,7 +37191,7 @@ export const DashboardsWidgetsApiFp = function(configuration?: Configuration) {
37038
37191
  * @param {*} [options] Override http request option.
37039
37192
  * @throws {RequiredError}
37040
37193
  */
37041
- async deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
37194
+ async deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
37042
37195
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDashboardWidget(dashboardId, widgetId, options);
37043
37196
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37044
37197
  const localVarOperationServerBasePath = operationServerMap['DashboardsWidgetsApi.deleteDashboardWidget']?.[localVarOperationServerIndex]?.url;
@@ -37099,7 +37252,7 @@ export const DashboardsWidgetsApiFactory = function (configuration?: Configurati
37099
37252
  * @param {*} [options] Override http request option.
37100
37253
  * @throws {RequiredError}
37101
37254
  */
37102
- deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
37255
+ deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
37103
37256
  return localVarFp.deleteDashboardWidget(requestParameters.dashboardId, requestParameters.widgetId, options).then((request) => request(axios, basePath));
37104
37257
  },
37105
37258
  /**
@@ -38092,7 +38245,7 @@ export const EventsApiFp = function(configuration?: Configuration) {
38092
38245
  * @param {*} [options] Override http request option.
38093
38246
  * @throws {RequiredError}
38094
38247
  */
38095
- async cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
38248
+ async cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38096
38249
  const localVarAxiosArgs = await localVarAxiosParamCreator.cloneEvent(eventId, cloneOptions, options);
38097
38250
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38098
38251
  const localVarOperationServerBasePath = operationServerMap['EventsApi.cloneEvent']?.[localVarOperationServerIndex]?.url;
@@ -38131,7 +38284,7 @@ export const EventsApiFp = function(configuration?: Configuration) {
38131
38284
  * @param {*} [options] Override http request option.
38132
38285
  * @throws {RequiredError}
38133
38286
  */
38134
- async disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
38287
+ async disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38135
38288
  const localVarAxiosArgs = await localVarAxiosParamCreator.disableEventBuildMode(eventId, options);
38136
38289
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38137
38290
  const localVarOperationServerBasePath = operationServerMap['EventsApi.disableEventBuildMode']?.[localVarOperationServerIndex]?.url;
@@ -38144,7 +38297,7 @@ export const EventsApiFp = function(configuration?: Configuration) {
38144
38297
  * @param {*} [options] Override http request option.
38145
38298
  * @throws {RequiredError}
38146
38299
  */
38147
- async enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
38300
+ async enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38148
38301
  const localVarAxiosArgs = await localVarAxiosParamCreator.enableEventBuildMode(eventId, options);
38149
38302
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38150
38303
  const localVarOperationServerBasePath = operationServerMap['EventsApi.enableEventBuildMode']?.[localVarOperationServerIndex]?.url;
@@ -38277,7 +38430,7 @@ export const EventsApiFactory = function (configuration?: Configuration, basePat
38277
38430
  * @param {*} [options] Override http request option.
38278
38431
  * @throws {RequiredError}
38279
38432
  */
38280
- cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
38433
+ cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38281
38434
  return localVarFp.cloneEvent(requestParameters.eventId, requestParameters.cloneOptions, options).then((request) => request(axios, basePath));
38282
38435
  },
38283
38436
  /**
@@ -38307,7 +38460,7 @@ export const EventsApiFactory = function (configuration?: Configuration, basePat
38307
38460
  * @param {*} [options] Override http request option.
38308
38461
  * @throws {RequiredError}
38309
38462
  */
38310
- disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
38463
+ disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38311
38464
  return localVarFp.disableEventBuildMode(requestParameters.eventId, options).then((request) => request(axios, basePath));
38312
38465
  },
38313
38466
  /**
@@ -38317,7 +38470,7 @@ export const EventsApiFactory = function (configuration?: Configuration, basePat
38317
38470
  * @param {*} [options] Override http request option.
38318
38471
  * @throws {RequiredError}
38319
38472
  */
38320
- enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
38473
+ enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38321
38474
  return localVarFp.enableEventBuildMode(requestParameters.eventId, options).then((request) => request(axios, basePath));
38322
38475
  },
38323
38476
  /**
@@ -38921,7 +39074,7 @@ export const EventsAccessApiFp = function(configuration?: Configuration) {
38921
39074
  * @param {*} [options] Override http request option.
38922
39075
  * @throws {RequiredError}
38923
39076
  */
38924
- async addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
39077
+ async addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38925
39078
  const localVarAxiosArgs = await localVarAxiosParamCreator.addEventAccessUser(eventId, email, options);
38926
39079
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38927
39080
  const localVarOperationServerBasePath = operationServerMap['EventsAccessApi.addEventAccessUser']?.[localVarOperationServerIndex]?.url;
@@ -38952,7 +39105,7 @@ export const EventsAccessApiFp = function(configuration?: Configuration) {
38952
39105
  * @param {*} [options] Override http request option.
38953
39106
  * @throws {RequiredError}
38954
39107
  */
38955
- async removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
39108
+ async removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
38956
39109
  const localVarAxiosArgs = await localVarAxiosParamCreator.removeEventAccessUser(eventId, userId, options);
38957
39110
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
38958
39111
  const localVarOperationServerBasePath = operationServerMap['EventsAccessApi.removeEventAccessUser']?.[localVarOperationServerIndex]?.url;
@@ -38974,7 +39127,7 @@ export const EventsAccessApiFactory = function (configuration?: Configuration, b
38974
39127
  * @param {*} [options] Override http request option.
38975
39128
  * @throws {RequiredError}
38976
39129
  */
38977
- addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
39130
+ addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38978
39131
  return localVarFp.addEventAccessUser(requestParameters.eventId, requestParameters.email, options).then((request) => request(axios, basePath));
38979
39132
  },
38980
39133
  /**
@@ -38994,7 +39147,7 @@ export const EventsAccessApiFactory = function (configuration?: Configuration, b
38994
39147
  * @param {*} [options] Override http request option.
38995
39148
  * @throws {RequiredError}
38996
39149
  */
38997
- removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
39150
+ removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
38998
39151
  return localVarFp.removeEventAccessUser(requestParameters.eventId, requestParameters.userId, options).then((request) => request(axios, basePath));
38999
39152
  },
39000
39153
  };
@@ -40818,7 +40971,7 @@ export const EventsActivationsTranslationsApiFp = function(configuration?: Confi
40818
40971
  * @param {*} [options] Override http request option.
40819
40972
  * @throws {RequiredError}
40820
40973
  */
40821
- async deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
40974
+ async deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
40822
40975
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventActivationTranslation(eventId, activationId, locale, options);
40823
40976
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
40824
40977
  const localVarOperationServerBasePath = operationServerMap['EventsActivationsTranslationsApi.deleteEventActivationTranslation']?.[localVarOperationServerIndex]?.url;
@@ -40889,7 +41042,7 @@ export const EventsActivationsTranslationsApiFactory = function (configuration?:
40889
41042
  * @param {*} [options] Override http request option.
40890
41043
  * @throws {RequiredError}
40891
41044
  */
40892
- deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
41045
+ deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
40893
41046
  return localVarFp.deleteEventActivationTranslation(requestParameters.eventId, requestParameters.activationId, requestParameters.locale, options).then((request) => request(axios, basePath));
40894
41047
  },
40895
41048
  /**
@@ -42728,7 +42881,7 @@ export const EventsAddonsTranslationsApiFp = function(configuration?: Configurat
42728
42881
  * @param {*} [options] Override http request option.
42729
42882
  * @throws {RequiredError}
42730
42883
  */
42731
- async deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
42884
+ async deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
42732
42885
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventAddOnTranslation(eventId, addOnId, locale, options);
42733
42886
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
42734
42887
  const localVarOperationServerBasePath = operationServerMap['EventsAddonsTranslationsApi.deleteEventAddOnTranslation']?.[localVarOperationServerIndex]?.url;
@@ -42799,7 +42952,7 @@ export const EventsAddonsTranslationsApiFactory = function (configuration?: Conf
42799
42952
  * @param {*} [options] Override http request option.
42800
42953
  * @throws {RequiredError}
42801
42954
  */
42802
- deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
42955
+ deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
42803
42956
  return localVarFp.deleteEventAddOnTranslation(requestParameters.eventId, requestParameters.addOnId, requestParameters.locale, options).then((request) => request(axios, basePath));
42804
42957
  },
42805
42958
  /**
@@ -43565,6 +43718,46 @@ export const EventsAttendeesApiAxiosParamCreator = function (configuration?: Con
43565
43718
  options: localVarRequestOptions,
43566
43719
  };
43567
43720
  },
43721
+ /**
43722
+ * Sync Event Attendees endpoint
43723
+ * @summary Sync Event Attendees
43724
+ * @param {string} eventId The event identifier
43725
+ * @param {*} [options] Override http request option.
43726
+ * @throws {RequiredError}
43727
+ */
43728
+ syncEventAttendees: async (eventId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
43729
+ // verify required parameter 'eventId' is not null or undefined
43730
+ assertParamExists('syncEventAttendees', 'eventId', eventId)
43731
+ const localVarPath = `/events/{eventId}/attendees/sync`
43732
+ .replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
43733
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
43734
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
43735
+ let baseOptions;
43736
+ if (configuration) {
43737
+ baseOptions = configuration.baseOptions;
43738
+ }
43739
+
43740
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
43741
+ const localVarHeaderParameter = {} as any;
43742
+ const localVarQueryParameter = {} as any;
43743
+
43744
+ // authentication ApiKeyAuth required
43745
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
43746
+
43747
+ // authentication OrganizationId required
43748
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
43749
+
43750
+ localVarHeaderParameter['Accept'] = 'application/json';
43751
+
43752
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
43753
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
43754
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
43755
+
43756
+ return {
43757
+ url: toPathString(localVarUrlObj),
43758
+ options: localVarRequestOptions,
43759
+ };
43760
+ },
43568
43761
  /**
43569
43762
  * Update Event Attendee endpoint
43570
43763
  * @summary Update Event Attendee
@@ -43790,6 +43983,19 @@ export const EventsAttendeesApiFp = function(configuration?: Configuration) {
43790
43983
  const localVarOperationServerBasePath = operationServerMap['EventsAttendeesApi.resendRegistrationConfirmationEmail']?.[localVarOperationServerIndex]?.url;
43791
43984
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
43792
43985
  },
43986
+ /**
43987
+ * Sync Event Attendees endpoint
43988
+ * @summary Sync Event Attendees
43989
+ * @param {string} eventId The event identifier
43990
+ * @param {*} [options] Override http request option.
43991
+ * @throws {RequiredError}
43992
+ */
43993
+ async syncEventAttendees(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
43994
+ const localVarAxiosArgs = await localVarAxiosParamCreator.syncEventAttendees(eventId, options);
43995
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
43996
+ const localVarOperationServerBasePath = operationServerMap['EventsAttendeesApi.syncEventAttendees']?.[localVarOperationServerIndex]?.url;
43997
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
43998
+ },
43793
43999
  /**
43794
44000
  * Update Event Attendee endpoint
43795
44001
  * @summary Update Event Attendee
@@ -43914,6 +44120,16 @@ export const EventsAttendeesApiFactory = function (configuration?: Configuration
43914
44120
  resendRegistrationConfirmationEmail(requestParameters: EventsAttendeesApiResendRegistrationConfirmationEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response> {
43915
44121
  return localVarFp.resendRegistrationConfirmationEmail(requestParameters.eventId, requestParameters.accountId, options).then((request) => request(axios, basePath));
43916
44122
  },
44123
+ /**
44124
+ * Sync Event Attendees endpoint
44125
+ * @summary Sync Event Attendees
44126
+ * @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
44127
+ * @param {*} [options] Override http request option.
44128
+ * @throws {RequiredError}
44129
+ */
44130
+ syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
44131
+ return localVarFp.syncEventAttendees(requestParameters.eventId, options).then((request) => request(axios, basePath));
44132
+ },
43917
44133
  /**
43918
44134
  * Update Event Attendee endpoint
43919
44135
  * @summary Update Event Attendee
@@ -44209,6 +44425,16 @@ export interface EventsAttendeesApiResendRegistrationConfirmationEmailRequest {
44209
44425
  readonly accountId: string
44210
44426
  }
44211
44427
 
44428
+ /**
44429
+ * Request parameters for syncEventAttendees operation in EventsAttendeesApi.
44430
+ */
44431
+ export interface EventsAttendeesApiSyncEventAttendeesRequest {
44432
+ /**
44433
+ * The event identifier
44434
+ */
44435
+ readonly eventId: string
44436
+ }
44437
+
44212
44438
  /**
44213
44439
  * Request parameters for updateEventAttendee operation in EventsAttendeesApi.
44214
44440
  */
@@ -44340,6 +44566,17 @@ export class EventsAttendeesApi extends BaseAPI {
44340
44566
  return EventsAttendeesApiFp(this.configuration).resendRegistrationConfirmationEmail(requestParameters.eventId, requestParameters.accountId, options).then((request) => request(this.axios, this.basePath));
44341
44567
  }
44342
44568
 
44569
+ /**
44570
+ * Sync Event Attendees endpoint
44571
+ * @summary Sync Event Attendees
44572
+ * @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
44573
+ * @param {*} [options] Override http request option.
44574
+ * @throws {RequiredError}
44575
+ */
44576
+ public syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig) {
44577
+ return EventsAttendeesApiFp(this.configuration).syncEventAttendees(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
44578
+ }
44579
+
44343
44580
  /**
44344
44581
  * Update Event Attendee endpoint
44345
44582
  * @summary Update Event Attendee
@@ -44667,7 +44904,7 @@ export const EventsAttendeesPackagesApiFp = function(configuration?: Configurati
44667
44904
  * @param {*} [options] Override http request option.
44668
44905
  * @throws {RequiredError}
44669
44906
  */
44670
- async deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
44907
+ async deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
44671
44908
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventAttendeePackage(eventId, accountId, packageId, options);
44672
44909
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
44673
44910
  const localVarOperationServerBasePath = operationServerMap['EventsAttendeesPackagesApi.deleteEventAttendeePackage']?.[localVarOperationServerIndex]?.url;
@@ -44749,7 +44986,7 @@ export const EventsAttendeesPackagesApiFactory = function (configuration?: Confi
44749
44986
  * @param {*} [options] Override http request option.
44750
44987
  * @throws {RequiredError}
44751
44988
  */
44752
- deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
44989
+ deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
44753
44990
  return localVarFp.deleteEventAttendeePackage(requestParameters.eventId, requestParameters.accountId, requestParameters.packageId, options).then((request) => request(axios, basePath));
44754
44991
  },
44755
44992
  /**
@@ -50350,7 +50587,7 @@ export const EventsEmailsTranslationsApiFp = function(configuration?: Configurat
50350
50587
  * @param {*} [options] Override http request option.
50351
50588
  * @throws {RequiredError}
50352
50589
  */
50353
- async deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
50590
+ async deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
50354
50591
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventEmailTranslation(eventId, type, locale, options);
50355
50592
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
50356
50593
  const localVarOperationServerBasePath = operationServerMap['EventsEmailsTranslationsApi.deleteEventEmailTranslation']?.[localVarOperationServerIndex]?.url;
@@ -50399,7 +50636,7 @@ export const EventsEmailsTranslationsApiFp = function(configuration?: Configurat
50399
50636
  * @param {*} [options] Override http request option.
50400
50637
  * @throws {RequiredError}
50401
50638
  */
50402
- async updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
50639
+ async updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
50403
50640
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventEmailTranslation(eventId, type, locale, eventEmailTranslationUpdateInputs, options);
50404
50641
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
50405
50642
  const localVarOperationServerBasePath = operationServerMap['EventsEmailsTranslationsApi.updateEventEmailTranslation']?.[localVarOperationServerIndex]?.url;
@@ -50421,7 +50658,7 @@ export const EventsEmailsTranslationsApiFactory = function (configuration?: Conf
50421
50658
  * @param {*} [options] Override http request option.
50422
50659
  * @throws {RequiredError}
50423
50660
  */
50424
- deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
50661
+ deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
50425
50662
  return localVarFp.deleteEventEmailTranslation(requestParameters.eventId, requestParameters.type, requestParameters.locale, options).then((request) => request(axios, basePath));
50426
50663
  },
50427
50664
  /**
@@ -50451,7 +50688,7 @@ export const EventsEmailsTranslationsApiFactory = function (configuration?: Conf
50451
50688
  * @param {*} [options] Override http request option.
50452
50689
  * @throws {RequiredError}
50453
50690
  */
50454
- updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
50691
+ updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
50455
50692
  return localVarFp.updateEventEmailTranslation(requestParameters.eventId, requestParameters.type, requestParameters.locale, requestParameters.eventEmailTranslationUpdateInputs, options).then((request) => request(axios, basePath));
50456
50693
  },
50457
50694
  };
@@ -52295,7 +52532,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52295
52532
  * @param {*} [options] Override http request option.
52296
52533
  * @throws {RequiredError}
52297
52534
  */
52298
- async deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52535
+ async deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52299
52536
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventFaqSectionQuestionTranslation(eventId, sectionId, questionId, locale, options);
52300
52537
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52301
52538
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.deleteEventFaqSectionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52310,7 +52547,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52310
52547
  * @param {*} [options] Override http request option.
52311
52548
  * @throws {RequiredError}
52312
52549
  */
52313
- async deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52550
+ async deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52314
52551
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventFaqSectionTranslation(eventId, sectionId, locale, options);
52315
52552
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52316
52553
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.deleteEventFaqSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52395,7 +52632,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52395
52632
  * @param {*} [options] Override http request option.
52396
52633
  * @throws {RequiredError}
52397
52634
  */
52398
- async updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52635
+ async updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52399
52636
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventFaqSectionQuestionTranslation(eventId, sectionId, questionId, locale, eventFaqSectionQuestionTranslationUpdateInputs, options);
52400
52637
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52401
52638
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.updateEventFaqSectionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52411,7 +52648,7 @@ export const EventsFaqsTranslationsApiFp = function(configuration?: Configuratio
52411
52648
  * @param {*} [options] Override http request option.
52412
52649
  * @throws {RequiredError}
52413
52650
  */
52414
- async updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
52651
+ async updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
52415
52652
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventFaqSectionTranslation(eventId, sectionId, locale, eventFaqSectionTranslationUpdateInputs, options);
52416
52653
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52417
52654
  const localVarOperationServerBasePath = operationServerMap['EventsFaqsTranslationsApi.updateEventFaqSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -52433,7 +52670,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52433
52670
  * @param {*} [options] Override http request option.
52434
52671
  * @throws {RequiredError}
52435
52672
  */
52436
- deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52673
+ deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52437
52674
  return localVarFp.deleteEventFaqSectionQuestionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
52438
52675
  },
52439
52676
  /**
@@ -52443,7 +52680,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52443
52680
  * @param {*} [options] Override http request option.
52444
52681
  * @throws {RequiredError}
52445
52682
  */
52446
- deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52683
+ deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52447
52684
  return localVarFp.deleteEventFaqSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
52448
52685
  },
52449
52686
  /**
@@ -52493,7 +52730,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52493
52730
  * @param {*} [options] Override http request option.
52494
52731
  * @throws {RequiredError}
52495
52732
  */
52496
- updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52733
+ updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52497
52734
  return localVarFp.updateEventFaqSectionQuestionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.questionId, requestParameters.locale, requestParameters.eventFaqSectionQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
52498
52735
  },
52499
52736
  /**
@@ -52503,7 +52740,7 @@ export const EventsFaqsTranslationsApiFactory = function (configuration?: Config
52503
52740
  * @param {*} [options] Override http request option.
52504
52741
  * @throws {RequiredError}
52505
52742
  */
52506
- updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
52743
+ updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
52507
52744
  return localVarFp.updateEventFaqSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, requestParameters.eventFaqSectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
52508
52745
  },
52509
52746
  };
@@ -55251,7 +55488,7 @@ export const EventsFollowupsTranslationsApiFp = function(configuration?: Configu
55251
55488
  * @param {*} [options] Override http request option.
55252
55489
  * @throws {RequiredError}
55253
55490
  */
55254
- async deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
55491
+ async deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
55255
55492
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventFollowupTranslation(eventId, followupId, locale, options);
55256
55493
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
55257
55494
  const localVarOperationServerBasePath = operationServerMap['EventsFollowupsTranslationsApi.deleteEventFollowupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -55300,7 +55537,7 @@ export const EventsFollowupsTranslationsApiFp = function(configuration?: Configu
55300
55537
  * @param {*} [options] Override http request option.
55301
55538
  * @throws {RequiredError}
55302
55539
  */
55303
- async updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
55540
+ async updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
55304
55541
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventFollowupTranslation(eventId, followupId, locale, eventFollowupTranslationUpdateInputs, options);
55305
55542
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
55306
55543
  const localVarOperationServerBasePath = operationServerMap['EventsFollowupsTranslationsApi.updateEventFollowupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -55322,7 +55559,7 @@ export const EventsFollowupsTranslationsApiFactory = function (configuration?: C
55322
55559
  * @param {*} [options] Override http request option.
55323
55560
  * @throws {RequiredError}
55324
55561
  */
55325
- deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
55562
+ deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
55326
55563
  return localVarFp.deleteEventFollowupTranslation(requestParameters.eventId, requestParameters.followupId, requestParameters.locale, options).then((request) => request(axios, basePath));
55327
55564
  },
55328
55565
  /**
@@ -55352,7 +55589,7 @@ export const EventsFollowupsTranslationsApiFactory = function (configuration?: C
55352
55589
  * @param {*} [options] Override http request option.
55353
55590
  * @throws {RequiredError}
55354
55591
  */
55355
- updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
55592
+ updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
55356
55593
  return localVarFp.updateEventFollowupTranslation(requestParameters.eventId, requestParameters.followupId, requestParameters.locale, requestParameters.eventFollowupTranslationUpdateInputs, options).then((request) => request(axios, basePath));
55357
55594
  },
55358
55595
  };
@@ -58556,7 +58793,7 @@ export const EventsMediaTranslationsApiFp = function(configuration?: Configurati
58556
58793
  * @param {*} [options] Override http request option.
58557
58794
  * @throws {RequiredError}
58558
58795
  */
58559
- async deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
58796
+ async deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
58560
58797
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventMediaItemTranslation(eventId, mediaItemId, locale, options);
58561
58798
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
58562
58799
  const localVarOperationServerBasePath = operationServerMap['EventsMediaTranslationsApi.deleteEventMediaItemTranslation']?.[localVarOperationServerIndex]?.url;
@@ -58627,7 +58864,7 @@ export const EventsMediaTranslationsApiFactory = function (configuration?: Confi
58627
58864
  * @param {*} [options] Override http request option.
58628
58865
  * @throws {RequiredError}
58629
58866
  */
58630
- deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
58867
+ deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
58631
58868
  return localVarFp.deleteEventMediaItemTranslation(requestParameters.eventId, requestParameters.mediaItemId, requestParameters.locale, options).then((request) => request(axios, basePath));
58632
58869
  },
58633
58870
  /**
@@ -61884,7 +62121,7 @@ export const EventsPagesTranslationsApiFp = function(configuration?: Configurati
61884
62121
  * @param {*} [options] Override http request option.
61885
62122
  * @throws {RequiredError}
61886
62123
  */
61887
- async deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
62124
+ async deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
61888
62125
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPageTranslation(eventId, pageId, locale, options);
61889
62126
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
61890
62127
  const localVarOperationServerBasePath = operationServerMap['EventsPagesTranslationsApi.deleteEventPageTranslation']?.[localVarOperationServerIndex]?.url;
@@ -61933,7 +62170,7 @@ export const EventsPagesTranslationsApiFp = function(configuration?: Configurati
61933
62170
  * @param {*} [options] Override http request option.
61934
62171
  * @throws {RequiredError}
61935
62172
  */
61936
- async updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
62173
+ async updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
61937
62174
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPageTranslation(eventId, pageId, locale, eventPageTranslationUpdateInputs, options);
61938
62175
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
61939
62176
  const localVarOperationServerBasePath = operationServerMap['EventsPagesTranslationsApi.updateEventPageTranslation']?.[localVarOperationServerIndex]?.url;
@@ -61955,7 +62192,7 @@ export const EventsPagesTranslationsApiFactory = function (configuration?: Confi
61955
62192
  * @param {*} [options] Override http request option.
61956
62193
  * @throws {RequiredError}
61957
62194
  */
61958
- deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
62195
+ deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
61959
62196
  return localVarFp.deleteEventPageTranslation(requestParameters.eventId, requestParameters.pageId, requestParameters.locale, options).then((request) => request(axios, basePath));
61960
62197
  },
61961
62198
  /**
@@ -61985,7 +62222,7 @@ export const EventsPagesTranslationsApiFactory = function (configuration?: Confi
61985
62222
  * @param {*} [options] Override http request option.
61986
62223
  * @throws {RequiredError}
61987
62224
  */
61988
- updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
62225
+ updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
61989
62226
  return localVarFp.updateEventPageTranslation(requestParameters.eventId, requestParameters.pageId, requestParameters.locale, requestParameters.eventPageTranslationUpdateInputs, options).then((request) => request(axios, basePath));
61990
62227
  },
61991
62228
  };
@@ -68964,7 +69201,7 @@ export const EventsPasstypesPriceschedulesApiFp = function(configuration?: Confi
68964
69201
  * @param {*} [options] Override http request option.
68965
69202
  * @throws {RequiredError}
68966
69203
  */
68967
- async deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69204
+ async deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
68968
69205
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPassTypePriceSchedule(eventId, passTypeId, scheduleId, options);
68969
69206
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
68970
69207
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesPriceschedulesApi.deleteEventPassTypePriceSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69013,7 +69250,7 @@ export const EventsPasstypesPriceschedulesApiFp = function(configuration?: Confi
69013
69250
  * @param {*} [options] Override http request option.
69014
69251
  * @throws {RequiredError}
69015
69252
  */
69016
- async updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69253
+ async updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
69017
69254
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPassTypePriceSchedule(eventId, passTypeId, scheduleId, passTypePriceScheduleUpdateInputs, options);
69018
69255
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69019
69256
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesPriceschedulesApi.updateEventPassTypePriceSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69045,7 +69282,7 @@ export const EventsPasstypesPriceschedulesApiFactory = function (configuration?:
69045
69282
  * @param {*} [options] Override http request option.
69046
69283
  * @throws {RequiredError}
69047
69284
  */
69048
- deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
69285
+ deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69049
69286
  return localVarFp.deleteEventPassTypePriceSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, options).then((request) => request(axios, basePath));
69050
69287
  },
69051
69288
  /**
@@ -69075,7 +69312,7 @@ export const EventsPasstypesPriceschedulesApiFactory = function (configuration?:
69075
69312
  * @param {*} [options] Override http request option.
69076
69313
  * @throws {RequiredError}
69077
69314
  */
69078
- updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
69315
+ updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69079
69316
  return localVarFp.updateEventPassTypePriceSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, requestParameters.passTypePriceScheduleUpdateInputs, options).then((request) => request(axios, basePath));
69080
69317
  },
69081
69318
  };
@@ -69557,7 +69794,7 @@ export const EventsPasstypesRefundschedulesApiFp = function(configuration?: Conf
69557
69794
  * @param {*} [options] Override http request option.
69558
69795
  * @throws {RequiredError}
69559
69796
  */
69560
- async deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69797
+ async deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
69561
69798
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPassTypeRefundSchedule(eventId, passTypeId, scheduleId, options);
69562
69799
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69563
69800
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesRefundschedulesApi.deleteEventPassTypeRefundSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69606,7 +69843,7 @@ export const EventsPasstypesRefundschedulesApiFp = function(configuration?: Conf
69606
69843
  * @param {*} [options] Override http request option.
69607
69844
  * @throws {RequiredError}
69608
69845
  */
69609
- async updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
69846
+ async updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
69610
69847
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPassTypeRefundSchedule(eventId, passTypeId, scheduleId, passTypeRefundScheduleUpdateInputs, options);
69611
69848
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69612
69849
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesRefundschedulesApi.updateEventPassTypeRefundSchedule']?.[localVarOperationServerIndex]?.url;
@@ -69638,7 +69875,7 @@ export const EventsPasstypesRefundschedulesApiFactory = function (configuration?
69638
69875
  * @param {*} [options] Override http request option.
69639
69876
  * @throws {RequiredError}
69640
69877
  */
69641
- deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
69878
+ deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69642
69879
  return localVarFp.deleteEventPassTypeRefundSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, options).then((request) => request(axios, basePath));
69643
69880
  },
69644
69881
  /**
@@ -69668,7 +69905,7 @@ export const EventsPasstypesRefundschedulesApiFactory = function (configuration?
69668
69905
  * @param {*} [options] Override http request option.
69669
69906
  * @throws {RequiredError}
69670
69907
  */
69671
- updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
69908
+ updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
69672
69909
  return localVarFp.updateEventPassTypeRefundSchedule(requestParameters.eventId, requestParameters.passTypeId, requestParameters.scheduleId, requestParameters.passTypeRefundScheduleUpdateInputs, options).then((request) => request(axios, basePath));
69673
69910
  },
69674
69911
  };
@@ -70086,7 +70323,7 @@ export const EventsPasstypesTranslationsApiFp = function(configuration?: Configu
70086
70323
  * @param {*} [options] Override http request option.
70087
70324
  * @throws {RequiredError}
70088
70325
  */
70089
- async deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
70326
+ async deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
70090
70327
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventPassTypeTranslation(eventId, passTypeId, locale, options);
70091
70328
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
70092
70329
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesTranslationsApi.deleteEventPassTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -70135,7 +70372,7 @@ export const EventsPasstypesTranslationsApiFp = function(configuration?: Configu
70135
70372
  * @param {*} [options] Override http request option.
70136
70373
  * @throws {RequiredError}
70137
70374
  */
70138
- async updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
70375
+ async updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
70139
70376
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventPassTypeTranslation(eventId, passTypeId, locale, eventTranslationUpdateInputs, options);
70140
70377
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
70141
70378
  const localVarOperationServerBasePath = operationServerMap['EventsPasstypesTranslationsApi.updateEventPassTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -70157,7 +70394,7 @@ export const EventsPasstypesTranslationsApiFactory = function (configuration?: C
70157
70394
  * @param {*} [options] Override http request option.
70158
70395
  * @throws {RequiredError}
70159
70396
  */
70160
- deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
70397
+ deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
70161
70398
  return localVarFp.deleteEventPassTypeTranslation(requestParameters.eventId, requestParameters.passTypeId, requestParameters.locale, options).then((request) => request(axios, basePath));
70162
70399
  },
70163
70400
  /**
@@ -70187,7 +70424,7 @@ export const EventsPasstypesTranslationsApiFactory = function (configuration?: C
70187
70424
  * @param {*} [options] Override http request option.
70188
70425
  * @throws {RequiredError}
70189
70426
  */
70190
- updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
70427
+ updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
70191
70428
  return localVarFp.updateEventPassTypeTranslation(requestParameters.eventId, requestParameters.passTypeId, requestParameters.locale, requestParameters.eventTranslationUpdateInputs, options).then((request) => request(axios, basePath));
70192
70429
  },
70193
70430
  };
@@ -71837,7 +72074,7 @@ export const EventsQuestionsApiFp = function(configuration?: Configuration) {
71837
72074
  * @param {*} [options] Override http request option.
71838
72075
  * @throws {RequiredError}
71839
72076
  */
71840
- async updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
72077
+ async updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
71841
72078
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventQuestionChoice(eventId, questionId, choiceId, choice, options);
71842
72079
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
71843
72080
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsApi.updateEventQuestionChoice']?.[localVarOperationServerIndex]?.url;
@@ -72076,7 +72313,7 @@ export const EventsQuestionsApiFactory = function (configuration?: Configuration
72076
72313
  * @param {*} [options] Override http request option.
72077
72314
  * @throws {RequiredError}
72078
72315
  */
72079
- updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
72316
+ updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
72080
72317
  return localVarFp.updateEventQuestionChoice(requestParameters.eventId, requestParameters.questionId, requestParameters.choiceId, requestParameters.choice, options).then((request) => request(axios, basePath));
72081
72318
  },
72082
72319
  /**
@@ -73313,7 +73550,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73313
73550
  * @param {*} [options] Override http request option.
73314
73551
  * @throws {RequiredError}
73315
73552
  */
73316
- async deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73553
+ async deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73317
73554
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventQuestionChoiceTranslation(eventId, questionId, choiceId, locale, options);
73318
73555
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73319
73556
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.deleteEventQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73328,7 +73565,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73328
73565
  * @param {*} [options] Override http request option.
73329
73566
  * @throws {RequiredError}
73330
73567
  */
73331
- async deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73568
+ async deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73332
73569
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventQuestionTranslation(eventId, questionId, locale, options);
73333
73570
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73334
73571
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.deleteEventQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73413,7 +73650,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73413
73650
  * @param {*} [options] Override http request option.
73414
73651
  * @throws {RequiredError}
73415
73652
  */
73416
- async updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73653
+ async updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73417
73654
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventQuestionChoiceTranslation(eventId, questionId, choiceId, locale, eventQuestionChoiceTranslationUpdateInputs, options);
73418
73655
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73419
73656
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.updateEventQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73429,7 +73666,7 @@ export const EventsQuestionsTranslationsApiFp = function(configuration?: Configu
73429
73666
  * @param {*} [options] Override http request option.
73430
73667
  * @throws {RequiredError}
73431
73668
  */
73432
- async updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
73669
+ async updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
73433
73670
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventQuestionTranslation(eventId, questionId, locale, eventQuestionTranslationUpdateInputs, options);
73434
73671
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73435
73672
  const localVarOperationServerBasePath = operationServerMap['EventsQuestionsTranslationsApi.updateEventQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -73451,7 +73688,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73451
73688
  * @param {*} [options] Override http request option.
73452
73689
  * @throws {RequiredError}
73453
73690
  */
73454
- deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73691
+ deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73455
73692
  return localVarFp.deleteEventQuestionChoiceTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
73456
73693
  },
73457
73694
  /**
@@ -73461,7 +73698,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73461
73698
  * @param {*} [options] Override http request option.
73462
73699
  * @throws {RequiredError}
73463
73700
  */
73464
- deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73701
+ deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73465
73702
  return localVarFp.deleteEventQuestionTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
73466
73703
  },
73467
73704
  /**
@@ -73511,7 +73748,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73511
73748
  * @param {*} [options] Override http request option.
73512
73749
  * @throws {RequiredError}
73513
73750
  */
73514
- updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73751
+ updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73515
73752
  return localVarFp.updateEventQuestionChoiceTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, requestParameters.eventQuestionChoiceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
73516
73753
  },
73517
73754
  /**
@@ -73521,7 +73758,7 @@ export const EventsQuestionsTranslationsApiFactory = function (configuration?: C
73521
73758
  * @param {*} [options] Override http request option.
73522
73759
  * @throws {RequiredError}
73523
73760
  */
73524
- updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
73761
+ updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
73525
73762
  return localVarFp.updateEventQuestionTranslation(requestParameters.eventId, requestParameters.questionId, requestParameters.locale, requestParameters.eventQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
73526
73763
  },
73527
73764
  };
@@ -76507,7 +76744,7 @@ export const EventsRoomtypesTranslationsApiFp = function(configuration?: Configu
76507
76744
  * @param {*} [options] Override http request option.
76508
76745
  * @throws {RequiredError}
76509
76746
  */
76510
- async deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
76747
+ async deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
76511
76748
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventRoomTypeTranslation(eventId, roomTypeId, locale, options);
76512
76749
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
76513
76750
  const localVarOperationServerBasePath = operationServerMap['EventsRoomtypesTranslationsApi.deleteEventRoomTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -76556,7 +76793,7 @@ export const EventsRoomtypesTranslationsApiFp = function(configuration?: Configu
76556
76793
  * @param {*} [options] Override http request option.
76557
76794
  * @throws {RequiredError}
76558
76795
  */
76559
- async updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
76796
+ async updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
76560
76797
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventRoomTypeTranslation(eventId, roomTypeId, locale, eventRoomTypeTranslationUpdateInputs, options);
76561
76798
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
76562
76799
  const localVarOperationServerBasePath = operationServerMap['EventsRoomtypesTranslationsApi.updateEventRoomTypeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -76578,7 +76815,7 @@ export const EventsRoomtypesTranslationsApiFactory = function (configuration?: C
76578
76815
  * @param {*} [options] Override http request option.
76579
76816
  * @throws {RequiredError}
76580
76817
  */
76581
- deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
76818
+ deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
76582
76819
  return localVarFp.deleteEventRoomTypeTranslation(requestParameters.eventId, requestParameters.roomTypeId, requestParameters.locale, options).then((request) => request(axios, basePath));
76583
76820
  },
76584
76821
  /**
@@ -76608,7 +76845,7 @@ export const EventsRoomtypesTranslationsApiFactory = function (configuration?: C
76608
76845
  * @param {*} [options] Override http request option.
76609
76846
  * @throws {RequiredError}
76610
76847
  */
76611
- updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
76848
+ updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
76612
76849
  return localVarFp.updateEventRoomTypeTranslation(requestParameters.eventId, requestParameters.roomTypeId, requestParameters.locale, requestParameters.eventRoomTypeTranslationUpdateInputs, options).then((request) => request(axios, basePath));
76613
76850
  },
76614
76851
  };
@@ -79195,7 +79432,7 @@ export const EventsSectionsTranslationsApiFp = function(configuration?: Configur
79195
79432
  * @param {*} [options] Override http request option.
79196
79433
  * @throws {RequiredError}
79197
79434
  */
79198
- async deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
79435
+ async deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
79199
79436
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSectionTranslation(eventId, sectionId, locale, options);
79200
79437
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
79201
79438
  const localVarOperationServerBasePath = operationServerMap['EventsSectionsTranslationsApi.deleteEventSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -79244,7 +79481,7 @@ export const EventsSectionsTranslationsApiFp = function(configuration?: Configur
79244
79481
  * @param {*} [options] Override http request option.
79245
79482
  * @throws {RequiredError}
79246
79483
  */
79247
- async updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
79484
+ async updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
79248
79485
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSectionTranslation(eventId, sectionId, locale, eventSectionTranslationUpdateInputs, options);
79249
79486
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
79250
79487
  const localVarOperationServerBasePath = operationServerMap['EventsSectionsTranslationsApi.updateEventSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -79266,7 +79503,7 @@ export const EventsSectionsTranslationsApiFactory = function (configuration?: Co
79266
79503
  * @param {*} [options] Override http request option.
79267
79504
  * @throws {RequiredError}
79268
79505
  */
79269
- deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
79506
+ deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
79270
79507
  return localVarFp.deleteEventSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
79271
79508
  },
79272
79509
  /**
@@ -79296,7 +79533,7 @@ export const EventsSectionsTranslationsApiFactory = function (configuration?: Co
79296
79533
  * @param {*} [options] Override http request option.
79297
79534
  * @throws {RequiredError}
79298
79535
  */
79299
- updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
79536
+ updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
79300
79537
  return localVarFp.updateEventSectionTranslation(requestParameters.eventId, requestParameters.sectionId, requestParameters.locale, requestParameters.eventSectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
79301
79538
  },
79302
79539
  };
@@ -81476,7 +81713,7 @@ export const EventsSessionsApiFp = function(configuration?: Configuration) {
81476
81713
  * @param {*} [options] Override http request option.
81477
81714
  * @throws {RequiredError}
81478
81715
  */
81479
- async cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
81716
+ async cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
81480
81717
  const localVarAxiosArgs = await localVarAxiosParamCreator.cloneEventSession(eventId, sessionId, eventSessionCloneOptions, options);
81481
81718
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
81482
81719
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsApi.cloneEventSession']?.[localVarOperationServerIndex]?.url;
@@ -81996,7 +82233,7 @@ export const EventsSessionsApiFactory = function (configuration?: Configuration,
81996
82233
  * @param {*} [options] Override http request option.
81997
82234
  * @throws {RequiredError}
81998
82235
  */
81999
- cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
82236
+ cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
82000
82237
  return localVarFp.cloneEventSession(requestParameters.eventId, requestParameters.sessionId, requestParameters.eventSessionCloneOptions, options).then((request) => request(axios, basePath));
82001
82238
  },
82002
82239
  /**
@@ -85078,7 +85315,7 @@ export const EventsSessionsLocationsTranslationsApiFp = function(configuration?:
85078
85315
  * @param {*} [options] Override http request option.
85079
85316
  * @throws {RequiredError}
85080
85317
  */
85081
- async deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
85318
+ async deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
85082
85319
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionLocationTranslation(eventId, locationId, locale, options);
85083
85320
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
85084
85321
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsLocationsTranslationsApi.deleteEventSessionLocationTranslation']?.[localVarOperationServerIndex]?.url;
@@ -85127,7 +85364,7 @@ export const EventsSessionsLocationsTranslationsApiFp = function(configuration?:
85127
85364
  * @param {*} [options] Override http request option.
85128
85365
  * @throws {RequiredError}
85129
85366
  */
85130
- async updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
85367
+ async updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
85131
85368
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionLocationTranslation(eventId, locationId, locale, eventSessionLocationTranslationUpdateInputs, options);
85132
85369
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
85133
85370
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsLocationsTranslationsApi.updateEventSessionLocationTranslation']?.[localVarOperationServerIndex]?.url;
@@ -85149,7 +85386,7 @@ export const EventsSessionsLocationsTranslationsApiFactory = function (configura
85149
85386
  * @param {*} [options] Override http request option.
85150
85387
  * @throws {RequiredError}
85151
85388
  */
85152
- deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
85389
+ deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
85153
85390
  return localVarFp.deleteEventSessionLocationTranslation(requestParameters.eventId, requestParameters.locationId, requestParameters.locale, options).then((request) => request(axios, basePath));
85154
85391
  },
85155
85392
  /**
@@ -85179,7 +85416,7 @@ export const EventsSessionsLocationsTranslationsApiFactory = function (configura
85179
85416
  * @param {*} [options] Override http request option.
85180
85417
  * @throws {RequiredError}
85181
85418
  */
85182
- updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
85419
+ updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
85183
85420
  return localVarFp.updateEventSessionLocationTranslation(requestParameters.eventId, requestParameters.locationId, requestParameters.locale, requestParameters.eventSessionLocationTranslationUpdateInputs, options).then((request) => request(axios, basePath));
85184
85421
  },
85185
85422
  };
@@ -89097,7 +89334,7 @@ export const EventsSessionsQuestionsApiFp = function(configuration?: Configurati
89097
89334
  * @param {*} [options] Override http request option.
89098
89335
  * @throws {RequiredError}
89099
89336
  */
89100
- async updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
89337
+ async updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
89101
89338
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionQuestionChoice(eventId, sessionId, questionId, choiceId, choice, options);
89102
89339
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
89103
89340
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsApi.updateEventSessionQuestionChoice']?.[localVarOperationServerIndex]?.url;
@@ -89307,7 +89544,7 @@ export const EventsSessionsQuestionsApiFactory = function (configuration?: Confi
89307
89544
  * @param {*} [options] Override http request option.
89308
89545
  * @throws {RequiredError}
89309
89546
  */
89310
- updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
89547
+ updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
89311
89548
  return localVarFp.updateEventSessionQuestionChoice(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.choiceId, requestParameters.choice, options).then((request) => request(axios, basePath));
89312
89549
  },
89313
89550
  /**
@@ -90579,7 +90816,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90579
90816
  * @param {*} [options] Override http request option.
90580
90817
  * @throws {RequiredError}
90581
90818
  */
90582
- async deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
90819
+ async deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90583
90820
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionQuestionChoiceTranslation(eventId, sessionId, questionId, choiceId, locale, options);
90584
90821
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90585
90822
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.deleteEventSessionQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90595,7 +90832,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90595
90832
  * @param {*} [options] Override http request option.
90596
90833
  * @throws {RequiredError}
90597
90834
  */
90598
- async deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
90835
+ async deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90599
90836
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionQuestionTranslation(eventId, sessionId, questionId, locale, options);
90600
90837
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90601
90838
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.deleteEventSessionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90685,7 +90922,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90685
90922
  * @param {*} [options] Override http request option.
90686
90923
  * @throws {RequiredError}
90687
90924
  */
90688
- async updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
90925
+ async updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90689
90926
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionQuestionChoiceTranslation(eventId, sessionId, questionId, choiceId, locale, eventSessionQuestionChoiceTranslationUpdateInputs, options);
90690
90927
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90691
90928
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.updateEventSessionQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90702,7 +90939,7 @@ export const EventsSessionsQuestionsTranslationsApiFp = function(configuration?:
90702
90939
  * @param {*} [options] Override http request option.
90703
90940
  * @throws {RequiredError}
90704
90941
  */
90705
- async updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
90942
+ async updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
90706
90943
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionQuestionTranslation(eventId, sessionId, questionId, locale, eventSessionQuestionTranslationUpdateInputs, options);
90707
90944
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90708
90945
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsQuestionsTranslationsApi.updateEventSessionQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -90724,7 +90961,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90724
90961
  * @param {*} [options] Override http request option.
90725
90962
  * @throws {RequiredError}
90726
90963
  */
90727
- deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
90964
+ deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90728
90965
  return localVarFp.deleteEventSessionQuestionChoiceTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
90729
90966
  },
90730
90967
  /**
@@ -90734,7 +90971,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90734
90971
  * @param {*} [options] Override http request option.
90735
90972
  * @throws {RequiredError}
90736
90973
  */
90737
- deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
90974
+ deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90738
90975
  return localVarFp.deleteEventSessionQuestionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
90739
90976
  },
90740
90977
  /**
@@ -90784,7 +91021,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90784
91021
  * @param {*} [options] Override http request option.
90785
91022
  * @throws {RequiredError}
90786
91023
  */
90787
- updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
91024
+ updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90788
91025
  return localVarFp.updateEventSessionQuestionChoiceTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, requestParameters.eventSessionQuestionChoiceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
90789
91026
  },
90790
91027
  /**
@@ -90794,7 +91031,7 @@ export const EventsSessionsQuestionsTranslationsApiFactory = function (configura
90794
91031
  * @param {*} [options] Override http request option.
90795
91032
  * @throws {RequiredError}
90796
91033
  */
90797
- updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
91034
+ updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
90798
91035
  return localVarFp.updateEventSessionQuestionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.questionId, requestParameters.locale, requestParameters.eventSessionQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
90799
91036
  },
90800
91037
  };
@@ -92622,7 +92859,7 @@ export const EventsSessionsSectionsTranslationsApiFp = function(configuration?:
92622
92859
  * @param {*} [options] Override http request option.
92623
92860
  * @throws {RequiredError}
92624
92861
  */
92625
- async deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
92862
+ async deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
92626
92863
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionSectionTranslation(eventId, sessionId, sectionId, locale, options);
92627
92864
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
92628
92865
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsSectionsTranslationsApi.deleteEventSessionSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -92674,7 +92911,7 @@ export const EventsSessionsSectionsTranslationsApiFp = function(configuration?:
92674
92911
  * @param {*} [options] Override http request option.
92675
92912
  * @throws {RequiredError}
92676
92913
  */
92677
- async updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
92914
+ async updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
92678
92915
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionSectionTranslation(eventId, sessionId, sectionId, locale, eventSessionSectionTranslationUpdateInputs, options);
92679
92916
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
92680
92917
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsSectionsTranslationsApi.updateEventSessionSectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -92696,7 +92933,7 @@ export const EventsSessionsSectionsTranslationsApiFactory = function (configurat
92696
92933
  * @param {*} [options] Override http request option.
92697
92934
  * @throws {RequiredError}
92698
92935
  */
92699
- deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
92936
+ deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
92700
92937
  return localVarFp.deleteEventSessionSectionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
92701
92938
  },
92702
92939
  /**
@@ -92726,7 +92963,7 @@ export const EventsSessionsSectionsTranslationsApiFactory = function (configurat
92726
92963
  * @param {*} [options] Override http request option.
92727
92964
  * @throws {RequiredError}
92728
92965
  */
92729
- updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
92966
+ updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
92730
92967
  return localVarFp.updateEventSessionSectionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.sectionId, requestParameters.locale, requestParameters.eventSessionSectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
92731
92968
  },
92732
92969
  };
@@ -93388,7 +93625,7 @@ export const EventsSessionsTimesApiFp = function(configuration?: Configuration)
93388
93625
  * @param {*} [options] Override http request option.
93389
93626
  * @throws {RequiredError}
93390
93627
  */
93391
- async deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
93628
+ async deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
93392
93629
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionTime(eventId, sessionId, timeId, options);
93393
93630
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
93394
93631
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTimesApi.deleteEventSessionTime']?.[localVarOperationServerIndex]?.url;
@@ -93514,7 +93751,7 @@ export const EventsSessionsTimesApiFactory = function (configuration?: Configura
93514
93751
  * @param {*} [options] Override http request option.
93515
93752
  * @throws {RequiredError}
93516
93753
  */
93517
- deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
93754
+ deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
93518
93755
  return localVarFp.deleteEventSessionTime(requestParameters.eventId, requestParameters.sessionId, requestParameters.timeId, options).then((request) => request(axios, basePath));
93519
93756
  },
93520
93757
  /**
@@ -94122,7 +94359,7 @@ export const EventsSessionsTimesTranslationsApiFp = function(configuration?: Con
94122
94359
  * @param {*} [options] Override http request option.
94123
94360
  * @throws {RequiredError}
94124
94361
  */
94125
- async deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
94362
+ async deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94126
94363
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionTimeTranslation(eventId, sessionId, timeId, locale, options);
94127
94364
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94128
94365
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTimesTranslationsApi.deleteEventSessionTimeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94174,7 +94411,7 @@ export const EventsSessionsTimesTranslationsApiFp = function(configuration?: Con
94174
94411
  * @param {*} [options] Override http request option.
94175
94412
  * @throws {RequiredError}
94176
94413
  */
94177
- async updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
94414
+ async updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94178
94415
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionTimeTranslation(eventId, sessionId, timeId, locale, eventSessionTimeTranslationUpdateInputs, options);
94179
94416
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94180
94417
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTimesTranslationsApi.updateEventSessionTimeTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94196,7 +94433,7 @@ export const EventsSessionsTimesTranslationsApiFactory = function (configuration
94196
94433
  * @param {*} [options] Override http request option.
94197
94434
  * @throws {RequiredError}
94198
94435
  */
94199
- deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
94436
+ deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94200
94437
  return localVarFp.deleteEventSessionTimeTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.timeId, requestParameters.locale, options).then((request) => request(axios, basePath));
94201
94438
  },
94202
94439
  /**
@@ -94226,7 +94463,7 @@ export const EventsSessionsTimesTranslationsApiFactory = function (configuration
94226
94463
  * @param {*} [options] Override http request option.
94227
94464
  * @throws {RequiredError}
94228
94465
  */
94229
- updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
94466
+ updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94230
94467
  return localVarFp.updateEventSessionTimeTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.timeId, requestParameters.locale, requestParameters.eventSessionTimeTranslationUpdateInputs, options).then((request) => request(axios, basePath));
94231
94468
  },
94232
94469
  };
@@ -94636,7 +94873,7 @@ export const EventsSessionsTranslationsApiFp = function(configuration?: Configur
94636
94873
  * @param {*} [options] Override http request option.
94637
94874
  * @throws {RequiredError}
94638
94875
  */
94639
- async deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
94876
+ async deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94640
94877
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSessionTranslation(eventId, sessionId, locale, options);
94641
94878
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94642
94879
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTranslationsApi.deleteEventSessionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94685,7 +94922,7 @@ export const EventsSessionsTranslationsApiFp = function(configuration?: Configur
94685
94922
  * @param {*} [options] Override http request option.
94686
94923
  * @throws {RequiredError}
94687
94924
  */
94688
- async updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
94925
+ async updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
94689
94926
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSessionTranslation(eventId, sessionId, locale, eventSessionTranslationUpdateInputs, options);
94690
94927
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94691
94928
  const localVarOperationServerBasePath = operationServerMap['EventsSessionsTranslationsApi.updateEventSessionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -94707,7 +94944,7 @@ export const EventsSessionsTranslationsApiFactory = function (configuration?: Co
94707
94944
  * @param {*} [options] Override http request option.
94708
94945
  * @throws {RequiredError}
94709
94946
  */
94710
- deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
94947
+ deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94711
94948
  return localVarFp.deleteEventSessionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.locale, options).then((request) => request(axios, basePath));
94712
94949
  },
94713
94950
  /**
@@ -94737,7 +94974,7 @@ export const EventsSessionsTranslationsApiFactory = function (configuration?: Co
94737
94974
  * @param {*} [options] Override http request option.
94738
94975
  * @throws {RequiredError}
94739
94976
  */
94740
- updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
94977
+ updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
94741
94978
  return localVarFp.updateEventSessionTranslation(requestParameters.eventId, requestParameters.sessionId, requestParameters.locale, requestParameters.eventSessionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
94742
94979
  },
94743
94980
  };
@@ -96023,7 +96260,7 @@ export const EventsSpeakersTranslationsApiFp = function(configuration?: Configur
96023
96260
  * @param {*} [options] Override http request option.
96024
96261
  * @throws {RequiredError}
96025
96262
  */
96026
- async deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
96263
+ async deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
96027
96264
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventSpeakerTranslation(eventId, speakerId, locale, options);
96028
96265
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
96029
96266
  const localVarOperationServerBasePath = operationServerMap['EventsSpeakersTranslationsApi.deleteEventSpeakerTranslation']?.[localVarOperationServerIndex]?.url;
@@ -96072,7 +96309,7 @@ export const EventsSpeakersTranslationsApiFp = function(configuration?: Configur
96072
96309
  * @param {*} [options] Override http request option.
96073
96310
  * @throws {RequiredError}
96074
96311
  */
96075
- async updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
96312
+ async updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
96076
96313
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventSpeakerTranslation(eventId, speakerId, locale, eventSpeakerTranslationUpdateInputs, options);
96077
96314
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
96078
96315
  const localVarOperationServerBasePath = operationServerMap['EventsSpeakersTranslationsApi.updateEventSpeakerTranslation']?.[localVarOperationServerIndex]?.url;
@@ -96094,7 +96331,7 @@ export const EventsSpeakersTranslationsApiFactory = function (configuration?: Co
96094
96331
  * @param {*} [options] Override http request option.
96095
96332
  * @throws {RequiredError}
96096
96333
  */
96097
- deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
96334
+ deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
96098
96335
  return localVarFp.deleteEventSpeakerTranslation(requestParameters.eventId, requestParameters.speakerId, requestParameters.locale, options).then((request) => request(axios, basePath));
96099
96336
  },
96100
96337
  /**
@@ -96124,7 +96361,7 @@ export const EventsSpeakersTranslationsApiFactory = function (configuration?: Co
96124
96361
  * @param {*} [options] Override http request option.
96125
96362
  * @throws {RequiredError}
96126
96363
  */
96127
- updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
96364
+ updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
96128
96365
  return localVarFp.updateEventSpeakerTranslation(requestParameters.eventId, requestParameters.speakerId, requestParameters.locale, requestParameters.eventSpeakerTranslationUpdateInputs, options).then((request) => request(axios, basePath));
96129
96366
  },
96130
96367
  };
@@ -100767,7 +101004,7 @@ export const EventsTracksTranslationsApiFp = function(configuration?: Configurat
100767
101004
  * @param {*} [options] Override http request option.
100768
101005
  * @throws {RequiredError}
100769
101006
  */
100770
- async deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101007
+ async deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
100771
101008
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventTrackTranslation(eventId, trackId, locale, options);
100772
101009
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
100773
101010
  const localVarOperationServerBasePath = operationServerMap['EventsTracksTranslationsApi.deleteEventTrackTranslation']?.[localVarOperationServerIndex]?.url;
@@ -100816,7 +101053,7 @@ export const EventsTracksTranslationsApiFp = function(configuration?: Configurat
100816
101053
  * @param {*} [options] Override http request option.
100817
101054
  * @throws {RequiredError}
100818
101055
  */
100819
- async updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101056
+ async updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
100820
101057
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventTrackTranslation(eventId, trackId, locale, eventTrackTranslationUpdateInputs, options);
100821
101058
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
100822
101059
  const localVarOperationServerBasePath = operationServerMap['EventsTracksTranslationsApi.updateEventTrackTranslation']?.[localVarOperationServerIndex]?.url;
@@ -100838,7 +101075,7 @@ export const EventsTracksTranslationsApiFactory = function (configuration?: Conf
100838
101075
  * @param {*} [options] Override http request option.
100839
101076
  * @throws {RequiredError}
100840
101077
  */
100841
- deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101078
+ deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
100842
101079
  return localVarFp.deleteEventTrackTranslation(requestParameters.eventId, requestParameters.trackId, requestParameters.locale, options).then((request) => request(axios, basePath));
100843
101080
  },
100844
101081
  /**
@@ -100868,7 +101105,7 @@ export const EventsTracksTranslationsApiFactory = function (configuration?: Conf
100868
101105
  * @param {*} [options] Override http request option.
100869
101106
  * @throws {RequiredError}
100870
101107
  */
100871
- updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101108
+ updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
100872
101109
  return localVarFp.updateEventTrackTranslation(requestParameters.eventId, requestParameters.trackId, requestParameters.locale, requestParameters.eventTrackTranslationUpdateInputs, options).then((request) => request(axios, basePath));
100873
101110
  },
100874
101111
  };
@@ -101241,7 +101478,7 @@ export const EventsTranslationsApiFp = function(configuration?: Configuration) {
101241
101478
  * @param {*} [options] Override http request option.
101242
101479
  * @throws {RequiredError}
101243
101480
  */
101244
- async deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101481
+ async deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
101245
101482
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEventTranslation(eventId, locale, options);
101246
101483
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
101247
101484
  const localVarOperationServerBasePath = operationServerMap['EventsTranslationsApi.deleteEventTranslation']?.[localVarOperationServerIndex]?.url;
@@ -101287,7 +101524,7 @@ export const EventsTranslationsApiFp = function(configuration?: Configuration) {
101287
101524
  * @param {*} [options] Override http request option.
101288
101525
  * @throws {RequiredError}
101289
101526
  */
101290
- async updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
101527
+ async updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
101291
101528
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateEventTranslation(eventId, locale, eventTranslationUpdateInputs, options);
101292
101529
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
101293
101530
  const localVarOperationServerBasePath = operationServerMap['EventsTranslationsApi.updateEventTranslation']?.[localVarOperationServerIndex]?.url;
@@ -101309,7 +101546,7 @@ export const EventsTranslationsApiFactory = function (configuration?: Configurat
101309
101546
  * @param {*} [options] Override http request option.
101310
101547
  * @throws {RequiredError}
101311
101548
  */
101312
- deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101549
+ deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
101313
101550
  return localVarFp.deleteEventTranslation(requestParameters.eventId, requestParameters.locale, options).then((request) => request(axios, basePath));
101314
101551
  },
101315
101552
  /**
@@ -101339,7 +101576,7 @@ export const EventsTranslationsApiFactory = function (configuration?: Configurat
101339
101576
  * @param {*} [options] Override http request option.
101340
101577
  * @throws {RequiredError}
101341
101578
  */
101342
- updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
101579
+ updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
101343
101580
  return localVarFp.updateEventTranslation(requestParameters.eventId, requestParameters.locale, requestParameters.eventTranslationUpdateInputs, options).then((request) => request(axios, basePath));
101344
101581
  },
101345
101582
  };
@@ -105750,7 +105987,7 @@ export const GroupsTranslationsApiFp = function(configuration?: Configuration) {
105750
105987
  * @param {*} [options] Override http request option.
105751
105988
  * @throws {RequiredError}
105752
105989
  */
105753
- async deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
105990
+ async deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
105754
105991
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteGroupTranslation(groupId, locale, options);
105755
105992
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
105756
105993
  const localVarOperationServerBasePath = operationServerMap['GroupsTranslationsApi.deleteGroupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -105796,7 +106033,7 @@ export const GroupsTranslationsApiFp = function(configuration?: Configuration) {
105796
106033
  * @param {*} [options] Override http request option.
105797
106034
  * @throws {RequiredError}
105798
106035
  */
105799
- async updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
106036
+ async updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
105800
106037
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateGroupTranslation(groupId, locale, groupTranslationUpdateInputs, options);
105801
106038
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
105802
106039
  const localVarOperationServerBasePath = operationServerMap['GroupsTranslationsApi.updateGroupTranslation']?.[localVarOperationServerIndex]?.url;
@@ -105818,7 +106055,7 @@ export const GroupsTranslationsApiFactory = function (configuration?: Configurat
105818
106055
  * @param {*} [options] Override http request option.
105819
106056
  * @throws {RequiredError}
105820
106057
  */
105821
- deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
106058
+ deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
105822
106059
  return localVarFp.deleteGroupTranslation(requestParameters.groupId, requestParameters.locale, options).then((request) => request(axios, basePath));
105823
106060
  },
105824
106061
  /**
@@ -105848,7 +106085,7 @@ export const GroupsTranslationsApiFactory = function (configuration?: Configurat
105848
106085
  * @param {*} [options] Override http request option.
105849
106086
  * @throws {RequiredError}
105850
106087
  */
105851
- updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
106088
+ updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
105852
106089
  return localVarFp.updateGroupTranslation(requestParameters.groupId, requestParameters.locale, requestParameters.groupTranslationUpdateInputs, options).then((request) => request(axios, basePath));
105853
106090
  },
105854
106091
  };
@@ -112466,7 +112703,7 @@ export const MeetingsParticipantsApiFp = function(configuration?: Configuration)
112466
112703
  * @param {*} [options] Override http request option.
112467
112704
  * @throws {RequiredError}
112468
112705
  */
112469
- async createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
112706
+ async createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
112470
112707
  const localVarAxiosArgs = await localVarAxiosParamCreator.createMeetingParticipant(meetingId, meetingParticipantCreateInputs, options);
112471
112708
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
112472
112709
  const localVarOperationServerBasePath = operationServerMap['MeetingsParticipantsApi.createMeetingParticipant']?.[localVarOperationServerIndex]?.url;
@@ -112525,7 +112762,7 @@ export const MeetingsParticipantsApiFp = function(configuration?: Configuration)
112525
112762
  * @param {*} [options] Override http request option.
112526
112763
  * @throws {RequiredError}
112527
112764
  */
112528
- async regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
112765
+ async regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
112529
112766
  const localVarAxiosArgs = await localVarAxiosParamCreator.regenerateMeetingParticipantToken(meetingId, participantId, options);
112530
112767
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
112531
112768
  const localVarOperationServerBasePath = operationServerMap['MeetingsParticipantsApi.regenerateMeetingParticipantToken']?.[localVarOperationServerIndex]?.url;
@@ -112562,7 +112799,7 @@ export const MeetingsParticipantsApiFactory = function (configuration?: Configur
112562
112799
  * @param {*} [options] Override http request option.
112563
112800
  * @throws {RequiredError}
112564
112801
  */
112565
- createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
112802
+ createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
112566
112803
  return localVarFp.createMeetingParticipant(requestParameters.meetingId, requestParameters.meetingParticipantCreateInputs, options).then((request) => request(axios, basePath));
112567
112804
  },
112568
112805
  /**
@@ -112602,7 +112839,7 @@ export const MeetingsParticipantsApiFactory = function (configuration?: Configur
112602
112839
  * @param {*} [options] Override http request option.
112603
112840
  * @throws {RequiredError}
112604
112841
  */
112605
- regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
112842
+ regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
112606
112843
  return localVarFp.regenerateMeetingParticipantToken(requestParameters.meetingId, requestParameters.participantId, options).then((request) => request(axios, basePath));
112607
112844
  },
112608
112845
  /**
@@ -113922,7 +114159,7 @@ export const MeetingsSessionsApiFp = function(configuration?: Configuration) {
113922
114159
  * @param {*} [options] Override http request option.
113923
114160
  * @throws {RequiredError}
113924
114161
  */
113925
- async generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
114162
+ async generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
113926
114163
  const localVarAxiosArgs = await localVarAxiosParamCreator.generateMeetingSessionSummary(sessionId, options);
113927
114164
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
113928
114165
  const localVarOperationServerBasePath = operationServerMap['MeetingsSessionsApi.generateMeetingSessionSummary']?.[localVarOperationServerIndex]?.url;
@@ -114044,7 +114281,7 @@ export const MeetingsSessionsApiFactory = function (configuration?: Configuratio
114044
114281
  * @param {*} [options] Override http request option.
114045
114282
  * @throws {RequiredError}
114046
114283
  */
114047
- generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
114284
+ generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
114048
114285
  return localVarFp.generateMeetingSessionSummary(requestParameters.sessionId, options).then((request) => request(axios, basePath));
114049
114286
  },
114050
114287
  /**
@@ -114546,7 +114783,7 @@ export const NotificationsApiFp = function(configuration?: Configuration) {
114546
114783
  * @param {*} [options] Override http request option.
114547
114784
  * @throws {RequiredError}
114548
114785
  */
114549
- async getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
114786
+ async getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
114550
114787
  const localVarAxiosArgs = await localVarAxiosParamCreator.getNotificationCount(filters, options);
114551
114788
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
114552
114789
  const localVarOperationServerBasePath = operationServerMap['NotificationsApi.getNotificationCount']?.[localVarOperationServerIndex]?.url;
@@ -114588,7 +114825,7 @@ export const NotificationsApiFp = function(configuration?: Configuration) {
114588
114825
  * @param {*} [options] Override http request option.
114589
114826
  * @throws {RequiredError}
114590
114827
  */
114591
- async markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
114828
+ async markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
114592
114829
  const localVarAxiosArgs = await localVarAxiosParamCreator.markNotificationsRead(notificationIds, options);
114593
114830
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
114594
114831
  const localVarOperationServerBasePath = operationServerMap['NotificationsApi.markNotificationsRead']?.[localVarOperationServerIndex]?.url;
@@ -114610,7 +114847,7 @@ export const NotificationsApiFactory = function (configuration?: Configuration,
114610
114847
  * @param {*} [options] Override http request option.
114611
114848
  * @throws {RequiredError}
114612
114849
  */
114613
- getNotificationCount(requestParameters: NotificationsApiGetNotificationCountRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
114850
+ getNotificationCount(requestParameters: NotificationsApiGetNotificationCountRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
114614
114851
  return localVarFp.getNotificationCount(requestParameters.filters, options).then((request) => request(axios, basePath));
114615
114852
  },
114616
114853
  /**
@@ -114639,7 +114876,7 @@ export const NotificationsApiFactory = function (configuration?: Configuration,
114639
114876
  * @param {*} [options] Override http request option.
114640
114877
  * @throws {RequiredError}
114641
114878
  */
114642
- markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
114879
+ markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
114643
114880
  return localVarFp.markNotificationsRead(requestParameters.notificationIds, options).then((request) => request(axios, basePath));
114644
114881
  },
114645
114882
  };
@@ -118652,7 +118889,7 @@ export const OrganizationModulesSettingsTranslationsApiFp = function(configurati
118652
118889
  * @param {*} [options] Override http request option.
118653
118890
  * @throws {RequiredError}
118654
118891
  */
118655
- async deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
118892
+ async deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
118656
118893
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteOrganizationModuleSettingsTranslation(locale, options);
118657
118894
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
118658
118895
  const localVarOperationServerBasePath = operationServerMap['OrganizationModulesSettingsTranslationsApi.deleteOrganizationModuleSettingsTranslation']?.[localVarOperationServerIndex]?.url;
@@ -118695,7 +118932,7 @@ export const OrganizationModulesSettingsTranslationsApiFp = function(configurati
118695
118932
  * @param {*} [options] Override http request option.
118696
118933
  * @throws {RequiredError}
118697
118934
  */
118698
- async updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
118935
+ async updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
118699
118936
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrganizationModuleSettingsTranslation(locale, organizationModuleSettingsTranslationUpdateInputs, options);
118700
118937
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
118701
118938
  const localVarOperationServerBasePath = operationServerMap['OrganizationModulesSettingsTranslationsApi.updateOrganizationModuleSettingsTranslation']?.[localVarOperationServerIndex]?.url;
@@ -118717,7 +118954,7 @@ export const OrganizationModulesSettingsTranslationsApiFactory = function (confi
118717
118954
  * @param {*} [options] Override http request option.
118718
118955
  * @throws {RequiredError}
118719
118956
  */
118720
- deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
118957
+ deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
118721
118958
  return localVarFp.deleteOrganizationModuleSettingsTranslation(requestParameters.locale, options).then((request) => request(axios, basePath));
118722
118959
  },
118723
118960
  /**
@@ -118747,7 +118984,7 @@ export const OrganizationModulesSettingsTranslationsApiFactory = function (confi
118747
118984
  * @param {*} [options] Override http request option.
118748
118985
  * @throws {RequiredError}
118749
118986
  */
118750
- updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
118987
+ updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
118751
118988
  return localVarFp.updateOrganizationModuleSettingsTranslation(requestParameters.locale, requestParameters.organizationModuleSettingsTranslationUpdateInputs, options).then((request) => request(axios, basePath));
118752
118989
  },
118753
118990
  };
@@ -120008,7 +120245,7 @@ export const OrganizationPaymentsApiFp = function(configuration?: Configuration)
120008
120245
  * @param {*} [options] Override http request option.
120009
120246
  * @throws {RequiredError}
120010
120247
  */
120011
- async deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
120248
+ async deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
120012
120249
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteOrganizationPaymentIntegration(integrationId, options);
120013
120250
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
120014
120251
  const localVarOperationServerBasePath = operationServerMap['OrganizationPaymentsApi.deleteOrganizationPaymentIntegration']?.[localVarOperationServerIndex]?.url;
@@ -120153,7 +120390,7 @@ export const OrganizationPaymentsApiFactory = function (configuration?: Configur
120153
120390
  * @param {*} [options] Override http request option.
120154
120391
  * @throws {RequiredError}
120155
120392
  */
120156
- deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
120393
+ deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
120157
120394
  return localVarFp.deleteOrganizationPaymentIntegration(requestParameters.integrationId, options).then((request) => request(axios, basePath));
120158
120395
  },
120159
120396
  /**
@@ -122293,7 +122530,7 @@ export const OrganizationTeammembersApiFp = function(configuration?: Configurati
122293
122530
  * @param {*} [options] Override http request option.
122294
122531
  * @throws {RequiredError}
122295
122532
  */
122296
- async getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
122533
+ async getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
122297
122534
  const localVarAxiosArgs = await localVarAxiosParamCreator.getOrganizationTeamMember(teamMemberId, options);
122298
122535
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
122299
122536
  const localVarOperationServerBasePath = operationServerMap['OrganizationTeammembersApi.getOrganizationTeamMember']?.[localVarOperationServerIndex]?.url;
@@ -122365,7 +122602,7 @@ export const OrganizationTeammembersApiFactory = function (configuration?: Confi
122365
122602
  * @param {*} [options] Override http request option.
122366
122603
  * @throws {RequiredError}
122367
122604
  */
122368
- getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
122605
+ getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
122369
122606
  return localVarFp.getOrganizationTeamMember(requestParameters.teamMemberId, options).then((request) => request(axios, basePath));
122370
122607
  },
122371
122608
  /**
@@ -131369,7 +131606,7 @@ export const SeriesTranslationsApiFp = function(configuration?: Configuration) {
131369
131606
  * @param {*} [options] Override http request option.
131370
131607
  * @throws {RequiredError}
131371
131608
  */
131372
- async deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
131609
+ async deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
131373
131610
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSeriesTranslation(seriesId, locale, options);
131374
131611
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
131375
131612
  const localVarOperationServerBasePath = operationServerMap['SeriesTranslationsApi.deleteSeriesTranslation']?.[localVarOperationServerIndex]?.url;
@@ -131415,7 +131652,7 @@ export const SeriesTranslationsApiFp = function(configuration?: Configuration) {
131415
131652
  * @param {*} [options] Override http request option.
131416
131653
  * @throws {RequiredError}
131417
131654
  */
131418
- async updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
131655
+ async updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
131419
131656
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSeriesTranslation(seriesId, locale, seriesTranslationUpdateInputs, options);
131420
131657
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
131421
131658
  const localVarOperationServerBasePath = operationServerMap['SeriesTranslationsApi.updateSeriesTranslation']?.[localVarOperationServerIndex]?.url;
@@ -131437,7 +131674,7 @@ export const SeriesTranslationsApiFactory = function (configuration?: Configurat
131437
131674
  * @param {*} [options] Override http request option.
131438
131675
  * @throws {RequiredError}
131439
131676
  */
131440
- deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
131677
+ deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
131441
131678
  return localVarFp.deleteSeriesTranslation(requestParameters.seriesId, requestParameters.locale, options).then((request) => request(axios, basePath));
131442
131679
  },
131443
131680
  /**
@@ -131467,7 +131704,7 @@ export const SeriesTranslationsApiFactory = function (configuration?: Configurat
131467
131704
  * @param {*} [options] Override http request option.
131468
131705
  * @throws {RequiredError}
131469
131706
  */
131470
- updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
131707
+ updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
131471
131708
  return localVarFp.updateSeriesTranslation(requestParameters.seriesId, requestParameters.locale, requestParameters.seriesTranslationUpdateInputs, options).then((request) => request(axios, basePath));
131472
131709
  },
131473
131710
  };
@@ -132669,7 +132906,7 @@ export const SponsorsTranslationsApiFp = function(configuration?: Configuration)
132669
132906
  * @param {*} [options] Override http request option.
132670
132907
  * @throws {RequiredError}
132671
132908
  */
132672
- async deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
132909
+ async deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
132673
132910
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteLevelTranslation(levelId, locale, options);
132674
132911
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
132675
132912
  const localVarOperationServerBasePath = operationServerMap['SponsorsTranslationsApi.deleteLevelTranslation']?.[localVarOperationServerIndex]?.url;
@@ -132715,7 +132952,7 @@ export const SponsorsTranslationsApiFp = function(configuration?: Configuration)
132715
132952
  * @param {*} [options] Override http request option.
132716
132953
  * @throws {RequiredError}
132717
132954
  */
132718
- async updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
132955
+ async updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
132719
132956
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateLevelTranslation(levelId, locale, levelTranslationUpdateInputs, options);
132720
132957
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
132721
132958
  const localVarOperationServerBasePath = operationServerMap['SponsorsTranslationsApi.updateLevelTranslation']?.[localVarOperationServerIndex]?.url;
@@ -132737,7 +132974,7 @@ export const SponsorsTranslationsApiFactory = function (configuration?: Configur
132737
132974
  * @param {*} [options] Override http request option.
132738
132975
  * @throws {RequiredError}
132739
132976
  */
132740
- deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
132977
+ deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
132741
132978
  return localVarFp.deleteLevelTranslation(requestParameters.levelId, requestParameters.locale, options).then((request) => request(axios, basePath));
132742
132979
  },
132743
132980
  /**
@@ -132767,7 +133004,7 @@ export const SponsorsTranslationsApiFactory = function (configuration?: Configur
132767
133004
  * @param {*} [options] Override http request option.
132768
133005
  * @throws {RequiredError}
132769
133006
  */
132770
- updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
133007
+ updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
132771
133008
  return localVarFp.updateLevelTranslation(requestParameters.levelId, requestParameters.locale, requestParameters.levelTranslationUpdateInputs, options).then((request) => request(axios, basePath));
132772
133009
  },
132773
133010
  };
@@ -134398,7 +134635,7 @@ export const StorageVideosApiFp = function(configuration?: Configuration) {
134398
134635
  * @param {*} [options] Override http request option.
134399
134636
  * @throws {RequiredError}
134400
134637
  */
134401
- async getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
134638
+ async getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
134402
134639
  const localVarAxiosArgs = await localVarAxiosParamCreator.getVideoDownloadStatus(videoId, options);
134403
134640
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
134404
134641
  const localVarOperationServerBasePath = operationServerMap['StorageVideosApi.getVideoDownloadStatus']?.[localVarOperationServerIndex]?.url;
@@ -134428,7 +134665,7 @@ export const StorageVideosApiFp = function(configuration?: Configuration) {
134428
134665
  * @param {*} [options] Override http request option.
134429
134666
  * @throws {RequiredError}
134430
134667
  */
134431
- async initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
134668
+ async initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
134432
134669
  const localVarAxiosArgs = await localVarAxiosParamCreator.initiateVideoDownload(videoId, options);
134433
134670
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
134434
134671
  const localVarOperationServerBasePath = operationServerMap['StorageVideosApi.initiateVideoDownload']?.[localVarOperationServerIndex]?.url;
@@ -134494,7 +134731,7 @@ export const StorageVideosApiFactory = function (configuration?: Configuration,
134494
134731
  * @param {*} [options] Override http request option.
134495
134732
  * @throws {RequiredError}
134496
134733
  */
134497
- getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
134734
+ getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
134498
134735
  return localVarFp.getVideoDownloadStatus(requestParameters.videoId, options).then((request) => request(axios, basePath));
134499
134736
  },
134500
134737
  /**
@@ -134514,7 +134751,7 @@ export const StorageVideosApiFactory = function (configuration?: Configuration,
134514
134751
  * @param {*} [options] Override http request option.
134515
134752
  * @throws {RequiredError}
134516
134753
  */
134517
- initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
134754
+ initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
134518
134755
  return localVarFp.initiateVideoDownload(requestParameters.videoId, options).then((request) => request(axios, basePath));
134519
134756
  },
134520
134757
  /**
@@ -134987,7 +135224,7 @@ export const StorageVideosCaptionsApiFp = function(configuration?: Configuration
134987
135224
  * @param {*} [options] Override http request option.
134988
135225
  * @throws {RequiredError}
134989
135226
  */
134990
- async downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
135227
+ async downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
134991
135228
  const localVarAxiosArgs = await localVarAxiosParamCreator.downloadVideoCaption(videoId, language, options);
134992
135229
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
134993
135230
  const localVarOperationServerBasePath = operationServerMap['StorageVideosCaptionsApi.downloadVideoCaption']?.[localVarOperationServerIndex]?.url;
@@ -135066,7 +135303,7 @@ export const StorageVideosCaptionsApiFactory = function (configuration?: Configu
135066
135303
  * @param {*} [options] Override http request option.
135067
135304
  * @throws {RequiredError}
135068
135305
  */
135069
- downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
135306
+ downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
135070
135307
  return localVarFp.downloadVideoCaption(requestParameters.videoId, requestParameters.language, options).then((request) => request(axios, basePath));
135071
135308
  },
135072
135309
  /**
@@ -140584,7 +140821,7 @@ export const SurveysQuestionsApiFp = function(configuration?: Configuration) {
140584
140821
  * @param {*} [options] Override http request option.
140585
140822
  * @throws {RequiredError}
140586
140823
  */
140587
- async updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
140824
+ async updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
140588
140825
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyQuestionChoice(surveyId, questionId, choiceId, choice, options);
140589
140826
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
140590
140827
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsApi.updateSurveyQuestionChoice']?.[localVarOperationServerIndex]?.url;
@@ -140793,7 +141030,7 @@ export const SurveysQuestionsApiFactory = function (configuration?: Configuratio
140793
141030
  * @param {*} [options] Override http request option.
140794
141031
  * @throws {RequiredError}
140795
141032
  */
140796
- updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
141033
+ updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
140797
141034
  return localVarFp.updateSurveyQuestionChoice(requestParameters.surveyId, requestParameters.questionId, requestParameters.choiceId, requestParameters.choice, options).then((request) => request(axios, basePath));
140798
141035
  },
140799
141036
  /**
@@ -141937,7 +142174,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
141937
142174
  * @param {*} [options] Override http request option.
141938
142175
  * @throws {RequiredError}
141939
142176
  */
141940
- async deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142177
+ async deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
141941
142178
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveyQuestionChoiceTranslation(surveyId, questionId, choiceId, locale, options);
141942
142179
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141943
142180
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.deleteSurveyQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -141952,7 +142189,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
141952
142189
  * @param {*} [options] Override http request option.
141953
142190
  * @throws {RequiredError}
141954
142191
  */
141955
- async deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142192
+ async deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
141956
142193
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveyQuestionTranslation(surveyId, questionId, locale, options);
141957
142194
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141958
142195
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.deleteSurveyQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -142037,7 +142274,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
142037
142274
  * @param {*} [options] Override http request option.
142038
142275
  * @throws {RequiredError}
142039
142276
  */
142040
- async updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142277
+ async updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
142041
142278
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyQuestionChoiceTranslation(surveyId, questionId, choiceId, locale, surveyQuestionChoiceTranslationUpdateInputs, options);
142042
142279
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
142043
142280
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.updateSurveyQuestionChoiceTranslation']?.[localVarOperationServerIndex]?.url;
@@ -142053,7 +142290,7 @@ export const SurveysQuestionsTranslationsApiFp = function(configuration?: Config
142053
142290
  * @param {*} [options] Override http request option.
142054
142291
  * @throws {RequiredError}
142055
142292
  */
142056
- async updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
142293
+ async updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
142057
142294
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyQuestionTranslation(surveyId, questionId, locale, surveyQuestionTranslationUpdateInputs, options);
142058
142295
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
142059
142296
  const localVarOperationServerBasePath = operationServerMap['SurveysQuestionsTranslationsApi.updateSurveyQuestionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -142075,7 +142312,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142075
142312
  * @param {*} [options] Override http request option.
142076
142313
  * @throws {RequiredError}
142077
142314
  */
142078
- deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142315
+ deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142079
142316
  return localVarFp.deleteSurveyQuestionChoiceTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, options).then((request) => request(axios, basePath));
142080
142317
  },
142081
142318
  /**
@@ -142085,7 +142322,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142085
142322
  * @param {*} [options] Override http request option.
142086
142323
  * @throws {RequiredError}
142087
142324
  */
142088
- deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142325
+ deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142089
142326
  return localVarFp.deleteSurveyQuestionTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.locale, options).then((request) => request(axios, basePath));
142090
142327
  },
142091
142328
  /**
@@ -142135,7 +142372,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142135
142372
  * @param {*} [options] Override http request option.
142136
142373
  * @throws {RequiredError}
142137
142374
  */
142138
- updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142375
+ updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142139
142376
  return localVarFp.updateSurveyQuestionChoiceTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.choiceId, requestParameters.locale, requestParameters.surveyQuestionChoiceTranslationUpdateInputs, options).then((request) => request(axios, basePath));
142140
142377
  },
142141
142378
  /**
@@ -142145,7 +142382,7 @@ export const SurveysQuestionsTranslationsApiFactory = function (configuration?:
142145
142382
  * @param {*} [options] Override http request option.
142146
142383
  * @throws {RequiredError}
142147
142384
  */
142148
- updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
142385
+ updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
142149
142386
  return localVarFp.updateSurveyQuestionTranslation(requestParameters.surveyId, requestParameters.questionId, requestParameters.locale, requestParameters.surveyQuestionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
142150
142387
  },
142151
142388
  };
@@ -143816,7 +144053,7 @@ export const SurveysSectionsTranslationsApiFp = function(configuration?: Configu
143816
144053
  * @param {*} [options] Override http request option.
143817
144054
  * @throws {RequiredError}
143818
144055
  */
143819
- async deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
144056
+ async deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
143820
144057
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveySectionTranslation(surveyId, sectionId, locale, options);
143821
144058
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
143822
144059
  const localVarOperationServerBasePath = operationServerMap['SurveysSectionsTranslationsApi.deleteSurveySectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -143865,7 +144102,7 @@ export const SurveysSectionsTranslationsApiFp = function(configuration?: Configu
143865
144102
  * @param {*} [options] Override http request option.
143866
144103
  * @throws {RequiredError}
143867
144104
  */
143868
- async updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
144105
+ async updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
143869
144106
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveySectionTranslation(surveyId, sectionId, locale, surveySectionTranslationUpdateInputs, options);
143870
144107
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
143871
144108
  const localVarOperationServerBasePath = operationServerMap['SurveysSectionsTranslationsApi.updateSurveySectionTranslation']?.[localVarOperationServerIndex]?.url;
@@ -143887,7 +144124,7 @@ export const SurveysSectionsTranslationsApiFactory = function (configuration?: C
143887
144124
  * @param {*} [options] Override http request option.
143888
144125
  * @throws {RequiredError}
143889
144126
  */
143890
- deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
144127
+ deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
143891
144128
  return localVarFp.deleteSurveySectionTranslation(requestParameters.surveyId, requestParameters.sectionId, requestParameters.locale, options).then((request) => request(axios, basePath));
143892
144129
  },
143893
144130
  /**
@@ -143917,7 +144154,7 @@ export const SurveysSectionsTranslationsApiFactory = function (configuration?: C
143917
144154
  * @param {*} [options] Override http request option.
143918
144155
  * @throws {RequiredError}
143919
144156
  */
143920
- updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
144157
+ updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
143921
144158
  return localVarFp.updateSurveySectionTranslation(requestParameters.surveyId, requestParameters.sectionId, requestParameters.locale, requestParameters.surveySectionTranslationUpdateInputs, options).then((request) => request(axios, basePath));
143922
144159
  },
143923
144160
  };
@@ -145361,7 +145598,7 @@ export const SurveysTranslationsApiFp = function(configuration?: Configuration)
145361
145598
  * @param {*} [options] Override http request option.
145362
145599
  * @throws {RequiredError}
145363
145600
  */
145364
- async deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
145601
+ async deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
145365
145602
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSurveyTranslation(surveyId, locale, options);
145366
145603
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
145367
145604
  const localVarOperationServerBasePath = operationServerMap['SurveysTranslationsApi.deleteSurveyTranslation']?.[localVarOperationServerIndex]?.url;
@@ -145407,7 +145644,7 @@ export const SurveysTranslationsApiFp = function(configuration?: Configuration)
145407
145644
  * @param {*} [options] Override http request option.
145408
145645
  * @throws {RequiredError}
145409
145646
  */
145410
- async updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>> {
145647
+ async updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
145411
145648
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateSurveyTranslation(surveyId, locale, surveyTranslationUpdateInputs, options);
145412
145649
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
145413
145650
  const localVarOperationServerBasePath = operationServerMap['SurveysTranslationsApi.updateSurveyTranslation']?.[localVarOperationServerIndex]?.url;
@@ -145429,7 +145666,7 @@ export const SurveysTranslationsApiFactory = function (configuration?: Configura
145429
145666
  * @param {*} [options] Override http request option.
145430
145667
  * @throws {RequiredError}
145431
145668
  */
145432
- deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
145669
+ deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
145433
145670
  return localVarFp.deleteSurveyTranslation(requestParameters.surveyId, requestParameters.locale, options).then((request) => request(axios, basePath));
145434
145671
  },
145435
145672
  /**
@@ -145459,7 +145696,7 @@ export const SurveysTranslationsApiFactory = function (configuration?: Configura
145459
145696
  * @param {*} [options] Override http request option.
145460
145697
  * @throws {RequiredError}
145461
145698
  */
145462
- updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response> {
145699
+ updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
145463
145700
  return localVarFp.updateSurveyTranslation(requestParameters.surveyId, requestParameters.locale, requestParameters.surveyTranslationUpdateInputs, options).then((request) => request(axios, basePath));
145464
145701
  },
145465
145702
  };