@connectedxm/admin-sdk 6.32.2 → 6.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +2 -1
- package/README.md +6 -1
- package/api.ts +546 -206
- package/dist/api.d.ts +467 -302
- package/dist/api.js +313 -30
- package/dist/esm/api.d.ts +467 -302
- package/dist/esm/api.js +287 -4
- package/docs/AccountsApi.md +97 -0
- package/docs/AnnouncementsTranslationsApi.md +4 -4
- package/docs/BaseEventActivation.md +2 -0
- package/docs/BenefitsTranslationsApi.md +4 -4
- package/docs/BookingsPlacesTranslationsApi.md +4 -4
- package/docs/BookingsQuestionsChoicesTranslationsApi.md +2 -2
- package/docs/BookingsQuestionsTranslationsApi.md +2 -2
- package/docs/BookingsSpacesTranslationsApi.md +4 -4
- package/docs/ChannelsTranslationsApi.md +8 -8
- package/docs/DashboardsApi.md +2 -2
- package/docs/DashboardsWidgetsApi.md +2 -2
- package/docs/EventActivation.md +2 -0
- package/docs/EventActivationCreateInputs.md +2 -0
- package/docs/EventActivationRewardType.md +10 -0
- package/docs/EventActivationUpdateInputs.md +2 -0
- package/docs/EventsAccessApi.md +4 -4
- package/docs/EventsActivationsSessionsApi.md +55 -0
- package/docs/EventsActivationsTranslationsApi.md +2 -2
- package/docs/EventsAddonsTranslationsApi.md +2 -2
- package/docs/EventsApi.md +6 -6
- package/docs/EventsAttendeesApi.md +52 -0
- package/docs/EventsAttendeesPackagesApi.md +2 -2
- package/docs/EventsEmailsTranslationsApi.md +4 -4
- package/docs/EventsFaqsTranslationsApi.md +8 -8
- package/docs/EventsFollowupsTranslationsApi.md +4 -4
- package/docs/EventsMediaTranslationsApi.md +2 -2
- package/docs/EventsPagesTranslationsApi.md +4 -4
- package/docs/EventsPasstypesPriceschedulesApi.md +4 -4
- package/docs/EventsPasstypesRefundschedulesApi.md +4 -4
- package/docs/EventsPasstypesTranslationsApi.md +4 -4
- package/docs/EventsQuestionsApi.md +2 -2
- package/docs/EventsQuestionsTranslationsApi.md +8 -8
- package/docs/EventsRoomtypesTranslationsApi.md +4 -4
- package/docs/EventsSectionsTranslationsApi.md +4 -4
- package/docs/EventsSessionsApi.md +2 -2
- package/docs/EventsSessionsLocationsTranslationsApi.md +4 -4
- package/docs/EventsSessionsQuestionsApi.md +2 -2
- package/docs/EventsSessionsQuestionsTranslationsApi.md +8 -8
- package/docs/EventsSessionsSectionsTranslationsApi.md +4 -4
- package/docs/EventsSessionsTimesApi.md +2 -2
- package/docs/EventsSessionsTimesTranslationsApi.md +4 -4
- package/docs/EventsSessionsTranslationsApi.md +4 -4
- package/docs/EventsSpeakersTranslationsApi.md +4 -4
- package/docs/EventsTracksTranslationsApi.md +4 -4
- package/docs/EventsTranslationsApi.md +4 -4
- package/docs/GroupsTranslationsApi.md +4 -4
- package/docs/MeetingsParticipantsApi.md +4 -4
- package/docs/MeetingsSessionsApi.md +2 -2
- package/docs/NotificationsApi.md +4 -4
- package/docs/OrganizationModulesSettingsTranslationsApi.md +4 -4
- package/docs/OrganizationPaymentsApi.md +2 -2
- package/docs/OrganizationTeammembersApi.md +2 -2
- package/docs/SeriesTranslationsApi.md +4 -4
- package/docs/SponsorsTranslationsApi.md +4 -4
- package/docs/StorageVideosApi.md +4 -4
- package/docs/StorageVideosCaptionsApi.md +2 -2
- package/docs/SurveysQuestionsApi.md +2 -2
- package/docs/SurveysQuestionsTranslationsApi.md +8 -8
- package/docs/SurveysSectionsTranslationsApi.md +4 -4
- package/docs/SurveysTranslationsApi.md +4 -4
- package/docs/{UpdateAnnouncementTranslation200Response.md → SyncAccounts200Response.md} +3 -3
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -1138,6 +1138,7 @@ export interface BaseEventActivation {
|
|
|
1138
1138
|
'maxPoints': number;
|
|
1139
1139
|
'startAfter': string | null;
|
|
1140
1140
|
'type': EventActivationType;
|
|
1141
|
+
'rewardType': EventActivationRewardType;
|
|
1141
1142
|
'accessLevel': PassTypeAccessLevel;
|
|
1142
1143
|
'sortOrder': number;
|
|
1143
1144
|
'survey': BaseSurvey | null;
|
|
@@ -4324,6 +4325,7 @@ export interface EventActivation {
|
|
|
4324
4325
|
'maxPoints': number;
|
|
4325
4326
|
'startAfter': string | null;
|
|
4326
4327
|
'type': EventActivationType;
|
|
4328
|
+
'rewardType': EventActivationRewardType;
|
|
4327
4329
|
'accessLevel': PassTypeAccessLevel;
|
|
4328
4330
|
'sortOrder': number;
|
|
4329
4331
|
'survey': BaseSurvey | null;
|
|
@@ -4357,6 +4359,7 @@ export interface EventActivationCreateInputs {
|
|
|
4357
4359
|
'maxPoints'?: AdvertisementCreateInputsWeight | null;
|
|
4358
4360
|
'startAfter'?: string | null;
|
|
4359
4361
|
'type'?: EventActivationType;
|
|
4362
|
+
'rewardType'?: EventActivationRewardType;
|
|
4360
4363
|
'protectionCode'?: AdvertisementCreateInputsWeight | null;
|
|
4361
4364
|
'email'?: boolean;
|
|
4362
4365
|
'push'?: boolean;
|
|
@@ -4366,6 +4369,10 @@ export interface EventActivationCreateInputs {
|
|
|
4366
4369
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4367
4370
|
'imageUpload'?: boolean;
|
|
4368
4371
|
}
|
|
4372
|
+
export declare enum EventActivationRewardType {
|
|
4373
|
+
Max = "max",
|
|
4374
|
+
Input = "input"
|
|
4375
|
+
}
|
|
4369
4376
|
export interface EventActivationTranslation {
|
|
4370
4377
|
'locale': string;
|
|
4371
4378
|
'name': string;
|
|
@@ -4392,6 +4399,7 @@ export interface EventActivationUpdateInputs {
|
|
|
4392
4399
|
'maxPoints'?: AdvertisementCreateInputsWeight | null;
|
|
4393
4400
|
'startAfter'?: string | null;
|
|
4394
4401
|
'type'?: EventActivationType;
|
|
4402
|
+
'rewardType'?: EventActivationRewardType;
|
|
4395
4403
|
'protectionCode'?: AdvertisementCreateInputsWeight | null;
|
|
4396
4404
|
'accessLevel'?: PassTypeAccessLevel;
|
|
4397
4405
|
'continuousScanning'?: boolean;
|
|
@@ -12022,6 +12030,14 @@ export interface SurveyUpdateInputs {
|
|
|
12022
12030
|
'eventId'?: string | null;
|
|
12023
12031
|
'activationId'?: string | null;
|
|
12024
12032
|
}
|
|
12033
|
+
export interface SyncAccounts200Response {
|
|
12034
|
+
'status': SyncAccounts200ResponseStatusEnum;
|
|
12035
|
+
'message': string;
|
|
12036
|
+
'data': object;
|
|
12037
|
+
}
|
|
12038
|
+
export declare enum SyncAccounts200ResponseStatusEnum {
|
|
12039
|
+
Ok = "ok"
|
|
12040
|
+
}
|
|
12025
12041
|
export interface SystemEventLog {
|
|
12026
12042
|
'id': string;
|
|
12027
12043
|
'organizationId': string;
|
|
@@ -12374,14 +12390,6 @@ export interface TriggerUpdateInputs {
|
|
|
12374
12390
|
'code'?: string | null;
|
|
12375
12391
|
'enabled'?: boolean;
|
|
12376
12392
|
}
|
|
12377
|
-
export interface UpdateAnnouncementTranslation200Response {
|
|
12378
|
-
'status': UpdateAnnouncementTranslation200ResponseStatusEnum;
|
|
12379
|
-
'message': string;
|
|
12380
|
-
'data': object;
|
|
12381
|
-
}
|
|
12382
|
-
export declare enum UpdateAnnouncementTranslation200ResponseStatusEnum {
|
|
12383
|
-
Ok = "ok"
|
|
12384
|
-
}
|
|
12385
12393
|
export interface UpdateBookingSpaceQuestionChoiceTranslation200Response {
|
|
12386
12394
|
'status': UpdateBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum;
|
|
12387
12395
|
'message': string;
|
|
@@ -12841,6 +12849,21 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12841
12849
|
* @throws {RequiredError}
|
|
12842
12850
|
*/
|
|
12843
12851
|
impersonateAccount: (accountId: string, username: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12852
|
+
/**
|
|
12853
|
+
* Sync Account endpoint
|
|
12854
|
+
* @summary Sync Account
|
|
12855
|
+
* @param {string} accountId The account identifier
|
|
12856
|
+
* @param {*} [options] Override http request option.
|
|
12857
|
+
* @throws {RequiredError}
|
|
12858
|
+
*/
|
|
12859
|
+
syncAccount: (accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12860
|
+
/**
|
|
12861
|
+
* Sync Accounts endpoint
|
|
12862
|
+
* @summary Sync Accounts
|
|
12863
|
+
* @param {*} [options] Override http request option.
|
|
12864
|
+
* @throws {RequiredError}
|
|
12865
|
+
*/
|
|
12866
|
+
syncAccounts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12844
12867
|
/**
|
|
12845
12868
|
* Update Account endpoint
|
|
12846
12869
|
* @summary Update Account
|
|
@@ -13024,6 +13047,21 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
13024
13047
|
* @throws {RequiredError}
|
|
13025
13048
|
*/
|
|
13026
13049
|
impersonateAccount(accountId: string, username: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImpersonateAccount200Response>>;
|
|
13050
|
+
/**
|
|
13051
|
+
* Sync Account endpoint
|
|
13052
|
+
* @summary Sync Account
|
|
13053
|
+
* @param {string} accountId The account identifier
|
|
13054
|
+
* @param {*} [options] Override http request option.
|
|
13055
|
+
* @throws {RequiredError}
|
|
13056
|
+
*/
|
|
13057
|
+
syncAccount(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
13058
|
+
/**
|
|
13059
|
+
* Sync Accounts endpoint
|
|
13060
|
+
* @summary Sync Accounts
|
|
13061
|
+
* @param {*} [options] Override http request option.
|
|
13062
|
+
* @throws {RequiredError}
|
|
13063
|
+
*/
|
|
13064
|
+
syncAccounts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
13027
13065
|
/**
|
|
13028
13066
|
* Update Account endpoint
|
|
13029
13067
|
* @summary Update Account
|
|
@@ -13166,6 +13204,21 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
13166
13204
|
* @throws {RequiredError}
|
|
13167
13205
|
*/
|
|
13168
13206
|
impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response>;
|
|
13207
|
+
/**
|
|
13208
|
+
* Sync Account endpoint
|
|
13209
|
+
* @summary Sync Account
|
|
13210
|
+
* @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
|
|
13211
|
+
* @param {*} [options] Override http request option.
|
|
13212
|
+
* @throws {RequiredError}
|
|
13213
|
+
*/
|
|
13214
|
+
syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
13215
|
+
/**
|
|
13216
|
+
* Sync Accounts endpoint
|
|
13217
|
+
* @summary Sync Accounts
|
|
13218
|
+
* @param {*} [options] Override http request option.
|
|
13219
|
+
* @throws {RequiredError}
|
|
13220
|
+
*/
|
|
13221
|
+
syncAccounts(options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
13169
13222
|
/**
|
|
13170
13223
|
* Update Account endpoint
|
|
13171
13224
|
* @summary Update Account
|
|
@@ -13480,6 +13533,15 @@ export interface AccountsApiImpersonateAccountRequest {
|
|
|
13480
13533
|
*/
|
|
13481
13534
|
readonly username: string;
|
|
13482
13535
|
}
|
|
13536
|
+
/**
|
|
13537
|
+
* Request parameters for syncAccount operation in AccountsApi.
|
|
13538
|
+
*/
|
|
13539
|
+
export interface AccountsApiSyncAccountRequest {
|
|
13540
|
+
/**
|
|
13541
|
+
* The account identifier
|
|
13542
|
+
*/
|
|
13543
|
+
readonly accountId: string;
|
|
13544
|
+
}
|
|
13483
13545
|
/**
|
|
13484
13546
|
* Request parameters for updateAccount operation in AccountsApi.
|
|
13485
13547
|
*/
|
|
@@ -13622,6 +13684,21 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
13622
13684
|
* @throws {RequiredError}
|
|
13623
13685
|
*/
|
|
13624
13686
|
impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImpersonateAccount200Response, any, {}>>;
|
|
13687
|
+
/**
|
|
13688
|
+
* Sync Account endpoint
|
|
13689
|
+
* @summary Sync Account
|
|
13690
|
+
* @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
|
|
13691
|
+
* @param {*} [options] Override http request option.
|
|
13692
|
+
* @throws {RequiredError}
|
|
13693
|
+
*/
|
|
13694
|
+
syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
13695
|
+
/**
|
|
13696
|
+
* Sync Accounts endpoint
|
|
13697
|
+
* @summary Sync Accounts
|
|
13698
|
+
* @param {*} [options] Override http request option.
|
|
13699
|
+
* @throws {RequiredError}
|
|
13700
|
+
*/
|
|
13701
|
+
syncAccounts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
13625
13702
|
/**
|
|
13626
13703
|
* Update Account endpoint
|
|
13627
13704
|
* @summary Update Account
|
|
@@ -16833,7 +16910,7 @@ export declare const AnnouncementsTranslationsApiFp: (configuration?: Configurat
|
|
|
16833
16910
|
* @param {*} [options] Override http request option.
|
|
16834
16911
|
* @throws {RequiredError}
|
|
16835
16912
|
*/
|
|
16836
|
-
deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
16913
|
+
deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
16837
16914
|
/**
|
|
16838
16915
|
* Get Announcement Translation endpoint
|
|
16839
16916
|
* @summary Get Announcement Translation
|
|
@@ -16864,7 +16941,7 @@ export declare const AnnouncementsTranslationsApiFp: (configuration?: Configurat
|
|
|
16864
16941
|
* @param {*} [options] Override http request option.
|
|
16865
16942
|
* @throws {RequiredError}
|
|
16866
16943
|
*/
|
|
16867
|
-
updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
16944
|
+
updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
16868
16945
|
};
|
|
16869
16946
|
/**
|
|
16870
16947
|
* AnnouncementsTranslationsApi - factory interface
|
|
@@ -16877,7 +16954,7 @@ export declare const AnnouncementsTranslationsApiFactory: (configuration?: Confi
|
|
|
16877
16954
|
* @param {*} [options] Override http request option.
|
|
16878
16955
|
* @throws {RequiredError}
|
|
16879
16956
|
*/
|
|
16880
|
-
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
16957
|
+
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
16881
16958
|
/**
|
|
16882
16959
|
* Get Announcement Translation endpoint
|
|
16883
16960
|
* @summary Get Announcement Translation
|
|
@@ -16901,7 +16978,7 @@ export declare const AnnouncementsTranslationsApiFactory: (configuration?: Confi
|
|
|
16901
16978
|
* @param {*} [options] Override http request option.
|
|
16902
16979
|
* @throws {RequiredError}
|
|
16903
16980
|
*/
|
|
16904
|
-
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
16981
|
+
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
16905
16982
|
};
|
|
16906
16983
|
/**
|
|
16907
16984
|
* Request parameters for deleteAnnouncementTranslation operation in AnnouncementsTranslationsApi.
|
|
@@ -16979,7 +17056,7 @@ export declare class AnnouncementsTranslationsApi extends BaseAPI {
|
|
|
16979
17056
|
* @param {*} [options] Override http request option.
|
|
16980
17057
|
* @throws {RequiredError}
|
|
16981
17058
|
*/
|
|
16982
|
-
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17059
|
+
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
16983
17060
|
/**
|
|
16984
17061
|
* Get Announcement Translation endpoint
|
|
16985
17062
|
* @summary Get Announcement Translation
|
|
@@ -17003,7 +17080,7 @@ export declare class AnnouncementsTranslationsApi extends BaseAPI {
|
|
|
17003
17080
|
* @param {*} [options] Override http request option.
|
|
17004
17081
|
* @throws {RequiredError}
|
|
17005
17082
|
*/
|
|
17006
|
-
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17083
|
+
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
17007
17084
|
}
|
|
17008
17085
|
/**
|
|
17009
17086
|
* ApiLogsApi - axios parameter creator
|
|
@@ -17665,7 +17742,7 @@ export declare const BenefitsTranslationsApiFp: (configuration?: Configuration)
|
|
|
17665
17742
|
* @param {*} [options] Override http request option.
|
|
17666
17743
|
* @throws {RequiredError}
|
|
17667
17744
|
*/
|
|
17668
|
-
deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
17745
|
+
deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
17669
17746
|
/**
|
|
17670
17747
|
* Get Benefit Translation endpoint
|
|
17671
17748
|
* @summary Get Benefit Translation
|
|
@@ -17696,7 +17773,7 @@ export declare const BenefitsTranslationsApiFp: (configuration?: Configuration)
|
|
|
17696
17773
|
* @param {*} [options] Override http request option.
|
|
17697
17774
|
* @throws {RequiredError}
|
|
17698
17775
|
*/
|
|
17699
|
-
updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
17776
|
+
updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
17700
17777
|
};
|
|
17701
17778
|
/**
|
|
17702
17779
|
* BenefitsTranslationsApi - factory interface
|
|
@@ -17709,7 +17786,7 @@ export declare const BenefitsTranslationsApiFactory: (configuration?: Configurat
|
|
|
17709
17786
|
* @param {*} [options] Override http request option.
|
|
17710
17787
|
* @throws {RequiredError}
|
|
17711
17788
|
*/
|
|
17712
|
-
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
17789
|
+
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
17713
17790
|
/**
|
|
17714
17791
|
* Get Benefit Translation endpoint
|
|
17715
17792
|
* @summary Get Benefit Translation
|
|
@@ -17733,7 +17810,7 @@ export declare const BenefitsTranslationsApiFactory: (configuration?: Configurat
|
|
|
17733
17810
|
* @param {*} [options] Override http request option.
|
|
17734
17811
|
* @throws {RequiredError}
|
|
17735
17812
|
*/
|
|
17736
|
-
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
17813
|
+
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
17737
17814
|
};
|
|
17738
17815
|
/**
|
|
17739
17816
|
* Request parameters for deleteBenefitTranslation operation in BenefitsTranslationsApi.
|
|
@@ -17811,7 +17888,7 @@ export declare class BenefitsTranslationsApi extends BaseAPI {
|
|
|
17811
17888
|
* @param {*} [options] Override http request option.
|
|
17812
17889
|
* @throws {RequiredError}
|
|
17813
17890
|
*/
|
|
17814
|
-
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17891
|
+
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
17815
17892
|
/**
|
|
17816
17893
|
* Get Benefit Translation endpoint
|
|
17817
17894
|
* @summary Get Benefit Translation
|
|
@@ -17835,7 +17912,7 @@ export declare class BenefitsTranslationsApi extends BaseAPI {
|
|
|
17835
17912
|
* @param {*} [options] Override http request option.
|
|
17836
17913
|
* @throws {RequiredError}
|
|
17837
17914
|
*/
|
|
17838
|
-
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17915
|
+
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
17839
17916
|
}
|
|
17840
17917
|
/**
|
|
17841
17918
|
* BookingsApi - axios parameter creator
|
|
@@ -19736,7 +19813,7 @@ export declare const BookingsPlacesTranslationsApiFp: (configuration?: Configura
|
|
|
19736
19813
|
* @param {*} [options] Override http request option.
|
|
19737
19814
|
* @throws {RequiredError}
|
|
19738
19815
|
*/
|
|
19739
|
-
deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19816
|
+
deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
19740
19817
|
/**
|
|
19741
19818
|
* Update Booking Place Translation endpoint
|
|
19742
19819
|
* @summary Update Booking Place Translation
|
|
@@ -19746,7 +19823,7 @@ export declare const BookingsPlacesTranslationsApiFp: (configuration?: Configura
|
|
|
19746
19823
|
* @param {*} [options] Override http request option.
|
|
19747
19824
|
* @throws {RequiredError}
|
|
19748
19825
|
*/
|
|
19749
|
-
updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19826
|
+
updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
19750
19827
|
};
|
|
19751
19828
|
/**
|
|
19752
19829
|
* BookingsPlacesTranslationsApi - factory interface
|
|
@@ -19759,7 +19836,7 @@ export declare const BookingsPlacesTranslationsApiFactory: (configuration?: Conf
|
|
|
19759
19836
|
* @param {*} [options] Override http request option.
|
|
19760
19837
|
* @throws {RequiredError}
|
|
19761
19838
|
*/
|
|
19762
|
-
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19839
|
+
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
19763
19840
|
/**
|
|
19764
19841
|
* Update Booking Place Translation endpoint
|
|
19765
19842
|
* @summary Update Booking Place Translation
|
|
@@ -19767,7 +19844,7 @@ export declare const BookingsPlacesTranslationsApiFactory: (configuration?: Conf
|
|
|
19767
19844
|
* @param {*} [options] Override http request option.
|
|
19768
19845
|
* @throws {RequiredError}
|
|
19769
19846
|
*/
|
|
19770
|
-
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19847
|
+
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
19771
19848
|
};
|
|
19772
19849
|
/**
|
|
19773
19850
|
* Request parameters for deleteBookingPlaceTranslation operation in BookingsPlacesTranslationsApi.
|
|
@@ -19807,7 +19884,7 @@ export declare class BookingsPlacesTranslationsApi extends BaseAPI {
|
|
|
19807
19884
|
* @param {*} [options] Override http request option.
|
|
19808
19885
|
* @throws {RequiredError}
|
|
19809
19886
|
*/
|
|
19810
|
-
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19887
|
+
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
19811
19888
|
/**
|
|
19812
19889
|
* Update Booking Place Translation endpoint
|
|
19813
19890
|
* @summary Update Booking Place Translation
|
|
@@ -19815,7 +19892,7 @@ export declare class BookingsPlacesTranslationsApi extends BaseAPI {
|
|
|
19815
19892
|
* @param {*} [options] Override http request option.
|
|
19816
19893
|
* @throws {RequiredError}
|
|
19817
19894
|
*/
|
|
19818
|
-
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19895
|
+
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
19819
19896
|
}
|
|
19820
19897
|
/**
|
|
19821
19898
|
* BookingsQuestionsApi - axios parameter creator
|
|
@@ -20742,7 +20819,7 @@ export declare const BookingsQuestionsChoicesTranslationsApiFp: (configuration?:
|
|
|
20742
20819
|
* @param {*} [options] Override http request option.
|
|
20743
20820
|
* @throws {RequiredError}
|
|
20744
20821
|
*/
|
|
20745
|
-
deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
20822
|
+
deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
20746
20823
|
/**
|
|
20747
20824
|
* Get Booking Space Question Choice Translation endpoint
|
|
20748
20825
|
* @summary Get Booking Space Question Choice Translation
|
|
@@ -20791,7 +20868,7 @@ export declare const BookingsQuestionsChoicesTranslationsApiFactory: (configurat
|
|
|
20791
20868
|
* @param {*} [options] Override http request option.
|
|
20792
20869
|
* @throws {RequiredError}
|
|
20793
20870
|
*/
|
|
20794
|
-
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
20871
|
+
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
20795
20872
|
/**
|
|
20796
20873
|
* Get Booking Space Question Choice Translation endpoint
|
|
20797
20874
|
* @summary Get Booking Space Question Choice Translation
|
|
@@ -20925,7 +21002,7 @@ export declare class BookingsQuestionsChoicesTranslationsApi extends BaseAPI {
|
|
|
20925
21002
|
* @param {*} [options] Override http request option.
|
|
20926
21003
|
* @throws {RequiredError}
|
|
20927
21004
|
*/
|
|
20928
|
-
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21005
|
+
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
20929
21006
|
/**
|
|
20930
21007
|
* Get Booking Space Question Choice Translation endpoint
|
|
20931
21008
|
* @summary Get Booking Space Question Choice Translation
|
|
@@ -21014,7 +21091,7 @@ export declare const BookingsQuestionsTranslationsApiFp: (configuration?: Config
|
|
|
21014
21091
|
* @param {*} [options] Override http request option.
|
|
21015
21092
|
* @throws {RequiredError}
|
|
21016
21093
|
*/
|
|
21017
|
-
deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21094
|
+
deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
21018
21095
|
/**
|
|
21019
21096
|
* Get Booking Space Question Translation endpoint
|
|
21020
21097
|
* @summary Get Booking Space Question Translation
|
|
@@ -21060,7 +21137,7 @@ export declare const BookingsQuestionsTranslationsApiFactory: (configuration?: C
|
|
|
21060
21137
|
* @param {*} [options] Override http request option.
|
|
21061
21138
|
* @throws {RequiredError}
|
|
21062
21139
|
*/
|
|
21063
|
-
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21140
|
+
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
21064
21141
|
/**
|
|
21065
21142
|
* Get Booking Space Question Translation endpoint
|
|
21066
21143
|
* @summary Get Booking Space Question Translation
|
|
@@ -21178,7 +21255,7 @@ export declare class BookingsQuestionsTranslationsApi extends BaseAPI {
|
|
|
21178
21255
|
* @param {*} [options] Override http request option.
|
|
21179
21256
|
* @throws {RequiredError}
|
|
21180
21257
|
*/
|
|
21181
|
-
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21258
|
+
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
21182
21259
|
/**
|
|
21183
21260
|
* Get Booking Space Question Translation endpoint
|
|
21184
21261
|
* @summary Get Booking Space Question Translation
|
|
@@ -21407,7 +21484,7 @@ export declare const BookingsSpacesTranslationsApiFp: (configuration?: Configura
|
|
|
21407
21484
|
* @param {*} [options] Override http request option.
|
|
21408
21485
|
* @throws {RequiredError}
|
|
21409
21486
|
*/
|
|
21410
|
-
deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21487
|
+
deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
21411
21488
|
/**
|
|
21412
21489
|
* Update Booking Space Translation endpoint
|
|
21413
21490
|
* @summary Update Booking Space Translation
|
|
@@ -21418,7 +21495,7 @@ export declare const BookingsSpacesTranslationsApiFp: (configuration?: Configura
|
|
|
21418
21495
|
* @param {*} [options] Override http request option.
|
|
21419
21496
|
* @throws {RequiredError}
|
|
21420
21497
|
*/
|
|
21421
|
-
updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21498
|
+
updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
21422
21499
|
};
|
|
21423
21500
|
/**
|
|
21424
21501
|
* BookingsSpacesTranslationsApi - factory interface
|
|
@@ -21431,7 +21508,7 @@ export declare const BookingsSpacesTranslationsApiFactory: (configuration?: Conf
|
|
|
21431
21508
|
* @param {*} [options] Override http request option.
|
|
21432
21509
|
* @throws {RequiredError}
|
|
21433
21510
|
*/
|
|
21434
|
-
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21511
|
+
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
21435
21512
|
/**
|
|
21436
21513
|
* Update Booking Space Translation endpoint
|
|
21437
21514
|
* @summary Update Booking Space Translation
|
|
@@ -21439,7 +21516,7 @@ export declare const BookingsSpacesTranslationsApiFactory: (configuration?: Conf
|
|
|
21439
21516
|
* @param {*} [options] Override http request option.
|
|
21440
21517
|
* @throws {RequiredError}
|
|
21441
21518
|
*/
|
|
21442
|
-
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21519
|
+
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
21443
21520
|
};
|
|
21444
21521
|
/**
|
|
21445
21522
|
* Request parameters for deleteBookingSpaceTranslation operation in BookingsSpacesTranslationsApi.
|
|
@@ -21487,7 +21564,7 @@ export declare class BookingsSpacesTranslationsApi extends BaseAPI {
|
|
|
21487
21564
|
* @param {*} [options] Override http request option.
|
|
21488
21565
|
* @throws {RequiredError}
|
|
21489
21566
|
*/
|
|
21490
|
-
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21567
|
+
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
21491
21568
|
/**
|
|
21492
21569
|
* Update Booking Space Translation endpoint
|
|
21493
21570
|
* @summary Update Booking Space Translation
|
|
@@ -21495,7 +21572,7 @@ export declare class BookingsSpacesTranslationsApi extends BaseAPI {
|
|
|
21495
21572
|
* @param {*} [options] Override http request option.
|
|
21496
21573
|
* @throws {RequiredError}
|
|
21497
21574
|
*/
|
|
21498
|
-
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21575
|
+
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
21499
21576
|
}
|
|
21500
21577
|
/**
|
|
21501
21578
|
* ChannelsApi - axios parameter creator
|
|
@@ -23261,7 +23338,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23261
23338
|
* @param {*} [options] Override http request option.
|
|
23262
23339
|
* @throws {RequiredError}
|
|
23263
23340
|
*/
|
|
23264
|
-
deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23341
|
+
deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23265
23342
|
/**
|
|
23266
23343
|
* Delete Channel Content Translation endpoint
|
|
23267
23344
|
* @summary Delete Channel Content Translation
|
|
@@ -23271,7 +23348,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23271
23348
|
* @param {*} [options] Override http request option.
|
|
23272
23349
|
* @throws {RequiredError}
|
|
23273
23350
|
*/
|
|
23274
|
-
deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23351
|
+
deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23275
23352
|
/**
|
|
23276
23353
|
* Delete Channel Translation endpoint
|
|
23277
23354
|
* @summary Delete Channel Translation
|
|
@@ -23280,7 +23357,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23280
23357
|
* @param {*} [options] Override http request option.
|
|
23281
23358
|
* @throws {RequiredError}
|
|
23282
23359
|
*/
|
|
23283
|
-
deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23360
|
+
deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23284
23361
|
/**
|
|
23285
23362
|
* Get Channel Content Guest Translation endpoint
|
|
23286
23363
|
* @summary Get Channel Content Guest Translation
|
|
@@ -23372,7 +23449,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23372
23449
|
* @param {*} [options] Override http request option.
|
|
23373
23450
|
* @throws {RequiredError}
|
|
23374
23451
|
*/
|
|
23375
|
-
updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23452
|
+
updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23376
23453
|
/**
|
|
23377
23454
|
* Update Channel Translation endpoint
|
|
23378
23455
|
* @summary Update Channel Translation
|
|
@@ -23395,7 +23472,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23395
23472
|
* @param {*} [options] Override http request option.
|
|
23396
23473
|
* @throws {RequiredError}
|
|
23397
23474
|
*/
|
|
23398
|
-
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23475
|
+
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23399
23476
|
/**
|
|
23400
23477
|
* Delete Channel Content Translation endpoint
|
|
23401
23478
|
* @summary Delete Channel Content Translation
|
|
@@ -23403,7 +23480,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23403
23480
|
* @param {*} [options] Override http request option.
|
|
23404
23481
|
* @throws {RequiredError}
|
|
23405
23482
|
*/
|
|
23406
|
-
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23483
|
+
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23407
23484
|
/**
|
|
23408
23485
|
* Delete Channel Translation endpoint
|
|
23409
23486
|
* @summary Delete Channel Translation
|
|
@@ -23411,7 +23488,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23411
23488
|
* @param {*} [options] Override http request option.
|
|
23412
23489
|
* @throws {RequiredError}
|
|
23413
23490
|
*/
|
|
23414
|
-
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23491
|
+
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23415
23492
|
/**
|
|
23416
23493
|
* Get Channel Content Guest Translation endpoint
|
|
23417
23494
|
* @summary Get Channel Content Guest Translation
|
|
@@ -23475,7 +23552,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23475
23552
|
* @param {*} [options] Override http request option.
|
|
23476
23553
|
* @throws {RequiredError}
|
|
23477
23554
|
*/
|
|
23478
|
-
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23555
|
+
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23479
23556
|
/**
|
|
23480
23557
|
* Update Channel Translation endpoint
|
|
23481
23558
|
* @summary Update Channel Translation
|
|
@@ -23739,7 +23816,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23739
23816
|
* @param {*} [options] Override http request option.
|
|
23740
23817
|
* @throws {RequiredError}
|
|
23741
23818
|
*/
|
|
23742
|
-
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23819
|
+
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23743
23820
|
/**
|
|
23744
23821
|
* Delete Channel Content Translation endpoint
|
|
23745
23822
|
* @summary Delete Channel Content Translation
|
|
@@ -23747,7 +23824,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23747
23824
|
* @param {*} [options] Override http request option.
|
|
23748
23825
|
* @throws {RequiredError}
|
|
23749
23826
|
*/
|
|
23750
|
-
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23827
|
+
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23751
23828
|
/**
|
|
23752
23829
|
* Delete Channel Translation endpoint
|
|
23753
23830
|
* @summary Delete Channel Translation
|
|
@@ -23755,7 +23832,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23755
23832
|
* @param {*} [options] Override http request option.
|
|
23756
23833
|
* @throws {RequiredError}
|
|
23757
23834
|
*/
|
|
23758
|
-
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23835
|
+
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23759
23836
|
/**
|
|
23760
23837
|
* Get Channel Content Guest Translation endpoint
|
|
23761
23838
|
* @summary Get Channel Content Guest Translation
|
|
@@ -23819,7 +23896,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23819
23896
|
* @param {*} [options] Override http request option.
|
|
23820
23897
|
* @throws {RequiredError}
|
|
23821
23898
|
*/
|
|
23822
|
-
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23899
|
+
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23823
23900
|
/**
|
|
23824
23901
|
* Update Channel Translation endpoint
|
|
23825
23902
|
* @summary Update Channel Translation
|
|
@@ -23898,7 +23975,7 @@ export declare const DashboardsApiFp: (configuration?: Configuration) => {
|
|
|
23898
23975
|
* @param {*} [options] Override http request option.
|
|
23899
23976
|
* @throws {RequiredError}
|
|
23900
23977
|
*/
|
|
23901
|
-
deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23978
|
+
deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23902
23979
|
/**
|
|
23903
23980
|
* Get Dashboard endpoint
|
|
23904
23981
|
* @summary Get Dashboard
|
|
@@ -23948,7 +24025,7 @@ export declare const DashboardsApiFactory: (configuration?: Configuration, baseP
|
|
|
23948
24025
|
* @param {*} [options] Override http request option.
|
|
23949
24026
|
* @throws {RequiredError}
|
|
23950
24027
|
*/
|
|
23951
|
-
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24028
|
+
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23952
24029
|
/**
|
|
23953
24030
|
* Get Dashboard endpoint
|
|
23954
24031
|
* @summary Get Dashboard
|
|
@@ -24052,7 +24129,7 @@ export declare class DashboardsApi extends BaseAPI {
|
|
|
24052
24129
|
* @param {*} [options] Override http request option.
|
|
24053
24130
|
* @throws {RequiredError}
|
|
24054
24131
|
*/
|
|
24055
|
-
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24132
|
+
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24056
24133
|
/**
|
|
24057
24134
|
* Get Dashboard endpoint
|
|
24058
24135
|
* @summary Get Dashboard
|
|
@@ -24141,7 +24218,7 @@ export declare const DashboardsWidgetsApiFp: (configuration?: Configuration) =>
|
|
|
24141
24218
|
* @param {*} [options] Override http request option.
|
|
24142
24219
|
* @throws {RequiredError}
|
|
24143
24220
|
*/
|
|
24144
|
-
deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24221
|
+
deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24145
24222
|
/**
|
|
24146
24223
|
* Get Dashboard Widgets endpoint
|
|
24147
24224
|
* @summary Get Dashboard Widgets
|
|
@@ -24181,7 +24258,7 @@ export declare const DashboardsWidgetsApiFactory: (configuration?: Configuration
|
|
|
24181
24258
|
* @param {*} [options] Override http request option.
|
|
24182
24259
|
* @throws {RequiredError}
|
|
24183
24260
|
*/
|
|
24184
|
-
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24261
|
+
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24185
24262
|
/**
|
|
24186
24263
|
* Get Dashboard Widgets endpoint
|
|
24187
24264
|
* @summary Get Dashboard Widgets
|
|
@@ -24268,7 +24345,7 @@ export declare class DashboardsWidgetsApi extends BaseAPI {
|
|
|
24268
24345
|
* @param {*} [options] Override http request option.
|
|
24269
24346
|
* @throws {RequiredError}
|
|
24270
24347
|
*/
|
|
24271
|
-
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24348
|
+
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24272
24349
|
/**
|
|
24273
24350
|
* Get Dashboard Widgets endpoint
|
|
24274
24351
|
* @summary Get Dashboard Widgets
|
|
@@ -24546,7 +24623,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24546
24623
|
* @param {*} [options] Override http request option.
|
|
24547
24624
|
* @throws {RequiredError}
|
|
24548
24625
|
*/
|
|
24549
|
-
cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24626
|
+
cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24550
24627
|
/**
|
|
24551
24628
|
* Create Event endpoint
|
|
24552
24629
|
* @summary Create Event
|
|
@@ -24570,7 +24647,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24570
24647
|
* @param {*} [options] Override http request option.
|
|
24571
24648
|
* @throws {RequiredError}
|
|
24572
24649
|
*/
|
|
24573
|
-
disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24650
|
+
disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24574
24651
|
/**
|
|
24575
24652
|
* Enable Event Build Mode endpoint
|
|
24576
24653
|
* @summary Enable Event Build Mode
|
|
@@ -24578,7 +24655,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24578
24655
|
* @param {*} [options] Override http request option.
|
|
24579
24656
|
* @throws {RequiredError}
|
|
24580
24657
|
*/
|
|
24581
|
-
enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24658
|
+
enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24582
24659
|
/**
|
|
24583
24660
|
* Get Event endpoint
|
|
24584
24661
|
* @summary Get Event
|
|
@@ -24667,7 +24744,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24667
24744
|
* @param {*} [options] Override http request option.
|
|
24668
24745
|
* @throws {RequiredError}
|
|
24669
24746
|
*/
|
|
24670
|
-
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24747
|
+
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24671
24748
|
/**
|
|
24672
24749
|
* Create Event endpoint
|
|
24673
24750
|
* @summary Create Event
|
|
@@ -24691,7 +24768,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24691
24768
|
* @param {*} [options] Override http request option.
|
|
24692
24769
|
* @throws {RequiredError}
|
|
24693
24770
|
*/
|
|
24694
|
-
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24771
|
+
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24695
24772
|
/**
|
|
24696
24773
|
* Enable Event Build Mode endpoint
|
|
24697
24774
|
* @summary Enable Event Build Mode
|
|
@@ -24699,7 +24776,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24699
24776
|
* @param {*} [options] Override http request option.
|
|
24700
24777
|
* @throws {RequiredError}
|
|
24701
24778
|
*/
|
|
24702
|
-
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24779
|
+
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24703
24780
|
/**
|
|
24704
24781
|
* Get Event endpoint
|
|
24705
24782
|
* @summary Get Event
|
|
@@ -24951,7 +25028,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
24951
25028
|
* @param {*} [options] Override http request option.
|
|
24952
25029
|
* @throws {RequiredError}
|
|
24953
25030
|
*/
|
|
24954
|
-
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25031
|
+
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24955
25032
|
/**
|
|
24956
25033
|
* Create Event endpoint
|
|
24957
25034
|
* @summary Create Event
|
|
@@ -24975,7 +25052,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
24975
25052
|
* @param {*} [options] Override http request option.
|
|
24976
25053
|
* @throws {RequiredError}
|
|
24977
25054
|
*/
|
|
24978
|
-
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25055
|
+
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24979
25056
|
/**
|
|
24980
25057
|
* Enable Event Build Mode endpoint
|
|
24981
25058
|
* @summary Enable Event Build Mode
|
|
@@ -24983,7 +25060,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
24983
25060
|
* @param {*} [options] Override http request option.
|
|
24984
25061
|
* @throws {RequiredError}
|
|
24985
25062
|
*/
|
|
24986
|
-
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25063
|
+
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24987
25064
|
/**
|
|
24988
25065
|
* Get Event endpoint
|
|
24989
25066
|
* @summary Get Event
|
|
@@ -25088,7 +25165,7 @@ export declare const EventsAccessApiFp: (configuration?: Configuration) => {
|
|
|
25088
25165
|
* @param {*} [options] Override http request option.
|
|
25089
25166
|
* @throws {RequiredError}
|
|
25090
25167
|
*/
|
|
25091
|
-
addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25168
|
+
addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
25092
25169
|
/**
|
|
25093
25170
|
* Get Event Access Users endpoint
|
|
25094
25171
|
* @summary Get Event Access Users
|
|
@@ -25109,7 +25186,7 @@ export declare const EventsAccessApiFp: (configuration?: Configuration) => {
|
|
|
25109
25186
|
* @param {*} [options] Override http request option.
|
|
25110
25187
|
* @throws {RequiredError}
|
|
25111
25188
|
*/
|
|
25112
|
-
removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25189
|
+
removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
25113
25190
|
};
|
|
25114
25191
|
/**
|
|
25115
25192
|
* EventsAccessApi - factory interface
|
|
@@ -25122,7 +25199,7 @@ export declare const EventsAccessApiFactory: (configuration?: Configuration, bas
|
|
|
25122
25199
|
* @param {*} [options] Override http request option.
|
|
25123
25200
|
* @throws {RequiredError}
|
|
25124
25201
|
*/
|
|
25125
|
-
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
25202
|
+
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
25126
25203
|
/**
|
|
25127
25204
|
* Get Event Access Users endpoint
|
|
25128
25205
|
* @summary Get Event Access Users
|
|
@@ -25138,7 +25215,7 @@ export declare const EventsAccessApiFactory: (configuration?: Configuration, bas
|
|
|
25138
25215
|
* @param {*} [options] Override http request option.
|
|
25139
25216
|
* @throws {RequiredError}
|
|
25140
25217
|
*/
|
|
25141
|
-
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
25218
|
+
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
25142
25219
|
};
|
|
25143
25220
|
/**
|
|
25144
25221
|
* Request parameters for addEventAccessUser operation in EventsAccessApi.
|
|
@@ -25202,7 +25279,7 @@ export declare class EventsAccessApi extends BaseAPI {
|
|
|
25202
25279
|
* @param {*} [options] Override http request option.
|
|
25203
25280
|
* @throws {RequiredError}
|
|
25204
25281
|
*/
|
|
25205
|
-
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25282
|
+
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
25206
25283
|
/**
|
|
25207
25284
|
* Get Event Access Users endpoint
|
|
25208
25285
|
* @summary Get Event Access Users
|
|
@@ -25218,7 +25295,7 @@ export declare class EventsAccessApi extends BaseAPI {
|
|
|
25218
25295
|
* @param {*} [options] Override http request option.
|
|
25219
25296
|
* @throws {RequiredError}
|
|
25220
25297
|
*/
|
|
25221
|
-
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25298
|
+
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
25222
25299
|
}
|
|
25223
25300
|
/**
|
|
25224
25301
|
* EventsActivationsApi - axios parameter creator
|
|
@@ -25871,6 +25948,15 @@ export declare const EventsActivationsSessionsApiAxiosParamCreator: (configurati
|
|
|
25871
25948
|
* @throws {RequiredError}
|
|
25872
25949
|
*/
|
|
25873
25950
|
removeEventActivationSession: (eventId: string, activationId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25951
|
+
/**
|
|
25952
|
+
* Remove Event Activation Sessions endpoint
|
|
25953
|
+
* @summary Remove Event Activation Sessions
|
|
25954
|
+
* @param {string} eventId The event identifier
|
|
25955
|
+
* @param {string} activationId The activation identifier
|
|
25956
|
+
* @param {*} [options] Override http request option.
|
|
25957
|
+
* @throws {RequiredError}
|
|
25958
|
+
*/
|
|
25959
|
+
removeEventActivationSessions: (eventId: string, activationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25874
25960
|
};
|
|
25875
25961
|
/**
|
|
25876
25962
|
* EventsActivationsSessionsApi - functional programming interface
|
|
@@ -25896,6 +25982,15 @@ export declare const EventsActivationsSessionsApiFp: (configuration?: Configurat
|
|
|
25896
25982
|
* @throws {RequiredError}
|
|
25897
25983
|
*/
|
|
25898
25984
|
removeEventActivationSession(eventId: string, activationId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventActivation200Response>>;
|
|
25985
|
+
/**
|
|
25986
|
+
* Remove Event Activation Sessions endpoint
|
|
25987
|
+
* @summary Remove Event Activation Sessions
|
|
25988
|
+
* @param {string} eventId The event identifier
|
|
25989
|
+
* @param {string} activationId The activation identifier
|
|
25990
|
+
* @param {*} [options] Override http request option.
|
|
25991
|
+
* @throws {RequiredError}
|
|
25992
|
+
*/
|
|
25993
|
+
removeEventActivationSessions(eventId: string, activationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventActivation200Response>>;
|
|
25899
25994
|
};
|
|
25900
25995
|
/**
|
|
25901
25996
|
* EventsActivationsSessionsApi - factory interface
|
|
@@ -25917,6 +26012,14 @@ export declare const EventsActivationsSessionsApiFactory: (configuration?: Confi
|
|
|
25917
26012
|
* @throws {RequiredError}
|
|
25918
26013
|
*/
|
|
25919
26014
|
removeEventActivationSession(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventActivation200Response>;
|
|
26015
|
+
/**
|
|
26016
|
+
* Remove Event Activation Sessions endpoint
|
|
26017
|
+
* @summary Remove Event Activation Sessions
|
|
26018
|
+
* @param {EventsActivationsSessionsApiRemoveEventActivationSessionsRequest} requestParameters Request parameters.
|
|
26019
|
+
* @param {*} [options] Override http request option.
|
|
26020
|
+
* @throws {RequiredError}
|
|
26021
|
+
*/
|
|
26022
|
+
removeEventActivationSessions(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventActivation200Response>;
|
|
25920
26023
|
};
|
|
25921
26024
|
/**
|
|
25922
26025
|
* Request parameters for addEventActivationSession operation in EventsActivationsSessionsApi.
|
|
@@ -25952,6 +26055,19 @@ export interface EventsActivationsSessionsApiRemoveEventActivationSessionRequest
|
|
|
25952
26055
|
*/
|
|
25953
26056
|
readonly sessionId: string;
|
|
25954
26057
|
}
|
|
26058
|
+
/**
|
|
26059
|
+
* Request parameters for removeEventActivationSessions operation in EventsActivationsSessionsApi.
|
|
26060
|
+
*/
|
|
26061
|
+
export interface EventsActivationsSessionsApiRemoveEventActivationSessionsRequest {
|
|
26062
|
+
/**
|
|
26063
|
+
* The event identifier
|
|
26064
|
+
*/
|
|
26065
|
+
readonly eventId: string;
|
|
26066
|
+
/**
|
|
26067
|
+
* The activation identifier
|
|
26068
|
+
*/
|
|
26069
|
+
readonly activationId: string;
|
|
26070
|
+
}
|
|
25955
26071
|
/**
|
|
25956
26072
|
* EventsActivationsSessionsApi - object-oriented interface
|
|
25957
26073
|
*/
|
|
@@ -25972,6 +26088,14 @@ export declare class EventsActivationsSessionsApi extends BaseAPI {
|
|
|
25972
26088
|
* @throws {RequiredError}
|
|
25973
26089
|
*/
|
|
25974
26090
|
removeEventActivationSession(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventActivation200Response, any, {}>>;
|
|
26091
|
+
/**
|
|
26092
|
+
* Remove Event Activation Sessions endpoint
|
|
26093
|
+
* @summary Remove Event Activation Sessions
|
|
26094
|
+
* @param {EventsActivationsSessionsApiRemoveEventActivationSessionsRequest} requestParameters Request parameters.
|
|
26095
|
+
* @param {*} [options] Override http request option.
|
|
26096
|
+
* @throws {RequiredError}
|
|
26097
|
+
*/
|
|
26098
|
+
removeEventActivationSessions(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventActivation200Response, any, {}>>;
|
|
25975
26099
|
}
|
|
25976
26100
|
/**
|
|
25977
26101
|
* EventsActivationsTranslationsApi - axios parameter creator
|
|
@@ -26035,7 +26159,7 @@ export declare const EventsActivationsTranslationsApiFp: (configuration?: Config
|
|
|
26035
26159
|
* @param {*} [options] Override http request option.
|
|
26036
26160
|
* @throws {RequiredError}
|
|
26037
26161
|
*/
|
|
26038
|
-
deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26162
|
+
deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
26039
26163
|
/**
|
|
26040
26164
|
* Get Event Activation Translation endpoint
|
|
26041
26165
|
* @summary Get Event Activation Translation
|
|
@@ -26082,7 +26206,7 @@ export declare const EventsActivationsTranslationsApiFactory: (configuration?: C
|
|
|
26082
26206
|
* @param {*} [options] Override http request option.
|
|
26083
26207
|
* @throws {RequiredError}
|
|
26084
26208
|
*/
|
|
26085
|
-
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26209
|
+
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
26086
26210
|
/**
|
|
26087
26211
|
* Get Event Activation Translation endpoint
|
|
26088
26212
|
* @summary Get Event Activation Translation
|
|
@@ -26200,7 +26324,7 @@ export declare class EventsActivationsTranslationsApi extends BaseAPI {
|
|
|
26200
26324
|
* @param {*} [options] Override http request option.
|
|
26201
26325
|
* @throws {RequiredError}
|
|
26202
26326
|
*/
|
|
26203
|
-
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26327
|
+
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
26204
26328
|
/**
|
|
26205
26329
|
* Get Event Activation Translation endpoint
|
|
26206
26330
|
* @summary Get Event Activation Translation
|
|
@@ -27007,7 +27131,7 @@ export declare const EventsAddonsTranslationsApiFp: (configuration?: Configurati
|
|
|
27007
27131
|
* @param {*} [options] Override http request option.
|
|
27008
27132
|
* @throws {RequiredError}
|
|
27009
27133
|
*/
|
|
27010
|
-
deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
27134
|
+
deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
27011
27135
|
/**
|
|
27012
27136
|
* Get Event Add On Translation endpoint
|
|
27013
27137
|
* @summary Get Event Add On Translation
|
|
@@ -27054,7 +27178,7 @@ export declare const EventsAddonsTranslationsApiFactory: (configuration?: Config
|
|
|
27054
27178
|
* @param {*} [options] Override http request option.
|
|
27055
27179
|
* @throws {RequiredError}
|
|
27056
27180
|
*/
|
|
27057
|
-
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
27181
|
+
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
27058
27182
|
/**
|
|
27059
27183
|
* Get Event Add On Translation endpoint
|
|
27060
27184
|
* @summary Get Event Add On Translation
|
|
@@ -27172,7 +27296,7 @@ export declare class EventsAddonsTranslationsApi extends BaseAPI {
|
|
|
27172
27296
|
* @param {*} [options] Override http request option.
|
|
27173
27297
|
* @throws {RequiredError}
|
|
27174
27298
|
*/
|
|
27175
|
-
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
27299
|
+
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
27176
27300
|
/**
|
|
27177
27301
|
* Get Event Add On Translation endpoint
|
|
27178
27302
|
* @summary Get Event Add On Translation
|
|
@@ -27319,6 +27443,14 @@ export declare const EventsAttendeesApiAxiosParamCreator: (configuration?: Confi
|
|
|
27319
27443
|
* @throws {RequiredError}
|
|
27320
27444
|
*/
|
|
27321
27445
|
resendRegistrationConfirmationEmail: (eventId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27446
|
+
/**
|
|
27447
|
+
* Sync Event Attendees endpoint
|
|
27448
|
+
* @summary Sync Event Attendees
|
|
27449
|
+
* @param {string} eventId The event identifier
|
|
27450
|
+
* @param {*} [options] Override http request option.
|
|
27451
|
+
* @throws {RequiredError}
|
|
27452
|
+
*/
|
|
27453
|
+
syncEventAttendees: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27322
27454
|
/**
|
|
27323
27455
|
* Update Event Attendee endpoint
|
|
27324
27456
|
* @summary Update Event Attendee
|
|
@@ -27451,6 +27583,14 @@ export declare const EventsAttendeesApiFp: (configuration?: Configuration) => {
|
|
|
27451
27583
|
* @throws {RequiredError}
|
|
27452
27584
|
*/
|
|
27453
27585
|
resendRegistrationConfirmationEmail(eventId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
27586
|
+
/**
|
|
27587
|
+
* Sync Event Attendees endpoint
|
|
27588
|
+
* @summary Sync Event Attendees
|
|
27589
|
+
* @param {string} eventId The event identifier
|
|
27590
|
+
* @param {*} [options] Override http request option.
|
|
27591
|
+
* @throws {RequiredError}
|
|
27592
|
+
*/
|
|
27593
|
+
syncEventAttendees(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
27454
27594
|
/**
|
|
27455
27595
|
* Update Event Attendee endpoint
|
|
27456
27596
|
* @summary Update Event Attendee
|
|
@@ -27546,6 +27686,14 @@ export declare const EventsAttendeesApiFactory: (configuration?: Configuration,
|
|
|
27546
27686
|
* @throws {RequiredError}
|
|
27547
27687
|
*/
|
|
27548
27688
|
resendRegistrationConfirmationEmail(requestParameters: EventsAttendeesApiResendRegistrationConfirmationEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
27689
|
+
/**
|
|
27690
|
+
* Sync Event Attendees endpoint
|
|
27691
|
+
* @summary Sync Event Attendees
|
|
27692
|
+
* @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
|
|
27693
|
+
* @param {*} [options] Override http request option.
|
|
27694
|
+
* @throws {RequiredError}
|
|
27695
|
+
*/
|
|
27696
|
+
syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
27549
27697
|
/**
|
|
27550
27698
|
* Update Event Attendee endpoint
|
|
27551
27699
|
* @summary Update Event Attendee
|
|
@@ -27790,6 +27938,15 @@ export interface EventsAttendeesApiResendRegistrationConfirmationEmailRequest {
|
|
|
27790
27938
|
*/
|
|
27791
27939
|
readonly accountId: string;
|
|
27792
27940
|
}
|
|
27941
|
+
/**
|
|
27942
|
+
* Request parameters for syncEventAttendees operation in EventsAttendeesApi.
|
|
27943
|
+
*/
|
|
27944
|
+
export interface EventsAttendeesApiSyncEventAttendeesRequest {
|
|
27945
|
+
/**
|
|
27946
|
+
* The event identifier
|
|
27947
|
+
*/
|
|
27948
|
+
readonly eventId: string;
|
|
27949
|
+
}
|
|
27793
27950
|
/**
|
|
27794
27951
|
* Request parameters for updateEventAttendee operation in EventsAttendeesApi.
|
|
27795
27952
|
*/
|
|
@@ -27888,6 +28045,14 @@ export declare class EventsAttendeesApi extends BaseAPI {
|
|
|
27888
28045
|
* @throws {RequiredError}
|
|
27889
28046
|
*/
|
|
27890
28047
|
resendRegistrationConfirmationEmail(requestParameters: EventsAttendeesApiResendRegistrationConfirmationEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
28048
|
+
/**
|
|
28049
|
+
* Sync Event Attendees endpoint
|
|
28050
|
+
* @summary Sync Event Attendees
|
|
28051
|
+
* @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
|
|
28052
|
+
* @param {*} [options] Override http request option.
|
|
28053
|
+
* @throws {RequiredError}
|
|
28054
|
+
*/
|
|
28055
|
+
syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
27891
28056
|
/**
|
|
27892
28057
|
* Update Event Attendee endpoint
|
|
27893
28058
|
* @summary Update Event Attendee
|
|
@@ -27980,7 +28145,7 @@ export declare const EventsAttendeesPackagesApiFp: (configuration?: Configuratio
|
|
|
27980
28145
|
* @param {*} [options] Override http request option.
|
|
27981
28146
|
* @throws {RequiredError}
|
|
27982
28147
|
*/
|
|
27983
|
-
deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
28148
|
+
deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
27984
28149
|
/**
|
|
27985
28150
|
* Get Event Attendee Package endpoint
|
|
27986
28151
|
* @summary Get Event Attendee Package
|
|
@@ -28036,7 +28201,7 @@ export declare const EventsAttendeesPackagesApiFactory: (configuration?: Configu
|
|
|
28036
28201
|
* @param {*} [options] Override http request option.
|
|
28037
28202
|
* @throws {RequiredError}
|
|
28038
28203
|
*/
|
|
28039
|
-
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
28204
|
+
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
28040
28205
|
/**
|
|
28041
28206
|
* Get Event Attendee Package endpoint
|
|
28042
28207
|
* @summary Get Event Attendee Package
|
|
@@ -28186,7 +28351,7 @@ export declare class EventsAttendeesPackagesApi extends BaseAPI {
|
|
|
28186
28351
|
* @param {*} [options] Override http request option.
|
|
28187
28352
|
* @throws {RequiredError}
|
|
28188
28353
|
*/
|
|
28189
|
-
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
28354
|
+
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
28190
28355
|
/**
|
|
28191
28356
|
* Get Event Attendee Package endpoint
|
|
28192
28357
|
* @summary Get Event Attendee Package
|
|
@@ -30879,7 +31044,7 @@ export declare const EventsEmailsTranslationsApiFp: (configuration?: Configurati
|
|
|
30879
31044
|
* @param {*} [options] Override http request option.
|
|
30880
31045
|
* @throws {RequiredError}
|
|
30881
31046
|
*/
|
|
30882
|
-
deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31047
|
+
deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
30883
31048
|
/**
|
|
30884
31049
|
* Get Event Email Translation endpoint
|
|
30885
31050
|
* @summary Get Event Email Translation
|
|
@@ -30913,7 +31078,7 @@ export declare const EventsEmailsTranslationsApiFp: (configuration?: Configurati
|
|
|
30913
31078
|
* @param {*} [options] Override http request option.
|
|
30914
31079
|
* @throws {RequiredError}
|
|
30915
31080
|
*/
|
|
30916
|
-
updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31081
|
+
updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
30917
31082
|
};
|
|
30918
31083
|
/**
|
|
30919
31084
|
* EventsEmailsTranslationsApi - factory interface
|
|
@@ -30926,7 +31091,7 @@ export declare const EventsEmailsTranslationsApiFactory: (configuration?: Config
|
|
|
30926
31091
|
* @param {*} [options] Override http request option.
|
|
30927
31092
|
* @throws {RequiredError}
|
|
30928
31093
|
*/
|
|
30929
|
-
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
31094
|
+
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
30930
31095
|
/**
|
|
30931
31096
|
* Get Event Email Translation endpoint
|
|
30932
31097
|
* @summary Get Event Email Translation
|
|
@@ -30950,7 +31115,7 @@ export declare const EventsEmailsTranslationsApiFactory: (configuration?: Config
|
|
|
30950
31115
|
* @param {*} [options] Override http request option.
|
|
30951
31116
|
* @throws {RequiredError}
|
|
30952
31117
|
*/
|
|
30953
|
-
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
31118
|
+
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
30954
31119
|
};
|
|
30955
31120
|
/**
|
|
30956
31121
|
* Request parameters for deleteEventEmailTranslation operation in EventsEmailsTranslationsApi.
|
|
@@ -31044,7 +31209,7 @@ export declare class EventsEmailsTranslationsApi extends BaseAPI {
|
|
|
31044
31209
|
* @param {*} [options] Override http request option.
|
|
31045
31210
|
* @throws {RequiredError}
|
|
31046
31211
|
*/
|
|
31047
|
-
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
31212
|
+
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
31048
31213
|
/**
|
|
31049
31214
|
* Get Event Email Translation endpoint
|
|
31050
31215
|
* @summary Get Event Email Translation
|
|
@@ -31068,7 +31233,7 @@ export declare class EventsEmailsTranslationsApi extends BaseAPI {
|
|
|
31068
31233
|
* @param {*} [options] Override http request option.
|
|
31069
31234
|
* @throws {RequiredError}
|
|
31070
31235
|
*/
|
|
31071
|
-
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
31236
|
+
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
31072
31237
|
}
|
|
31073
31238
|
/**
|
|
31074
31239
|
* EventsFaqsApi - axios parameter creator
|
|
@@ -31796,7 +31961,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31796
31961
|
* @param {*} [options] Override http request option.
|
|
31797
31962
|
* @throws {RequiredError}
|
|
31798
31963
|
*/
|
|
31799
|
-
deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31964
|
+
deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31800
31965
|
/**
|
|
31801
31966
|
* Delete Event Faq Section Translation endpoint
|
|
31802
31967
|
* @summary Delete Event Faq Section Translation
|
|
@@ -31806,7 +31971,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31806
31971
|
* @param {*} [options] Override http request option.
|
|
31807
31972
|
* @throws {RequiredError}
|
|
31808
31973
|
*/
|
|
31809
|
-
deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31974
|
+
deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31810
31975
|
/**
|
|
31811
31976
|
* Get Event Faq Section Question Translation endpoint
|
|
31812
31977
|
* @summary Get Event Faq Section Question Translation
|
|
@@ -31866,7 +32031,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31866
32031
|
* @param {*} [options] Override http request option.
|
|
31867
32032
|
* @throws {RequiredError}
|
|
31868
32033
|
*/
|
|
31869
|
-
updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
32034
|
+
updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31870
32035
|
/**
|
|
31871
32036
|
* Update Event Faq Section Translation endpoint
|
|
31872
32037
|
* @summary Update Event Faq Section Translation
|
|
@@ -31877,7 +32042,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31877
32042
|
* @param {*} [options] Override http request option.
|
|
31878
32043
|
* @throws {RequiredError}
|
|
31879
32044
|
*/
|
|
31880
|
-
updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
32045
|
+
updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31881
32046
|
};
|
|
31882
32047
|
/**
|
|
31883
32048
|
* EventsFaqsTranslationsApi - factory interface
|
|
@@ -31890,7 +32055,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31890
32055
|
* @param {*} [options] Override http request option.
|
|
31891
32056
|
* @throws {RequiredError}
|
|
31892
32057
|
*/
|
|
31893
|
-
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32058
|
+
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31894
32059
|
/**
|
|
31895
32060
|
* Delete Event Faq Section Translation endpoint
|
|
31896
32061
|
* @summary Delete Event Faq Section Translation
|
|
@@ -31898,7 +32063,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31898
32063
|
* @param {*} [options] Override http request option.
|
|
31899
32064
|
* @throws {RequiredError}
|
|
31900
32065
|
*/
|
|
31901
|
-
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32066
|
+
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31902
32067
|
/**
|
|
31903
32068
|
* Get Event Faq Section Question Translation endpoint
|
|
31904
32069
|
* @summary Get Event Faq Section Question Translation
|
|
@@ -31938,7 +32103,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31938
32103
|
* @param {*} [options] Override http request option.
|
|
31939
32104
|
* @throws {RequiredError}
|
|
31940
32105
|
*/
|
|
31941
|
-
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32106
|
+
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31942
32107
|
/**
|
|
31943
32108
|
* Update Event Faq Section Translation endpoint
|
|
31944
32109
|
* @summary Update Event Faq Section Translation
|
|
@@ -31946,7 +32111,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31946
32111
|
* @param {*} [options] Override http request option.
|
|
31947
32112
|
* @throws {RequiredError}
|
|
31948
32113
|
*/
|
|
31949
|
-
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32114
|
+
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31950
32115
|
};
|
|
31951
32116
|
/**
|
|
31952
32117
|
* Request parameters for deleteEventFaqSectionQuestionTranslation operation in EventsFaqsTranslationsApi.
|
|
@@ -32137,7 +32302,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32137
32302
|
* @param {*} [options] Override http request option.
|
|
32138
32303
|
* @throws {RequiredError}
|
|
32139
32304
|
*/
|
|
32140
|
-
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32305
|
+
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32141
32306
|
/**
|
|
32142
32307
|
* Delete Event Faq Section Translation endpoint
|
|
32143
32308
|
* @summary Delete Event Faq Section Translation
|
|
@@ -32145,7 +32310,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32145
32310
|
* @param {*} [options] Override http request option.
|
|
32146
32311
|
* @throws {RequiredError}
|
|
32147
32312
|
*/
|
|
32148
|
-
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32313
|
+
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32149
32314
|
/**
|
|
32150
32315
|
* Get Event Faq Section Question Translation endpoint
|
|
32151
32316
|
* @summary Get Event Faq Section Question Translation
|
|
@@ -32185,7 +32350,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32185
32350
|
* @param {*} [options] Override http request option.
|
|
32186
32351
|
* @throws {RequiredError}
|
|
32187
32352
|
*/
|
|
32188
|
-
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32353
|
+
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32189
32354
|
/**
|
|
32190
32355
|
* Update Event Faq Section Translation endpoint
|
|
32191
32356
|
* @summary Update Event Faq Section Translation
|
|
@@ -32193,7 +32358,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32193
32358
|
* @param {*} [options] Override http request option.
|
|
32194
32359
|
* @throws {RequiredError}
|
|
32195
32360
|
*/
|
|
32196
|
-
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32361
|
+
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32197
32362
|
}
|
|
32198
32363
|
/**
|
|
32199
32364
|
* EventsFollowupsApi - axios parameter creator
|
|
@@ -33371,7 +33536,7 @@ export declare const EventsFollowupsTranslationsApiFp: (configuration?: Configur
|
|
|
33371
33536
|
* @param {*} [options] Override http request option.
|
|
33372
33537
|
* @throws {RequiredError}
|
|
33373
33538
|
*/
|
|
33374
|
-
deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
33539
|
+
deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
33375
33540
|
/**
|
|
33376
33541
|
* Get Event Followup Translation endpoint
|
|
33377
33542
|
* @summary Get Event Followup Translation
|
|
@@ -33405,7 +33570,7 @@ export declare const EventsFollowupsTranslationsApiFp: (configuration?: Configur
|
|
|
33405
33570
|
* @param {*} [options] Override http request option.
|
|
33406
33571
|
* @throws {RequiredError}
|
|
33407
33572
|
*/
|
|
33408
|
-
updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
33573
|
+
updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
33409
33574
|
};
|
|
33410
33575
|
/**
|
|
33411
33576
|
* EventsFollowupsTranslationsApi - factory interface
|
|
@@ -33418,7 +33583,7 @@ export declare const EventsFollowupsTranslationsApiFactory: (configuration?: Con
|
|
|
33418
33583
|
* @param {*} [options] Override http request option.
|
|
33419
33584
|
* @throws {RequiredError}
|
|
33420
33585
|
*/
|
|
33421
|
-
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
33586
|
+
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
33422
33587
|
/**
|
|
33423
33588
|
* Get Event Followup Translation endpoint
|
|
33424
33589
|
* @summary Get Event Followup Translation
|
|
@@ -33442,7 +33607,7 @@ export declare const EventsFollowupsTranslationsApiFactory: (configuration?: Con
|
|
|
33442
33607
|
* @param {*} [options] Override http request option.
|
|
33443
33608
|
* @throws {RequiredError}
|
|
33444
33609
|
*/
|
|
33445
|
-
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
33610
|
+
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
33446
33611
|
};
|
|
33447
33612
|
/**
|
|
33448
33613
|
* Request parameters for deleteEventFollowupTranslation operation in EventsFollowupsTranslationsApi.
|
|
@@ -33536,7 +33701,7 @@ export declare class EventsFollowupsTranslationsApi extends BaseAPI {
|
|
|
33536
33701
|
* @param {*} [options] Override http request option.
|
|
33537
33702
|
* @throws {RequiredError}
|
|
33538
33703
|
*/
|
|
33539
|
-
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
33704
|
+
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
33540
33705
|
/**
|
|
33541
33706
|
* Get Event Followup Translation endpoint
|
|
33542
33707
|
* @summary Get Event Followup Translation
|
|
@@ -33560,7 +33725,7 @@ export declare class EventsFollowupsTranslationsApi extends BaseAPI {
|
|
|
33560
33725
|
* @param {*} [options] Override http request option.
|
|
33561
33726
|
* @throws {RequiredError}
|
|
33562
33727
|
*/
|
|
33563
|
-
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
33728
|
+
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
33564
33729
|
}
|
|
33565
33730
|
/**
|
|
33566
33731
|
* EventsMatchesApi - axios parameter creator
|
|
@@ -35054,7 +35219,7 @@ export declare const EventsMediaTranslationsApiFp: (configuration?: Configuratio
|
|
|
35054
35219
|
* @param {*} [options] Override http request option.
|
|
35055
35220
|
* @throws {RequiredError}
|
|
35056
35221
|
*/
|
|
35057
|
-
deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
35222
|
+
deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
35058
35223
|
/**
|
|
35059
35224
|
* Get Event Media Item Translation endpoint
|
|
35060
35225
|
* @summary Get Event Media Item Translation
|
|
@@ -35101,7 +35266,7 @@ export declare const EventsMediaTranslationsApiFactory: (configuration?: Configu
|
|
|
35101
35266
|
* @param {*} [options] Override http request option.
|
|
35102
35267
|
* @throws {RequiredError}
|
|
35103
35268
|
*/
|
|
35104
|
-
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
35269
|
+
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
35105
35270
|
/**
|
|
35106
35271
|
* Get Event Media Item Translation endpoint
|
|
35107
35272
|
* @summary Get Event Media Item Translation
|
|
@@ -35219,7 +35384,7 @@ export declare class EventsMediaTranslationsApi extends BaseAPI {
|
|
|
35219
35384
|
* @param {*} [options] Override http request option.
|
|
35220
35385
|
* @throws {RequiredError}
|
|
35221
35386
|
*/
|
|
35222
|
-
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
35387
|
+
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
35223
35388
|
/**
|
|
35224
35389
|
* Get Event Media Item Translation endpoint
|
|
35225
35390
|
* @summary Get Event Media Item Translation
|
|
@@ -36744,7 +36909,7 @@ export declare const EventsPagesTranslationsApiFp: (configuration?: Configuratio
|
|
|
36744
36909
|
* @param {*} [options] Override http request option.
|
|
36745
36910
|
* @throws {RequiredError}
|
|
36746
36911
|
*/
|
|
36747
|
-
deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
36912
|
+
deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
36748
36913
|
/**
|
|
36749
36914
|
* Get Event Page Translation endpoint
|
|
36750
36915
|
* @summary Get Event Page Translation
|
|
@@ -36778,7 +36943,7 @@ export declare const EventsPagesTranslationsApiFp: (configuration?: Configuratio
|
|
|
36778
36943
|
* @param {*} [options] Override http request option.
|
|
36779
36944
|
* @throws {RequiredError}
|
|
36780
36945
|
*/
|
|
36781
|
-
updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
36946
|
+
updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
36782
36947
|
};
|
|
36783
36948
|
/**
|
|
36784
36949
|
* EventsPagesTranslationsApi - factory interface
|
|
@@ -36791,7 +36956,7 @@ export declare const EventsPagesTranslationsApiFactory: (configuration?: Configu
|
|
|
36791
36956
|
* @param {*} [options] Override http request option.
|
|
36792
36957
|
* @throws {RequiredError}
|
|
36793
36958
|
*/
|
|
36794
|
-
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
36959
|
+
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
36795
36960
|
/**
|
|
36796
36961
|
* Get Event Page Translation endpoint
|
|
36797
36962
|
* @summary Get Event Page Translation
|
|
@@ -36815,7 +36980,7 @@ export declare const EventsPagesTranslationsApiFactory: (configuration?: Configu
|
|
|
36815
36980
|
* @param {*} [options] Override http request option.
|
|
36816
36981
|
* @throws {RequiredError}
|
|
36817
36982
|
*/
|
|
36818
|
-
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
36983
|
+
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
36819
36984
|
};
|
|
36820
36985
|
/**
|
|
36821
36986
|
* Request parameters for deleteEventPageTranslation operation in EventsPagesTranslationsApi.
|
|
@@ -36909,7 +37074,7 @@ export declare class EventsPagesTranslationsApi extends BaseAPI {
|
|
|
36909
37074
|
* @param {*} [options] Override http request option.
|
|
36910
37075
|
* @throws {RequiredError}
|
|
36911
37076
|
*/
|
|
36912
|
-
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
37077
|
+
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
36913
37078
|
/**
|
|
36914
37079
|
* Get Event Page Translation endpoint
|
|
36915
37080
|
* @summary Get Event Page Translation
|
|
@@ -36933,7 +37098,7 @@ export declare class EventsPagesTranslationsApi extends BaseAPI {
|
|
|
36933
37098
|
* @param {*} [options] Override http request option.
|
|
36934
37099
|
* @throws {RequiredError}
|
|
36935
37100
|
*/
|
|
36936
|
-
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
37101
|
+
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
36937
37102
|
}
|
|
36938
37103
|
/**
|
|
36939
37104
|
* EventsPassesApi - axios parameter creator
|
|
@@ -40349,7 +40514,7 @@ export declare const EventsPasstypesPriceschedulesApiFp: (configuration?: Config
|
|
|
40349
40514
|
* @param {*} [options] Override http request option.
|
|
40350
40515
|
* @throws {RequiredError}
|
|
40351
40516
|
*/
|
|
40352
|
-
deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40517
|
+
deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40353
40518
|
/**
|
|
40354
40519
|
* Get Event Pass Type Price Schedule endpoint
|
|
40355
40520
|
* @summary Get Event Pass Type Price Schedule
|
|
@@ -40383,7 +40548,7 @@ export declare const EventsPasstypesPriceschedulesApiFp: (configuration?: Config
|
|
|
40383
40548
|
* @param {*} [options] Override http request option.
|
|
40384
40549
|
* @throws {RequiredError}
|
|
40385
40550
|
*/
|
|
40386
|
-
updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40551
|
+
updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40387
40552
|
};
|
|
40388
40553
|
/**
|
|
40389
40554
|
* EventsPasstypesPriceschedulesApi - factory interface
|
|
@@ -40404,7 +40569,7 @@ export declare const EventsPasstypesPriceschedulesApiFactory: (configuration?: C
|
|
|
40404
40569
|
* @param {*} [options] Override http request option.
|
|
40405
40570
|
* @throws {RequiredError}
|
|
40406
40571
|
*/
|
|
40407
|
-
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40572
|
+
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40408
40573
|
/**
|
|
40409
40574
|
* Get Event Pass Type Price Schedule endpoint
|
|
40410
40575
|
* @summary Get Event Pass Type Price Schedule
|
|
@@ -40428,7 +40593,7 @@ export declare const EventsPasstypesPriceschedulesApiFactory: (configuration?: C
|
|
|
40428
40593
|
* @param {*} [options] Override http request option.
|
|
40429
40594
|
* @throws {RequiredError}
|
|
40430
40595
|
*/
|
|
40431
|
-
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40596
|
+
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40432
40597
|
};
|
|
40433
40598
|
/**
|
|
40434
40599
|
* Request parameters for createEventPassTypePriceSchedule operation in EventsPasstypesPriceschedulesApi.
|
|
@@ -40544,7 +40709,7 @@ export declare class EventsPasstypesPriceschedulesApi extends BaseAPI {
|
|
|
40544
40709
|
* @param {*} [options] Override http request option.
|
|
40545
40710
|
* @throws {RequiredError}
|
|
40546
40711
|
*/
|
|
40547
|
-
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
40712
|
+
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40548
40713
|
/**
|
|
40549
40714
|
* Get Event Pass Type Price Schedule endpoint
|
|
40550
40715
|
* @summary Get Event Pass Type Price Schedule
|
|
@@ -40568,7 +40733,7 @@ export declare class EventsPasstypesPriceschedulesApi extends BaseAPI {
|
|
|
40568
40733
|
* @param {*} [options] Override http request option.
|
|
40569
40734
|
* @throws {RequiredError}
|
|
40570
40735
|
*/
|
|
40571
|
-
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
40736
|
+
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40572
40737
|
}
|
|
40573
40738
|
/**
|
|
40574
40739
|
* EventsPasstypesRefundschedulesApi - axios parameter creator
|
|
@@ -40652,7 +40817,7 @@ export declare const EventsPasstypesRefundschedulesApiFp: (configuration?: Confi
|
|
|
40652
40817
|
* @param {*} [options] Override http request option.
|
|
40653
40818
|
* @throws {RequiredError}
|
|
40654
40819
|
*/
|
|
40655
|
-
deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40820
|
+
deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40656
40821
|
/**
|
|
40657
40822
|
* Get Event Pass Type Refund Schedule endpoint
|
|
40658
40823
|
* @summary Get Event Pass Type Refund Schedule
|
|
@@ -40686,7 +40851,7 @@ export declare const EventsPasstypesRefundschedulesApiFp: (configuration?: Confi
|
|
|
40686
40851
|
* @param {*} [options] Override http request option.
|
|
40687
40852
|
* @throws {RequiredError}
|
|
40688
40853
|
*/
|
|
40689
|
-
updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40854
|
+
updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40690
40855
|
};
|
|
40691
40856
|
/**
|
|
40692
40857
|
* EventsPasstypesRefundschedulesApi - factory interface
|
|
@@ -40707,7 +40872,7 @@ export declare const EventsPasstypesRefundschedulesApiFactory: (configuration?:
|
|
|
40707
40872
|
* @param {*} [options] Override http request option.
|
|
40708
40873
|
* @throws {RequiredError}
|
|
40709
40874
|
*/
|
|
40710
|
-
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40875
|
+
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40711
40876
|
/**
|
|
40712
40877
|
* Get Event Pass Type Refund Schedule endpoint
|
|
40713
40878
|
* @summary Get Event Pass Type Refund Schedule
|
|
@@ -40731,7 +40896,7 @@ export declare const EventsPasstypesRefundschedulesApiFactory: (configuration?:
|
|
|
40731
40896
|
* @param {*} [options] Override http request option.
|
|
40732
40897
|
* @throws {RequiredError}
|
|
40733
40898
|
*/
|
|
40734
|
-
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40899
|
+
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40735
40900
|
};
|
|
40736
40901
|
/**
|
|
40737
40902
|
* Request parameters for createEventPassTypeRefundSchedule operation in EventsPasstypesRefundschedulesApi.
|
|
@@ -40847,7 +41012,7 @@ export declare class EventsPasstypesRefundschedulesApi extends BaseAPI {
|
|
|
40847
41012
|
* @param {*} [options] Override http request option.
|
|
40848
41013
|
* @throws {RequiredError}
|
|
40849
41014
|
*/
|
|
40850
|
-
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
41015
|
+
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40851
41016
|
/**
|
|
40852
41017
|
* Get Event Pass Type Refund Schedule endpoint
|
|
40853
41018
|
* @summary Get Event Pass Type Refund Schedule
|
|
@@ -40871,7 +41036,7 @@ export declare class EventsPasstypesRefundschedulesApi extends BaseAPI {
|
|
|
40871
41036
|
* @param {*} [options] Override http request option.
|
|
40872
41037
|
* @throws {RequiredError}
|
|
40873
41038
|
*/
|
|
40874
|
-
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
41039
|
+
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40875
41040
|
}
|
|
40876
41041
|
/**
|
|
40877
41042
|
* EventsPasstypesTranslationsApi - axios parameter creator
|
|
@@ -40935,7 +41100,7 @@ export declare const EventsPasstypesTranslationsApiFp: (configuration?: Configur
|
|
|
40935
41100
|
* @param {*} [options] Override http request option.
|
|
40936
41101
|
* @throws {RequiredError}
|
|
40937
41102
|
*/
|
|
40938
|
-
deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
41103
|
+
deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40939
41104
|
/**
|
|
40940
41105
|
* Get Event Pass Type Translation endpoint
|
|
40941
41106
|
* @summary Get Event Pass Type Translation
|
|
@@ -40969,7 +41134,7 @@ export declare const EventsPasstypesTranslationsApiFp: (configuration?: Configur
|
|
|
40969
41134
|
* @param {*} [options] Override http request option.
|
|
40970
41135
|
* @throws {RequiredError}
|
|
40971
41136
|
*/
|
|
40972
|
-
updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
41137
|
+
updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40973
41138
|
};
|
|
40974
41139
|
/**
|
|
40975
41140
|
* EventsPasstypesTranslationsApi - factory interface
|
|
@@ -40982,7 +41147,7 @@ export declare const EventsPasstypesTranslationsApiFactory: (configuration?: Con
|
|
|
40982
41147
|
* @param {*} [options] Override http request option.
|
|
40983
41148
|
* @throws {RequiredError}
|
|
40984
41149
|
*/
|
|
40985
|
-
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
41150
|
+
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40986
41151
|
/**
|
|
40987
41152
|
* Get Event Pass Type Translation endpoint
|
|
40988
41153
|
* @summary Get Event Pass Type Translation
|
|
@@ -41006,7 +41171,7 @@ export declare const EventsPasstypesTranslationsApiFactory: (configuration?: Con
|
|
|
41006
41171
|
* @param {*} [options] Override http request option.
|
|
41007
41172
|
* @throws {RequiredError}
|
|
41008
41173
|
*/
|
|
41009
|
-
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
41174
|
+
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
41010
41175
|
};
|
|
41011
41176
|
/**
|
|
41012
41177
|
* Request parameters for deleteEventPassTypeTranslation operation in EventsPasstypesTranslationsApi.
|
|
@@ -41100,7 +41265,7 @@ export declare class EventsPasstypesTranslationsApi extends BaseAPI {
|
|
|
41100
41265
|
* @param {*} [options] Override http request option.
|
|
41101
41266
|
* @throws {RequiredError}
|
|
41102
41267
|
*/
|
|
41103
|
-
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
41268
|
+
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
41104
41269
|
/**
|
|
41105
41270
|
* Get Event Pass Type Translation endpoint
|
|
41106
41271
|
* @summary Get Event Pass Type Translation
|
|
@@ -41124,7 +41289,7 @@ export declare class EventsPasstypesTranslationsApi extends BaseAPI {
|
|
|
41124
41289
|
* @param {*} [options] Override http request option.
|
|
41125
41290
|
* @throws {RequiredError}
|
|
41126
41291
|
*/
|
|
41127
|
-
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
41292
|
+
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
41128
41293
|
}
|
|
41129
41294
|
/**
|
|
41130
41295
|
* EventsQuestionsApi - axios parameter creator
|
|
@@ -41592,7 +41757,7 @@ export declare const EventsQuestionsApiFp: (configuration?: Configuration) => {
|
|
|
41592
41757
|
* @param {*} [options] Override http request option.
|
|
41593
41758
|
* @throws {RequiredError}
|
|
41594
41759
|
*/
|
|
41595
|
-
updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
41760
|
+
updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
41596
41761
|
/**
|
|
41597
41762
|
* Update Event Question Choice Sub Question endpoint
|
|
41598
41763
|
* @summary Update Event Question Choice Sub Question
|
|
@@ -41777,7 +41942,7 @@ export declare const EventsQuestionsApiFactory: (configuration?: Configuration,
|
|
|
41777
41942
|
* @param {*} [options] Override http request option.
|
|
41778
41943
|
* @throws {RequiredError}
|
|
41779
41944
|
*/
|
|
41780
|
-
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
41945
|
+
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
41781
41946
|
/**
|
|
41782
41947
|
* Update Event Question Choice Sub Question endpoint
|
|
41783
41948
|
* @summary Update Event Question Choice Sub Question
|
|
@@ -42383,7 +42548,7 @@ export declare class EventsQuestionsApi extends BaseAPI {
|
|
|
42383
42548
|
* @param {*} [options] Override http request option.
|
|
42384
42549
|
* @throws {RequiredError}
|
|
42385
42550
|
*/
|
|
42386
|
-
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
42551
|
+
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42387
42552
|
/**
|
|
42388
42553
|
* Update Event Question Choice Sub Question endpoint
|
|
42389
42554
|
* @summary Update Event Question Choice Sub Question
|
|
@@ -42504,7 +42669,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42504
42669
|
* @param {*} [options] Override http request option.
|
|
42505
42670
|
* @throws {RequiredError}
|
|
42506
42671
|
*/
|
|
42507
|
-
deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42672
|
+
deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42508
42673
|
/**
|
|
42509
42674
|
* Delete Event Question Translation endpoint
|
|
42510
42675
|
* @summary Delete Event Question Translation
|
|
@@ -42514,7 +42679,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42514
42679
|
* @param {*} [options] Override http request option.
|
|
42515
42680
|
* @throws {RequiredError}
|
|
42516
42681
|
*/
|
|
42517
|
-
deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42682
|
+
deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42518
42683
|
/**
|
|
42519
42684
|
* Get Event Question Choice Translation endpoint
|
|
42520
42685
|
* @summary Get Event Question Choice Translation
|
|
@@ -42574,7 +42739,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42574
42739
|
* @param {*} [options] Override http request option.
|
|
42575
42740
|
* @throws {RequiredError}
|
|
42576
42741
|
*/
|
|
42577
|
-
updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42742
|
+
updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42578
42743
|
/**
|
|
42579
42744
|
* Update Event Question Translation endpoint
|
|
42580
42745
|
* @summary Update Event Question Translation
|
|
@@ -42585,7 +42750,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42585
42750
|
* @param {*} [options] Override http request option.
|
|
42586
42751
|
* @throws {RequiredError}
|
|
42587
42752
|
*/
|
|
42588
|
-
updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42753
|
+
updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42589
42754
|
};
|
|
42590
42755
|
/**
|
|
42591
42756
|
* EventsQuestionsTranslationsApi - factory interface
|
|
@@ -42598,7 +42763,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42598
42763
|
* @param {*} [options] Override http request option.
|
|
42599
42764
|
* @throws {RequiredError}
|
|
42600
42765
|
*/
|
|
42601
|
-
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42766
|
+
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42602
42767
|
/**
|
|
42603
42768
|
* Delete Event Question Translation endpoint
|
|
42604
42769
|
* @summary Delete Event Question Translation
|
|
@@ -42606,7 +42771,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42606
42771
|
* @param {*} [options] Override http request option.
|
|
42607
42772
|
* @throws {RequiredError}
|
|
42608
42773
|
*/
|
|
42609
|
-
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42774
|
+
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42610
42775
|
/**
|
|
42611
42776
|
* Get Event Question Choice Translation endpoint
|
|
42612
42777
|
* @summary Get Event Question Choice Translation
|
|
@@ -42646,7 +42811,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42646
42811
|
* @param {*} [options] Override http request option.
|
|
42647
42812
|
* @throws {RequiredError}
|
|
42648
42813
|
*/
|
|
42649
|
-
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42814
|
+
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42650
42815
|
/**
|
|
42651
42816
|
* Update Event Question Translation endpoint
|
|
42652
42817
|
* @summary Update Event Question Translation
|
|
@@ -42654,7 +42819,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42654
42819
|
* @param {*} [options] Override http request option.
|
|
42655
42820
|
* @throws {RequiredError}
|
|
42656
42821
|
*/
|
|
42657
|
-
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42822
|
+
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42658
42823
|
};
|
|
42659
42824
|
/**
|
|
42660
42825
|
* Request parameters for deleteEventQuestionChoiceTranslation operation in EventsQuestionsTranslationsApi.
|
|
@@ -42845,7 +43010,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42845
43010
|
* @param {*} [options] Override http request option.
|
|
42846
43011
|
* @throws {RequiredError}
|
|
42847
43012
|
*/
|
|
42848
|
-
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
43013
|
+
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42849
43014
|
/**
|
|
42850
43015
|
* Delete Event Question Translation endpoint
|
|
42851
43016
|
* @summary Delete Event Question Translation
|
|
@@ -42853,7 +43018,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42853
43018
|
* @param {*} [options] Override http request option.
|
|
42854
43019
|
* @throws {RequiredError}
|
|
42855
43020
|
*/
|
|
42856
|
-
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
43021
|
+
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42857
43022
|
/**
|
|
42858
43023
|
* Get Event Question Choice Translation endpoint
|
|
42859
43024
|
* @summary Get Event Question Choice Translation
|
|
@@ -42893,7 +43058,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42893
43058
|
* @param {*} [options] Override http request option.
|
|
42894
43059
|
* @throws {RequiredError}
|
|
42895
43060
|
*/
|
|
42896
|
-
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
43061
|
+
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42897
43062
|
/**
|
|
42898
43063
|
* Update Event Question Translation endpoint
|
|
42899
43064
|
* @summary Update Event Question Translation
|
|
@@ -42901,7 +43066,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42901
43066
|
* @param {*} [options] Override http request option.
|
|
42902
43067
|
* @throws {RequiredError}
|
|
42903
43068
|
*/
|
|
42904
|
-
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
43069
|
+
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42905
43070
|
}
|
|
42906
43071
|
/**
|
|
42907
43072
|
* EventsRoomsApi - axios parameter creator
|
|
@@ -44193,7 +44358,7 @@ export declare const EventsRoomtypesTranslationsApiFp: (configuration?: Configur
|
|
|
44193
44358
|
* @param {*} [options] Override http request option.
|
|
44194
44359
|
* @throws {RequiredError}
|
|
44195
44360
|
*/
|
|
44196
|
-
deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
44361
|
+
deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
44197
44362
|
/**
|
|
44198
44363
|
* Get Event Room Type Translation endpoint
|
|
44199
44364
|
* @summary Get Event Room Type Translation
|
|
@@ -44227,7 +44392,7 @@ export declare const EventsRoomtypesTranslationsApiFp: (configuration?: Configur
|
|
|
44227
44392
|
* @param {*} [options] Override http request option.
|
|
44228
44393
|
* @throws {RequiredError}
|
|
44229
44394
|
*/
|
|
44230
|
-
updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
44395
|
+
updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
44231
44396
|
};
|
|
44232
44397
|
/**
|
|
44233
44398
|
* EventsRoomtypesTranslationsApi - factory interface
|
|
@@ -44240,7 +44405,7 @@ export declare const EventsRoomtypesTranslationsApiFactory: (configuration?: Con
|
|
|
44240
44405
|
* @param {*} [options] Override http request option.
|
|
44241
44406
|
* @throws {RequiredError}
|
|
44242
44407
|
*/
|
|
44243
|
-
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
44408
|
+
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
44244
44409
|
/**
|
|
44245
44410
|
* Get Event Room Type Translation endpoint
|
|
44246
44411
|
* @summary Get Event Room Type Translation
|
|
@@ -44264,7 +44429,7 @@ export declare const EventsRoomtypesTranslationsApiFactory: (configuration?: Con
|
|
|
44264
44429
|
* @param {*} [options] Override http request option.
|
|
44265
44430
|
* @throws {RequiredError}
|
|
44266
44431
|
*/
|
|
44267
|
-
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
44432
|
+
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
44268
44433
|
};
|
|
44269
44434
|
/**
|
|
44270
44435
|
* Request parameters for deleteEventRoomTypeTranslation operation in EventsRoomtypesTranslationsApi.
|
|
@@ -44358,7 +44523,7 @@ export declare class EventsRoomtypesTranslationsApi extends BaseAPI {
|
|
|
44358
44523
|
* @param {*} [options] Override http request option.
|
|
44359
44524
|
* @throws {RequiredError}
|
|
44360
44525
|
*/
|
|
44361
|
-
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
44526
|
+
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
44362
44527
|
/**
|
|
44363
44528
|
* Get Event Room Type Translation endpoint
|
|
44364
44529
|
* @summary Get Event Room Type Translation
|
|
@@ -44382,7 +44547,7 @@ export declare class EventsRoomtypesTranslationsApi extends BaseAPI {
|
|
|
44382
44547
|
* @param {*} [options] Override http request option.
|
|
44383
44548
|
* @throws {RequiredError}
|
|
44384
44549
|
*/
|
|
44385
|
-
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
44550
|
+
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
44386
44551
|
}
|
|
44387
44552
|
/**
|
|
44388
44553
|
* EventsSectionsApi - axios parameter creator
|
|
@@ -45560,7 +45725,7 @@ export declare const EventsSectionsTranslationsApiFp: (configuration?: Configura
|
|
|
45560
45725
|
* @param {*} [options] Override http request option.
|
|
45561
45726
|
* @throws {RequiredError}
|
|
45562
45727
|
*/
|
|
45563
|
-
deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45728
|
+
deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
45564
45729
|
/**
|
|
45565
45730
|
* Get Event Section Translation endpoint
|
|
45566
45731
|
* @summary Get Event Section Translation
|
|
@@ -45594,7 +45759,7 @@ export declare const EventsSectionsTranslationsApiFp: (configuration?: Configura
|
|
|
45594
45759
|
* @param {*} [options] Override http request option.
|
|
45595
45760
|
* @throws {RequiredError}
|
|
45596
45761
|
*/
|
|
45597
|
-
updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45762
|
+
updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
45598
45763
|
};
|
|
45599
45764
|
/**
|
|
45600
45765
|
* EventsSectionsTranslationsApi - factory interface
|
|
@@ -45607,7 +45772,7 @@ export declare const EventsSectionsTranslationsApiFactory: (configuration?: Conf
|
|
|
45607
45772
|
* @param {*} [options] Override http request option.
|
|
45608
45773
|
* @throws {RequiredError}
|
|
45609
45774
|
*/
|
|
45610
|
-
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45775
|
+
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
45611
45776
|
/**
|
|
45612
45777
|
* Get Event Section Translation endpoint
|
|
45613
45778
|
* @summary Get Event Section Translation
|
|
@@ -45631,7 +45796,7 @@ export declare const EventsSectionsTranslationsApiFactory: (configuration?: Conf
|
|
|
45631
45796
|
* @param {*} [options] Override http request option.
|
|
45632
45797
|
* @throws {RequiredError}
|
|
45633
45798
|
*/
|
|
45634
|
-
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45799
|
+
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
45635
45800
|
};
|
|
45636
45801
|
/**
|
|
45637
45802
|
* Request parameters for deleteEventSectionTranslation operation in EventsSectionsTranslationsApi.
|
|
@@ -45725,7 +45890,7 @@ export declare class EventsSectionsTranslationsApi extends BaseAPI {
|
|
|
45725
45890
|
* @param {*} [options] Override http request option.
|
|
45726
45891
|
* @throws {RequiredError}
|
|
45727
45892
|
*/
|
|
45728
|
-
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45893
|
+
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
45729
45894
|
/**
|
|
45730
45895
|
* Get Event Section Translation endpoint
|
|
45731
45896
|
* @summary Get Event Section Translation
|
|
@@ -45749,7 +45914,7 @@ export declare class EventsSectionsTranslationsApi extends BaseAPI {
|
|
|
45749
45914
|
* @param {*} [options] Override http request option.
|
|
45750
45915
|
* @throws {RequiredError}
|
|
45751
45916
|
*/
|
|
45752
|
-
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45917
|
+
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
45753
45918
|
}
|
|
45754
45919
|
/**
|
|
45755
45920
|
* EventsSessionsApi - axios parameter creator
|
|
@@ -46242,7 +46407,7 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
46242
46407
|
* @param {*} [options] Override http request option.
|
|
46243
46408
|
* @throws {RequiredError}
|
|
46244
46409
|
*/
|
|
46245
|
-
cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
46410
|
+
cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
46246
46411
|
/**
|
|
46247
46412
|
* Create Event Session endpoint
|
|
46248
46413
|
* @summary Create Event Session
|
|
@@ -46610,7 +46775,7 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46610
46775
|
* @param {*} [options] Override http request option.
|
|
46611
46776
|
* @throws {RequiredError}
|
|
46612
46777
|
*/
|
|
46613
|
-
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
46778
|
+
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
46614
46779
|
/**
|
|
46615
46780
|
* Create Event Session endpoint
|
|
46616
46781
|
* @summary Create Event Session
|
|
@@ -47616,7 +47781,7 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47616
47781
|
* @param {*} [options] Override http request option.
|
|
47617
47782
|
* @throws {RequiredError}
|
|
47618
47783
|
*/
|
|
47619
|
-
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
47784
|
+
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
47620
47785
|
/**
|
|
47621
47786
|
* Create Event Session endpoint
|
|
47622
47787
|
* @summary Create Event Session
|
|
@@ -48566,7 +48731,7 @@ export declare const EventsSessionsLocationsTranslationsApiFp: (configuration?:
|
|
|
48566
48731
|
* @param {*} [options] Override http request option.
|
|
48567
48732
|
* @throws {RequiredError}
|
|
48568
48733
|
*/
|
|
48569
|
-
deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
48734
|
+
deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
48570
48735
|
/**
|
|
48571
48736
|
* Get Event Session Location Translation endpoint
|
|
48572
48737
|
* @summary Get Event Session Location Translation
|
|
@@ -48600,7 +48765,7 @@ export declare const EventsSessionsLocationsTranslationsApiFp: (configuration?:
|
|
|
48600
48765
|
* @param {*} [options] Override http request option.
|
|
48601
48766
|
* @throws {RequiredError}
|
|
48602
48767
|
*/
|
|
48603
|
-
updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
48768
|
+
updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
48604
48769
|
};
|
|
48605
48770
|
/**
|
|
48606
48771
|
* EventsSessionsLocationsTranslationsApi - factory interface
|
|
@@ -48613,7 +48778,7 @@ export declare const EventsSessionsLocationsTranslationsApiFactory: (configurati
|
|
|
48613
48778
|
* @param {*} [options] Override http request option.
|
|
48614
48779
|
* @throws {RequiredError}
|
|
48615
48780
|
*/
|
|
48616
|
-
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
48781
|
+
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
48617
48782
|
/**
|
|
48618
48783
|
* Get Event Session Location Translation endpoint
|
|
48619
48784
|
* @summary Get Event Session Location Translation
|
|
@@ -48637,7 +48802,7 @@ export declare const EventsSessionsLocationsTranslationsApiFactory: (configurati
|
|
|
48637
48802
|
* @param {*} [options] Override http request option.
|
|
48638
48803
|
* @throws {RequiredError}
|
|
48639
48804
|
*/
|
|
48640
|
-
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
48805
|
+
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
48641
48806
|
};
|
|
48642
48807
|
/**
|
|
48643
48808
|
* Request parameters for deleteEventSessionLocationTranslation operation in EventsSessionsLocationsTranslationsApi.
|
|
@@ -48731,7 +48896,7 @@ export declare class EventsSessionsLocationsTranslationsApi extends BaseAPI {
|
|
|
48731
48896
|
* @param {*} [options] Override http request option.
|
|
48732
48897
|
* @throws {RequiredError}
|
|
48733
48898
|
*/
|
|
48734
|
-
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
48899
|
+
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
48735
48900
|
/**
|
|
48736
48901
|
* Get Event Session Location Translation endpoint
|
|
48737
48902
|
* @summary Get Event Session Location Translation
|
|
@@ -48755,7 +48920,7 @@ export declare class EventsSessionsLocationsTranslationsApi extends BaseAPI {
|
|
|
48755
48920
|
* @param {*} [options] Override http request option.
|
|
48756
48921
|
* @throws {RequiredError}
|
|
48757
48922
|
*/
|
|
48758
|
-
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
48923
|
+
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
48759
48924
|
}
|
|
48760
48925
|
/**
|
|
48761
48926
|
* EventsSessionsMatchesApi - axios parameter creator
|
|
@@ -50421,7 +50586,7 @@ export declare const EventsSessionsQuestionsApiFp: (configuration?: Configuratio
|
|
|
50421
50586
|
* @param {*} [options] Override http request option.
|
|
50422
50587
|
* @throws {RequiredError}
|
|
50423
50588
|
*/
|
|
50424
|
-
updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
50589
|
+
updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
50425
50590
|
/**
|
|
50426
50591
|
* Update Event Session Question Choice Sub Question endpoint
|
|
50427
50592
|
* @summary Update Event Session Question Choice Sub Question
|
|
@@ -50583,7 +50748,7 @@ export declare const EventsSessionsQuestionsApiFactory: (configuration?: Configu
|
|
|
50583
50748
|
* @param {*} [options] Override http request option.
|
|
50584
50749
|
* @throws {RequiredError}
|
|
50585
50750
|
*/
|
|
50586
|
-
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
50751
|
+
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
50587
50752
|
/**
|
|
50588
50753
|
* Update Event Session Question Choice Sub Question endpoint
|
|
50589
50754
|
* @summary Update Event Session Question Choice Sub Question
|
|
@@ -51190,7 +51355,7 @@ export declare class EventsSessionsQuestionsApi extends BaseAPI {
|
|
|
51190
51355
|
* @param {*} [options] Override http request option.
|
|
51191
51356
|
* @throws {RequiredError}
|
|
51192
51357
|
*/
|
|
51193
|
-
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51358
|
+
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51194
51359
|
/**
|
|
51195
51360
|
* Update Event Session Question Choice Sub Question endpoint
|
|
51196
51361
|
* @summary Update Event Session Question Choice Sub Question
|
|
@@ -51320,7 +51485,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51320
51485
|
* @param {*} [options] Override http request option.
|
|
51321
51486
|
* @throws {RequiredError}
|
|
51322
51487
|
*/
|
|
51323
|
-
deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51488
|
+
deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51324
51489
|
/**
|
|
51325
51490
|
* Delete Event Session Question Translation endpoint
|
|
51326
51491
|
* @summary Delete Event Session Question Translation
|
|
@@ -51331,7 +51496,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51331
51496
|
* @param {*} [options] Override http request option.
|
|
51332
51497
|
* @throws {RequiredError}
|
|
51333
51498
|
*/
|
|
51334
|
-
deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51499
|
+
deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51335
51500
|
/**
|
|
51336
51501
|
* Get Event Session Question Choice Translation endpoint
|
|
51337
51502
|
* @summary Get Event Session Question Choice Translation
|
|
@@ -51396,7 +51561,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51396
51561
|
* @param {*} [options] Override http request option.
|
|
51397
51562
|
* @throws {RequiredError}
|
|
51398
51563
|
*/
|
|
51399
|
-
updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51564
|
+
updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51400
51565
|
/**
|
|
51401
51566
|
* Update Event Session Question Translation endpoint
|
|
51402
51567
|
* @summary Update Event Session Question Translation
|
|
@@ -51408,7 +51573,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51408
51573
|
* @param {*} [options] Override http request option.
|
|
51409
51574
|
* @throws {RequiredError}
|
|
51410
51575
|
*/
|
|
51411
|
-
updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51576
|
+
updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51412
51577
|
};
|
|
51413
51578
|
/**
|
|
51414
51579
|
* EventsSessionsQuestionsTranslationsApi - factory interface
|
|
@@ -51421,7 +51586,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51421
51586
|
* @param {*} [options] Override http request option.
|
|
51422
51587
|
* @throws {RequiredError}
|
|
51423
51588
|
*/
|
|
51424
|
-
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51589
|
+
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51425
51590
|
/**
|
|
51426
51591
|
* Delete Event Session Question Translation endpoint
|
|
51427
51592
|
* @summary Delete Event Session Question Translation
|
|
@@ -51429,7 +51594,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51429
51594
|
* @param {*} [options] Override http request option.
|
|
51430
51595
|
* @throws {RequiredError}
|
|
51431
51596
|
*/
|
|
51432
|
-
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51597
|
+
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51433
51598
|
/**
|
|
51434
51599
|
* Get Event Session Question Choice Translation endpoint
|
|
51435
51600
|
* @summary Get Event Session Question Choice Translation
|
|
@@ -51469,7 +51634,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51469
51634
|
* @param {*} [options] Override http request option.
|
|
51470
51635
|
* @throws {RequiredError}
|
|
51471
51636
|
*/
|
|
51472
|
-
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51637
|
+
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51473
51638
|
/**
|
|
51474
51639
|
* Update Event Session Question Translation endpoint
|
|
51475
51640
|
* @summary Update Event Session Question Translation
|
|
@@ -51477,7 +51642,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51477
51642
|
* @param {*} [options] Override http request option.
|
|
51478
51643
|
* @throws {RequiredError}
|
|
51479
51644
|
*/
|
|
51480
|
-
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51645
|
+
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51481
51646
|
};
|
|
51482
51647
|
/**
|
|
51483
51648
|
* Request parameters for deleteEventSessionQuestionChoiceTranslation operation in EventsSessionsQuestionsTranslationsApi.
|
|
@@ -51700,7 +51865,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51700
51865
|
* @param {*} [options] Override http request option.
|
|
51701
51866
|
* @throws {RequiredError}
|
|
51702
51867
|
*/
|
|
51703
|
-
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51868
|
+
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51704
51869
|
/**
|
|
51705
51870
|
* Delete Event Session Question Translation endpoint
|
|
51706
51871
|
* @summary Delete Event Session Question Translation
|
|
@@ -51708,7 +51873,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51708
51873
|
* @param {*} [options] Override http request option.
|
|
51709
51874
|
* @throws {RequiredError}
|
|
51710
51875
|
*/
|
|
51711
|
-
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51876
|
+
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51712
51877
|
/**
|
|
51713
51878
|
* Get Event Session Question Choice Translation endpoint
|
|
51714
51879
|
* @summary Get Event Session Question Choice Translation
|
|
@@ -51748,7 +51913,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51748
51913
|
* @param {*} [options] Override http request option.
|
|
51749
51914
|
* @throws {RequiredError}
|
|
51750
51915
|
*/
|
|
51751
|
-
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51916
|
+
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51752
51917
|
/**
|
|
51753
51918
|
* Update Event Session Question Translation endpoint
|
|
51754
51919
|
* @summary Update Event Session Question Translation
|
|
@@ -51756,7 +51921,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51756
51921
|
* @param {*} [options] Override http request option.
|
|
51757
51922
|
* @throws {RequiredError}
|
|
51758
51923
|
*/
|
|
51759
|
-
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51924
|
+
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51760
51925
|
}
|
|
51761
51926
|
/**
|
|
51762
51927
|
* EventsSessionsSectionsApi - axios parameter creator
|
|
@@ -52450,7 +52615,7 @@ export declare const EventsSessionsSectionsTranslationsApiFp: (configuration?: C
|
|
|
52450
52615
|
* @param {*} [options] Override http request option.
|
|
52451
52616
|
* @throws {RequiredError}
|
|
52452
52617
|
*/
|
|
52453
|
-
deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
52618
|
+
deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
52454
52619
|
/**
|
|
52455
52620
|
* Get Event Session Section Translation endpoint
|
|
52456
52621
|
* @summary Get Event Session Section Translation
|
|
@@ -52487,7 +52652,7 @@ export declare const EventsSessionsSectionsTranslationsApiFp: (configuration?: C
|
|
|
52487
52652
|
* @param {*} [options] Override http request option.
|
|
52488
52653
|
* @throws {RequiredError}
|
|
52489
52654
|
*/
|
|
52490
|
-
updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
52655
|
+
updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
52491
52656
|
};
|
|
52492
52657
|
/**
|
|
52493
52658
|
* EventsSessionsSectionsTranslationsApi - factory interface
|
|
@@ -52500,7 +52665,7 @@ export declare const EventsSessionsSectionsTranslationsApiFactory: (configuratio
|
|
|
52500
52665
|
* @param {*} [options] Override http request option.
|
|
52501
52666
|
* @throws {RequiredError}
|
|
52502
52667
|
*/
|
|
52503
|
-
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
52668
|
+
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
52504
52669
|
/**
|
|
52505
52670
|
* Get Event Session Section Translation endpoint
|
|
52506
52671
|
* @summary Get Event Session Section Translation
|
|
@@ -52524,7 +52689,7 @@ export declare const EventsSessionsSectionsTranslationsApiFactory: (configuratio
|
|
|
52524
52689
|
* @param {*} [options] Override http request option.
|
|
52525
52690
|
* @throws {RequiredError}
|
|
52526
52691
|
*/
|
|
52527
|
-
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
52692
|
+
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
52528
52693
|
};
|
|
52529
52694
|
/**
|
|
52530
52695
|
* Request parameters for deleteEventSessionSectionTranslation operation in EventsSessionsSectionsTranslationsApi.
|
|
@@ -52634,7 +52799,7 @@ export declare class EventsSessionsSectionsTranslationsApi extends BaseAPI {
|
|
|
52634
52799
|
* @param {*} [options] Override http request option.
|
|
52635
52800
|
* @throws {RequiredError}
|
|
52636
52801
|
*/
|
|
52637
|
-
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
52802
|
+
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
52638
52803
|
/**
|
|
52639
52804
|
* Get Event Session Section Translation endpoint
|
|
52640
52805
|
* @summary Get Event Session Section Translation
|
|
@@ -52658,7 +52823,7 @@ export declare class EventsSessionsSectionsTranslationsApi extends BaseAPI {
|
|
|
52658
52823
|
* @param {*} [options] Override http request option.
|
|
52659
52824
|
* @throws {RequiredError}
|
|
52660
52825
|
*/
|
|
52661
|
-
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
52826
|
+
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
52662
52827
|
}
|
|
52663
52828
|
/**
|
|
52664
52829
|
* EventsSessionsTimesApi - axios parameter creator
|
|
@@ -52789,7 +52954,7 @@ export declare const EventsSessionsTimesApiFp: (configuration?: Configuration) =
|
|
|
52789
52954
|
* @param {*} [options] Override http request option.
|
|
52790
52955
|
* @throws {RequiredError}
|
|
52791
52956
|
*/
|
|
52792
|
-
deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
52957
|
+
deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
52793
52958
|
/**
|
|
52794
52959
|
* Get Event Session Time endpoint
|
|
52795
52960
|
* @summary Get Event Session Time
|
|
@@ -52877,7 +53042,7 @@ export declare const EventsSessionsTimesApiFactory: (configuration?: Configurati
|
|
|
52877
53042
|
* @param {*} [options] Override http request option.
|
|
52878
53043
|
* @throws {RequiredError}
|
|
52879
53044
|
*/
|
|
52880
|
-
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53045
|
+
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
52881
53046
|
/**
|
|
52882
53047
|
* Get Event Session Time endpoint
|
|
52883
53048
|
* @summary Get Event Session Time
|
|
@@ -53116,7 +53281,7 @@ export declare class EventsSessionsTimesApi extends BaseAPI {
|
|
|
53116
53281
|
* @param {*} [options] Override http request option.
|
|
53117
53282
|
* @throws {RequiredError}
|
|
53118
53283
|
*/
|
|
53119
|
-
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53284
|
+
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53120
53285
|
/**
|
|
53121
53286
|
* Get Event Session Time endpoint
|
|
53122
53287
|
* @summary Get Event Session Time
|
|
@@ -53225,7 +53390,7 @@ export declare const EventsSessionsTimesTranslationsApiFp: (configuration?: Conf
|
|
|
53225
53390
|
* @param {*} [options] Override http request option.
|
|
53226
53391
|
* @throws {RequiredError}
|
|
53227
53392
|
*/
|
|
53228
|
-
deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53393
|
+
deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53229
53394
|
/**
|
|
53230
53395
|
* Get Event Session Time Translation endpoint
|
|
53231
53396
|
* @summary Get Event Session Time Translation
|
|
@@ -53262,7 +53427,7 @@ export declare const EventsSessionsTimesTranslationsApiFp: (configuration?: Conf
|
|
|
53262
53427
|
* @param {*} [options] Override http request option.
|
|
53263
53428
|
* @throws {RequiredError}
|
|
53264
53429
|
*/
|
|
53265
|
-
updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53430
|
+
updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53266
53431
|
};
|
|
53267
53432
|
/**
|
|
53268
53433
|
* EventsSessionsTimesTranslationsApi - factory interface
|
|
@@ -53275,7 +53440,7 @@ export declare const EventsSessionsTimesTranslationsApiFactory: (configuration?:
|
|
|
53275
53440
|
* @param {*} [options] Override http request option.
|
|
53276
53441
|
* @throws {RequiredError}
|
|
53277
53442
|
*/
|
|
53278
|
-
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53443
|
+
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53279
53444
|
/**
|
|
53280
53445
|
* Get Event Session Time Translation endpoint
|
|
53281
53446
|
* @summary Get Event Session Time Translation
|
|
@@ -53299,7 +53464,7 @@ export declare const EventsSessionsTimesTranslationsApiFactory: (configuration?:
|
|
|
53299
53464
|
* @param {*} [options] Override http request option.
|
|
53300
53465
|
* @throws {RequiredError}
|
|
53301
53466
|
*/
|
|
53302
|
-
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53467
|
+
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53303
53468
|
};
|
|
53304
53469
|
/**
|
|
53305
53470
|
* Request parameters for deleteEventSessionTimeTranslation operation in EventsSessionsTimesTranslationsApi.
|
|
@@ -53409,7 +53574,7 @@ export declare class EventsSessionsTimesTranslationsApi extends BaseAPI {
|
|
|
53409
53574
|
* @param {*} [options] Override http request option.
|
|
53410
53575
|
* @throws {RequiredError}
|
|
53411
53576
|
*/
|
|
53412
|
-
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53577
|
+
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53413
53578
|
/**
|
|
53414
53579
|
* Get Event Session Time Translation endpoint
|
|
53415
53580
|
* @summary Get Event Session Time Translation
|
|
@@ -53433,7 +53598,7 @@ export declare class EventsSessionsTimesTranslationsApi extends BaseAPI {
|
|
|
53433
53598
|
* @param {*} [options] Override http request option.
|
|
53434
53599
|
* @throws {RequiredError}
|
|
53435
53600
|
*/
|
|
53436
|
-
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53601
|
+
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53437
53602
|
}
|
|
53438
53603
|
/**
|
|
53439
53604
|
* EventsSessionsTranslationsApi - axios parameter creator
|
|
@@ -53497,7 +53662,7 @@ export declare const EventsSessionsTranslationsApiFp: (configuration?: Configura
|
|
|
53497
53662
|
* @param {*} [options] Override http request option.
|
|
53498
53663
|
* @throws {RequiredError}
|
|
53499
53664
|
*/
|
|
53500
|
-
deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53665
|
+
deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53501
53666
|
/**
|
|
53502
53667
|
* Get Event Session Translation endpoint
|
|
53503
53668
|
* @summary Get Event Session Translation
|
|
@@ -53531,7 +53696,7 @@ export declare const EventsSessionsTranslationsApiFp: (configuration?: Configura
|
|
|
53531
53696
|
* @param {*} [options] Override http request option.
|
|
53532
53697
|
* @throws {RequiredError}
|
|
53533
53698
|
*/
|
|
53534
|
-
updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53699
|
+
updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53535
53700
|
};
|
|
53536
53701
|
/**
|
|
53537
53702
|
* EventsSessionsTranslationsApi - factory interface
|
|
@@ -53544,7 +53709,7 @@ export declare const EventsSessionsTranslationsApiFactory: (configuration?: Conf
|
|
|
53544
53709
|
* @param {*} [options] Override http request option.
|
|
53545
53710
|
* @throws {RequiredError}
|
|
53546
53711
|
*/
|
|
53547
|
-
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53712
|
+
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53548
53713
|
/**
|
|
53549
53714
|
* Get Event Session Translation endpoint
|
|
53550
53715
|
* @summary Get Event Session Translation
|
|
@@ -53568,7 +53733,7 @@ export declare const EventsSessionsTranslationsApiFactory: (configuration?: Conf
|
|
|
53568
53733
|
* @param {*} [options] Override http request option.
|
|
53569
53734
|
* @throws {RequiredError}
|
|
53570
53735
|
*/
|
|
53571
|
-
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53736
|
+
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53572
53737
|
};
|
|
53573
53738
|
/**
|
|
53574
53739
|
* Request parameters for deleteEventSessionTranslation operation in EventsSessionsTranslationsApi.
|
|
@@ -53662,7 +53827,7 @@ export declare class EventsSessionsTranslationsApi extends BaseAPI {
|
|
|
53662
53827
|
* @param {*} [options] Override http request option.
|
|
53663
53828
|
* @throws {RequiredError}
|
|
53664
53829
|
*/
|
|
53665
|
-
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53830
|
+
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53666
53831
|
/**
|
|
53667
53832
|
* Get Event Session Translation endpoint
|
|
53668
53833
|
* @summary Get Event Session Translation
|
|
@@ -53686,7 +53851,7 @@ export declare class EventsSessionsTranslationsApi extends BaseAPI {
|
|
|
53686
53851
|
* @param {*} [options] Override http request option.
|
|
53687
53852
|
* @throws {RequiredError}
|
|
53688
53853
|
*/
|
|
53689
|
-
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53854
|
+
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53690
53855
|
}
|
|
53691
53856
|
/**
|
|
53692
53857
|
* EventsSpeakersApi - axios parameter creator
|
|
@@ -54203,7 +54368,7 @@ export declare const EventsSpeakersTranslationsApiFp: (configuration?: Configura
|
|
|
54203
54368
|
* @param {*} [options] Override http request option.
|
|
54204
54369
|
* @throws {RequiredError}
|
|
54205
54370
|
*/
|
|
54206
|
-
deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
54371
|
+
deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
54207
54372
|
/**
|
|
54208
54373
|
* Get Event Speaker Translation endpoint
|
|
54209
54374
|
* @summary Get Event Speaker Translation
|
|
@@ -54237,7 +54402,7 @@ export declare const EventsSpeakersTranslationsApiFp: (configuration?: Configura
|
|
|
54237
54402
|
* @param {*} [options] Override http request option.
|
|
54238
54403
|
* @throws {RequiredError}
|
|
54239
54404
|
*/
|
|
54240
|
-
updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
54405
|
+
updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
54241
54406
|
};
|
|
54242
54407
|
/**
|
|
54243
54408
|
* EventsSpeakersTranslationsApi - factory interface
|
|
@@ -54250,7 +54415,7 @@ export declare const EventsSpeakersTranslationsApiFactory: (configuration?: Conf
|
|
|
54250
54415
|
* @param {*} [options] Override http request option.
|
|
54251
54416
|
* @throws {RequiredError}
|
|
54252
54417
|
*/
|
|
54253
|
-
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
54418
|
+
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
54254
54419
|
/**
|
|
54255
54420
|
* Get Event Speaker Translation endpoint
|
|
54256
54421
|
* @summary Get Event Speaker Translation
|
|
@@ -54274,7 +54439,7 @@ export declare const EventsSpeakersTranslationsApiFactory: (configuration?: Conf
|
|
|
54274
54439
|
* @param {*} [options] Override http request option.
|
|
54275
54440
|
* @throws {RequiredError}
|
|
54276
54441
|
*/
|
|
54277
|
-
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
54442
|
+
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
54278
54443
|
};
|
|
54279
54444
|
/**
|
|
54280
54445
|
* Request parameters for deleteEventSpeakerTranslation operation in EventsSpeakersTranslationsApi.
|
|
@@ -54368,7 +54533,7 @@ export declare class EventsSpeakersTranslationsApi extends BaseAPI {
|
|
|
54368
54533
|
* @param {*} [options] Override http request option.
|
|
54369
54534
|
* @throws {RequiredError}
|
|
54370
54535
|
*/
|
|
54371
|
-
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
54536
|
+
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
54372
54537
|
/**
|
|
54373
54538
|
* Get Event Speaker Translation endpoint
|
|
54374
54539
|
* @summary Get Event Speaker Translation
|
|
@@ -54392,7 +54557,7 @@ export declare class EventsSpeakersTranslationsApi extends BaseAPI {
|
|
|
54392
54557
|
* @param {*} [options] Override http request option.
|
|
54393
54558
|
* @throws {RequiredError}
|
|
54394
54559
|
*/
|
|
54395
|
-
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
54560
|
+
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
54396
54561
|
}
|
|
54397
54562
|
/**
|
|
54398
54563
|
* EventsSponsorsApi - axios parameter creator
|
|
@@ -56624,7 +56789,7 @@ export declare const EventsTracksTranslationsApiFp: (configuration?: Configurati
|
|
|
56624
56789
|
* @param {*} [options] Override http request option.
|
|
56625
56790
|
* @throws {RequiredError}
|
|
56626
56791
|
*/
|
|
56627
|
-
deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
56792
|
+
deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56628
56793
|
/**
|
|
56629
56794
|
* Get Event Track Translation endpoint
|
|
56630
56795
|
* @summary Get Event Track Translation
|
|
@@ -56658,7 +56823,7 @@ export declare const EventsTracksTranslationsApiFp: (configuration?: Configurati
|
|
|
56658
56823
|
* @param {*} [options] Override http request option.
|
|
56659
56824
|
* @throws {RequiredError}
|
|
56660
56825
|
*/
|
|
56661
|
-
updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
56826
|
+
updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56662
56827
|
};
|
|
56663
56828
|
/**
|
|
56664
56829
|
* EventsTracksTranslationsApi - factory interface
|
|
@@ -56671,7 +56836,7 @@ export declare const EventsTracksTranslationsApiFactory: (configuration?: Config
|
|
|
56671
56836
|
* @param {*} [options] Override http request option.
|
|
56672
56837
|
* @throws {RequiredError}
|
|
56673
56838
|
*/
|
|
56674
|
-
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
56839
|
+
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56675
56840
|
/**
|
|
56676
56841
|
* Get Event Track Translation endpoint
|
|
56677
56842
|
* @summary Get Event Track Translation
|
|
@@ -56695,7 +56860,7 @@ export declare const EventsTracksTranslationsApiFactory: (configuration?: Config
|
|
|
56695
56860
|
* @param {*} [options] Override http request option.
|
|
56696
56861
|
* @throws {RequiredError}
|
|
56697
56862
|
*/
|
|
56698
|
-
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
56863
|
+
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56699
56864
|
};
|
|
56700
56865
|
/**
|
|
56701
56866
|
* Request parameters for deleteEventTrackTranslation operation in EventsTracksTranslationsApi.
|
|
@@ -56789,7 +56954,7 @@ export declare class EventsTracksTranslationsApi extends BaseAPI {
|
|
|
56789
56954
|
* @param {*} [options] Override http request option.
|
|
56790
56955
|
* @throws {RequiredError}
|
|
56791
56956
|
*/
|
|
56792
|
-
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
56957
|
+
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
56793
56958
|
/**
|
|
56794
56959
|
* Get Event Track Translation endpoint
|
|
56795
56960
|
* @summary Get Event Track Translation
|
|
@@ -56813,7 +56978,7 @@ export declare class EventsTracksTranslationsApi extends BaseAPI {
|
|
|
56813
56978
|
* @param {*} [options] Override http request option.
|
|
56814
56979
|
* @throws {RequiredError}
|
|
56815
56980
|
*/
|
|
56816
|
-
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
56981
|
+
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
56817
56982
|
}
|
|
56818
56983
|
/**
|
|
56819
56984
|
* EventsTranslationsApi - axios parameter creator
|
|
@@ -56872,7 +57037,7 @@ export declare const EventsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
56872
57037
|
* @param {*} [options] Override http request option.
|
|
56873
57038
|
* @throws {RequiredError}
|
|
56874
57039
|
*/
|
|
56875
|
-
deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
57040
|
+
deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56876
57041
|
/**
|
|
56877
57042
|
* Get Event Translation endpoint
|
|
56878
57043
|
* @summary Get Event Translation
|
|
@@ -56903,7 +57068,7 @@ export declare const EventsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
56903
57068
|
* @param {*} [options] Override http request option.
|
|
56904
57069
|
* @throws {RequiredError}
|
|
56905
57070
|
*/
|
|
56906
|
-
updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
57071
|
+
updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56907
57072
|
};
|
|
56908
57073
|
/**
|
|
56909
57074
|
* EventsTranslationsApi - factory interface
|
|
@@ -56916,7 +57081,7 @@ export declare const EventsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
56916
57081
|
* @param {*} [options] Override http request option.
|
|
56917
57082
|
* @throws {RequiredError}
|
|
56918
57083
|
*/
|
|
56919
|
-
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
57084
|
+
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56920
57085
|
/**
|
|
56921
57086
|
* Get Event Translation endpoint
|
|
56922
57087
|
* @summary Get Event Translation
|
|
@@ -56940,7 +57105,7 @@ export declare const EventsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
56940
57105
|
* @param {*} [options] Override http request option.
|
|
56941
57106
|
* @throws {RequiredError}
|
|
56942
57107
|
*/
|
|
56943
|
-
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
57108
|
+
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56944
57109
|
};
|
|
56945
57110
|
/**
|
|
56946
57111
|
* Request parameters for deleteEventTranslation operation in EventsTranslationsApi.
|
|
@@ -57018,7 +57183,7 @@ export declare class EventsTranslationsApi extends BaseAPI {
|
|
|
57018
57183
|
* @param {*} [options] Override http request option.
|
|
57019
57184
|
* @throws {RequiredError}
|
|
57020
57185
|
*/
|
|
57021
|
-
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
57186
|
+
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
57022
57187
|
/**
|
|
57023
57188
|
* Get Event Translation endpoint
|
|
57024
57189
|
* @summary Get Event Translation
|
|
@@ -57042,7 +57207,7 @@ export declare class EventsTranslationsApi extends BaseAPI {
|
|
|
57042
57207
|
* @param {*} [options] Override http request option.
|
|
57043
57208
|
* @throws {RequiredError}
|
|
57044
57209
|
*/
|
|
57045
|
-
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
57210
|
+
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
57046
57211
|
}
|
|
57047
57212
|
/**
|
|
57048
57213
|
* FilesApi - axios parameter creator
|
|
@@ -59160,7 +59325,7 @@ export declare const GroupsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
59160
59325
|
* @param {*} [options] Override http request option.
|
|
59161
59326
|
* @throws {RequiredError}
|
|
59162
59327
|
*/
|
|
59163
|
-
deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
59328
|
+
deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
59164
59329
|
/**
|
|
59165
59330
|
* Get Group Translation endpoint
|
|
59166
59331
|
* @summary Get Group Translation
|
|
@@ -59191,7 +59356,7 @@ export declare const GroupsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
59191
59356
|
* @param {*} [options] Override http request option.
|
|
59192
59357
|
* @throws {RequiredError}
|
|
59193
59358
|
*/
|
|
59194
|
-
updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
59359
|
+
updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
59195
59360
|
};
|
|
59196
59361
|
/**
|
|
59197
59362
|
* GroupsTranslationsApi - factory interface
|
|
@@ -59204,7 +59369,7 @@ export declare const GroupsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
59204
59369
|
* @param {*} [options] Override http request option.
|
|
59205
59370
|
* @throws {RequiredError}
|
|
59206
59371
|
*/
|
|
59207
|
-
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
59372
|
+
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
59208
59373
|
/**
|
|
59209
59374
|
* Get Group Translation endpoint
|
|
59210
59375
|
* @summary Get Group Translation
|
|
@@ -59228,7 +59393,7 @@ export declare const GroupsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
59228
59393
|
* @param {*} [options] Override http request option.
|
|
59229
59394
|
* @throws {RequiredError}
|
|
59230
59395
|
*/
|
|
59231
|
-
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
59396
|
+
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
59232
59397
|
};
|
|
59233
59398
|
/**
|
|
59234
59399
|
* Request parameters for deleteGroupTranslation operation in GroupsTranslationsApi.
|
|
@@ -59306,7 +59471,7 @@ export declare class GroupsTranslationsApi extends BaseAPI {
|
|
|
59306
59471
|
* @param {*} [options] Override http request option.
|
|
59307
59472
|
* @throws {RequiredError}
|
|
59308
59473
|
*/
|
|
59309
|
-
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
59474
|
+
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
59310
59475
|
/**
|
|
59311
59476
|
* Get Group Translation endpoint
|
|
59312
59477
|
* @summary Get Group Translation
|
|
@@ -59330,7 +59495,7 @@ export declare class GroupsTranslationsApi extends BaseAPI {
|
|
|
59330
59495
|
* @param {*} [options] Override http request option.
|
|
59331
59496
|
* @throws {RequiredError}
|
|
59332
59497
|
*/
|
|
59333
|
-
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
59498
|
+
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
59334
59499
|
}
|
|
59335
59500
|
/**
|
|
59336
59501
|
* ImportsApi - axios parameter creator
|
|
@@ -62497,7 +62662,7 @@ export declare const MeetingsParticipantsApiFp: (configuration?: Configuration)
|
|
|
62497
62662
|
* @param {*} [options] Override http request option.
|
|
62498
62663
|
* @throws {RequiredError}
|
|
62499
62664
|
*/
|
|
62500
|
-
createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
62665
|
+
createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
62501
62666
|
/**
|
|
62502
62667
|
* Delete Meeting Participant endpoint
|
|
62503
62668
|
* @summary Delete Meeting Participant
|
|
@@ -62536,7 +62701,7 @@ export declare const MeetingsParticipantsApiFp: (configuration?: Configuration)
|
|
|
62536
62701
|
* @param {*} [options] Override http request option.
|
|
62537
62702
|
* @throws {RequiredError}
|
|
62538
62703
|
*/
|
|
62539
|
-
regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
62704
|
+
regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
62540
62705
|
/**
|
|
62541
62706
|
* Update Meeting Participant endpoint
|
|
62542
62707
|
* @summary Update Meeting Participant
|
|
@@ -62559,7 +62724,7 @@ export declare const MeetingsParticipantsApiFactory: (configuration?: Configurat
|
|
|
62559
62724
|
* @param {*} [options] Override http request option.
|
|
62560
62725
|
* @throws {RequiredError}
|
|
62561
62726
|
*/
|
|
62562
|
-
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
62727
|
+
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
62563
62728
|
/**
|
|
62564
62729
|
* Delete Meeting Participant endpoint
|
|
62565
62730
|
* @summary Delete Meeting Participant
|
|
@@ -62591,7 +62756,7 @@ export declare const MeetingsParticipantsApiFactory: (configuration?: Configurat
|
|
|
62591
62756
|
* @param {*} [options] Override http request option.
|
|
62592
62757
|
* @throws {RequiredError}
|
|
62593
62758
|
*/
|
|
62594
|
-
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
62759
|
+
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
62595
62760
|
/**
|
|
62596
62761
|
* Update Meeting Participant endpoint
|
|
62597
62762
|
* @summary Update Meeting Participant
|
|
@@ -62700,7 +62865,7 @@ export declare class MeetingsParticipantsApi extends BaseAPI {
|
|
|
62700
62865
|
* @param {*} [options] Override http request option.
|
|
62701
62866
|
* @throws {RequiredError}
|
|
62702
62867
|
*/
|
|
62703
|
-
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
62868
|
+
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
62704
62869
|
/**
|
|
62705
62870
|
* Delete Meeting Participant endpoint
|
|
62706
62871
|
* @summary Delete Meeting Participant
|
|
@@ -62732,7 +62897,7 @@ export declare class MeetingsParticipantsApi extends BaseAPI {
|
|
|
62732
62897
|
* @param {*} [options] Override http request option.
|
|
62733
62898
|
* @throws {RequiredError}
|
|
62734
62899
|
*/
|
|
62735
|
-
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
62900
|
+
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
62736
62901
|
/**
|
|
62737
62902
|
* Update Meeting Participant endpoint
|
|
62738
62903
|
* @summary Update Meeting Participant
|
|
@@ -63200,7 +63365,7 @@ export declare const MeetingsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
63200
63365
|
* @param {*} [options] Override http request option.
|
|
63201
63366
|
* @throws {RequiredError}
|
|
63202
63367
|
*/
|
|
63203
|
-
generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
63368
|
+
generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
63204
63369
|
/**
|
|
63205
63370
|
* Get Meeting Session endpoint
|
|
63206
63371
|
* @summary Get Meeting Session
|
|
@@ -63278,7 +63443,7 @@ export declare const MeetingsSessionsApiFactory: (configuration?: Configuration,
|
|
|
63278
63443
|
* @param {*} [options] Override http request option.
|
|
63279
63444
|
* @throws {RequiredError}
|
|
63280
63445
|
*/
|
|
63281
|
-
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
63446
|
+
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
63282
63447
|
/**
|
|
63283
63448
|
* Get Meeting Session endpoint
|
|
63284
63449
|
* @summary Get Meeting Session
|
|
@@ -63455,7 +63620,7 @@ export declare class MeetingsSessionsApi extends BaseAPI {
|
|
|
63455
63620
|
* @param {*} [options] Override http request option.
|
|
63456
63621
|
* @throws {RequiredError}
|
|
63457
63622
|
*/
|
|
63458
|
-
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63623
|
+
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
63459
63624
|
/**
|
|
63460
63625
|
* Get Meeting Session endpoint
|
|
63461
63626
|
* @summary Get Meeting Session
|
|
@@ -63564,7 +63729,7 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
63564
63729
|
* @param {*} [options] Override http request option.
|
|
63565
63730
|
* @throws {RequiredError}
|
|
63566
63731
|
*/
|
|
63567
|
-
getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
63732
|
+
getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
63568
63733
|
/**
|
|
63569
63734
|
* Get Notification Stats endpoint
|
|
63570
63735
|
* @summary Get Notification Stats
|
|
@@ -63591,7 +63756,7 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
63591
63756
|
* @param {*} [options] Override http request option.
|
|
63592
63757
|
* @throws {RequiredError}
|
|
63593
63758
|
*/
|
|
63594
|
-
markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
63759
|
+
markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
63595
63760
|
};
|
|
63596
63761
|
/**
|
|
63597
63762
|
* NotificationsApi - factory interface
|
|
@@ -63604,7 +63769,7 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
63604
63769
|
* @param {*} [options] Override http request option.
|
|
63605
63770
|
* @throws {RequiredError}
|
|
63606
63771
|
*/
|
|
63607
|
-
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
63772
|
+
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
63608
63773
|
/**
|
|
63609
63774
|
* Get Notification Stats endpoint
|
|
63610
63775
|
* @summary Get Notification Stats
|
|
@@ -63627,7 +63792,7 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
63627
63792
|
* @param {*} [options] Override http request option.
|
|
63628
63793
|
* @throws {RequiredError}
|
|
63629
63794
|
*/
|
|
63630
|
-
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
63795
|
+
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
63631
63796
|
};
|
|
63632
63797
|
/**
|
|
63633
63798
|
* Request parameters for getNotificationCount operation in NotificationsApi.
|
|
@@ -63683,7 +63848,7 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
63683
63848
|
* @param {*} [options] Override http request option.
|
|
63684
63849
|
* @throws {RequiredError}
|
|
63685
63850
|
*/
|
|
63686
|
-
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63851
|
+
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
63687
63852
|
/**
|
|
63688
63853
|
* Get Notification Stats endpoint
|
|
63689
63854
|
* @summary Get Notification Stats
|
|
@@ -63706,7 +63871,7 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
63706
63871
|
* @param {*} [options] Override http request option.
|
|
63707
63872
|
* @throws {RequiredError}
|
|
63708
63873
|
*/
|
|
63709
|
-
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63874
|
+
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
63710
63875
|
}
|
|
63711
63876
|
/**
|
|
63712
63877
|
* OrganizationApi - axios parameter creator
|
|
@@ -65565,7 +65730,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFp: (configuratio
|
|
|
65565
65730
|
* @param {*} [options] Override http request option.
|
|
65566
65731
|
* @throws {RequiredError}
|
|
65567
65732
|
*/
|
|
65568
|
-
deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
65733
|
+
deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
65569
65734
|
/**
|
|
65570
65735
|
* Get Organization Module Settings Translation endpoint
|
|
65571
65736
|
* @summary Get Organization Module Settings Translation
|
|
@@ -65593,7 +65758,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFp: (configuratio
|
|
|
65593
65758
|
* @param {*} [options] Override http request option.
|
|
65594
65759
|
* @throws {RequiredError}
|
|
65595
65760
|
*/
|
|
65596
|
-
updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
65761
|
+
updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
65597
65762
|
};
|
|
65598
65763
|
/**
|
|
65599
65764
|
* OrganizationModulesSettingsTranslationsApi - factory interface
|
|
@@ -65606,7 +65771,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFactory: (configu
|
|
|
65606
65771
|
* @param {*} [options] Override http request option.
|
|
65607
65772
|
* @throws {RequiredError}
|
|
65608
65773
|
*/
|
|
65609
|
-
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
65774
|
+
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
65610
65775
|
/**
|
|
65611
65776
|
* Get Organization Module Settings Translation endpoint
|
|
65612
65777
|
* @summary Get Organization Module Settings Translation
|
|
@@ -65630,7 +65795,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFactory: (configu
|
|
|
65630
65795
|
* @param {*} [options] Override http request option.
|
|
65631
65796
|
* @throws {RequiredError}
|
|
65632
65797
|
*/
|
|
65633
|
-
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
65798
|
+
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
65634
65799
|
};
|
|
65635
65800
|
/**
|
|
65636
65801
|
* Request parameters for deleteOrganizationModuleSettingsTranslation operation in OrganizationModulesSettingsTranslationsApi.
|
|
@@ -65692,7 +65857,7 @@ export declare class OrganizationModulesSettingsTranslationsApi extends BaseAPI
|
|
|
65692
65857
|
* @param {*} [options] Override http request option.
|
|
65693
65858
|
* @throws {RequiredError}
|
|
65694
65859
|
*/
|
|
65695
|
-
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
65860
|
+
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
65696
65861
|
/**
|
|
65697
65862
|
* Get Organization Module Settings Translation endpoint
|
|
65698
65863
|
* @summary Get Organization Module Settings Translation
|
|
@@ -65716,7 +65881,7 @@ export declare class OrganizationModulesSettingsTranslationsApi extends BaseAPI
|
|
|
65716
65881
|
* @param {*} [options] Override http request option.
|
|
65717
65882
|
* @throws {RequiredError}
|
|
65718
65883
|
*/
|
|
65719
|
-
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
65884
|
+
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
65720
65885
|
}
|
|
65721
65886
|
/**
|
|
65722
65887
|
* OrganizationModulesTiersApi - axios parameter creator
|
|
@@ -66169,7 +66334,7 @@ export declare const OrganizationPaymentsApiFp: (configuration?: Configuration)
|
|
|
66169
66334
|
* @param {*} [options] Override http request option.
|
|
66170
66335
|
* @throws {RequiredError}
|
|
66171
66336
|
*/
|
|
66172
|
-
deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
66337
|
+
deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
66173
66338
|
/**
|
|
66174
66339
|
* Get Organization Payment Integration endpoint
|
|
66175
66340
|
* @summary Get Organization Payment Integration
|
|
@@ -66263,7 +66428,7 @@ export declare const OrganizationPaymentsApiFactory: (configuration?: Configurat
|
|
|
66263
66428
|
* @param {*} [options] Override http request option.
|
|
66264
66429
|
* @throws {RequiredError}
|
|
66265
66430
|
*/
|
|
66266
|
-
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
66431
|
+
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
66267
66432
|
/**
|
|
66268
66433
|
* Get Organization Payment Integration endpoint
|
|
66269
66434
|
* @summary Get Organization Payment Integration
|
|
@@ -66465,7 +66630,7 @@ export declare class OrganizationPaymentsApi extends BaseAPI {
|
|
|
66465
66630
|
* @param {*} [options] Override http request option.
|
|
66466
66631
|
* @throws {RequiredError}
|
|
66467
66632
|
*/
|
|
66468
|
-
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
66633
|
+
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
66469
66634
|
/**
|
|
66470
66635
|
* Get Organization Payment Integration endpoint
|
|
66471
66636
|
* @summary Get Organization Payment Integration
|
|
@@ -67364,7 +67529,7 @@ export declare const OrganizationTeammembersApiFp: (configuration?: Configuratio
|
|
|
67364
67529
|
* @param {*} [options] Override http request option.
|
|
67365
67530
|
* @throws {RequiredError}
|
|
67366
67531
|
*/
|
|
67367
|
-
getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
67532
|
+
getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
67368
67533
|
/**
|
|
67369
67534
|
* Get Organization Team Members endpoint
|
|
67370
67535
|
* @summary Get Organization Team Members
|
|
@@ -67413,7 +67578,7 @@ export declare const OrganizationTeammembersApiFactory: (configuration?: Configu
|
|
|
67413
67578
|
* @param {*} [options] Override http request option.
|
|
67414
67579
|
* @throws {RequiredError}
|
|
67415
67580
|
*/
|
|
67416
|
-
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
67581
|
+
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
67417
67582
|
/**
|
|
67418
67583
|
* Get Organization Team Members endpoint
|
|
67419
67584
|
* @summary Get Organization Team Members
|
|
@@ -67516,7 +67681,7 @@ export declare class OrganizationTeammembersApi extends BaseAPI {
|
|
|
67516
67681
|
* @param {*} [options] Override http request option.
|
|
67517
67682
|
* @throws {RequiredError}
|
|
67518
67683
|
*/
|
|
67519
|
-
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
67684
|
+
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
67520
67685
|
/**
|
|
67521
67686
|
* Get Organization Team Members endpoint
|
|
67522
67687
|
* @summary Get Organization Team Members
|
|
@@ -71879,7 +72044,7 @@ export declare const SeriesTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
71879
72044
|
* @param {*} [options] Override http request option.
|
|
71880
72045
|
* @throws {RequiredError}
|
|
71881
72046
|
*/
|
|
71882
|
-
deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
72047
|
+
deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
71883
72048
|
/**
|
|
71884
72049
|
* Get Series Translation endpoint
|
|
71885
72050
|
* @summary Get Series Translation
|
|
@@ -71910,7 +72075,7 @@ export declare const SeriesTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
71910
72075
|
* @param {*} [options] Override http request option.
|
|
71911
72076
|
* @throws {RequiredError}
|
|
71912
72077
|
*/
|
|
71913
|
-
updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
72078
|
+
updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
71914
72079
|
};
|
|
71915
72080
|
/**
|
|
71916
72081
|
* SeriesTranslationsApi - factory interface
|
|
@@ -71923,7 +72088,7 @@ export declare const SeriesTranslationsApiFactory: (configuration?: Configuratio
|
|
|
71923
72088
|
* @param {*} [options] Override http request option.
|
|
71924
72089
|
* @throws {RequiredError}
|
|
71925
72090
|
*/
|
|
71926
|
-
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72091
|
+
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
71927
72092
|
/**
|
|
71928
72093
|
* Get Series Translation endpoint
|
|
71929
72094
|
* @summary Get Series Translation
|
|
@@ -71947,7 +72112,7 @@ export declare const SeriesTranslationsApiFactory: (configuration?: Configuratio
|
|
|
71947
72112
|
* @param {*} [options] Override http request option.
|
|
71948
72113
|
* @throws {RequiredError}
|
|
71949
72114
|
*/
|
|
71950
|
-
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72115
|
+
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
71951
72116
|
};
|
|
71952
72117
|
/**
|
|
71953
72118
|
* Request parameters for deleteSeriesTranslation operation in SeriesTranslationsApi.
|
|
@@ -72025,7 +72190,7 @@ export declare class SeriesTranslationsApi extends BaseAPI {
|
|
|
72025
72190
|
* @param {*} [options] Override http request option.
|
|
72026
72191
|
* @throws {RequiredError}
|
|
72027
72192
|
*/
|
|
72028
|
-
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72193
|
+
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72029
72194
|
/**
|
|
72030
72195
|
* Get Series Translation endpoint
|
|
72031
72196
|
* @summary Get Series Translation
|
|
@@ -72049,7 +72214,7 @@ export declare class SeriesTranslationsApi extends BaseAPI {
|
|
|
72049
72214
|
* @param {*} [options] Override http request option.
|
|
72050
72215
|
* @throws {RequiredError}
|
|
72051
72216
|
*/
|
|
72052
|
-
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72217
|
+
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72053
72218
|
}
|
|
72054
72219
|
/**
|
|
72055
72220
|
* SponsorsApi - axios parameter creator
|
|
@@ -72533,7 +72698,7 @@ export declare const SponsorsTranslationsApiFp: (configuration?: Configuration)
|
|
|
72533
72698
|
* @param {*} [options] Override http request option.
|
|
72534
72699
|
* @throws {RequiredError}
|
|
72535
72700
|
*/
|
|
72536
|
-
deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
72701
|
+
deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
72537
72702
|
/**
|
|
72538
72703
|
* Get Level Translation endpoint
|
|
72539
72704
|
* @summary Get Level Translation
|
|
@@ -72564,7 +72729,7 @@ export declare const SponsorsTranslationsApiFp: (configuration?: Configuration)
|
|
|
72564
72729
|
* @param {*} [options] Override http request option.
|
|
72565
72730
|
* @throws {RequiredError}
|
|
72566
72731
|
*/
|
|
72567
|
-
updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
72732
|
+
updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
72568
72733
|
};
|
|
72569
72734
|
/**
|
|
72570
72735
|
* SponsorsTranslationsApi - factory interface
|
|
@@ -72577,7 +72742,7 @@ export declare const SponsorsTranslationsApiFactory: (configuration?: Configurat
|
|
|
72577
72742
|
* @param {*} [options] Override http request option.
|
|
72578
72743
|
* @throws {RequiredError}
|
|
72579
72744
|
*/
|
|
72580
|
-
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72745
|
+
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
72581
72746
|
/**
|
|
72582
72747
|
* Get Level Translation endpoint
|
|
72583
72748
|
* @summary Get Level Translation
|
|
@@ -72601,7 +72766,7 @@ export declare const SponsorsTranslationsApiFactory: (configuration?: Configurat
|
|
|
72601
72766
|
* @param {*} [options] Override http request option.
|
|
72602
72767
|
* @throws {RequiredError}
|
|
72603
72768
|
*/
|
|
72604
|
-
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72769
|
+
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
72605
72770
|
};
|
|
72606
72771
|
/**
|
|
72607
72772
|
* Request parameters for deleteLevelTranslation operation in SponsorsTranslationsApi.
|
|
@@ -72679,7 +72844,7 @@ export declare class SponsorsTranslationsApi extends BaseAPI {
|
|
|
72679
72844
|
* @param {*} [options] Override http request option.
|
|
72680
72845
|
* @throws {RequiredError}
|
|
72681
72846
|
*/
|
|
72682
|
-
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72847
|
+
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72683
72848
|
/**
|
|
72684
72849
|
* Get Level Translation endpoint
|
|
72685
72850
|
* @summary Get Level Translation
|
|
@@ -72703,7 +72868,7 @@ export declare class SponsorsTranslationsApi extends BaseAPI {
|
|
|
72703
72868
|
* @param {*} [options] Override http request option.
|
|
72704
72869
|
* @throws {RequiredError}
|
|
72705
72870
|
*/
|
|
72706
|
-
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72871
|
+
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72707
72872
|
}
|
|
72708
72873
|
/**
|
|
72709
72874
|
* StorageFilesApi - axios parameter creator
|
|
@@ -73364,7 +73529,7 @@ export declare const StorageVideosApiFp: (configuration?: Configuration) => {
|
|
|
73364
73529
|
* @param {*} [options] Override http request option.
|
|
73365
73530
|
* @throws {RequiredError}
|
|
73366
73531
|
*/
|
|
73367
|
-
getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73532
|
+
getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
73368
73533
|
/**
|
|
73369
73534
|
* Get Videos endpoint
|
|
73370
73535
|
* @summary Get Videos
|
|
@@ -73384,7 +73549,7 @@ export declare const StorageVideosApiFp: (configuration?: Configuration) => {
|
|
|
73384
73549
|
* @param {*} [options] Override http request option.
|
|
73385
73550
|
* @throws {RequiredError}
|
|
73386
73551
|
*/
|
|
73387
|
-
initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73552
|
+
initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
73388
73553
|
/**
|
|
73389
73554
|
* Update Video endpoint
|
|
73390
73555
|
* @summary Update Video
|
|
@@ -73430,7 +73595,7 @@ export declare const StorageVideosApiFactory: (configuration?: Configuration, ba
|
|
|
73430
73595
|
* @param {*} [options] Override http request option.
|
|
73431
73596
|
* @throws {RequiredError}
|
|
73432
73597
|
*/
|
|
73433
|
-
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
73598
|
+
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
73434
73599
|
/**
|
|
73435
73600
|
* Get Videos endpoint
|
|
73436
73601
|
* @summary Get Videos
|
|
@@ -73446,7 +73611,7 @@ export declare const StorageVideosApiFactory: (configuration?: Configuration, ba
|
|
|
73446
73611
|
* @param {*} [options] Override http request option.
|
|
73447
73612
|
* @throws {RequiredError}
|
|
73448
73613
|
*/
|
|
73449
|
-
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
73614
|
+
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
73450
73615
|
/**
|
|
73451
73616
|
* Update Video endpoint
|
|
73452
73617
|
* @summary Update Video
|
|
@@ -73568,7 +73733,7 @@ export declare class StorageVideosApi extends BaseAPI {
|
|
|
73568
73733
|
* @param {*} [options] Override http request option.
|
|
73569
73734
|
* @throws {RequiredError}
|
|
73570
73735
|
*/
|
|
73571
|
-
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
73736
|
+
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
73572
73737
|
/**
|
|
73573
73738
|
* Get Videos endpoint
|
|
73574
73739
|
* @summary Get Videos
|
|
@@ -73584,7 +73749,7 @@ export declare class StorageVideosApi extends BaseAPI {
|
|
|
73584
73749
|
* @param {*} [options] Override http request option.
|
|
73585
73750
|
* @throws {RequiredError}
|
|
73586
73751
|
*/
|
|
73587
|
-
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
73752
|
+
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
73588
73753
|
/**
|
|
73589
73754
|
* Update Video endpoint
|
|
73590
73755
|
* @summary Update Video
|
|
@@ -73670,7 +73835,7 @@ export declare const StorageVideosCaptionsApiFp: (configuration?: Configuration)
|
|
|
73670
73835
|
* @param {*} [options] Override http request option.
|
|
73671
73836
|
* @throws {RequiredError}
|
|
73672
73837
|
*/
|
|
73673
|
-
downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73838
|
+
downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
73674
73839
|
/**
|
|
73675
73840
|
* Generate Video Captions endpoint
|
|
73676
73841
|
* @summary Generate Video Captions
|
|
@@ -73723,7 +73888,7 @@ export declare const StorageVideosCaptionsApiFactory: (configuration?: Configura
|
|
|
73723
73888
|
* @param {*} [options] Override http request option.
|
|
73724
73889
|
* @throws {RequiredError}
|
|
73725
73890
|
*/
|
|
73726
|
-
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
73891
|
+
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
73727
73892
|
/**
|
|
73728
73893
|
* Generate Video Captions endpoint
|
|
73729
73894
|
* @summary Generate Video Captions
|
|
@@ -73853,7 +74018,7 @@ export declare class StorageVideosCaptionsApi extends BaseAPI {
|
|
|
73853
74018
|
* @param {*} [options] Override http request option.
|
|
73854
74019
|
* @throws {RequiredError}
|
|
73855
74020
|
*/
|
|
73856
|
-
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
74021
|
+
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
73857
74022
|
/**
|
|
73858
74023
|
* Generate Video Captions endpoint
|
|
73859
74024
|
* @summary Generate Video Captions
|
|
@@ -76304,7 +76469,7 @@ export declare const SurveysQuestionsApiFp: (configuration?: Configuration) => {
|
|
|
76304
76469
|
* @param {*} [options] Override http request option.
|
|
76305
76470
|
* @throws {RequiredError}
|
|
76306
76471
|
*/
|
|
76307
|
-
updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
76472
|
+
updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
76308
76473
|
/**
|
|
76309
76474
|
* Update Survey Question Choice Sub Question endpoint
|
|
76310
76475
|
* @summary Update Survey Question Choice Sub Question
|
|
@@ -76465,7 +76630,7 @@ export declare const SurveysQuestionsApiFactory: (configuration?: Configuration,
|
|
|
76465
76630
|
* @param {*} [options] Override http request option.
|
|
76466
76631
|
* @throws {RequiredError}
|
|
76467
76632
|
*/
|
|
76468
|
-
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
76633
|
+
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
76469
76634
|
/**
|
|
76470
76635
|
* Update Survey Question Choice Sub Question endpoint
|
|
76471
76636
|
* @summary Update Survey Question Choice Sub Question
|
|
@@ -76996,7 +77161,7 @@ export declare class SurveysQuestionsApi extends BaseAPI {
|
|
|
76996
77161
|
* @param {*} [options] Override http request option.
|
|
76997
77162
|
* @throws {RequiredError}
|
|
76998
77163
|
*/
|
|
76999
|
-
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77164
|
+
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77000
77165
|
/**
|
|
77001
77166
|
* Update Survey Question Choice Sub Question endpoint
|
|
77002
77167
|
* @summary Update Survey Question Choice Sub Question
|
|
@@ -77117,7 +77282,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77117
77282
|
* @param {*} [options] Override http request option.
|
|
77118
77283
|
* @throws {RequiredError}
|
|
77119
77284
|
*/
|
|
77120
|
-
deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77285
|
+
deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77121
77286
|
/**
|
|
77122
77287
|
* Delete Survey Question Translation endpoint
|
|
77123
77288
|
* @summary Delete Survey Question Translation
|
|
@@ -77127,7 +77292,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77127
77292
|
* @param {*} [options] Override http request option.
|
|
77128
77293
|
* @throws {RequiredError}
|
|
77129
77294
|
*/
|
|
77130
|
-
deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77295
|
+
deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77131
77296
|
/**
|
|
77132
77297
|
* Get Survey Question Choice Translation endpoint
|
|
77133
77298
|
* @summary Get Survey Question Choice Translation
|
|
@@ -77187,7 +77352,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77187
77352
|
* @param {*} [options] Override http request option.
|
|
77188
77353
|
* @throws {RequiredError}
|
|
77189
77354
|
*/
|
|
77190
|
-
updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77355
|
+
updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77191
77356
|
/**
|
|
77192
77357
|
* Update Survey Question Translation endpoint
|
|
77193
77358
|
* @summary Update Survey Question Translation
|
|
@@ -77198,7 +77363,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77198
77363
|
* @param {*} [options] Override http request option.
|
|
77199
77364
|
* @throws {RequiredError}
|
|
77200
77365
|
*/
|
|
77201
|
-
updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77366
|
+
updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77202
77367
|
};
|
|
77203
77368
|
/**
|
|
77204
77369
|
* SurveysQuestionsTranslationsApi - factory interface
|
|
@@ -77211,7 +77376,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77211
77376
|
* @param {*} [options] Override http request option.
|
|
77212
77377
|
* @throws {RequiredError}
|
|
77213
77378
|
*/
|
|
77214
|
-
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77379
|
+
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77215
77380
|
/**
|
|
77216
77381
|
* Delete Survey Question Translation endpoint
|
|
77217
77382
|
* @summary Delete Survey Question Translation
|
|
@@ -77219,7 +77384,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77219
77384
|
* @param {*} [options] Override http request option.
|
|
77220
77385
|
* @throws {RequiredError}
|
|
77221
77386
|
*/
|
|
77222
|
-
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77387
|
+
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77223
77388
|
/**
|
|
77224
77389
|
* Get Survey Question Choice Translation endpoint
|
|
77225
77390
|
* @summary Get Survey Question Choice Translation
|
|
@@ -77259,7 +77424,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77259
77424
|
* @param {*} [options] Override http request option.
|
|
77260
77425
|
* @throws {RequiredError}
|
|
77261
77426
|
*/
|
|
77262
|
-
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77427
|
+
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77263
77428
|
/**
|
|
77264
77429
|
* Update Survey Question Translation endpoint
|
|
77265
77430
|
* @summary Update Survey Question Translation
|
|
@@ -77267,7 +77432,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77267
77432
|
* @param {*} [options] Override http request option.
|
|
77268
77433
|
* @throws {RequiredError}
|
|
77269
77434
|
*/
|
|
77270
|
-
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77435
|
+
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77271
77436
|
};
|
|
77272
77437
|
/**
|
|
77273
77438
|
* Request parameters for deleteSurveyQuestionChoiceTranslation operation in SurveysQuestionsTranslationsApi.
|
|
@@ -77458,7 +77623,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77458
77623
|
* @param {*} [options] Override http request option.
|
|
77459
77624
|
* @throws {RequiredError}
|
|
77460
77625
|
*/
|
|
77461
|
-
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77626
|
+
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77462
77627
|
/**
|
|
77463
77628
|
* Delete Survey Question Translation endpoint
|
|
77464
77629
|
* @summary Delete Survey Question Translation
|
|
@@ -77466,7 +77631,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77466
77631
|
* @param {*} [options] Override http request option.
|
|
77467
77632
|
* @throws {RequiredError}
|
|
77468
77633
|
*/
|
|
77469
|
-
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77634
|
+
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77470
77635
|
/**
|
|
77471
77636
|
* Get Survey Question Choice Translation endpoint
|
|
77472
77637
|
* @summary Get Survey Question Choice Translation
|
|
@@ -77506,7 +77671,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77506
77671
|
* @param {*} [options] Override http request option.
|
|
77507
77672
|
* @throws {RequiredError}
|
|
77508
77673
|
*/
|
|
77509
|
-
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77674
|
+
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77510
77675
|
/**
|
|
77511
77676
|
* Update Survey Question Translation endpoint
|
|
77512
77677
|
* @summary Update Survey Question Translation
|
|
@@ -77514,7 +77679,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77514
77679
|
* @param {*} [options] Override http request option.
|
|
77515
77680
|
* @throws {RequiredError}
|
|
77516
77681
|
*/
|
|
77517
|
-
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77682
|
+
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77518
77683
|
}
|
|
77519
77684
|
/**
|
|
77520
77685
|
* SurveysSectionsApi - axios parameter creator
|
|
@@ -78143,7 +78308,7 @@ export declare const SurveysSectionsTranslationsApiFp: (configuration?: Configur
|
|
|
78143
78308
|
* @param {*} [options] Override http request option.
|
|
78144
78309
|
* @throws {RequiredError}
|
|
78145
78310
|
*/
|
|
78146
|
-
deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
78311
|
+
deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78147
78312
|
/**
|
|
78148
78313
|
* Get Survey Section Translation endpoint
|
|
78149
78314
|
* @summary Get Survey Section Translation
|
|
@@ -78177,7 +78342,7 @@ export declare const SurveysSectionsTranslationsApiFp: (configuration?: Configur
|
|
|
78177
78342
|
* @param {*} [options] Override http request option.
|
|
78178
78343
|
* @throws {RequiredError}
|
|
78179
78344
|
*/
|
|
78180
|
-
updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
78345
|
+
updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78181
78346
|
};
|
|
78182
78347
|
/**
|
|
78183
78348
|
* SurveysSectionsTranslationsApi - factory interface
|
|
@@ -78190,7 +78355,7 @@ export declare const SurveysSectionsTranslationsApiFactory: (configuration?: Con
|
|
|
78190
78355
|
* @param {*} [options] Override http request option.
|
|
78191
78356
|
* @throws {RequiredError}
|
|
78192
78357
|
*/
|
|
78193
|
-
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
78358
|
+
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
78194
78359
|
/**
|
|
78195
78360
|
* Get Survey Section Translation endpoint
|
|
78196
78361
|
* @summary Get Survey Section Translation
|
|
@@ -78214,7 +78379,7 @@ export declare const SurveysSectionsTranslationsApiFactory: (configuration?: Con
|
|
|
78214
78379
|
* @param {*} [options] Override http request option.
|
|
78215
78380
|
* @throws {RequiredError}
|
|
78216
78381
|
*/
|
|
78217
|
-
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
78382
|
+
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
78218
78383
|
};
|
|
78219
78384
|
/**
|
|
78220
78385
|
* Request parameters for deleteSurveySectionTranslation operation in SurveysSectionsTranslationsApi.
|
|
@@ -78308,7 +78473,7 @@ export declare class SurveysSectionsTranslationsApi extends BaseAPI {
|
|
|
78308
78473
|
* @param {*} [options] Override http request option.
|
|
78309
78474
|
* @throws {RequiredError}
|
|
78310
78475
|
*/
|
|
78311
|
-
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
78476
|
+
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
78312
78477
|
/**
|
|
78313
78478
|
* Get Survey Section Translation endpoint
|
|
78314
78479
|
* @summary Get Survey Section Translation
|
|
@@ -78332,7 +78497,7 @@ export declare class SurveysSectionsTranslationsApi extends BaseAPI {
|
|
|
78332
78497
|
* @param {*} [options] Override http request option.
|
|
78333
78498
|
* @throws {RequiredError}
|
|
78334
78499
|
*/
|
|
78335
|
-
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
78500
|
+
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
78336
78501
|
}
|
|
78337
78502
|
/**
|
|
78338
78503
|
* SurveysSessionsApi - axios parameter creator
|
|
@@ -78938,7 +79103,7 @@ export declare const SurveysTranslationsApiFp: (configuration?: Configuration) =
|
|
|
78938
79103
|
* @param {*} [options] Override http request option.
|
|
78939
79104
|
* @throws {RequiredError}
|
|
78940
79105
|
*/
|
|
78941
|
-
deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
79106
|
+
deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78942
79107
|
/**
|
|
78943
79108
|
* Get Survey Translation endpoint
|
|
78944
79109
|
* @summary Get Survey Translation
|
|
@@ -78969,7 +79134,7 @@ export declare const SurveysTranslationsApiFp: (configuration?: Configuration) =
|
|
|
78969
79134
|
* @param {*} [options] Override http request option.
|
|
78970
79135
|
* @throws {RequiredError}
|
|
78971
79136
|
*/
|
|
78972
|
-
updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
79137
|
+
updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78973
79138
|
};
|
|
78974
79139
|
/**
|
|
78975
79140
|
* SurveysTranslationsApi - factory interface
|
|
@@ -78982,7 +79147,7 @@ export declare const SurveysTranslationsApiFactory: (configuration?: Configurati
|
|
|
78982
79147
|
* @param {*} [options] Override http request option.
|
|
78983
79148
|
* @throws {RequiredError}
|
|
78984
79149
|
*/
|
|
78985
|
-
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
79150
|
+
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
78986
79151
|
/**
|
|
78987
79152
|
* Get Survey Translation endpoint
|
|
78988
79153
|
* @summary Get Survey Translation
|
|
@@ -79006,7 +79171,7 @@ export declare const SurveysTranslationsApiFactory: (configuration?: Configurati
|
|
|
79006
79171
|
* @param {*} [options] Override http request option.
|
|
79007
79172
|
* @throws {RequiredError}
|
|
79008
79173
|
*/
|
|
79009
|
-
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
79174
|
+
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
79010
79175
|
};
|
|
79011
79176
|
/**
|
|
79012
79177
|
* Request parameters for deleteSurveyTranslation operation in SurveysTranslationsApi.
|
|
@@ -79084,7 +79249,7 @@ export declare class SurveysTranslationsApi extends BaseAPI {
|
|
|
79084
79249
|
* @param {*} [options] Override http request option.
|
|
79085
79250
|
* @throws {RequiredError}
|
|
79086
79251
|
*/
|
|
79087
|
-
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
79252
|
+
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
79088
79253
|
/**
|
|
79089
79254
|
* Get Survey Translation endpoint
|
|
79090
79255
|
* @summary Get Survey Translation
|
|
@@ -79108,7 +79273,7 @@ export declare class SurveysTranslationsApi extends BaseAPI {
|
|
|
79108
79273
|
* @param {*} [options] Override http request option.
|
|
79109
79274
|
* @throws {RequiredError}
|
|
79110
79275
|
*/
|
|
79111
|
-
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
79276
|
+
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
79112
79277
|
}
|
|
79113
79278
|
/**
|
|
79114
79279
|
* ThreadsApi - axios parameter creator
|