@connectedxm/admin-sdk 6.32.1 → 6.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +1 -1
- package/README.md +4 -1
- package/api.ts +444 -207
- package/dist/api.d.ts +415 -303
- package/dist/api.js +209 -5
- package/dist/esm/api.d.ts +415 -303
- package/dist/esm/api.js +208 -4
- package/docs/AccountsApi.md +97 -0
- package/docs/AnnouncementsTranslationsApi.md +4 -4
- 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/EventsAccessApi.md +4 -4
- 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/NotificationPreferences.md +2 -0
- package/docs/NotificationType.md +2 -0
- 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
|
@@ -9761,6 +9761,7 @@ export interface NotificationPreferences {
|
|
|
9761
9761
|
'chatPush': boolean;
|
|
9762
9762
|
'chatUnreadEmail': boolean;
|
|
9763
9763
|
'chatUnreadPush': boolean;
|
|
9764
|
+
'activityMentionPush': boolean;
|
|
9764
9765
|
'organizationAnnouncementEmail': boolean;
|
|
9765
9766
|
'organizationAnnouncementPush': boolean;
|
|
9766
9767
|
'groupInvitationEmail': boolean;
|
|
@@ -9790,7 +9791,8 @@ export declare enum NotificationType {
|
|
|
9790
9791
|
GroupInvitation = "GROUP_INVITATION",
|
|
9791
9792
|
GroupRequestAccepted = "GROUP_REQUEST_ACCEPTED",
|
|
9792
9793
|
Content = "CONTENT",
|
|
9793
|
-
SupportTicketMessage = "SUPPORT_TICKET_MESSAGE"
|
|
9794
|
+
SupportTicketMessage = "SUPPORT_TICKET_MESSAGE",
|
|
9795
|
+
Mention = "MENTION"
|
|
9794
9796
|
}
|
|
9795
9797
|
export declare enum OnSiteScanType {
|
|
9796
9798
|
Both = "both",
|
|
@@ -12020,6 +12022,14 @@ export interface SurveyUpdateInputs {
|
|
|
12020
12022
|
'eventId'?: string | null;
|
|
12021
12023
|
'activationId'?: string | null;
|
|
12022
12024
|
}
|
|
12025
|
+
export interface SyncAccounts200Response {
|
|
12026
|
+
'status': SyncAccounts200ResponseStatusEnum;
|
|
12027
|
+
'message': string;
|
|
12028
|
+
'data': object;
|
|
12029
|
+
}
|
|
12030
|
+
export declare enum SyncAccounts200ResponseStatusEnum {
|
|
12031
|
+
Ok = "ok"
|
|
12032
|
+
}
|
|
12023
12033
|
export interface SystemEventLog {
|
|
12024
12034
|
'id': string;
|
|
12025
12035
|
'organizationId': string;
|
|
@@ -12372,14 +12382,6 @@ export interface TriggerUpdateInputs {
|
|
|
12372
12382
|
'code'?: string | null;
|
|
12373
12383
|
'enabled'?: boolean;
|
|
12374
12384
|
}
|
|
12375
|
-
export interface UpdateAnnouncementTranslation200Response {
|
|
12376
|
-
'status': UpdateAnnouncementTranslation200ResponseStatusEnum;
|
|
12377
|
-
'message': string;
|
|
12378
|
-
'data': object;
|
|
12379
|
-
}
|
|
12380
|
-
export declare enum UpdateAnnouncementTranslation200ResponseStatusEnum {
|
|
12381
|
-
Ok = "ok"
|
|
12382
|
-
}
|
|
12383
12385
|
export interface UpdateBookingSpaceQuestionChoiceTranslation200Response {
|
|
12384
12386
|
'status': UpdateBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum;
|
|
12385
12387
|
'message': string;
|
|
@@ -12839,6 +12841,21 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12839
12841
|
* @throws {RequiredError}
|
|
12840
12842
|
*/
|
|
12841
12843
|
impersonateAccount: (accountId: string, username: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12844
|
+
/**
|
|
12845
|
+
* Sync Account endpoint
|
|
12846
|
+
* @summary Sync Account
|
|
12847
|
+
* @param {string} accountId The account identifier
|
|
12848
|
+
* @param {*} [options] Override http request option.
|
|
12849
|
+
* @throws {RequiredError}
|
|
12850
|
+
*/
|
|
12851
|
+
syncAccount: (accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12852
|
+
/**
|
|
12853
|
+
* Sync Accounts endpoint
|
|
12854
|
+
* @summary Sync Accounts
|
|
12855
|
+
* @param {*} [options] Override http request option.
|
|
12856
|
+
* @throws {RequiredError}
|
|
12857
|
+
*/
|
|
12858
|
+
syncAccounts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12842
12859
|
/**
|
|
12843
12860
|
* Update Account endpoint
|
|
12844
12861
|
* @summary Update Account
|
|
@@ -13022,6 +13039,21 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
13022
13039
|
* @throws {RequiredError}
|
|
13023
13040
|
*/
|
|
13024
13041
|
impersonateAccount(accountId: string, username: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImpersonateAccount200Response>>;
|
|
13042
|
+
/**
|
|
13043
|
+
* Sync Account endpoint
|
|
13044
|
+
* @summary Sync Account
|
|
13045
|
+
* @param {string} accountId The account identifier
|
|
13046
|
+
* @param {*} [options] Override http request option.
|
|
13047
|
+
* @throws {RequiredError}
|
|
13048
|
+
*/
|
|
13049
|
+
syncAccount(accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
13050
|
+
/**
|
|
13051
|
+
* Sync Accounts endpoint
|
|
13052
|
+
* @summary Sync Accounts
|
|
13053
|
+
* @param {*} [options] Override http request option.
|
|
13054
|
+
* @throws {RequiredError}
|
|
13055
|
+
*/
|
|
13056
|
+
syncAccounts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
13025
13057
|
/**
|
|
13026
13058
|
* Update Account endpoint
|
|
13027
13059
|
* @summary Update Account
|
|
@@ -13164,6 +13196,21 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
13164
13196
|
* @throws {RequiredError}
|
|
13165
13197
|
*/
|
|
13166
13198
|
impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response>;
|
|
13199
|
+
/**
|
|
13200
|
+
* Sync Account endpoint
|
|
13201
|
+
* @summary Sync Account
|
|
13202
|
+
* @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
|
|
13203
|
+
* @param {*} [options] Override http request option.
|
|
13204
|
+
* @throws {RequiredError}
|
|
13205
|
+
*/
|
|
13206
|
+
syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
13207
|
+
/**
|
|
13208
|
+
* Sync Accounts endpoint
|
|
13209
|
+
* @summary Sync Accounts
|
|
13210
|
+
* @param {*} [options] Override http request option.
|
|
13211
|
+
* @throws {RequiredError}
|
|
13212
|
+
*/
|
|
13213
|
+
syncAccounts(options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
13167
13214
|
/**
|
|
13168
13215
|
* Update Account endpoint
|
|
13169
13216
|
* @summary Update Account
|
|
@@ -13478,6 +13525,15 @@ export interface AccountsApiImpersonateAccountRequest {
|
|
|
13478
13525
|
*/
|
|
13479
13526
|
readonly username: string;
|
|
13480
13527
|
}
|
|
13528
|
+
/**
|
|
13529
|
+
* Request parameters for syncAccount operation in AccountsApi.
|
|
13530
|
+
*/
|
|
13531
|
+
export interface AccountsApiSyncAccountRequest {
|
|
13532
|
+
/**
|
|
13533
|
+
* The account identifier
|
|
13534
|
+
*/
|
|
13535
|
+
readonly accountId: string;
|
|
13536
|
+
}
|
|
13481
13537
|
/**
|
|
13482
13538
|
* Request parameters for updateAccount operation in AccountsApi.
|
|
13483
13539
|
*/
|
|
@@ -13620,6 +13676,21 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
13620
13676
|
* @throws {RequiredError}
|
|
13621
13677
|
*/
|
|
13622
13678
|
impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImpersonateAccount200Response, any, {}>>;
|
|
13679
|
+
/**
|
|
13680
|
+
* Sync Account endpoint
|
|
13681
|
+
* @summary Sync Account
|
|
13682
|
+
* @param {AccountsApiSyncAccountRequest} requestParameters Request parameters.
|
|
13683
|
+
* @param {*} [options] Override http request option.
|
|
13684
|
+
* @throws {RequiredError}
|
|
13685
|
+
*/
|
|
13686
|
+
syncAccount(requestParameters: AccountsApiSyncAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
13687
|
+
/**
|
|
13688
|
+
* Sync Accounts endpoint
|
|
13689
|
+
* @summary Sync Accounts
|
|
13690
|
+
* @param {*} [options] Override http request option.
|
|
13691
|
+
* @throws {RequiredError}
|
|
13692
|
+
*/
|
|
13693
|
+
syncAccounts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
13623
13694
|
/**
|
|
13624
13695
|
* Update Account endpoint
|
|
13625
13696
|
* @summary Update Account
|
|
@@ -16831,7 +16902,7 @@ export declare const AnnouncementsTranslationsApiFp: (configuration?: Configurat
|
|
|
16831
16902
|
* @param {*} [options] Override http request option.
|
|
16832
16903
|
* @throws {RequiredError}
|
|
16833
16904
|
*/
|
|
16834
|
-
deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
16905
|
+
deleteAnnouncementTranslation(announcementId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
16835
16906
|
/**
|
|
16836
16907
|
* Get Announcement Translation endpoint
|
|
16837
16908
|
* @summary Get Announcement Translation
|
|
@@ -16862,7 +16933,7 @@ export declare const AnnouncementsTranslationsApiFp: (configuration?: Configurat
|
|
|
16862
16933
|
* @param {*} [options] Override http request option.
|
|
16863
16934
|
* @throws {RequiredError}
|
|
16864
16935
|
*/
|
|
16865
|
-
updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
16936
|
+
updateAnnouncementTranslation(announcementId: string, locale: string, announcementTranslationUpdateInputs: AnnouncementTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
16866
16937
|
};
|
|
16867
16938
|
/**
|
|
16868
16939
|
* AnnouncementsTranslationsApi - factory interface
|
|
@@ -16875,7 +16946,7 @@ export declare const AnnouncementsTranslationsApiFactory: (configuration?: Confi
|
|
|
16875
16946
|
* @param {*} [options] Override http request option.
|
|
16876
16947
|
* @throws {RequiredError}
|
|
16877
16948
|
*/
|
|
16878
|
-
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
16949
|
+
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
16879
16950
|
/**
|
|
16880
16951
|
* Get Announcement Translation endpoint
|
|
16881
16952
|
* @summary Get Announcement Translation
|
|
@@ -16899,7 +16970,7 @@ export declare const AnnouncementsTranslationsApiFactory: (configuration?: Confi
|
|
|
16899
16970
|
* @param {*} [options] Override http request option.
|
|
16900
16971
|
* @throws {RequiredError}
|
|
16901
16972
|
*/
|
|
16902
|
-
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
16973
|
+
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
16903
16974
|
};
|
|
16904
16975
|
/**
|
|
16905
16976
|
* Request parameters for deleteAnnouncementTranslation operation in AnnouncementsTranslationsApi.
|
|
@@ -16977,7 +17048,7 @@ export declare class AnnouncementsTranslationsApi extends BaseAPI {
|
|
|
16977
17048
|
* @param {*} [options] Override http request option.
|
|
16978
17049
|
* @throws {RequiredError}
|
|
16979
17050
|
*/
|
|
16980
|
-
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17051
|
+
deleteAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiDeleteAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
16981
17052
|
/**
|
|
16982
17053
|
* Get Announcement Translation endpoint
|
|
16983
17054
|
* @summary Get Announcement Translation
|
|
@@ -17001,7 +17072,7 @@ export declare class AnnouncementsTranslationsApi extends BaseAPI {
|
|
|
17001
17072
|
* @param {*} [options] Override http request option.
|
|
17002
17073
|
* @throws {RequiredError}
|
|
17003
17074
|
*/
|
|
17004
|
-
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17075
|
+
updateAnnouncementTranslation(requestParameters: AnnouncementsTranslationsApiUpdateAnnouncementTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
17005
17076
|
}
|
|
17006
17077
|
/**
|
|
17007
17078
|
* ApiLogsApi - axios parameter creator
|
|
@@ -17663,7 +17734,7 @@ export declare const BenefitsTranslationsApiFp: (configuration?: Configuration)
|
|
|
17663
17734
|
* @param {*} [options] Override http request option.
|
|
17664
17735
|
* @throws {RequiredError}
|
|
17665
17736
|
*/
|
|
17666
|
-
deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
17737
|
+
deleteBenefitTranslation(benefitId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
17667
17738
|
/**
|
|
17668
17739
|
* Get Benefit Translation endpoint
|
|
17669
17740
|
* @summary Get Benefit Translation
|
|
@@ -17694,7 +17765,7 @@ export declare const BenefitsTranslationsApiFp: (configuration?: Configuration)
|
|
|
17694
17765
|
* @param {*} [options] Override http request option.
|
|
17695
17766
|
* @throws {RequiredError}
|
|
17696
17767
|
*/
|
|
17697
|
-
updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
17768
|
+
updateBenefitTranslation(benefitId: string, locale: string, benefitTranslationUpdateInputs: BenefitTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
17698
17769
|
};
|
|
17699
17770
|
/**
|
|
17700
17771
|
* BenefitsTranslationsApi - factory interface
|
|
@@ -17707,7 +17778,7 @@ export declare const BenefitsTranslationsApiFactory: (configuration?: Configurat
|
|
|
17707
17778
|
* @param {*} [options] Override http request option.
|
|
17708
17779
|
* @throws {RequiredError}
|
|
17709
17780
|
*/
|
|
17710
|
-
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
17781
|
+
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
17711
17782
|
/**
|
|
17712
17783
|
* Get Benefit Translation endpoint
|
|
17713
17784
|
* @summary Get Benefit Translation
|
|
@@ -17731,7 +17802,7 @@ export declare const BenefitsTranslationsApiFactory: (configuration?: Configurat
|
|
|
17731
17802
|
* @param {*} [options] Override http request option.
|
|
17732
17803
|
* @throws {RequiredError}
|
|
17733
17804
|
*/
|
|
17734
|
-
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
17805
|
+
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
17735
17806
|
};
|
|
17736
17807
|
/**
|
|
17737
17808
|
* Request parameters for deleteBenefitTranslation operation in BenefitsTranslationsApi.
|
|
@@ -17809,7 +17880,7 @@ export declare class BenefitsTranslationsApi extends BaseAPI {
|
|
|
17809
17880
|
* @param {*} [options] Override http request option.
|
|
17810
17881
|
* @throws {RequiredError}
|
|
17811
17882
|
*/
|
|
17812
|
-
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17883
|
+
deleteBenefitTranslation(requestParameters: BenefitsTranslationsApiDeleteBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
17813
17884
|
/**
|
|
17814
17885
|
* Get Benefit Translation endpoint
|
|
17815
17886
|
* @summary Get Benefit Translation
|
|
@@ -17833,7 +17904,7 @@ export declare class BenefitsTranslationsApi extends BaseAPI {
|
|
|
17833
17904
|
* @param {*} [options] Override http request option.
|
|
17834
17905
|
* @throws {RequiredError}
|
|
17835
17906
|
*/
|
|
17836
|
-
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17907
|
+
updateBenefitTranslation(requestParameters: BenefitsTranslationsApiUpdateBenefitTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
17837
17908
|
}
|
|
17838
17909
|
/**
|
|
17839
17910
|
* BookingsApi - axios parameter creator
|
|
@@ -19734,7 +19805,7 @@ export declare const BookingsPlacesTranslationsApiFp: (configuration?: Configura
|
|
|
19734
19805
|
* @param {*} [options] Override http request option.
|
|
19735
19806
|
* @throws {RequiredError}
|
|
19736
19807
|
*/
|
|
19737
|
-
deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19808
|
+
deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
19738
19809
|
/**
|
|
19739
19810
|
* Update Booking Place Translation endpoint
|
|
19740
19811
|
* @summary Update Booking Place Translation
|
|
@@ -19744,7 +19815,7 @@ export declare const BookingsPlacesTranslationsApiFp: (configuration?: Configura
|
|
|
19744
19815
|
* @param {*} [options] Override http request option.
|
|
19745
19816
|
* @throws {RequiredError}
|
|
19746
19817
|
*/
|
|
19747
|
-
updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19818
|
+
updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
19748
19819
|
};
|
|
19749
19820
|
/**
|
|
19750
19821
|
* BookingsPlacesTranslationsApi - factory interface
|
|
@@ -19757,7 +19828,7 @@ export declare const BookingsPlacesTranslationsApiFactory: (configuration?: Conf
|
|
|
19757
19828
|
* @param {*} [options] Override http request option.
|
|
19758
19829
|
* @throws {RequiredError}
|
|
19759
19830
|
*/
|
|
19760
|
-
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19831
|
+
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
19761
19832
|
/**
|
|
19762
19833
|
* Update Booking Place Translation endpoint
|
|
19763
19834
|
* @summary Update Booking Place Translation
|
|
@@ -19765,7 +19836,7 @@ export declare const BookingsPlacesTranslationsApiFactory: (configuration?: Conf
|
|
|
19765
19836
|
* @param {*} [options] Override http request option.
|
|
19766
19837
|
* @throws {RequiredError}
|
|
19767
19838
|
*/
|
|
19768
|
-
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19839
|
+
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
19769
19840
|
};
|
|
19770
19841
|
/**
|
|
19771
19842
|
* Request parameters for deleteBookingPlaceTranslation operation in BookingsPlacesTranslationsApi.
|
|
@@ -19805,7 +19876,7 @@ export declare class BookingsPlacesTranslationsApi extends BaseAPI {
|
|
|
19805
19876
|
* @param {*} [options] Override http request option.
|
|
19806
19877
|
* @throws {RequiredError}
|
|
19807
19878
|
*/
|
|
19808
|
-
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19879
|
+
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
19809
19880
|
/**
|
|
19810
19881
|
* Update Booking Place Translation endpoint
|
|
19811
19882
|
* @summary Update Booking Place Translation
|
|
@@ -19813,7 +19884,7 @@ export declare class BookingsPlacesTranslationsApi extends BaseAPI {
|
|
|
19813
19884
|
* @param {*} [options] Override http request option.
|
|
19814
19885
|
* @throws {RequiredError}
|
|
19815
19886
|
*/
|
|
19816
|
-
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19887
|
+
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
19817
19888
|
}
|
|
19818
19889
|
/**
|
|
19819
19890
|
* BookingsQuestionsApi - axios parameter creator
|
|
@@ -20740,7 +20811,7 @@ export declare const BookingsQuestionsChoicesTranslationsApiFp: (configuration?:
|
|
|
20740
20811
|
* @param {*} [options] Override http request option.
|
|
20741
20812
|
* @throws {RequiredError}
|
|
20742
20813
|
*/
|
|
20743
|
-
deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
20814
|
+
deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
20744
20815
|
/**
|
|
20745
20816
|
* Get Booking Space Question Choice Translation endpoint
|
|
20746
20817
|
* @summary Get Booking Space Question Choice Translation
|
|
@@ -20789,7 +20860,7 @@ export declare const BookingsQuestionsChoicesTranslationsApiFactory: (configurat
|
|
|
20789
20860
|
* @param {*} [options] Override http request option.
|
|
20790
20861
|
* @throws {RequiredError}
|
|
20791
20862
|
*/
|
|
20792
|
-
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
20863
|
+
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
20793
20864
|
/**
|
|
20794
20865
|
* Get Booking Space Question Choice Translation endpoint
|
|
20795
20866
|
* @summary Get Booking Space Question Choice Translation
|
|
@@ -20923,7 +20994,7 @@ export declare class BookingsQuestionsChoicesTranslationsApi extends BaseAPI {
|
|
|
20923
20994
|
* @param {*} [options] Override http request option.
|
|
20924
20995
|
* @throws {RequiredError}
|
|
20925
20996
|
*/
|
|
20926
|
-
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
20997
|
+
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
20927
20998
|
/**
|
|
20928
20999
|
* Get Booking Space Question Choice Translation endpoint
|
|
20929
21000
|
* @summary Get Booking Space Question Choice Translation
|
|
@@ -21012,7 +21083,7 @@ export declare const BookingsQuestionsTranslationsApiFp: (configuration?: Config
|
|
|
21012
21083
|
* @param {*} [options] Override http request option.
|
|
21013
21084
|
* @throws {RequiredError}
|
|
21014
21085
|
*/
|
|
21015
|
-
deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21086
|
+
deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
21016
21087
|
/**
|
|
21017
21088
|
* Get Booking Space Question Translation endpoint
|
|
21018
21089
|
* @summary Get Booking Space Question Translation
|
|
@@ -21058,7 +21129,7 @@ export declare const BookingsQuestionsTranslationsApiFactory: (configuration?: C
|
|
|
21058
21129
|
* @param {*} [options] Override http request option.
|
|
21059
21130
|
* @throws {RequiredError}
|
|
21060
21131
|
*/
|
|
21061
|
-
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21132
|
+
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
21062
21133
|
/**
|
|
21063
21134
|
* Get Booking Space Question Translation endpoint
|
|
21064
21135
|
* @summary Get Booking Space Question Translation
|
|
@@ -21176,7 +21247,7 @@ export declare class BookingsQuestionsTranslationsApi extends BaseAPI {
|
|
|
21176
21247
|
* @param {*} [options] Override http request option.
|
|
21177
21248
|
* @throws {RequiredError}
|
|
21178
21249
|
*/
|
|
21179
|
-
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21250
|
+
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
21180
21251
|
/**
|
|
21181
21252
|
* Get Booking Space Question Translation endpoint
|
|
21182
21253
|
* @summary Get Booking Space Question Translation
|
|
@@ -21405,7 +21476,7 @@ export declare const BookingsSpacesTranslationsApiFp: (configuration?: Configura
|
|
|
21405
21476
|
* @param {*} [options] Override http request option.
|
|
21406
21477
|
* @throws {RequiredError}
|
|
21407
21478
|
*/
|
|
21408
|
-
deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21479
|
+
deleteBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
21409
21480
|
/**
|
|
21410
21481
|
* Update Booking Space Translation endpoint
|
|
21411
21482
|
* @summary Update Booking Space Translation
|
|
@@ -21416,7 +21487,7 @@ export declare const BookingsSpacesTranslationsApiFp: (configuration?: Configura
|
|
|
21416
21487
|
* @param {*} [options] Override http request option.
|
|
21417
21488
|
* @throws {RequiredError}
|
|
21418
21489
|
*/
|
|
21419
|
-
updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21490
|
+
updateBookingSpaceTranslation(placeId: string, spaceId: string, locale: string, bookingSpaceTranslationUpdateInputs: BookingSpaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
21420
21491
|
};
|
|
21421
21492
|
/**
|
|
21422
21493
|
* BookingsSpacesTranslationsApi - factory interface
|
|
@@ -21429,7 +21500,7 @@ export declare const BookingsSpacesTranslationsApiFactory: (configuration?: Conf
|
|
|
21429
21500
|
* @param {*} [options] Override http request option.
|
|
21430
21501
|
* @throws {RequiredError}
|
|
21431
21502
|
*/
|
|
21432
|
-
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21503
|
+
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
21433
21504
|
/**
|
|
21434
21505
|
* Update Booking Space Translation endpoint
|
|
21435
21506
|
* @summary Update Booking Space Translation
|
|
@@ -21437,7 +21508,7 @@ export declare const BookingsSpacesTranslationsApiFactory: (configuration?: Conf
|
|
|
21437
21508
|
* @param {*} [options] Override http request option.
|
|
21438
21509
|
* @throws {RequiredError}
|
|
21439
21510
|
*/
|
|
21440
|
-
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21511
|
+
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
21441
21512
|
};
|
|
21442
21513
|
/**
|
|
21443
21514
|
* Request parameters for deleteBookingSpaceTranslation operation in BookingsSpacesTranslationsApi.
|
|
@@ -21485,7 +21556,7 @@ export declare class BookingsSpacesTranslationsApi extends BaseAPI {
|
|
|
21485
21556
|
* @param {*} [options] Override http request option.
|
|
21486
21557
|
* @throws {RequiredError}
|
|
21487
21558
|
*/
|
|
21488
|
-
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21559
|
+
deleteBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiDeleteBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
21489
21560
|
/**
|
|
21490
21561
|
* Update Booking Space Translation endpoint
|
|
21491
21562
|
* @summary Update Booking Space Translation
|
|
@@ -21493,7 +21564,7 @@ export declare class BookingsSpacesTranslationsApi extends BaseAPI {
|
|
|
21493
21564
|
* @param {*} [options] Override http request option.
|
|
21494
21565
|
* @throws {RequiredError}
|
|
21495
21566
|
*/
|
|
21496
|
-
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21567
|
+
updateBookingSpaceTranslation(requestParameters: BookingsSpacesTranslationsApiUpdateBookingSpaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
21497
21568
|
}
|
|
21498
21569
|
/**
|
|
21499
21570
|
* ChannelsApi - axios parameter creator
|
|
@@ -23259,7 +23330,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23259
23330
|
* @param {*} [options] Override http request option.
|
|
23260
23331
|
* @throws {RequiredError}
|
|
23261
23332
|
*/
|
|
23262
|
-
deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23333
|
+
deleteChannelContentGuestTranslation(channelId: string, contentId: string, guestId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23263
23334
|
/**
|
|
23264
23335
|
* Delete Channel Content Translation endpoint
|
|
23265
23336
|
* @summary Delete Channel Content Translation
|
|
@@ -23269,7 +23340,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23269
23340
|
* @param {*} [options] Override http request option.
|
|
23270
23341
|
* @throws {RequiredError}
|
|
23271
23342
|
*/
|
|
23272
|
-
deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23343
|
+
deleteChannelContentTranslation(channelId: string, contentId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23273
23344
|
/**
|
|
23274
23345
|
* Delete Channel Translation endpoint
|
|
23275
23346
|
* @summary Delete Channel Translation
|
|
@@ -23278,7 +23349,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23278
23349
|
* @param {*} [options] Override http request option.
|
|
23279
23350
|
* @throws {RequiredError}
|
|
23280
23351
|
*/
|
|
23281
|
-
deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23352
|
+
deleteChannelTranslation(channelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23282
23353
|
/**
|
|
23283
23354
|
* Get Channel Content Guest Translation endpoint
|
|
23284
23355
|
* @summary Get Channel Content Guest Translation
|
|
@@ -23370,7 +23441,7 @@ export declare const ChannelsTranslationsApiFp: (configuration?: Configuration)
|
|
|
23370
23441
|
* @param {*} [options] Override http request option.
|
|
23371
23442
|
* @throws {RequiredError}
|
|
23372
23443
|
*/
|
|
23373
|
-
updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23444
|
+
updateChannelContentTranslation(channelId: string, contentId: string, locale: string, channelContentTranslationUpdateInputs: ChannelContentTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23374
23445
|
/**
|
|
23375
23446
|
* Update Channel Translation endpoint
|
|
23376
23447
|
* @summary Update Channel Translation
|
|
@@ -23393,7 +23464,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23393
23464
|
* @param {*} [options] Override http request option.
|
|
23394
23465
|
* @throws {RequiredError}
|
|
23395
23466
|
*/
|
|
23396
|
-
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23467
|
+
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23397
23468
|
/**
|
|
23398
23469
|
* Delete Channel Content Translation endpoint
|
|
23399
23470
|
* @summary Delete Channel Content Translation
|
|
@@ -23401,7 +23472,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23401
23472
|
* @param {*} [options] Override http request option.
|
|
23402
23473
|
* @throws {RequiredError}
|
|
23403
23474
|
*/
|
|
23404
|
-
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23475
|
+
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23405
23476
|
/**
|
|
23406
23477
|
* Delete Channel Translation endpoint
|
|
23407
23478
|
* @summary Delete Channel Translation
|
|
@@ -23409,7 +23480,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23409
23480
|
* @param {*} [options] Override http request option.
|
|
23410
23481
|
* @throws {RequiredError}
|
|
23411
23482
|
*/
|
|
23412
|
-
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23483
|
+
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23413
23484
|
/**
|
|
23414
23485
|
* Get Channel Content Guest Translation endpoint
|
|
23415
23486
|
* @summary Get Channel Content Guest Translation
|
|
@@ -23473,7 +23544,7 @@ export declare const ChannelsTranslationsApiFactory: (configuration?: Configurat
|
|
|
23473
23544
|
* @param {*} [options] Override http request option.
|
|
23474
23545
|
* @throws {RequiredError}
|
|
23475
23546
|
*/
|
|
23476
|
-
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
23547
|
+
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23477
23548
|
/**
|
|
23478
23549
|
* Update Channel Translation endpoint
|
|
23479
23550
|
* @summary Update Channel Translation
|
|
@@ -23737,7 +23808,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23737
23808
|
* @param {*} [options] Override http request option.
|
|
23738
23809
|
* @throws {RequiredError}
|
|
23739
23810
|
*/
|
|
23740
|
-
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23811
|
+
deleteChannelContentGuestTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentGuestTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23741
23812
|
/**
|
|
23742
23813
|
* Delete Channel Content Translation endpoint
|
|
23743
23814
|
* @summary Delete Channel Content Translation
|
|
@@ -23745,7 +23816,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23745
23816
|
* @param {*} [options] Override http request option.
|
|
23746
23817
|
* @throws {RequiredError}
|
|
23747
23818
|
*/
|
|
23748
|
-
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23819
|
+
deleteChannelContentTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23749
23820
|
/**
|
|
23750
23821
|
* Delete Channel Translation endpoint
|
|
23751
23822
|
* @summary Delete Channel Translation
|
|
@@ -23753,7 +23824,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23753
23824
|
* @param {*} [options] Override http request option.
|
|
23754
23825
|
* @throws {RequiredError}
|
|
23755
23826
|
*/
|
|
23756
|
-
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23827
|
+
deleteChannelTranslation(requestParameters: ChannelsTranslationsApiDeleteChannelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23757
23828
|
/**
|
|
23758
23829
|
* Get Channel Content Guest Translation endpoint
|
|
23759
23830
|
* @summary Get Channel Content Guest Translation
|
|
@@ -23817,7 +23888,7 @@ export declare class ChannelsTranslationsApi extends BaseAPI {
|
|
|
23817
23888
|
* @param {*} [options] Override http request option.
|
|
23818
23889
|
* @throws {RequiredError}
|
|
23819
23890
|
*/
|
|
23820
|
-
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23891
|
+
updateChannelContentTranslation(requestParameters: ChannelsTranslationsApiUpdateChannelContentTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
23821
23892
|
/**
|
|
23822
23893
|
* Update Channel Translation endpoint
|
|
23823
23894
|
* @summary Update Channel Translation
|
|
@@ -23896,7 +23967,7 @@ export declare const DashboardsApiFp: (configuration?: Configuration) => {
|
|
|
23896
23967
|
* @param {*} [options] Override http request option.
|
|
23897
23968
|
* @throws {RequiredError}
|
|
23898
23969
|
*/
|
|
23899
|
-
deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23970
|
+
deleteDashboard(dashboardId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
23900
23971
|
/**
|
|
23901
23972
|
* Get Dashboard endpoint
|
|
23902
23973
|
* @summary Get Dashboard
|
|
@@ -23946,7 +24017,7 @@ export declare const DashboardsApiFactory: (configuration?: Configuration, baseP
|
|
|
23946
24017
|
* @param {*} [options] Override http request option.
|
|
23947
24018
|
* @throws {RequiredError}
|
|
23948
24019
|
*/
|
|
23949
|
-
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24020
|
+
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
23950
24021
|
/**
|
|
23951
24022
|
* Get Dashboard endpoint
|
|
23952
24023
|
* @summary Get Dashboard
|
|
@@ -24050,7 +24121,7 @@ export declare class DashboardsApi extends BaseAPI {
|
|
|
24050
24121
|
* @param {*} [options] Override http request option.
|
|
24051
24122
|
* @throws {RequiredError}
|
|
24052
24123
|
*/
|
|
24053
|
-
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24124
|
+
deleteDashboard(requestParameters: DashboardsApiDeleteDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24054
24125
|
/**
|
|
24055
24126
|
* Get Dashboard endpoint
|
|
24056
24127
|
* @summary Get Dashboard
|
|
@@ -24139,7 +24210,7 @@ export declare const DashboardsWidgetsApiFp: (configuration?: Configuration) =>
|
|
|
24139
24210
|
* @param {*} [options] Override http request option.
|
|
24140
24211
|
* @throws {RequiredError}
|
|
24141
24212
|
*/
|
|
24142
|
-
deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24213
|
+
deleteDashboardWidget(dashboardId: string, widgetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24143
24214
|
/**
|
|
24144
24215
|
* Get Dashboard Widgets endpoint
|
|
24145
24216
|
* @summary Get Dashboard Widgets
|
|
@@ -24179,7 +24250,7 @@ export declare const DashboardsWidgetsApiFactory: (configuration?: Configuration
|
|
|
24179
24250
|
* @param {*} [options] Override http request option.
|
|
24180
24251
|
* @throws {RequiredError}
|
|
24181
24252
|
*/
|
|
24182
|
-
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24253
|
+
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24183
24254
|
/**
|
|
24184
24255
|
* Get Dashboard Widgets endpoint
|
|
24185
24256
|
* @summary Get Dashboard Widgets
|
|
@@ -24266,7 +24337,7 @@ export declare class DashboardsWidgetsApi extends BaseAPI {
|
|
|
24266
24337
|
* @param {*} [options] Override http request option.
|
|
24267
24338
|
* @throws {RequiredError}
|
|
24268
24339
|
*/
|
|
24269
|
-
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24340
|
+
deleteDashboardWidget(requestParameters: DashboardsWidgetsApiDeleteDashboardWidgetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24270
24341
|
/**
|
|
24271
24342
|
* Get Dashboard Widgets endpoint
|
|
24272
24343
|
* @summary Get Dashboard Widgets
|
|
@@ -24544,7 +24615,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24544
24615
|
* @param {*} [options] Override http request option.
|
|
24545
24616
|
* @throws {RequiredError}
|
|
24546
24617
|
*/
|
|
24547
|
-
cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24618
|
+
cloneEvent(eventId: string, cloneOptions: CloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24548
24619
|
/**
|
|
24549
24620
|
* Create Event endpoint
|
|
24550
24621
|
* @summary Create Event
|
|
@@ -24568,7 +24639,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24568
24639
|
* @param {*} [options] Override http request option.
|
|
24569
24640
|
* @throws {RequiredError}
|
|
24570
24641
|
*/
|
|
24571
|
-
disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24642
|
+
disableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24572
24643
|
/**
|
|
24573
24644
|
* Enable Event Build Mode endpoint
|
|
24574
24645
|
* @summary Enable Event Build Mode
|
|
@@ -24576,7 +24647,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24576
24647
|
* @param {*} [options] Override http request option.
|
|
24577
24648
|
* @throws {RequiredError}
|
|
24578
24649
|
*/
|
|
24579
|
-
enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24650
|
+
enableEventBuildMode(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
24580
24651
|
/**
|
|
24581
24652
|
* Get Event endpoint
|
|
24582
24653
|
* @summary Get Event
|
|
@@ -24665,7 +24736,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24665
24736
|
* @param {*} [options] Override http request option.
|
|
24666
24737
|
* @throws {RequiredError}
|
|
24667
24738
|
*/
|
|
24668
|
-
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24739
|
+
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24669
24740
|
/**
|
|
24670
24741
|
* Create Event endpoint
|
|
24671
24742
|
* @summary Create Event
|
|
@@ -24689,7 +24760,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24689
24760
|
* @param {*} [options] Override http request option.
|
|
24690
24761
|
* @throws {RequiredError}
|
|
24691
24762
|
*/
|
|
24692
|
-
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24763
|
+
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24693
24764
|
/**
|
|
24694
24765
|
* Enable Event Build Mode endpoint
|
|
24695
24766
|
* @summary Enable Event Build Mode
|
|
@@ -24697,7 +24768,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24697
24768
|
* @param {*} [options] Override http request option.
|
|
24698
24769
|
* @throws {RequiredError}
|
|
24699
24770
|
*/
|
|
24700
|
-
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
24771
|
+
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
24701
24772
|
/**
|
|
24702
24773
|
* Get Event endpoint
|
|
24703
24774
|
* @summary Get Event
|
|
@@ -24949,7 +25020,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
24949
25020
|
* @param {*} [options] Override http request option.
|
|
24950
25021
|
* @throws {RequiredError}
|
|
24951
25022
|
*/
|
|
24952
|
-
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25023
|
+
cloneEvent(requestParameters: EventsApiCloneEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24953
25024
|
/**
|
|
24954
25025
|
* Create Event endpoint
|
|
24955
25026
|
* @summary Create Event
|
|
@@ -24973,7 +25044,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
24973
25044
|
* @param {*} [options] Override http request option.
|
|
24974
25045
|
* @throws {RequiredError}
|
|
24975
25046
|
*/
|
|
24976
|
-
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25047
|
+
disableEventBuildMode(requestParameters: EventsApiDisableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24977
25048
|
/**
|
|
24978
25049
|
* Enable Event Build Mode endpoint
|
|
24979
25050
|
* @summary Enable Event Build Mode
|
|
@@ -24981,7 +25052,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
24981
25052
|
* @param {*} [options] Override http request option.
|
|
24982
25053
|
* @throws {RequiredError}
|
|
24983
25054
|
*/
|
|
24984
|
-
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25055
|
+
enableEventBuildMode(requestParameters: EventsApiEnableEventBuildModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
24985
25056
|
/**
|
|
24986
25057
|
* Get Event endpoint
|
|
24987
25058
|
* @summary Get Event
|
|
@@ -25086,7 +25157,7 @@ export declare const EventsAccessApiFp: (configuration?: Configuration) => {
|
|
|
25086
25157
|
* @param {*} [options] Override http request option.
|
|
25087
25158
|
* @throws {RequiredError}
|
|
25088
25159
|
*/
|
|
25089
|
-
addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25160
|
+
addEventAccessUser(eventId: string, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
25090
25161
|
/**
|
|
25091
25162
|
* Get Event Access Users endpoint
|
|
25092
25163
|
* @summary Get Event Access Users
|
|
@@ -25107,7 +25178,7 @@ export declare const EventsAccessApiFp: (configuration?: Configuration) => {
|
|
|
25107
25178
|
* @param {*} [options] Override http request option.
|
|
25108
25179
|
* @throws {RequiredError}
|
|
25109
25180
|
*/
|
|
25110
|
-
removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25181
|
+
removeEventAccessUser(eventId: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
25111
25182
|
};
|
|
25112
25183
|
/**
|
|
25113
25184
|
* EventsAccessApi - factory interface
|
|
@@ -25120,7 +25191,7 @@ export declare const EventsAccessApiFactory: (configuration?: Configuration, bas
|
|
|
25120
25191
|
* @param {*} [options] Override http request option.
|
|
25121
25192
|
* @throws {RequiredError}
|
|
25122
25193
|
*/
|
|
25123
|
-
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
25194
|
+
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
25124
25195
|
/**
|
|
25125
25196
|
* Get Event Access Users endpoint
|
|
25126
25197
|
* @summary Get Event Access Users
|
|
@@ -25136,7 +25207,7 @@ export declare const EventsAccessApiFactory: (configuration?: Configuration, bas
|
|
|
25136
25207
|
* @param {*} [options] Override http request option.
|
|
25137
25208
|
* @throws {RequiredError}
|
|
25138
25209
|
*/
|
|
25139
|
-
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
25210
|
+
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
25140
25211
|
};
|
|
25141
25212
|
/**
|
|
25142
25213
|
* Request parameters for addEventAccessUser operation in EventsAccessApi.
|
|
@@ -25200,7 +25271,7 @@ export declare class EventsAccessApi extends BaseAPI {
|
|
|
25200
25271
|
* @param {*} [options] Override http request option.
|
|
25201
25272
|
* @throws {RequiredError}
|
|
25202
25273
|
*/
|
|
25203
|
-
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25274
|
+
addEventAccessUser(requestParameters: EventsAccessApiAddEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
25204
25275
|
/**
|
|
25205
25276
|
* Get Event Access Users endpoint
|
|
25206
25277
|
* @summary Get Event Access Users
|
|
@@ -25216,7 +25287,7 @@ export declare class EventsAccessApi extends BaseAPI {
|
|
|
25216
25287
|
* @param {*} [options] Override http request option.
|
|
25217
25288
|
* @throws {RequiredError}
|
|
25218
25289
|
*/
|
|
25219
|
-
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25290
|
+
removeEventAccessUser(requestParameters: EventsAccessApiRemoveEventAccessUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
25220
25291
|
}
|
|
25221
25292
|
/**
|
|
25222
25293
|
* EventsActivationsApi - axios parameter creator
|
|
@@ -26033,7 +26104,7 @@ export declare const EventsActivationsTranslationsApiFp: (configuration?: Config
|
|
|
26033
26104
|
* @param {*} [options] Override http request option.
|
|
26034
26105
|
* @throws {RequiredError}
|
|
26035
26106
|
*/
|
|
26036
|
-
deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26107
|
+
deleteEventActivationTranslation(eventId: string, activationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
26037
26108
|
/**
|
|
26038
26109
|
* Get Event Activation Translation endpoint
|
|
26039
26110
|
* @summary Get Event Activation Translation
|
|
@@ -26080,7 +26151,7 @@ export declare const EventsActivationsTranslationsApiFactory: (configuration?: C
|
|
|
26080
26151
|
* @param {*} [options] Override http request option.
|
|
26081
26152
|
* @throws {RequiredError}
|
|
26082
26153
|
*/
|
|
26083
|
-
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26154
|
+
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
26084
26155
|
/**
|
|
26085
26156
|
* Get Event Activation Translation endpoint
|
|
26086
26157
|
* @summary Get Event Activation Translation
|
|
@@ -26198,7 +26269,7 @@ export declare class EventsActivationsTranslationsApi extends BaseAPI {
|
|
|
26198
26269
|
* @param {*} [options] Override http request option.
|
|
26199
26270
|
* @throws {RequiredError}
|
|
26200
26271
|
*/
|
|
26201
|
-
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26272
|
+
deleteEventActivationTranslation(requestParameters: EventsActivationsTranslationsApiDeleteEventActivationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
26202
26273
|
/**
|
|
26203
26274
|
* Get Event Activation Translation endpoint
|
|
26204
26275
|
* @summary Get Event Activation Translation
|
|
@@ -27005,7 +27076,7 @@ export declare const EventsAddonsTranslationsApiFp: (configuration?: Configurati
|
|
|
27005
27076
|
* @param {*} [options] Override http request option.
|
|
27006
27077
|
* @throws {RequiredError}
|
|
27007
27078
|
*/
|
|
27008
|
-
deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
27079
|
+
deleteEventAddOnTranslation(eventId: string, addOnId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
27009
27080
|
/**
|
|
27010
27081
|
* Get Event Add On Translation endpoint
|
|
27011
27082
|
* @summary Get Event Add On Translation
|
|
@@ -27052,7 +27123,7 @@ export declare const EventsAddonsTranslationsApiFactory: (configuration?: Config
|
|
|
27052
27123
|
* @param {*} [options] Override http request option.
|
|
27053
27124
|
* @throws {RequiredError}
|
|
27054
27125
|
*/
|
|
27055
|
-
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
27126
|
+
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
27056
27127
|
/**
|
|
27057
27128
|
* Get Event Add On Translation endpoint
|
|
27058
27129
|
* @summary Get Event Add On Translation
|
|
@@ -27170,7 +27241,7 @@ export declare class EventsAddonsTranslationsApi extends BaseAPI {
|
|
|
27170
27241
|
* @param {*} [options] Override http request option.
|
|
27171
27242
|
* @throws {RequiredError}
|
|
27172
27243
|
*/
|
|
27173
|
-
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
27244
|
+
deleteEventAddOnTranslation(requestParameters: EventsAddonsTranslationsApiDeleteEventAddOnTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
27174
27245
|
/**
|
|
27175
27246
|
* Get Event Add On Translation endpoint
|
|
27176
27247
|
* @summary Get Event Add On Translation
|
|
@@ -27317,6 +27388,14 @@ export declare const EventsAttendeesApiAxiosParamCreator: (configuration?: Confi
|
|
|
27317
27388
|
* @throws {RequiredError}
|
|
27318
27389
|
*/
|
|
27319
27390
|
resendRegistrationConfirmationEmail: (eventId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27391
|
+
/**
|
|
27392
|
+
* Sync Event Attendees endpoint
|
|
27393
|
+
* @summary Sync Event Attendees
|
|
27394
|
+
* @param {string} eventId The event identifier
|
|
27395
|
+
* @param {*} [options] Override http request option.
|
|
27396
|
+
* @throws {RequiredError}
|
|
27397
|
+
*/
|
|
27398
|
+
syncEventAttendees: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27320
27399
|
/**
|
|
27321
27400
|
* Update Event Attendee endpoint
|
|
27322
27401
|
* @summary Update Event Attendee
|
|
@@ -27449,6 +27528,14 @@ export declare const EventsAttendeesApiFp: (configuration?: Configuration) => {
|
|
|
27449
27528
|
* @throws {RequiredError}
|
|
27450
27529
|
*/
|
|
27451
27530
|
resendRegistrationConfirmationEmail(eventId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
27531
|
+
/**
|
|
27532
|
+
* Sync Event Attendees endpoint
|
|
27533
|
+
* @summary Sync Event Attendees
|
|
27534
|
+
* @param {string} eventId The event identifier
|
|
27535
|
+
* @param {*} [options] Override http request option.
|
|
27536
|
+
* @throws {RequiredError}
|
|
27537
|
+
*/
|
|
27538
|
+
syncEventAttendees(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
27452
27539
|
/**
|
|
27453
27540
|
* Update Event Attendee endpoint
|
|
27454
27541
|
* @summary Update Event Attendee
|
|
@@ -27544,6 +27631,14 @@ export declare const EventsAttendeesApiFactory: (configuration?: Configuration,
|
|
|
27544
27631
|
* @throws {RequiredError}
|
|
27545
27632
|
*/
|
|
27546
27633
|
resendRegistrationConfirmationEmail(requestParameters: EventsAttendeesApiResendRegistrationConfirmationEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
27634
|
+
/**
|
|
27635
|
+
* Sync Event Attendees endpoint
|
|
27636
|
+
* @summary Sync Event Attendees
|
|
27637
|
+
* @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
|
|
27638
|
+
* @param {*} [options] Override http request option.
|
|
27639
|
+
* @throws {RequiredError}
|
|
27640
|
+
*/
|
|
27641
|
+
syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
27547
27642
|
/**
|
|
27548
27643
|
* Update Event Attendee endpoint
|
|
27549
27644
|
* @summary Update Event Attendee
|
|
@@ -27788,6 +27883,15 @@ export interface EventsAttendeesApiResendRegistrationConfirmationEmailRequest {
|
|
|
27788
27883
|
*/
|
|
27789
27884
|
readonly accountId: string;
|
|
27790
27885
|
}
|
|
27886
|
+
/**
|
|
27887
|
+
* Request parameters for syncEventAttendees operation in EventsAttendeesApi.
|
|
27888
|
+
*/
|
|
27889
|
+
export interface EventsAttendeesApiSyncEventAttendeesRequest {
|
|
27890
|
+
/**
|
|
27891
|
+
* The event identifier
|
|
27892
|
+
*/
|
|
27893
|
+
readonly eventId: string;
|
|
27894
|
+
}
|
|
27791
27895
|
/**
|
|
27792
27896
|
* Request parameters for updateEventAttendee operation in EventsAttendeesApi.
|
|
27793
27897
|
*/
|
|
@@ -27886,6 +27990,14 @@ export declare class EventsAttendeesApi extends BaseAPI {
|
|
|
27886
27990
|
* @throws {RequiredError}
|
|
27887
27991
|
*/
|
|
27888
27992
|
resendRegistrationConfirmationEmail(requestParameters: EventsAttendeesApiResendRegistrationConfirmationEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
27993
|
+
/**
|
|
27994
|
+
* Sync Event Attendees endpoint
|
|
27995
|
+
* @summary Sync Event Attendees
|
|
27996
|
+
* @param {EventsAttendeesApiSyncEventAttendeesRequest} requestParameters Request parameters.
|
|
27997
|
+
* @param {*} [options] Override http request option.
|
|
27998
|
+
* @throws {RequiredError}
|
|
27999
|
+
*/
|
|
28000
|
+
syncEventAttendees(requestParameters: EventsAttendeesApiSyncEventAttendeesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
27889
28001
|
/**
|
|
27890
28002
|
* Update Event Attendee endpoint
|
|
27891
28003
|
* @summary Update Event Attendee
|
|
@@ -27978,7 +28090,7 @@ export declare const EventsAttendeesPackagesApiFp: (configuration?: Configuratio
|
|
|
27978
28090
|
* @param {*} [options] Override http request option.
|
|
27979
28091
|
* @throws {RequiredError}
|
|
27980
28092
|
*/
|
|
27981
|
-
deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
28093
|
+
deleteEventAttendeePackage(eventId: string, accountId: string, packageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
27982
28094
|
/**
|
|
27983
28095
|
* Get Event Attendee Package endpoint
|
|
27984
28096
|
* @summary Get Event Attendee Package
|
|
@@ -28034,7 +28146,7 @@ export declare const EventsAttendeesPackagesApiFactory: (configuration?: Configu
|
|
|
28034
28146
|
* @param {*} [options] Override http request option.
|
|
28035
28147
|
* @throws {RequiredError}
|
|
28036
28148
|
*/
|
|
28037
|
-
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
28149
|
+
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
28038
28150
|
/**
|
|
28039
28151
|
* Get Event Attendee Package endpoint
|
|
28040
28152
|
* @summary Get Event Attendee Package
|
|
@@ -28184,7 +28296,7 @@ export declare class EventsAttendeesPackagesApi extends BaseAPI {
|
|
|
28184
28296
|
* @param {*} [options] Override http request option.
|
|
28185
28297
|
* @throws {RequiredError}
|
|
28186
28298
|
*/
|
|
28187
|
-
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
28299
|
+
deleteEventAttendeePackage(requestParameters: EventsAttendeesPackagesApiDeleteEventAttendeePackageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
28188
28300
|
/**
|
|
28189
28301
|
* Get Event Attendee Package endpoint
|
|
28190
28302
|
* @summary Get Event Attendee Package
|
|
@@ -30877,7 +30989,7 @@ export declare const EventsEmailsTranslationsApiFp: (configuration?: Configurati
|
|
|
30877
30989
|
* @param {*} [options] Override http request option.
|
|
30878
30990
|
* @throws {RequiredError}
|
|
30879
30991
|
*/
|
|
30880
|
-
deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
30992
|
+
deleteEventEmailTranslation(eventId: string, type: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
30881
30993
|
/**
|
|
30882
30994
|
* Get Event Email Translation endpoint
|
|
30883
30995
|
* @summary Get Event Email Translation
|
|
@@ -30911,7 +31023,7 @@ export declare const EventsEmailsTranslationsApiFp: (configuration?: Configurati
|
|
|
30911
31023
|
* @param {*} [options] Override http request option.
|
|
30912
31024
|
* @throws {RequiredError}
|
|
30913
31025
|
*/
|
|
30914
|
-
updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31026
|
+
updateEventEmailTranslation(eventId: string, type: string, locale: string, eventEmailTranslationUpdateInputs: EventEmailTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
30915
31027
|
};
|
|
30916
31028
|
/**
|
|
30917
31029
|
* EventsEmailsTranslationsApi - factory interface
|
|
@@ -30924,7 +31036,7 @@ export declare const EventsEmailsTranslationsApiFactory: (configuration?: Config
|
|
|
30924
31036
|
* @param {*} [options] Override http request option.
|
|
30925
31037
|
* @throws {RequiredError}
|
|
30926
31038
|
*/
|
|
30927
|
-
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
31039
|
+
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
30928
31040
|
/**
|
|
30929
31041
|
* Get Event Email Translation endpoint
|
|
30930
31042
|
* @summary Get Event Email Translation
|
|
@@ -30948,7 +31060,7 @@ export declare const EventsEmailsTranslationsApiFactory: (configuration?: Config
|
|
|
30948
31060
|
* @param {*} [options] Override http request option.
|
|
30949
31061
|
* @throws {RequiredError}
|
|
30950
31062
|
*/
|
|
30951
|
-
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
31063
|
+
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
30952
31064
|
};
|
|
30953
31065
|
/**
|
|
30954
31066
|
* Request parameters for deleteEventEmailTranslation operation in EventsEmailsTranslationsApi.
|
|
@@ -31042,7 +31154,7 @@ export declare class EventsEmailsTranslationsApi extends BaseAPI {
|
|
|
31042
31154
|
* @param {*} [options] Override http request option.
|
|
31043
31155
|
* @throws {RequiredError}
|
|
31044
31156
|
*/
|
|
31045
|
-
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
31157
|
+
deleteEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiDeleteEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
31046
31158
|
/**
|
|
31047
31159
|
* Get Event Email Translation endpoint
|
|
31048
31160
|
* @summary Get Event Email Translation
|
|
@@ -31066,7 +31178,7 @@ export declare class EventsEmailsTranslationsApi extends BaseAPI {
|
|
|
31066
31178
|
* @param {*} [options] Override http request option.
|
|
31067
31179
|
* @throws {RequiredError}
|
|
31068
31180
|
*/
|
|
31069
|
-
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
31181
|
+
updateEventEmailTranslation(requestParameters: EventsEmailsTranslationsApiUpdateEventEmailTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
31070
31182
|
}
|
|
31071
31183
|
/**
|
|
31072
31184
|
* EventsFaqsApi - axios parameter creator
|
|
@@ -31794,7 +31906,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31794
31906
|
* @param {*} [options] Override http request option.
|
|
31795
31907
|
* @throws {RequiredError}
|
|
31796
31908
|
*/
|
|
31797
|
-
deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31909
|
+
deleteEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31798
31910
|
/**
|
|
31799
31911
|
* Delete Event Faq Section Translation endpoint
|
|
31800
31912
|
* @summary Delete Event Faq Section Translation
|
|
@@ -31804,7 +31916,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31804
31916
|
* @param {*} [options] Override http request option.
|
|
31805
31917
|
* @throws {RequiredError}
|
|
31806
31918
|
*/
|
|
31807
|
-
deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31919
|
+
deleteEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31808
31920
|
/**
|
|
31809
31921
|
* Get Event Faq Section Question Translation endpoint
|
|
31810
31922
|
* @summary Get Event Faq Section Question Translation
|
|
@@ -31864,7 +31976,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31864
31976
|
* @param {*} [options] Override http request option.
|
|
31865
31977
|
* @throws {RequiredError}
|
|
31866
31978
|
*/
|
|
31867
|
-
updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31979
|
+
updateEventFaqSectionQuestionTranslation(eventId: string, sectionId: string, questionId: string, locale: string, eventFaqSectionQuestionTranslationUpdateInputs: EventFaqSectionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31868
31980
|
/**
|
|
31869
31981
|
* Update Event Faq Section Translation endpoint
|
|
31870
31982
|
* @summary Update Event Faq Section Translation
|
|
@@ -31875,7 +31987,7 @@ export declare const EventsFaqsTranslationsApiFp: (configuration?: Configuration
|
|
|
31875
31987
|
* @param {*} [options] Override http request option.
|
|
31876
31988
|
* @throws {RequiredError}
|
|
31877
31989
|
*/
|
|
31878
|
-
updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31990
|
+
updateEventFaqSectionTranslation(eventId: string, sectionId: string, locale: string, eventFaqSectionTranslationUpdateInputs: EventFaqSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
31879
31991
|
};
|
|
31880
31992
|
/**
|
|
31881
31993
|
* EventsFaqsTranslationsApi - factory interface
|
|
@@ -31888,7 +32000,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31888
32000
|
* @param {*} [options] Override http request option.
|
|
31889
32001
|
* @throws {RequiredError}
|
|
31890
32002
|
*/
|
|
31891
|
-
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32003
|
+
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31892
32004
|
/**
|
|
31893
32005
|
* Delete Event Faq Section Translation endpoint
|
|
31894
32006
|
* @summary Delete Event Faq Section Translation
|
|
@@ -31896,7 +32008,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31896
32008
|
* @param {*} [options] Override http request option.
|
|
31897
32009
|
* @throws {RequiredError}
|
|
31898
32010
|
*/
|
|
31899
|
-
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32011
|
+
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31900
32012
|
/**
|
|
31901
32013
|
* Get Event Faq Section Question Translation endpoint
|
|
31902
32014
|
* @summary Get Event Faq Section Question Translation
|
|
@@ -31936,7 +32048,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31936
32048
|
* @param {*} [options] Override http request option.
|
|
31937
32049
|
* @throws {RequiredError}
|
|
31938
32050
|
*/
|
|
31939
|
-
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32051
|
+
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31940
32052
|
/**
|
|
31941
32053
|
* Update Event Faq Section Translation endpoint
|
|
31942
32054
|
* @summary Update Event Faq Section Translation
|
|
@@ -31944,7 +32056,7 @@ export declare const EventsFaqsTranslationsApiFactory: (configuration?: Configur
|
|
|
31944
32056
|
* @param {*} [options] Override http request option.
|
|
31945
32057
|
* @throws {RequiredError}
|
|
31946
32058
|
*/
|
|
31947
|
-
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
32059
|
+
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
31948
32060
|
};
|
|
31949
32061
|
/**
|
|
31950
32062
|
* Request parameters for deleteEventFaqSectionQuestionTranslation operation in EventsFaqsTranslationsApi.
|
|
@@ -32135,7 +32247,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32135
32247
|
* @param {*} [options] Override http request option.
|
|
32136
32248
|
* @throws {RequiredError}
|
|
32137
32249
|
*/
|
|
32138
|
-
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32250
|
+
deleteEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32139
32251
|
/**
|
|
32140
32252
|
* Delete Event Faq Section Translation endpoint
|
|
32141
32253
|
* @summary Delete Event Faq Section Translation
|
|
@@ -32143,7 +32255,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32143
32255
|
* @param {*} [options] Override http request option.
|
|
32144
32256
|
* @throws {RequiredError}
|
|
32145
32257
|
*/
|
|
32146
|
-
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32258
|
+
deleteEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiDeleteEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32147
32259
|
/**
|
|
32148
32260
|
* Get Event Faq Section Question Translation endpoint
|
|
32149
32261
|
* @summary Get Event Faq Section Question Translation
|
|
@@ -32183,7 +32295,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32183
32295
|
* @param {*} [options] Override http request option.
|
|
32184
32296
|
* @throws {RequiredError}
|
|
32185
32297
|
*/
|
|
32186
|
-
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32298
|
+
updateEventFaqSectionQuestionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32187
32299
|
/**
|
|
32188
32300
|
* Update Event Faq Section Translation endpoint
|
|
32189
32301
|
* @summary Update Event Faq Section Translation
|
|
@@ -32191,7 +32303,7 @@ export declare class EventsFaqsTranslationsApi extends BaseAPI {
|
|
|
32191
32303
|
* @param {*} [options] Override http request option.
|
|
32192
32304
|
* @throws {RequiredError}
|
|
32193
32305
|
*/
|
|
32194
|
-
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
32306
|
+
updateEventFaqSectionTranslation(requestParameters: EventsFaqsTranslationsApiUpdateEventFaqSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
32195
32307
|
}
|
|
32196
32308
|
/**
|
|
32197
32309
|
* EventsFollowupsApi - axios parameter creator
|
|
@@ -33369,7 +33481,7 @@ export declare const EventsFollowupsTranslationsApiFp: (configuration?: Configur
|
|
|
33369
33481
|
* @param {*} [options] Override http request option.
|
|
33370
33482
|
* @throws {RequiredError}
|
|
33371
33483
|
*/
|
|
33372
|
-
deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
33484
|
+
deleteEventFollowupTranslation(eventId: string, followupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
33373
33485
|
/**
|
|
33374
33486
|
* Get Event Followup Translation endpoint
|
|
33375
33487
|
* @summary Get Event Followup Translation
|
|
@@ -33403,7 +33515,7 @@ export declare const EventsFollowupsTranslationsApiFp: (configuration?: Configur
|
|
|
33403
33515
|
* @param {*} [options] Override http request option.
|
|
33404
33516
|
* @throws {RequiredError}
|
|
33405
33517
|
*/
|
|
33406
|
-
updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
33518
|
+
updateEventFollowupTranslation(eventId: string, followupId: string, locale: string, eventFollowupTranslationUpdateInputs: EventFollowupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
33407
33519
|
};
|
|
33408
33520
|
/**
|
|
33409
33521
|
* EventsFollowupsTranslationsApi - factory interface
|
|
@@ -33416,7 +33528,7 @@ export declare const EventsFollowupsTranslationsApiFactory: (configuration?: Con
|
|
|
33416
33528
|
* @param {*} [options] Override http request option.
|
|
33417
33529
|
* @throws {RequiredError}
|
|
33418
33530
|
*/
|
|
33419
|
-
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
33531
|
+
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
33420
33532
|
/**
|
|
33421
33533
|
* Get Event Followup Translation endpoint
|
|
33422
33534
|
* @summary Get Event Followup Translation
|
|
@@ -33440,7 +33552,7 @@ export declare const EventsFollowupsTranslationsApiFactory: (configuration?: Con
|
|
|
33440
33552
|
* @param {*} [options] Override http request option.
|
|
33441
33553
|
* @throws {RequiredError}
|
|
33442
33554
|
*/
|
|
33443
|
-
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
33555
|
+
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
33444
33556
|
};
|
|
33445
33557
|
/**
|
|
33446
33558
|
* Request parameters for deleteEventFollowupTranslation operation in EventsFollowupsTranslationsApi.
|
|
@@ -33534,7 +33646,7 @@ export declare class EventsFollowupsTranslationsApi extends BaseAPI {
|
|
|
33534
33646
|
* @param {*} [options] Override http request option.
|
|
33535
33647
|
* @throws {RequiredError}
|
|
33536
33648
|
*/
|
|
33537
|
-
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
33649
|
+
deleteEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiDeleteEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
33538
33650
|
/**
|
|
33539
33651
|
* Get Event Followup Translation endpoint
|
|
33540
33652
|
* @summary Get Event Followup Translation
|
|
@@ -33558,7 +33670,7 @@ export declare class EventsFollowupsTranslationsApi extends BaseAPI {
|
|
|
33558
33670
|
* @param {*} [options] Override http request option.
|
|
33559
33671
|
* @throws {RequiredError}
|
|
33560
33672
|
*/
|
|
33561
|
-
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
33673
|
+
updateEventFollowupTranslation(requestParameters: EventsFollowupsTranslationsApiUpdateEventFollowupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
33562
33674
|
}
|
|
33563
33675
|
/**
|
|
33564
33676
|
* EventsMatchesApi - axios parameter creator
|
|
@@ -35052,7 +35164,7 @@ export declare const EventsMediaTranslationsApiFp: (configuration?: Configuratio
|
|
|
35052
35164
|
* @param {*} [options] Override http request option.
|
|
35053
35165
|
* @throws {RequiredError}
|
|
35054
35166
|
*/
|
|
35055
|
-
deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
35167
|
+
deleteEventMediaItemTranslation(eventId: string, mediaItemId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
35056
35168
|
/**
|
|
35057
35169
|
* Get Event Media Item Translation endpoint
|
|
35058
35170
|
* @summary Get Event Media Item Translation
|
|
@@ -35099,7 +35211,7 @@ export declare const EventsMediaTranslationsApiFactory: (configuration?: Configu
|
|
|
35099
35211
|
* @param {*} [options] Override http request option.
|
|
35100
35212
|
* @throws {RequiredError}
|
|
35101
35213
|
*/
|
|
35102
|
-
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
35214
|
+
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
35103
35215
|
/**
|
|
35104
35216
|
* Get Event Media Item Translation endpoint
|
|
35105
35217
|
* @summary Get Event Media Item Translation
|
|
@@ -35217,7 +35329,7 @@ export declare class EventsMediaTranslationsApi extends BaseAPI {
|
|
|
35217
35329
|
* @param {*} [options] Override http request option.
|
|
35218
35330
|
* @throws {RequiredError}
|
|
35219
35331
|
*/
|
|
35220
|
-
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
35332
|
+
deleteEventMediaItemTranslation(requestParameters: EventsMediaTranslationsApiDeleteEventMediaItemTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
35221
35333
|
/**
|
|
35222
35334
|
* Get Event Media Item Translation endpoint
|
|
35223
35335
|
* @summary Get Event Media Item Translation
|
|
@@ -36742,7 +36854,7 @@ export declare const EventsPagesTranslationsApiFp: (configuration?: Configuratio
|
|
|
36742
36854
|
* @param {*} [options] Override http request option.
|
|
36743
36855
|
* @throws {RequiredError}
|
|
36744
36856
|
*/
|
|
36745
|
-
deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
36857
|
+
deleteEventPageTranslation(eventId: string, pageId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
36746
36858
|
/**
|
|
36747
36859
|
* Get Event Page Translation endpoint
|
|
36748
36860
|
* @summary Get Event Page Translation
|
|
@@ -36776,7 +36888,7 @@ export declare const EventsPagesTranslationsApiFp: (configuration?: Configuratio
|
|
|
36776
36888
|
* @param {*} [options] Override http request option.
|
|
36777
36889
|
* @throws {RequiredError}
|
|
36778
36890
|
*/
|
|
36779
|
-
updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
36891
|
+
updateEventPageTranslation(eventId: string, pageId: string, locale: string, eventPageTranslationUpdateInputs: EventPageTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
36780
36892
|
};
|
|
36781
36893
|
/**
|
|
36782
36894
|
* EventsPagesTranslationsApi - factory interface
|
|
@@ -36789,7 +36901,7 @@ export declare const EventsPagesTranslationsApiFactory: (configuration?: Configu
|
|
|
36789
36901
|
* @param {*} [options] Override http request option.
|
|
36790
36902
|
* @throws {RequiredError}
|
|
36791
36903
|
*/
|
|
36792
|
-
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
36904
|
+
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
36793
36905
|
/**
|
|
36794
36906
|
* Get Event Page Translation endpoint
|
|
36795
36907
|
* @summary Get Event Page Translation
|
|
@@ -36813,7 +36925,7 @@ export declare const EventsPagesTranslationsApiFactory: (configuration?: Configu
|
|
|
36813
36925
|
* @param {*} [options] Override http request option.
|
|
36814
36926
|
* @throws {RequiredError}
|
|
36815
36927
|
*/
|
|
36816
|
-
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
36928
|
+
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
36817
36929
|
};
|
|
36818
36930
|
/**
|
|
36819
36931
|
* Request parameters for deleteEventPageTranslation operation in EventsPagesTranslationsApi.
|
|
@@ -36907,7 +37019,7 @@ export declare class EventsPagesTranslationsApi extends BaseAPI {
|
|
|
36907
37019
|
* @param {*} [options] Override http request option.
|
|
36908
37020
|
* @throws {RequiredError}
|
|
36909
37021
|
*/
|
|
36910
|
-
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
37022
|
+
deleteEventPageTranslation(requestParameters: EventsPagesTranslationsApiDeleteEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
36911
37023
|
/**
|
|
36912
37024
|
* Get Event Page Translation endpoint
|
|
36913
37025
|
* @summary Get Event Page Translation
|
|
@@ -36931,7 +37043,7 @@ export declare class EventsPagesTranslationsApi extends BaseAPI {
|
|
|
36931
37043
|
* @param {*} [options] Override http request option.
|
|
36932
37044
|
* @throws {RequiredError}
|
|
36933
37045
|
*/
|
|
36934
|
-
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
37046
|
+
updateEventPageTranslation(requestParameters: EventsPagesTranslationsApiUpdateEventPageTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
36935
37047
|
}
|
|
36936
37048
|
/**
|
|
36937
37049
|
* EventsPassesApi - axios parameter creator
|
|
@@ -40347,7 +40459,7 @@ export declare const EventsPasstypesPriceschedulesApiFp: (configuration?: Config
|
|
|
40347
40459
|
* @param {*} [options] Override http request option.
|
|
40348
40460
|
* @throws {RequiredError}
|
|
40349
40461
|
*/
|
|
40350
|
-
deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40462
|
+
deleteEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40351
40463
|
/**
|
|
40352
40464
|
* Get Event Pass Type Price Schedule endpoint
|
|
40353
40465
|
* @summary Get Event Pass Type Price Schedule
|
|
@@ -40381,7 +40493,7 @@ export declare const EventsPasstypesPriceschedulesApiFp: (configuration?: Config
|
|
|
40381
40493
|
* @param {*} [options] Override http request option.
|
|
40382
40494
|
* @throws {RequiredError}
|
|
40383
40495
|
*/
|
|
40384
|
-
updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40496
|
+
updateEventPassTypePriceSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypePriceScheduleUpdateInputs: PassTypePriceScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40385
40497
|
};
|
|
40386
40498
|
/**
|
|
40387
40499
|
* EventsPasstypesPriceschedulesApi - factory interface
|
|
@@ -40402,7 +40514,7 @@ export declare const EventsPasstypesPriceschedulesApiFactory: (configuration?: C
|
|
|
40402
40514
|
* @param {*} [options] Override http request option.
|
|
40403
40515
|
* @throws {RequiredError}
|
|
40404
40516
|
*/
|
|
40405
|
-
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40517
|
+
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40406
40518
|
/**
|
|
40407
40519
|
* Get Event Pass Type Price Schedule endpoint
|
|
40408
40520
|
* @summary Get Event Pass Type Price Schedule
|
|
@@ -40426,7 +40538,7 @@ export declare const EventsPasstypesPriceschedulesApiFactory: (configuration?: C
|
|
|
40426
40538
|
* @param {*} [options] Override http request option.
|
|
40427
40539
|
* @throws {RequiredError}
|
|
40428
40540
|
*/
|
|
40429
|
-
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40541
|
+
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40430
40542
|
};
|
|
40431
40543
|
/**
|
|
40432
40544
|
* Request parameters for createEventPassTypePriceSchedule operation in EventsPasstypesPriceschedulesApi.
|
|
@@ -40542,7 +40654,7 @@ export declare class EventsPasstypesPriceschedulesApi extends BaseAPI {
|
|
|
40542
40654
|
* @param {*} [options] Override http request option.
|
|
40543
40655
|
* @throws {RequiredError}
|
|
40544
40656
|
*/
|
|
40545
|
-
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
40657
|
+
deleteEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiDeleteEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40546
40658
|
/**
|
|
40547
40659
|
* Get Event Pass Type Price Schedule endpoint
|
|
40548
40660
|
* @summary Get Event Pass Type Price Schedule
|
|
@@ -40566,7 +40678,7 @@ export declare class EventsPasstypesPriceschedulesApi extends BaseAPI {
|
|
|
40566
40678
|
* @param {*} [options] Override http request option.
|
|
40567
40679
|
* @throws {RequiredError}
|
|
40568
40680
|
*/
|
|
40569
|
-
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
40681
|
+
updateEventPassTypePriceSchedule(requestParameters: EventsPasstypesPriceschedulesApiUpdateEventPassTypePriceScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40570
40682
|
}
|
|
40571
40683
|
/**
|
|
40572
40684
|
* EventsPasstypesRefundschedulesApi - axios parameter creator
|
|
@@ -40650,7 +40762,7 @@ export declare const EventsPasstypesRefundschedulesApiFp: (configuration?: Confi
|
|
|
40650
40762
|
* @param {*} [options] Override http request option.
|
|
40651
40763
|
* @throws {RequiredError}
|
|
40652
40764
|
*/
|
|
40653
|
-
deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40765
|
+
deleteEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40654
40766
|
/**
|
|
40655
40767
|
* Get Event Pass Type Refund Schedule endpoint
|
|
40656
40768
|
* @summary Get Event Pass Type Refund Schedule
|
|
@@ -40684,7 +40796,7 @@ export declare const EventsPasstypesRefundschedulesApiFp: (configuration?: Confi
|
|
|
40684
40796
|
* @param {*} [options] Override http request option.
|
|
40685
40797
|
* @throws {RequiredError}
|
|
40686
40798
|
*/
|
|
40687
|
-
updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
40799
|
+
updateEventPassTypeRefundSchedule(eventId: string, passTypeId: string, scheduleId: string, passTypeRefundScheduleUpdateInputs: PassTypeRefundScheduleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40688
40800
|
};
|
|
40689
40801
|
/**
|
|
40690
40802
|
* EventsPasstypesRefundschedulesApi - factory interface
|
|
@@ -40705,7 +40817,7 @@ export declare const EventsPasstypesRefundschedulesApiFactory: (configuration?:
|
|
|
40705
40817
|
* @param {*} [options] Override http request option.
|
|
40706
40818
|
* @throws {RequiredError}
|
|
40707
40819
|
*/
|
|
40708
|
-
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40820
|
+
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40709
40821
|
/**
|
|
40710
40822
|
* Get Event Pass Type Refund Schedule endpoint
|
|
40711
40823
|
* @summary Get Event Pass Type Refund Schedule
|
|
@@ -40729,7 +40841,7 @@ export declare const EventsPasstypesRefundschedulesApiFactory: (configuration?:
|
|
|
40729
40841
|
* @param {*} [options] Override http request option.
|
|
40730
40842
|
* @throws {RequiredError}
|
|
40731
40843
|
*/
|
|
40732
|
-
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
40844
|
+
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40733
40845
|
};
|
|
40734
40846
|
/**
|
|
40735
40847
|
* Request parameters for createEventPassTypeRefundSchedule operation in EventsPasstypesRefundschedulesApi.
|
|
@@ -40845,7 +40957,7 @@ export declare class EventsPasstypesRefundschedulesApi extends BaseAPI {
|
|
|
40845
40957
|
* @param {*} [options] Override http request option.
|
|
40846
40958
|
* @throws {RequiredError}
|
|
40847
40959
|
*/
|
|
40848
|
-
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
40960
|
+
deleteEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiDeleteEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40849
40961
|
/**
|
|
40850
40962
|
* Get Event Pass Type Refund Schedule endpoint
|
|
40851
40963
|
* @summary Get Event Pass Type Refund Schedule
|
|
@@ -40869,7 +40981,7 @@ export declare class EventsPasstypesRefundschedulesApi extends BaseAPI {
|
|
|
40869
40981
|
* @param {*} [options] Override http request option.
|
|
40870
40982
|
* @throws {RequiredError}
|
|
40871
40983
|
*/
|
|
40872
|
-
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
40984
|
+
updateEventPassTypeRefundSchedule(requestParameters: EventsPasstypesRefundschedulesApiUpdateEventPassTypeRefundScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
40873
40985
|
}
|
|
40874
40986
|
/**
|
|
40875
40987
|
* EventsPasstypesTranslationsApi - axios parameter creator
|
|
@@ -40933,7 +41045,7 @@ export declare const EventsPasstypesTranslationsApiFp: (configuration?: Configur
|
|
|
40933
41045
|
* @param {*} [options] Override http request option.
|
|
40934
41046
|
* @throws {RequiredError}
|
|
40935
41047
|
*/
|
|
40936
|
-
deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
41048
|
+
deleteEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40937
41049
|
/**
|
|
40938
41050
|
* Get Event Pass Type Translation endpoint
|
|
40939
41051
|
* @summary Get Event Pass Type Translation
|
|
@@ -40967,7 +41079,7 @@ export declare const EventsPasstypesTranslationsApiFp: (configuration?: Configur
|
|
|
40967
41079
|
* @param {*} [options] Override http request option.
|
|
40968
41080
|
* @throws {RequiredError}
|
|
40969
41081
|
*/
|
|
40970
|
-
updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
41082
|
+
updateEventPassTypeTranslation(eventId: string, passTypeId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
40971
41083
|
};
|
|
40972
41084
|
/**
|
|
40973
41085
|
* EventsPasstypesTranslationsApi - factory interface
|
|
@@ -40980,7 +41092,7 @@ export declare const EventsPasstypesTranslationsApiFactory: (configuration?: Con
|
|
|
40980
41092
|
* @param {*} [options] Override http request option.
|
|
40981
41093
|
* @throws {RequiredError}
|
|
40982
41094
|
*/
|
|
40983
|
-
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
41095
|
+
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
40984
41096
|
/**
|
|
40985
41097
|
* Get Event Pass Type Translation endpoint
|
|
40986
41098
|
* @summary Get Event Pass Type Translation
|
|
@@ -41004,7 +41116,7 @@ export declare const EventsPasstypesTranslationsApiFactory: (configuration?: Con
|
|
|
41004
41116
|
* @param {*} [options] Override http request option.
|
|
41005
41117
|
* @throws {RequiredError}
|
|
41006
41118
|
*/
|
|
41007
|
-
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
41119
|
+
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
41008
41120
|
};
|
|
41009
41121
|
/**
|
|
41010
41122
|
* Request parameters for deleteEventPassTypeTranslation operation in EventsPasstypesTranslationsApi.
|
|
@@ -41098,7 +41210,7 @@ export declare class EventsPasstypesTranslationsApi extends BaseAPI {
|
|
|
41098
41210
|
* @param {*} [options] Override http request option.
|
|
41099
41211
|
* @throws {RequiredError}
|
|
41100
41212
|
*/
|
|
41101
|
-
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
41213
|
+
deleteEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiDeleteEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
41102
41214
|
/**
|
|
41103
41215
|
* Get Event Pass Type Translation endpoint
|
|
41104
41216
|
* @summary Get Event Pass Type Translation
|
|
@@ -41122,7 +41234,7 @@ export declare class EventsPasstypesTranslationsApi extends BaseAPI {
|
|
|
41122
41234
|
* @param {*} [options] Override http request option.
|
|
41123
41235
|
* @throws {RequiredError}
|
|
41124
41236
|
*/
|
|
41125
|
-
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
41237
|
+
updateEventPassTypeTranslation(requestParameters: EventsPasstypesTranslationsApiUpdateEventPassTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
41126
41238
|
}
|
|
41127
41239
|
/**
|
|
41128
41240
|
* EventsQuestionsApi - axios parameter creator
|
|
@@ -41590,7 +41702,7 @@ export declare const EventsQuestionsApiFp: (configuration?: Configuration) => {
|
|
|
41590
41702
|
* @param {*} [options] Override http request option.
|
|
41591
41703
|
* @throws {RequiredError}
|
|
41592
41704
|
*/
|
|
41593
|
-
updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
41705
|
+
updateEventQuestionChoice(eventId: string, questionId: string, choiceId: string, choice: EventQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
41594
41706
|
/**
|
|
41595
41707
|
* Update Event Question Choice Sub Question endpoint
|
|
41596
41708
|
* @summary Update Event Question Choice Sub Question
|
|
@@ -41775,7 +41887,7 @@ export declare const EventsQuestionsApiFactory: (configuration?: Configuration,
|
|
|
41775
41887
|
* @param {*} [options] Override http request option.
|
|
41776
41888
|
* @throws {RequiredError}
|
|
41777
41889
|
*/
|
|
41778
|
-
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
41890
|
+
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
41779
41891
|
/**
|
|
41780
41892
|
* Update Event Question Choice Sub Question endpoint
|
|
41781
41893
|
* @summary Update Event Question Choice Sub Question
|
|
@@ -42381,7 +42493,7 @@ export declare class EventsQuestionsApi extends BaseAPI {
|
|
|
42381
42493
|
* @param {*} [options] Override http request option.
|
|
42382
42494
|
* @throws {RequiredError}
|
|
42383
42495
|
*/
|
|
42384
|
-
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
42496
|
+
updateEventQuestionChoice(requestParameters: EventsQuestionsApiUpdateEventQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42385
42497
|
/**
|
|
42386
42498
|
* Update Event Question Choice Sub Question endpoint
|
|
42387
42499
|
* @summary Update Event Question Choice Sub Question
|
|
@@ -42502,7 +42614,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42502
42614
|
* @param {*} [options] Override http request option.
|
|
42503
42615
|
* @throws {RequiredError}
|
|
42504
42616
|
*/
|
|
42505
|
-
deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42617
|
+
deleteEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42506
42618
|
/**
|
|
42507
42619
|
* Delete Event Question Translation endpoint
|
|
42508
42620
|
* @summary Delete Event Question Translation
|
|
@@ -42512,7 +42624,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42512
42624
|
* @param {*} [options] Override http request option.
|
|
42513
42625
|
* @throws {RequiredError}
|
|
42514
42626
|
*/
|
|
42515
|
-
deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42627
|
+
deleteEventQuestionTranslation(eventId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42516
42628
|
/**
|
|
42517
42629
|
* Get Event Question Choice Translation endpoint
|
|
42518
42630
|
* @summary Get Event Question Choice Translation
|
|
@@ -42572,7 +42684,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42572
42684
|
* @param {*} [options] Override http request option.
|
|
42573
42685
|
* @throws {RequiredError}
|
|
42574
42686
|
*/
|
|
42575
|
-
updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42687
|
+
updateEventQuestionChoiceTranslation(eventId: string, questionId: string, choiceId: string, locale: string, eventQuestionChoiceTranslationUpdateInputs: EventQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42576
42688
|
/**
|
|
42577
42689
|
* Update Event Question Translation endpoint
|
|
42578
42690
|
* @summary Update Event Question Translation
|
|
@@ -42583,7 +42695,7 @@ export declare const EventsQuestionsTranslationsApiFp: (configuration?: Configur
|
|
|
42583
42695
|
* @param {*} [options] Override http request option.
|
|
42584
42696
|
* @throws {RequiredError}
|
|
42585
42697
|
*/
|
|
42586
|
-
updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
42698
|
+
updateEventQuestionTranslation(eventId: string, questionId: string, locale: string, eventQuestionTranslationUpdateInputs: EventQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
42587
42699
|
};
|
|
42588
42700
|
/**
|
|
42589
42701
|
* EventsQuestionsTranslationsApi - factory interface
|
|
@@ -42596,7 +42708,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42596
42708
|
* @param {*} [options] Override http request option.
|
|
42597
42709
|
* @throws {RequiredError}
|
|
42598
42710
|
*/
|
|
42599
|
-
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42711
|
+
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42600
42712
|
/**
|
|
42601
42713
|
* Delete Event Question Translation endpoint
|
|
42602
42714
|
* @summary Delete Event Question Translation
|
|
@@ -42604,7 +42716,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42604
42716
|
* @param {*} [options] Override http request option.
|
|
42605
42717
|
* @throws {RequiredError}
|
|
42606
42718
|
*/
|
|
42607
|
-
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42719
|
+
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42608
42720
|
/**
|
|
42609
42721
|
* Get Event Question Choice Translation endpoint
|
|
42610
42722
|
* @summary Get Event Question Choice Translation
|
|
@@ -42644,7 +42756,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42644
42756
|
* @param {*} [options] Override http request option.
|
|
42645
42757
|
* @throws {RequiredError}
|
|
42646
42758
|
*/
|
|
42647
|
-
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42759
|
+
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42648
42760
|
/**
|
|
42649
42761
|
* Update Event Question Translation endpoint
|
|
42650
42762
|
* @summary Update Event Question Translation
|
|
@@ -42652,7 +42764,7 @@ export declare const EventsQuestionsTranslationsApiFactory: (configuration?: Con
|
|
|
42652
42764
|
* @param {*} [options] Override http request option.
|
|
42653
42765
|
* @throws {RequiredError}
|
|
42654
42766
|
*/
|
|
42655
|
-
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
42767
|
+
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
42656
42768
|
};
|
|
42657
42769
|
/**
|
|
42658
42770
|
* Request parameters for deleteEventQuestionChoiceTranslation operation in EventsQuestionsTranslationsApi.
|
|
@@ -42843,7 +42955,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42843
42955
|
* @param {*} [options] Override http request option.
|
|
42844
42956
|
* @throws {RequiredError}
|
|
42845
42957
|
*/
|
|
42846
|
-
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
42958
|
+
deleteEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42847
42959
|
/**
|
|
42848
42960
|
* Delete Event Question Translation endpoint
|
|
42849
42961
|
* @summary Delete Event Question Translation
|
|
@@ -42851,7 +42963,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42851
42963
|
* @param {*} [options] Override http request option.
|
|
42852
42964
|
* @throws {RequiredError}
|
|
42853
42965
|
*/
|
|
42854
|
-
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
42966
|
+
deleteEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiDeleteEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42855
42967
|
/**
|
|
42856
42968
|
* Get Event Question Choice Translation endpoint
|
|
42857
42969
|
* @summary Get Event Question Choice Translation
|
|
@@ -42891,7 +43003,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42891
43003
|
* @param {*} [options] Override http request option.
|
|
42892
43004
|
* @throws {RequiredError}
|
|
42893
43005
|
*/
|
|
42894
|
-
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
43006
|
+
updateEventQuestionChoiceTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42895
43007
|
/**
|
|
42896
43008
|
* Update Event Question Translation endpoint
|
|
42897
43009
|
* @summary Update Event Question Translation
|
|
@@ -42899,7 +43011,7 @@ export declare class EventsQuestionsTranslationsApi extends BaseAPI {
|
|
|
42899
43011
|
* @param {*} [options] Override http request option.
|
|
42900
43012
|
* @throws {RequiredError}
|
|
42901
43013
|
*/
|
|
42902
|
-
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
43014
|
+
updateEventQuestionTranslation(requestParameters: EventsQuestionsTranslationsApiUpdateEventQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
42903
43015
|
}
|
|
42904
43016
|
/**
|
|
42905
43017
|
* EventsRoomsApi - axios parameter creator
|
|
@@ -44191,7 +44303,7 @@ export declare const EventsRoomtypesTranslationsApiFp: (configuration?: Configur
|
|
|
44191
44303
|
* @param {*} [options] Override http request option.
|
|
44192
44304
|
* @throws {RequiredError}
|
|
44193
44305
|
*/
|
|
44194
|
-
deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
44306
|
+
deleteEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
44195
44307
|
/**
|
|
44196
44308
|
* Get Event Room Type Translation endpoint
|
|
44197
44309
|
* @summary Get Event Room Type Translation
|
|
@@ -44225,7 +44337,7 @@ export declare const EventsRoomtypesTranslationsApiFp: (configuration?: Configur
|
|
|
44225
44337
|
* @param {*} [options] Override http request option.
|
|
44226
44338
|
* @throws {RequiredError}
|
|
44227
44339
|
*/
|
|
44228
|
-
updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
44340
|
+
updateEventRoomTypeTranslation(eventId: string, roomTypeId: string, locale: string, eventRoomTypeTranslationUpdateInputs: EventRoomTypeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
44229
44341
|
};
|
|
44230
44342
|
/**
|
|
44231
44343
|
* EventsRoomtypesTranslationsApi - factory interface
|
|
@@ -44238,7 +44350,7 @@ export declare const EventsRoomtypesTranslationsApiFactory: (configuration?: Con
|
|
|
44238
44350
|
* @param {*} [options] Override http request option.
|
|
44239
44351
|
* @throws {RequiredError}
|
|
44240
44352
|
*/
|
|
44241
|
-
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
44353
|
+
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
44242
44354
|
/**
|
|
44243
44355
|
* Get Event Room Type Translation endpoint
|
|
44244
44356
|
* @summary Get Event Room Type Translation
|
|
@@ -44262,7 +44374,7 @@ export declare const EventsRoomtypesTranslationsApiFactory: (configuration?: Con
|
|
|
44262
44374
|
* @param {*} [options] Override http request option.
|
|
44263
44375
|
* @throws {RequiredError}
|
|
44264
44376
|
*/
|
|
44265
|
-
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
44377
|
+
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
44266
44378
|
};
|
|
44267
44379
|
/**
|
|
44268
44380
|
* Request parameters for deleteEventRoomTypeTranslation operation in EventsRoomtypesTranslationsApi.
|
|
@@ -44356,7 +44468,7 @@ export declare class EventsRoomtypesTranslationsApi extends BaseAPI {
|
|
|
44356
44468
|
* @param {*} [options] Override http request option.
|
|
44357
44469
|
* @throws {RequiredError}
|
|
44358
44470
|
*/
|
|
44359
|
-
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
44471
|
+
deleteEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiDeleteEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
44360
44472
|
/**
|
|
44361
44473
|
* Get Event Room Type Translation endpoint
|
|
44362
44474
|
* @summary Get Event Room Type Translation
|
|
@@ -44380,7 +44492,7 @@ export declare class EventsRoomtypesTranslationsApi extends BaseAPI {
|
|
|
44380
44492
|
* @param {*} [options] Override http request option.
|
|
44381
44493
|
* @throws {RequiredError}
|
|
44382
44494
|
*/
|
|
44383
|
-
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
44495
|
+
updateEventRoomTypeTranslation(requestParameters: EventsRoomtypesTranslationsApiUpdateEventRoomTypeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
44384
44496
|
}
|
|
44385
44497
|
/**
|
|
44386
44498
|
* EventsSectionsApi - axios parameter creator
|
|
@@ -45558,7 +45670,7 @@ export declare const EventsSectionsTranslationsApiFp: (configuration?: Configura
|
|
|
45558
45670
|
* @param {*} [options] Override http request option.
|
|
45559
45671
|
* @throws {RequiredError}
|
|
45560
45672
|
*/
|
|
45561
|
-
deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45673
|
+
deleteEventSectionTranslation(eventId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
45562
45674
|
/**
|
|
45563
45675
|
* Get Event Section Translation endpoint
|
|
45564
45676
|
* @summary Get Event Section Translation
|
|
@@ -45592,7 +45704,7 @@ export declare const EventsSectionsTranslationsApiFp: (configuration?: Configura
|
|
|
45592
45704
|
* @param {*} [options] Override http request option.
|
|
45593
45705
|
* @throws {RequiredError}
|
|
45594
45706
|
*/
|
|
45595
|
-
updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45707
|
+
updateEventSectionTranslation(eventId: string, sectionId: string, locale: string, eventSectionTranslationUpdateInputs: EventSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
45596
45708
|
};
|
|
45597
45709
|
/**
|
|
45598
45710
|
* EventsSectionsTranslationsApi - factory interface
|
|
@@ -45605,7 +45717,7 @@ export declare const EventsSectionsTranslationsApiFactory: (configuration?: Conf
|
|
|
45605
45717
|
* @param {*} [options] Override http request option.
|
|
45606
45718
|
* @throws {RequiredError}
|
|
45607
45719
|
*/
|
|
45608
|
-
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45720
|
+
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
45609
45721
|
/**
|
|
45610
45722
|
* Get Event Section Translation endpoint
|
|
45611
45723
|
* @summary Get Event Section Translation
|
|
@@ -45629,7 +45741,7 @@ export declare const EventsSectionsTranslationsApiFactory: (configuration?: Conf
|
|
|
45629
45741
|
* @param {*} [options] Override http request option.
|
|
45630
45742
|
* @throws {RequiredError}
|
|
45631
45743
|
*/
|
|
45632
|
-
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45744
|
+
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
45633
45745
|
};
|
|
45634
45746
|
/**
|
|
45635
45747
|
* Request parameters for deleteEventSectionTranslation operation in EventsSectionsTranslationsApi.
|
|
@@ -45723,7 +45835,7 @@ export declare class EventsSectionsTranslationsApi extends BaseAPI {
|
|
|
45723
45835
|
* @param {*} [options] Override http request option.
|
|
45724
45836
|
* @throws {RequiredError}
|
|
45725
45837
|
*/
|
|
45726
|
-
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45838
|
+
deleteEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiDeleteEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
45727
45839
|
/**
|
|
45728
45840
|
* Get Event Section Translation endpoint
|
|
45729
45841
|
* @summary Get Event Section Translation
|
|
@@ -45747,7 +45859,7 @@ export declare class EventsSectionsTranslationsApi extends BaseAPI {
|
|
|
45747
45859
|
* @param {*} [options] Override http request option.
|
|
45748
45860
|
* @throws {RequiredError}
|
|
45749
45861
|
*/
|
|
45750
|
-
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45862
|
+
updateEventSectionTranslation(requestParameters: EventsSectionsTranslationsApiUpdateEventSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
45751
45863
|
}
|
|
45752
45864
|
/**
|
|
45753
45865
|
* EventsSessionsApi - axios parameter creator
|
|
@@ -46240,7 +46352,7 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
46240
46352
|
* @param {*} [options] Override http request option.
|
|
46241
46353
|
* @throws {RequiredError}
|
|
46242
46354
|
*/
|
|
46243
|
-
cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
46355
|
+
cloneEventSession(eventId: string, sessionId: string, eventSessionCloneOptions: EventSessionCloneOptions, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
46244
46356
|
/**
|
|
46245
46357
|
* Create Event Session endpoint
|
|
46246
46358
|
* @summary Create Event Session
|
|
@@ -46608,7 +46720,7 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46608
46720
|
* @param {*} [options] Override http request option.
|
|
46609
46721
|
* @throws {RequiredError}
|
|
46610
46722
|
*/
|
|
46611
|
-
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
46723
|
+
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
46612
46724
|
/**
|
|
46613
46725
|
* Create Event Session endpoint
|
|
46614
46726
|
* @summary Create Event Session
|
|
@@ -47614,7 +47726,7 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47614
47726
|
* @param {*} [options] Override http request option.
|
|
47615
47727
|
* @throws {RequiredError}
|
|
47616
47728
|
*/
|
|
47617
|
-
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
47729
|
+
cloneEventSession(requestParameters: EventsSessionsApiCloneEventSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
47618
47730
|
/**
|
|
47619
47731
|
* Create Event Session endpoint
|
|
47620
47732
|
* @summary Create Event Session
|
|
@@ -48564,7 +48676,7 @@ export declare const EventsSessionsLocationsTranslationsApiFp: (configuration?:
|
|
|
48564
48676
|
* @param {*} [options] Override http request option.
|
|
48565
48677
|
* @throws {RequiredError}
|
|
48566
48678
|
*/
|
|
48567
|
-
deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
48679
|
+
deleteEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
48568
48680
|
/**
|
|
48569
48681
|
* Get Event Session Location Translation endpoint
|
|
48570
48682
|
* @summary Get Event Session Location Translation
|
|
@@ -48598,7 +48710,7 @@ export declare const EventsSessionsLocationsTranslationsApiFp: (configuration?:
|
|
|
48598
48710
|
* @param {*} [options] Override http request option.
|
|
48599
48711
|
* @throws {RequiredError}
|
|
48600
48712
|
*/
|
|
48601
|
-
updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
48713
|
+
updateEventSessionLocationTranslation(eventId: string, locationId: string, locale: string, eventSessionLocationTranslationUpdateInputs: EventSessionLocationTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
48602
48714
|
};
|
|
48603
48715
|
/**
|
|
48604
48716
|
* EventsSessionsLocationsTranslationsApi - factory interface
|
|
@@ -48611,7 +48723,7 @@ export declare const EventsSessionsLocationsTranslationsApiFactory: (configurati
|
|
|
48611
48723
|
* @param {*} [options] Override http request option.
|
|
48612
48724
|
* @throws {RequiredError}
|
|
48613
48725
|
*/
|
|
48614
|
-
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
48726
|
+
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
48615
48727
|
/**
|
|
48616
48728
|
* Get Event Session Location Translation endpoint
|
|
48617
48729
|
* @summary Get Event Session Location Translation
|
|
@@ -48635,7 +48747,7 @@ export declare const EventsSessionsLocationsTranslationsApiFactory: (configurati
|
|
|
48635
48747
|
* @param {*} [options] Override http request option.
|
|
48636
48748
|
* @throws {RequiredError}
|
|
48637
48749
|
*/
|
|
48638
|
-
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
48750
|
+
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
48639
48751
|
};
|
|
48640
48752
|
/**
|
|
48641
48753
|
* Request parameters for deleteEventSessionLocationTranslation operation in EventsSessionsLocationsTranslationsApi.
|
|
@@ -48729,7 +48841,7 @@ export declare class EventsSessionsLocationsTranslationsApi extends BaseAPI {
|
|
|
48729
48841
|
* @param {*} [options] Override http request option.
|
|
48730
48842
|
* @throws {RequiredError}
|
|
48731
48843
|
*/
|
|
48732
|
-
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
48844
|
+
deleteEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiDeleteEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
48733
48845
|
/**
|
|
48734
48846
|
* Get Event Session Location Translation endpoint
|
|
48735
48847
|
* @summary Get Event Session Location Translation
|
|
@@ -48753,7 +48865,7 @@ export declare class EventsSessionsLocationsTranslationsApi extends BaseAPI {
|
|
|
48753
48865
|
* @param {*} [options] Override http request option.
|
|
48754
48866
|
* @throws {RequiredError}
|
|
48755
48867
|
*/
|
|
48756
|
-
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
48868
|
+
updateEventSessionLocationTranslation(requestParameters: EventsSessionsLocationsTranslationsApiUpdateEventSessionLocationTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
48757
48869
|
}
|
|
48758
48870
|
/**
|
|
48759
48871
|
* EventsSessionsMatchesApi - axios parameter creator
|
|
@@ -50419,7 +50531,7 @@ export declare const EventsSessionsQuestionsApiFp: (configuration?: Configuratio
|
|
|
50419
50531
|
* @param {*} [options] Override http request option.
|
|
50420
50532
|
* @throws {RequiredError}
|
|
50421
50533
|
*/
|
|
50422
|
-
updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
50534
|
+
updateEventSessionQuestionChoice(eventId: string, sessionId: string, questionId: string, choiceId: string, choice: EventSessionQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
50423
50535
|
/**
|
|
50424
50536
|
* Update Event Session Question Choice Sub Question endpoint
|
|
50425
50537
|
* @summary Update Event Session Question Choice Sub Question
|
|
@@ -50581,7 +50693,7 @@ export declare const EventsSessionsQuestionsApiFactory: (configuration?: Configu
|
|
|
50581
50693
|
* @param {*} [options] Override http request option.
|
|
50582
50694
|
* @throws {RequiredError}
|
|
50583
50695
|
*/
|
|
50584
|
-
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
50696
|
+
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
50585
50697
|
/**
|
|
50586
50698
|
* Update Event Session Question Choice Sub Question endpoint
|
|
50587
50699
|
* @summary Update Event Session Question Choice Sub Question
|
|
@@ -51188,7 +51300,7 @@ export declare class EventsSessionsQuestionsApi extends BaseAPI {
|
|
|
51188
51300
|
* @param {*} [options] Override http request option.
|
|
51189
51301
|
* @throws {RequiredError}
|
|
51190
51302
|
*/
|
|
51191
|
-
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51303
|
+
updateEventSessionQuestionChoice(requestParameters: EventsSessionsQuestionsApiUpdateEventSessionQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51192
51304
|
/**
|
|
51193
51305
|
* Update Event Session Question Choice Sub Question endpoint
|
|
51194
51306
|
* @summary Update Event Session Question Choice Sub Question
|
|
@@ -51318,7 +51430,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51318
51430
|
* @param {*} [options] Override http request option.
|
|
51319
51431
|
* @throws {RequiredError}
|
|
51320
51432
|
*/
|
|
51321
|
-
deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51433
|
+
deleteEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51322
51434
|
/**
|
|
51323
51435
|
* Delete Event Session Question Translation endpoint
|
|
51324
51436
|
* @summary Delete Event Session Question Translation
|
|
@@ -51329,7 +51441,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51329
51441
|
* @param {*} [options] Override http request option.
|
|
51330
51442
|
* @throws {RequiredError}
|
|
51331
51443
|
*/
|
|
51332
|
-
deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51444
|
+
deleteEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51333
51445
|
/**
|
|
51334
51446
|
* Get Event Session Question Choice Translation endpoint
|
|
51335
51447
|
* @summary Get Event Session Question Choice Translation
|
|
@@ -51394,7 +51506,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51394
51506
|
* @param {*} [options] Override http request option.
|
|
51395
51507
|
* @throws {RequiredError}
|
|
51396
51508
|
*/
|
|
51397
|
-
updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51509
|
+
updateEventSessionQuestionChoiceTranslation(eventId: string, sessionId: string, questionId: string, choiceId: string, locale: string, eventSessionQuestionChoiceTranslationUpdateInputs: EventSessionQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51398
51510
|
/**
|
|
51399
51511
|
* Update Event Session Question Translation endpoint
|
|
51400
51512
|
* @summary Update Event Session Question Translation
|
|
@@ -51406,7 +51518,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFp: (configuration?:
|
|
|
51406
51518
|
* @param {*} [options] Override http request option.
|
|
51407
51519
|
* @throws {RequiredError}
|
|
51408
51520
|
*/
|
|
51409
|
-
updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
51521
|
+
updateEventSessionQuestionTranslation(eventId: string, sessionId: string, questionId: string, locale: string, eventSessionQuestionTranslationUpdateInputs: EventSessionQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
51410
51522
|
};
|
|
51411
51523
|
/**
|
|
51412
51524
|
* EventsSessionsQuestionsTranslationsApi - factory interface
|
|
@@ -51419,7 +51531,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51419
51531
|
* @param {*} [options] Override http request option.
|
|
51420
51532
|
* @throws {RequiredError}
|
|
51421
51533
|
*/
|
|
51422
|
-
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51534
|
+
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51423
51535
|
/**
|
|
51424
51536
|
* Delete Event Session Question Translation endpoint
|
|
51425
51537
|
* @summary Delete Event Session Question Translation
|
|
@@ -51427,7 +51539,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51427
51539
|
* @param {*} [options] Override http request option.
|
|
51428
51540
|
* @throws {RequiredError}
|
|
51429
51541
|
*/
|
|
51430
|
-
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51542
|
+
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51431
51543
|
/**
|
|
51432
51544
|
* Get Event Session Question Choice Translation endpoint
|
|
51433
51545
|
* @summary Get Event Session Question Choice Translation
|
|
@@ -51467,7 +51579,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51467
51579
|
* @param {*} [options] Override http request option.
|
|
51468
51580
|
* @throws {RequiredError}
|
|
51469
51581
|
*/
|
|
51470
|
-
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51582
|
+
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51471
51583
|
/**
|
|
51472
51584
|
* Update Event Session Question Translation endpoint
|
|
51473
51585
|
* @summary Update Event Session Question Translation
|
|
@@ -51475,7 +51587,7 @@ export declare const EventsSessionsQuestionsTranslationsApiFactory: (configurati
|
|
|
51475
51587
|
* @param {*} [options] Override http request option.
|
|
51476
51588
|
* @throws {RequiredError}
|
|
51477
51589
|
*/
|
|
51478
|
-
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
51590
|
+
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
51479
51591
|
};
|
|
51480
51592
|
/**
|
|
51481
51593
|
* Request parameters for deleteEventSessionQuestionChoiceTranslation operation in EventsSessionsQuestionsTranslationsApi.
|
|
@@ -51698,7 +51810,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51698
51810
|
* @param {*} [options] Override http request option.
|
|
51699
51811
|
* @throws {RequiredError}
|
|
51700
51812
|
*/
|
|
51701
|
-
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51813
|
+
deleteEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51702
51814
|
/**
|
|
51703
51815
|
* Delete Event Session Question Translation endpoint
|
|
51704
51816
|
* @summary Delete Event Session Question Translation
|
|
@@ -51706,7 +51818,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51706
51818
|
* @param {*} [options] Override http request option.
|
|
51707
51819
|
* @throws {RequiredError}
|
|
51708
51820
|
*/
|
|
51709
|
-
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51821
|
+
deleteEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiDeleteEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51710
51822
|
/**
|
|
51711
51823
|
* Get Event Session Question Choice Translation endpoint
|
|
51712
51824
|
* @summary Get Event Session Question Choice Translation
|
|
@@ -51746,7 +51858,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51746
51858
|
* @param {*} [options] Override http request option.
|
|
51747
51859
|
* @throws {RequiredError}
|
|
51748
51860
|
*/
|
|
51749
|
-
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51861
|
+
updateEventSessionQuestionChoiceTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51750
51862
|
/**
|
|
51751
51863
|
* Update Event Session Question Translation endpoint
|
|
51752
51864
|
* @summary Update Event Session Question Translation
|
|
@@ -51754,7 +51866,7 @@ export declare class EventsSessionsQuestionsTranslationsApi extends BaseAPI {
|
|
|
51754
51866
|
* @param {*} [options] Override http request option.
|
|
51755
51867
|
* @throws {RequiredError}
|
|
51756
51868
|
*/
|
|
51757
|
-
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
51869
|
+
updateEventSessionQuestionTranslation(requestParameters: EventsSessionsQuestionsTranslationsApiUpdateEventSessionQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
51758
51870
|
}
|
|
51759
51871
|
/**
|
|
51760
51872
|
* EventsSessionsSectionsApi - axios parameter creator
|
|
@@ -52448,7 +52560,7 @@ export declare const EventsSessionsSectionsTranslationsApiFp: (configuration?: C
|
|
|
52448
52560
|
* @param {*} [options] Override http request option.
|
|
52449
52561
|
* @throws {RequiredError}
|
|
52450
52562
|
*/
|
|
52451
|
-
deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
52563
|
+
deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
52452
52564
|
/**
|
|
52453
52565
|
* Get Event Session Section Translation endpoint
|
|
52454
52566
|
* @summary Get Event Session Section Translation
|
|
@@ -52485,7 +52597,7 @@ export declare const EventsSessionsSectionsTranslationsApiFp: (configuration?: C
|
|
|
52485
52597
|
* @param {*} [options] Override http request option.
|
|
52486
52598
|
* @throws {RequiredError}
|
|
52487
52599
|
*/
|
|
52488
|
-
updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
52600
|
+
updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
52489
52601
|
};
|
|
52490
52602
|
/**
|
|
52491
52603
|
* EventsSessionsSectionsTranslationsApi - factory interface
|
|
@@ -52498,7 +52610,7 @@ export declare const EventsSessionsSectionsTranslationsApiFactory: (configuratio
|
|
|
52498
52610
|
* @param {*} [options] Override http request option.
|
|
52499
52611
|
* @throws {RequiredError}
|
|
52500
52612
|
*/
|
|
52501
|
-
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
52613
|
+
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
52502
52614
|
/**
|
|
52503
52615
|
* Get Event Session Section Translation endpoint
|
|
52504
52616
|
* @summary Get Event Session Section Translation
|
|
@@ -52522,7 +52634,7 @@ export declare const EventsSessionsSectionsTranslationsApiFactory: (configuratio
|
|
|
52522
52634
|
* @param {*} [options] Override http request option.
|
|
52523
52635
|
* @throws {RequiredError}
|
|
52524
52636
|
*/
|
|
52525
|
-
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
52637
|
+
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
52526
52638
|
};
|
|
52527
52639
|
/**
|
|
52528
52640
|
* Request parameters for deleteEventSessionSectionTranslation operation in EventsSessionsSectionsTranslationsApi.
|
|
@@ -52632,7 +52744,7 @@ export declare class EventsSessionsSectionsTranslationsApi extends BaseAPI {
|
|
|
52632
52744
|
* @param {*} [options] Override http request option.
|
|
52633
52745
|
* @throws {RequiredError}
|
|
52634
52746
|
*/
|
|
52635
|
-
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
52747
|
+
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
52636
52748
|
/**
|
|
52637
52749
|
* Get Event Session Section Translation endpoint
|
|
52638
52750
|
* @summary Get Event Session Section Translation
|
|
@@ -52656,7 +52768,7 @@ export declare class EventsSessionsSectionsTranslationsApi extends BaseAPI {
|
|
|
52656
52768
|
* @param {*} [options] Override http request option.
|
|
52657
52769
|
* @throws {RequiredError}
|
|
52658
52770
|
*/
|
|
52659
|
-
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
52771
|
+
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
52660
52772
|
}
|
|
52661
52773
|
/**
|
|
52662
52774
|
* EventsSessionsTimesApi - axios parameter creator
|
|
@@ -52787,7 +52899,7 @@ export declare const EventsSessionsTimesApiFp: (configuration?: Configuration) =
|
|
|
52787
52899
|
* @param {*} [options] Override http request option.
|
|
52788
52900
|
* @throws {RequiredError}
|
|
52789
52901
|
*/
|
|
52790
|
-
deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
52902
|
+
deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
52791
52903
|
/**
|
|
52792
52904
|
* Get Event Session Time endpoint
|
|
52793
52905
|
* @summary Get Event Session Time
|
|
@@ -52875,7 +52987,7 @@ export declare const EventsSessionsTimesApiFactory: (configuration?: Configurati
|
|
|
52875
52987
|
* @param {*} [options] Override http request option.
|
|
52876
52988
|
* @throws {RequiredError}
|
|
52877
52989
|
*/
|
|
52878
|
-
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
52990
|
+
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
52879
52991
|
/**
|
|
52880
52992
|
* Get Event Session Time endpoint
|
|
52881
52993
|
* @summary Get Event Session Time
|
|
@@ -53114,7 +53226,7 @@ export declare class EventsSessionsTimesApi extends BaseAPI {
|
|
|
53114
53226
|
* @param {*} [options] Override http request option.
|
|
53115
53227
|
* @throws {RequiredError}
|
|
53116
53228
|
*/
|
|
53117
|
-
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53229
|
+
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53118
53230
|
/**
|
|
53119
53231
|
* Get Event Session Time endpoint
|
|
53120
53232
|
* @summary Get Event Session Time
|
|
@@ -53223,7 +53335,7 @@ export declare const EventsSessionsTimesTranslationsApiFp: (configuration?: Conf
|
|
|
53223
53335
|
* @param {*} [options] Override http request option.
|
|
53224
53336
|
* @throws {RequiredError}
|
|
53225
53337
|
*/
|
|
53226
|
-
deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53338
|
+
deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53227
53339
|
/**
|
|
53228
53340
|
* Get Event Session Time Translation endpoint
|
|
53229
53341
|
* @summary Get Event Session Time Translation
|
|
@@ -53260,7 +53372,7 @@ export declare const EventsSessionsTimesTranslationsApiFp: (configuration?: Conf
|
|
|
53260
53372
|
* @param {*} [options] Override http request option.
|
|
53261
53373
|
* @throws {RequiredError}
|
|
53262
53374
|
*/
|
|
53263
|
-
updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53375
|
+
updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53264
53376
|
};
|
|
53265
53377
|
/**
|
|
53266
53378
|
* EventsSessionsTimesTranslationsApi - factory interface
|
|
@@ -53273,7 +53385,7 @@ export declare const EventsSessionsTimesTranslationsApiFactory: (configuration?:
|
|
|
53273
53385
|
* @param {*} [options] Override http request option.
|
|
53274
53386
|
* @throws {RequiredError}
|
|
53275
53387
|
*/
|
|
53276
|
-
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53388
|
+
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53277
53389
|
/**
|
|
53278
53390
|
* Get Event Session Time Translation endpoint
|
|
53279
53391
|
* @summary Get Event Session Time Translation
|
|
@@ -53297,7 +53409,7 @@ export declare const EventsSessionsTimesTranslationsApiFactory: (configuration?:
|
|
|
53297
53409
|
* @param {*} [options] Override http request option.
|
|
53298
53410
|
* @throws {RequiredError}
|
|
53299
53411
|
*/
|
|
53300
|
-
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53412
|
+
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53301
53413
|
};
|
|
53302
53414
|
/**
|
|
53303
53415
|
* Request parameters for deleteEventSessionTimeTranslation operation in EventsSessionsTimesTranslationsApi.
|
|
@@ -53407,7 +53519,7 @@ export declare class EventsSessionsTimesTranslationsApi extends BaseAPI {
|
|
|
53407
53519
|
* @param {*} [options] Override http request option.
|
|
53408
53520
|
* @throws {RequiredError}
|
|
53409
53521
|
*/
|
|
53410
|
-
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53522
|
+
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53411
53523
|
/**
|
|
53412
53524
|
* Get Event Session Time Translation endpoint
|
|
53413
53525
|
* @summary Get Event Session Time Translation
|
|
@@ -53431,7 +53543,7 @@ export declare class EventsSessionsTimesTranslationsApi extends BaseAPI {
|
|
|
53431
53543
|
* @param {*} [options] Override http request option.
|
|
53432
53544
|
* @throws {RequiredError}
|
|
53433
53545
|
*/
|
|
53434
|
-
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53546
|
+
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53435
53547
|
}
|
|
53436
53548
|
/**
|
|
53437
53549
|
* EventsSessionsTranslationsApi - axios parameter creator
|
|
@@ -53495,7 +53607,7 @@ export declare const EventsSessionsTranslationsApiFp: (configuration?: Configura
|
|
|
53495
53607
|
* @param {*} [options] Override http request option.
|
|
53496
53608
|
* @throws {RequiredError}
|
|
53497
53609
|
*/
|
|
53498
|
-
deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53610
|
+
deleteEventSessionTranslation(eventId: string, sessionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53499
53611
|
/**
|
|
53500
53612
|
* Get Event Session Translation endpoint
|
|
53501
53613
|
* @summary Get Event Session Translation
|
|
@@ -53529,7 +53641,7 @@ export declare const EventsSessionsTranslationsApiFp: (configuration?: Configura
|
|
|
53529
53641
|
* @param {*} [options] Override http request option.
|
|
53530
53642
|
* @throws {RequiredError}
|
|
53531
53643
|
*/
|
|
53532
|
-
updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
53644
|
+
updateEventSessionTranslation(eventId: string, sessionId: string, locale: string, eventSessionTranslationUpdateInputs: EventSessionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
53533
53645
|
};
|
|
53534
53646
|
/**
|
|
53535
53647
|
* EventsSessionsTranslationsApi - factory interface
|
|
@@ -53542,7 +53654,7 @@ export declare const EventsSessionsTranslationsApiFactory: (configuration?: Conf
|
|
|
53542
53654
|
* @param {*} [options] Override http request option.
|
|
53543
53655
|
* @throws {RequiredError}
|
|
53544
53656
|
*/
|
|
53545
|
-
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53657
|
+
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53546
53658
|
/**
|
|
53547
53659
|
* Get Event Session Translation endpoint
|
|
53548
53660
|
* @summary Get Event Session Translation
|
|
@@ -53566,7 +53678,7 @@ export declare const EventsSessionsTranslationsApiFactory: (configuration?: Conf
|
|
|
53566
53678
|
* @param {*} [options] Override http request option.
|
|
53567
53679
|
* @throws {RequiredError}
|
|
53568
53680
|
*/
|
|
53569
|
-
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
53681
|
+
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
53570
53682
|
};
|
|
53571
53683
|
/**
|
|
53572
53684
|
* Request parameters for deleteEventSessionTranslation operation in EventsSessionsTranslationsApi.
|
|
@@ -53660,7 +53772,7 @@ export declare class EventsSessionsTranslationsApi extends BaseAPI {
|
|
|
53660
53772
|
* @param {*} [options] Override http request option.
|
|
53661
53773
|
* @throws {RequiredError}
|
|
53662
53774
|
*/
|
|
53663
|
-
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53775
|
+
deleteEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiDeleteEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53664
53776
|
/**
|
|
53665
53777
|
* Get Event Session Translation endpoint
|
|
53666
53778
|
* @summary Get Event Session Translation
|
|
@@ -53684,7 +53796,7 @@ export declare class EventsSessionsTranslationsApi extends BaseAPI {
|
|
|
53684
53796
|
* @param {*} [options] Override http request option.
|
|
53685
53797
|
* @throws {RequiredError}
|
|
53686
53798
|
*/
|
|
53687
|
-
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
53799
|
+
updateEventSessionTranslation(requestParameters: EventsSessionsTranslationsApiUpdateEventSessionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
53688
53800
|
}
|
|
53689
53801
|
/**
|
|
53690
53802
|
* EventsSpeakersApi - axios parameter creator
|
|
@@ -54201,7 +54313,7 @@ export declare const EventsSpeakersTranslationsApiFp: (configuration?: Configura
|
|
|
54201
54313
|
* @param {*} [options] Override http request option.
|
|
54202
54314
|
* @throws {RequiredError}
|
|
54203
54315
|
*/
|
|
54204
|
-
deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
54316
|
+
deleteEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
54205
54317
|
/**
|
|
54206
54318
|
* Get Event Speaker Translation endpoint
|
|
54207
54319
|
* @summary Get Event Speaker Translation
|
|
@@ -54235,7 +54347,7 @@ export declare const EventsSpeakersTranslationsApiFp: (configuration?: Configura
|
|
|
54235
54347
|
* @param {*} [options] Override http request option.
|
|
54236
54348
|
* @throws {RequiredError}
|
|
54237
54349
|
*/
|
|
54238
|
-
updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
54350
|
+
updateEventSpeakerTranslation(eventId: string, speakerId: string, locale: string, eventSpeakerTranslationUpdateInputs: EventSpeakerTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
54239
54351
|
};
|
|
54240
54352
|
/**
|
|
54241
54353
|
* EventsSpeakersTranslationsApi - factory interface
|
|
@@ -54248,7 +54360,7 @@ export declare const EventsSpeakersTranslationsApiFactory: (configuration?: Conf
|
|
|
54248
54360
|
* @param {*} [options] Override http request option.
|
|
54249
54361
|
* @throws {RequiredError}
|
|
54250
54362
|
*/
|
|
54251
|
-
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
54363
|
+
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
54252
54364
|
/**
|
|
54253
54365
|
* Get Event Speaker Translation endpoint
|
|
54254
54366
|
* @summary Get Event Speaker Translation
|
|
@@ -54272,7 +54384,7 @@ export declare const EventsSpeakersTranslationsApiFactory: (configuration?: Conf
|
|
|
54272
54384
|
* @param {*} [options] Override http request option.
|
|
54273
54385
|
* @throws {RequiredError}
|
|
54274
54386
|
*/
|
|
54275
|
-
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
54387
|
+
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
54276
54388
|
};
|
|
54277
54389
|
/**
|
|
54278
54390
|
* Request parameters for deleteEventSpeakerTranslation operation in EventsSpeakersTranslationsApi.
|
|
@@ -54366,7 +54478,7 @@ export declare class EventsSpeakersTranslationsApi extends BaseAPI {
|
|
|
54366
54478
|
* @param {*} [options] Override http request option.
|
|
54367
54479
|
* @throws {RequiredError}
|
|
54368
54480
|
*/
|
|
54369
|
-
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
54481
|
+
deleteEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiDeleteEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
54370
54482
|
/**
|
|
54371
54483
|
* Get Event Speaker Translation endpoint
|
|
54372
54484
|
* @summary Get Event Speaker Translation
|
|
@@ -54390,7 +54502,7 @@ export declare class EventsSpeakersTranslationsApi extends BaseAPI {
|
|
|
54390
54502
|
* @param {*} [options] Override http request option.
|
|
54391
54503
|
* @throws {RequiredError}
|
|
54392
54504
|
*/
|
|
54393
|
-
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
54505
|
+
updateEventSpeakerTranslation(requestParameters: EventsSpeakersTranslationsApiUpdateEventSpeakerTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
54394
54506
|
}
|
|
54395
54507
|
/**
|
|
54396
54508
|
* EventsSponsorsApi - axios parameter creator
|
|
@@ -56622,7 +56734,7 @@ export declare const EventsTracksTranslationsApiFp: (configuration?: Configurati
|
|
|
56622
56734
|
* @param {*} [options] Override http request option.
|
|
56623
56735
|
* @throws {RequiredError}
|
|
56624
56736
|
*/
|
|
56625
|
-
deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
56737
|
+
deleteEventTrackTranslation(eventId: string, trackId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56626
56738
|
/**
|
|
56627
56739
|
* Get Event Track Translation endpoint
|
|
56628
56740
|
* @summary Get Event Track Translation
|
|
@@ -56656,7 +56768,7 @@ export declare const EventsTracksTranslationsApiFp: (configuration?: Configurati
|
|
|
56656
56768
|
* @param {*} [options] Override http request option.
|
|
56657
56769
|
* @throws {RequiredError}
|
|
56658
56770
|
*/
|
|
56659
|
-
updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
56771
|
+
updateEventTrackTranslation(eventId: string, trackId: string, locale: string, eventTrackTranslationUpdateInputs: EventTrackTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56660
56772
|
};
|
|
56661
56773
|
/**
|
|
56662
56774
|
* EventsTracksTranslationsApi - factory interface
|
|
@@ -56669,7 +56781,7 @@ export declare const EventsTracksTranslationsApiFactory: (configuration?: Config
|
|
|
56669
56781
|
* @param {*} [options] Override http request option.
|
|
56670
56782
|
* @throws {RequiredError}
|
|
56671
56783
|
*/
|
|
56672
|
-
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
56784
|
+
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56673
56785
|
/**
|
|
56674
56786
|
* Get Event Track Translation endpoint
|
|
56675
56787
|
* @summary Get Event Track Translation
|
|
@@ -56693,7 +56805,7 @@ export declare const EventsTracksTranslationsApiFactory: (configuration?: Config
|
|
|
56693
56805
|
* @param {*} [options] Override http request option.
|
|
56694
56806
|
* @throws {RequiredError}
|
|
56695
56807
|
*/
|
|
56696
|
-
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
56808
|
+
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56697
56809
|
};
|
|
56698
56810
|
/**
|
|
56699
56811
|
* Request parameters for deleteEventTrackTranslation operation in EventsTracksTranslationsApi.
|
|
@@ -56787,7 +56899,7 @@ export declare class EventsTracksTranslationsApi extends BaseAPI {
|
|
|
56787
56899
|
* @param {*} [options] Override http request option.
|
|
56788
56900
|
* @throws {RequiredError}
|
|
56789
56901
|
*/
|
|
56790
|
-
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
56902
|
+
deleteEventTrackTranslation(requestParameters: EventsTracksTranslationsApiDeleteEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
56791
56903
|
/**
|
|
56792
56904
|
* Get Event Track Translation endpoint
|
|
56793
56905
|
* @summary Get Event Track Translation
|
|
@@ -56811,7 +56923,7 @@ export declare class EventsTracksTranslationsApi extends BaseAPI {
|
|
|
56811
56923
|
* @param {*} [options] Override http request option.
|
|
56812
56924
|
* @throws {RequiredError}
|
|
56813
56925
|
*/
|
|
56814
|
-
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
56926
|
+
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
56815
56927
|
}
|
|
56816
56928
|
/**
|
|
56817
56929
|
* EventsTranslationsApi - axios parameter creator
|
|
@@ -56870,7 +56982,7 @@ export declare const EventsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
56870
56982
|
* @param {*} [options] Override http request option.
|
|
56871
56983
|
* @throws {RequiredError}
|
|
56872
56984
|
*/
|
|
56873
|
-
deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
56985
|
+
deleteEventTranslation(eventId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56874
56986
|
/**
|
|
56875
56987
|
* Get Event Translation endpoint
|
|
56876
56988
|
* @summary Get Event Translation
|
|
@@ -56901,7 +57013,7 @@ export declare const EventsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
56901
57013
|
* @param {*} [options] Override http request option.
|
|
56902
57014
|
* @throws {RequiredError}
|
|
56903
57015
|
*/
|
|
56904
|
-
updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
57016
|
+
updateEventTranslation(eventId: string, locale: string, eventTranslationUpdateInputs: EventTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
56905
57017
|
};
|
|
56906
57018
|
/**
|
|
56907
57019
|
* EventsTranslationsApi - factory interface
|
|
@@ -56914,7 +57026,7 @@ export declare const EventsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
56914
57026
|
* @param {*} [options] Override http request option.
|
|
56915
57027
|
* @throws {RequiredError}
|
|
56916
57028
|
*/
|
|
56917
|
-
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
57029
|
+
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56918
57030
|
/**
|
|
56919
57031
|
* Get Event Translation endpoint
|
|
56920
57032
|
* @summary Get Event Translation
|
|
@@ -56938,7 +57050,7 @@ export declare const EventsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
56938
57050
|
* @param {*} [options] Override http request option.
|
|
56939
57051
|
* @throws {RequiredError}
|
|
56940
57052
|
*/
|
|
56941
|
-
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
57053
|
+
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
56942
57054
|
};
|
|
56943
57055
|
/**
|
|
56944
57056
|
* Request parameters for deleteEventTranslation operation in EventsTranslationsApi.
|
|
@@ -57016,7 +57128,7 @@ export declare class EventsTranslationsApi extends BaseAPI {
|
|
|
57016
57128
|
* @param {*} [options] Override http request option.
|
|
57017
57129
|
* @throws {RequiredError}
|
|
57018
57130
|
*/
|
|
57019
|
-
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
57131
|
+
deleteEventTranslation(requestParameters: EventsTranslationsApiDeleteEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
57020
57132
|
/**
|
|
57021
57133
|
* Get Event Translation endpoint
|
|
57022
57134
|
* @summary Get Event Translation
|
|
@@ -57040,7 +57152,7 @@ export declare class EventsTranslationsApi extends BaseAPI {
|
|
|
57040
57152
|
* @param {*} [options] Override http request option.
|
|
57041
57153
|
* @throws {RequiredError}
|
|
57042
57154
|
*/
|
|
57043
|
-
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
57155
|
+
updateEventTranslation(requestParameters: EventsTranslationsApiUpdateEventTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
57044
57156
|
}
|
|
57045
57157
|
/**
|
|
57046
57158
|
* FilesApi - axios parameter creator
|
|
@@ -59158,7 +59270,7 @@ export declare const GroupsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
59158
59270
|
* @param {*} [options] Override http request option.
|
|
59159
59271
|
* @throws {RequiredError}
|
|
59160
59272
|
*/
|
|
59161
|
-
deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
59273
|
+
deleteGroupTranslation(groupId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
59162
59274
|
/**
|
|
59163
59275
|
* Get Group Translation endpoint
|
|
59164
59276
|
* @summary Get Group Translation
|
|
@@ -59189,7 +59301,7 @@ export declare const GroupsTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
59189
59301
|
* @param {*} [options] Override http request option.
|
|
59190
59302
|
* @throws {RequiredError}
|
|
59191
59303
|
*/
|
|
59192
|
-
updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
59304
|
+
updateGroupTranslation(groupId: string, locale: string, groupTranslationUpdateInputs: GroupTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
59193
59305
|
};
|
|
59194
59306
|
/**
|
|
59195
59307
|
* GroupsTranslationsApi - factory interface
|
|
@@ -59202,7 +59314,7 @@ export declare const GroupsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
59202
59314
|
* @param {*} [options] Override http request option.
|
|
59203
59315
|
* @throws {RequiredError}
|
|
59204
59316
|
*/
|
|
59205
|
-
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
59317
|
+
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
59206
59318
|
/**
|
|
59207
59319
|
* Get Group Translation endpoint
|
|
59208
59320
|
* @summary Get Group Translation
|
|
@@ -59226,7 +59338,7 @@ export declare const GroupsTranslationsApiFactory: (configuration?: Configuratio
|
|
|
59226
59338
|
* @param {*} [options] Override http request option.
|
|
59227
59339
|
* @throws {RequiredError}
|
|
59228
59340
|
*/
|
|
59229
|
-
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
59341
|
+
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
59230
59342
|
};
|
|
59231
59343
|
/**
|
|
59232
59344
|
* Request parameters for deleteGroupTranslation operation in GroupsTranslationsApi.
|
|
@@ -59304,7 +59416,7 @@ export declare class GroupsTranslationsApi extends BaseAPI {
|
|
|
59304
59416
|
* @param {*} [options] Override http request option.
|
|
59305
59417
|
* @throws {RequiredError}
|
|
59306
59418
|
*/
|
|
59307
|
-
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
59419
|
+
deleteGroupTranslation(requestParameters: GroupsTranslationsApiDeleteGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
59308
59420
|
/**
|
|
59309
59421
|
* Get Group Translation endpoint
|
|
59310
59422
|
* @summary Get Group Translation
|
|
@@ -59328,7 +59440,7 @@ export declare class GroupsTranslationsApi extends BaseAPI {
|
|
|
59328
59440
|
* @param {*} [options] Override http request option.
|
|
59329
59441
|
* @throws {RequiredError}
|
|
59330
59442
|
*/
|
|
59331
|
-
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
59443
|
+
updateGroupTranslation(requestParameters: GroupsTranslationsApiUpdateGroupTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
59332
59444
|
}
|
|
59333
59445
|
/**
|
|
59334
59446
|
* ImportsApi - axios parameter creator
|
|
@@ -62495,7 +62607,7 @@ export declare const MeetingsParticipantsApiFp: (configuration?: Configuration)
|
|
|
62495
62607
|
* @param {*} [options] Override http request option.
|
|
62496
62608
|
* @throws {RequiredError}
|
|
62497
62609
|
*/
|
|
62498
|
-
createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
62610
|
+
createMeetingParticipant(meetingId: string, meetingParticipantCreateInputs: MeetingParticipantCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
62499
62611
|
/**
|
|
62500
62612
|
* Delete Meeting Participant endpoint
|
|
62501
62613
|
* @summary Delete Meeting Participant
|
|
@@ -62534,7 +62646,7 @@ export declare const MeetingsParticipantsApiFp: (configuration?: Configuration)
|
|
|
62534
62646
|
* @param {*} [options] Override http request option.
|
|
62535
62647
|
* @throws {RequiredError}
|
|
62536
62648
|
*/
|
|
62537
|
-
regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
62649
|
+
regenerateMeetingParticipantToken(meetingId: string, participantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
62538
62650
|
/**
|
|
62539
62651
|
* Update Meeting Participant endpoint
|
|
62540
62652
|
* @summary Update Meeting Participant
|
|
@@ -62557,7 +62669,7 @@ export declare const MeetingsParticipantsApiFactory: (configuration?: Configurat
|
|
|
62557
62669
|
* @param {*} [options] Override http request option.
|
|
62558
62670
|
* @throws {RequiredError}
|
|
62559
62671
|
*/
|
|
62560
|
-
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
62672
|
+
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
62561
62673
|
/**
|
|
62562
62674
|
* Delete Meeting Participant endpoint
|
|
62563
62675
|
* @summary Delete Meeting Participant
|
|
@@ -62589,7 +62701,7 @@ export declare const MeetingsParticipantsApiFactory: (configuration?: Configurat
|
|
|
62589
62701
|
* @param {*} [options] Override http request option.
|
|
62590
62702
|
* @throws {RequiredError}
|
|
62591
62703
|
*/
|
|
62592
|
-
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
62704
|
+
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
62593
62705
|
/**
|
|
62594
62706
|
* Update Meeting Participant endpoint
|
|
62595
62707
|
* @summary Update Meeting Participant
|
|
@@ -62698,7 +62810,7 @@ export declare class MeetingsParticipantsApi extends BaseAPI {
|
|
|
62698
62810
|
* @param {*} [options] Override http request option.
|
|
62699
62811
|
* @throws {RequiredError}
|
|
62700
62812
|
*/
|
|
62701
|
-
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
62813
|
+
createMeetingParticipant(requestParameters: MeetingsParticipantsApiCreateMeetingParticipantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
62702
62814
|
/**
|
|
62703
62815
|
* Delete Meeting Participant endpoint
|
|
62704
62816
|
* @summary Delete Meeting Participant
|
|
@@ -62730,7 +62842,7 @@ export declare class MeetingsParticipantsApi extends BaseAPI {
|
|
|
62730
62842
|
* @param {*} [options] Override http request option.
|
|
62731
62843
|
* @throws {RequiredError}
|
|
62732
62844
|
*/
|
|
62733
|
-
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
62845
|
+
regenerateMeetingParticipantToken(requestParameters: MeetingsParticipantsApiRegenerateMeetingParticipantTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
62734
62846
|
/**
|
|
62735
62847
|
* Update Meeting Participant endpoint
|
|
62736
62848
|
* @summary Update Meeting Participant
|
|
@@ -63198,7 +63310,7 @@ export declare const MeetingsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
63198
63310
|
* @param {*} [options] Override http request option.
|
|
63199
63311
|
* @throws {RequiredError}
|
|
63200
63312
|
*/
|
|
63201
|
-
generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
63313
|
+
generateMeetingSessionSummary(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
63202
63314
|
/**
|
|
63203
63315
|
* Get Meeting Session endpoint
|
|
63204
63316
|
* @summary Get Meeting Session
|
|
@@ -63276,7 +63388,7 @@ export declare const MeetingsSessionsApiFactory: (configuration?: Configuration,
|
|
|
63276
63388
|
* @param {*} [options] Override http request option.
|
|
63277
63389
|
* @throws {RequiredError}
|
|
63278
63390
|
*/
|
|
63279
|
-
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
63391
|
+
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
63280
63392
|
/**
|
|
63281
63393
|
* Get Meeting Session endpoint
|
|
63282
63394
|
* @summary Get Meeting Session
|
|
@@ -63453,7 +63565,7 @@ export declare class MeetingsSessionsApi extends BaseAPI {
|
|
|
63453
63565
|
* @param {*} [options] Override http request option.
|
|
63454
63566
|
* @throws {RequiredError}
|
|
63455
63567
|
*/
|
|
63456
|
-
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63568
|
+
generateMeetingSessionSummary(requestParameters: MeetingsSessionsApiGenerateMeetingSessionSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
63457
63569
|
/**
|
|
63458
63570
|
* Get Meeting Session endpoint
|
|
63459
63571
|
* @summary Get Meeting Session
|
|
@@ -63562,7 +63674,7 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
63562
63674
|
* @param {*} [options] Override http request option.
|
|
63563
63675
|
* @throws {RequiredError}
|
|
63564
63676
|
*/
|
|
63565
|
-
getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
63677
|
+
getNotificationCount(filters?: NotificationFilters, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
63566
63678
|
/**
|
|
63567
63679
|
* Get Notification Stats endpoint
|
|
63568
63680
|
* @summary Get Notification Stats
|
|
@@ -63589,7 +63701,7 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
63589
63701
|
* @param {*} [options] Override http request option.
|
|
63590
63702
|
* @throws {RequiredError}
|
|
63591
63703
|
*/
|
|
63592
|
-
markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
63704
|
+
markNotificationsRead(notificationIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
63593
63705
|
};
|
|
63594
63706
|
/**
|
|
63595
63707
|
* NotificationsApi - factory interface
|
|
@@ -63602,7 +63714,7 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
63602
63714
|
* @param {*} [options] Override http request option.
|
|
63603
63715
|
* @throws {RequiredError}
|
|
63604
63716
|
*/
|
|
63605
|
-
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
63717
|
+
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
63606
63718
|
/**
|
|
63607
63719
|
* Get Notification Stats endpoint
|
|
63608
63720
|
* @summary Get Notification Stats
|
|
@@ -63625,7 +63737,7 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
63625
63737
|
* @param {*} [options] Override http request option.
|
|
63626
63738
|
* @throws {RequiredError}
|
|
63627
63739
|
*/
|
|
63628
|
-
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
63740
|
+
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
63629
63741
|
};
|
|
63630
63742
|
/**
|
|
63631
63743
|
* Request parameters for getNotificationCount operation in NotificationsApi.
|
|
@@ -63681,7 +63793,7 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
63681
63793
|
* @param {*} [options] Override http request option.
|
|
63682
63794
|
* @throws {RequiredError}
|
|
63683
63795
|
*/
|
|
63684
|
-
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63796
|
+
getNotificationCount(requestParameters?: NotificationsApiGetNotificationCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
63685
63797
|
/**
|
|
63686
63798
|
* Get Notification Stats endpoint
|
|
63687
63799
|
* @summary Get Notification Stats
|
|
@@ -63704,7 +63816,7 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
63704
63816
|
* @param {*} [options] Override http request option.
|
|
63705
63817
|
* @throws {RequiredError}
|
|
63706
63818
|
*/
|
|
63707
|
-
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63819
|
+
markNotificationsRead(requestParameters: NotificationsApiMarkNotificationsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
63708
63820
|
}
|
|
63709
63821
|
/**
|
|
63710
63822
|
* OrganizationApi - axios parameter creator
|
|
@@ -65563,7 +65675,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFp: (configuratio
|
|
|
65563
65675
|
* @param {*} [options] Override http request option.
|
|
65564
65676
|
* @throws {RequiredError}
|
|
65565
65677
|
*/
|
|
65566
|
-
deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
65678
|
+
deleteOrganizationModuleSettingsTranslation(locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
65567
65679
|
/**
|
|
65568
65680
|
* Get Organization Module Settings Translation endpoint
|
|
65569
65681
|
* @summary Get Organization Module Settings Translation
|
|
@@ -65591,7 +65703,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFp: (configuratio
|
|
|
65591
65703
|
* @param {*} [options] Override http request option.
|
|
65592
65704
|
* @throws {RequiredError}
|
|
65593
65705
|
*/
|
|
65594
|
-
updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
65706
|
+
updateOrganizationModuleSettingsTranslation(locale: string, organizationModuleSettingsTranslationUpdateInputs: OrganizationModuleSettingsTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
65595
65707
|
};
|
|
65596
65708
|
/**
|
|
65597
65709
|
* OrganizationModulesSettingsTranslationsApi - factory interface
|
|
@@ -65604,7 +65716,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFactory: (configu
|
|
|
65604
65716
|
* @param {*} [options] Override http request option.
|
|
65605
65717
|
* @throws {RequiredError}
|
|
65606
65718
|
*/
|
|
65607
|
-
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
65719
|
+
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
65608
65720
|
/**
|
|
65609
65721
|
* Get Organization Module Settings Translation endpoint
|
|
65610
65722
|
* @summary Get Organization Module Settings Translation
|
|
@@ -65628,7 +65740,7 @@ export declare const OrganizationModulesSettingsTranslationsApiFactory: (configu
|
|
|
65628
65740
|
* @param {*} [options] Override http request option.
|
|
65629
65741
|
* @throws {RequiredError}
|
|
65630
65742
|
*/
|
|
65631
|
-
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
65743
|
+
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
65632
65744
|
};
|
|
65633
65745
|
/**
|
|
65634
65746
|
* Request parameters for deleteOrganizationModuleSettingsTranslation operation in OrganizationModulesSettingsTranslationsApi.
|
|
@@ -65690,7 +65802,7 @@ export declare class OrganizationModulesSettingsTranslationsApi extends BaseAPI
|
|
|
65690
65802
|
* @param {*} [options] Override http request option.
|
|
65691
65803
|
* @throws {RequiredError}
|
|
65692
65804
|
*/
|
|
65693
|
-
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
65805
|
+
deleteOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiDeleteOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
65694
65806
|
/**
|
|
65695
65807
|
* Get Organization Module Settings Translation endpoint
|
|
65696
65808
|
* @summary Get Organization Module Settings Translation
|
|
@@ -65714,7 +65826,7 @@ export declare class OrganizationModulesSettingsTranslationsApi extends BaseAPI
|
|
|
65714
65826
|
* @param {*} [options] Override http request option.
|
|
65715
65827
|
* @throws {RequiredError}
|
|
65716
65828
|
*/
|
|
65717
|
-
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
65829
|
+
updateOrganizationModuleSettingsTranslation(requestParameters: OrganizationModulesSettingsTranslationsApiUpdateOrganizationModuleSettingsTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
65718
65830
|
}
|
|
65719
65831
|
/**
|
|
65720
65832
|
* OrganizationModulesTiersApi - axios parameter creator
|
|
@@ -66167,7 +66279,7 @@ export declare const OrganizationPaymentsApiFp: (configuration?: Configuration)
|
|
|
66167
66279
|
* @param {*} [options] Override http request option.
|
|
66168
66280
|
* @throws {RequiredError}
|
|
66169
66281
|
*/
|
|
66170
|
-
deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
66282
|
+
deleteOrganizationPaymentIntegration(integrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
66171
66283
|
/**
|
|
66172
66284
|
* Get Organization Payment Integration endpoint
|
|
66173
66285
|
* @summary Get Organization Payment Integration
|
|
@@ -66261,7 +66373,7 @@ export declare const OrganizationPaymentsApiFactory: (configuration?: Configurat
|
|
|
66261
66373
|
* @param {*} [options] Override http request option.
|
|
66262
66374
|
* @throws {RequiredError}
|
|
66263
66375
|
*/
|
|
66264
|
-
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
66376
|
+
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
66265
66377
|
/**
|
|
66266
66378
|
* Get Organization Payment Integration endpoint
|
|
66267
66379
|
* @summary Get Organization Payment Integration
|
|
@@ -66463,7 +66575,7 @@ export declare class OrganizationPaymentsApi extends BaseAPI {
|
|
|
66463
66575
|
* @param {*} [options] Override http request option.
|
|
66464
66576
|
* @throws {RequiredError}
|
|
66465
66577
|
*/
|
|
66466
|
-
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
66578
|
+
deleteOrganizationPaymentIntegration(requestParameters: OrganizationPaymentsApiDeleteOrganizationPaymentIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
66467
66579
|
/**
|
|
66468
66580
|
* Get Organization Payment Integration endpoint
|
|
66469
66581
|
* @summary Get Organization Payment Integration
|
|
@@ -67362,7 +67474,7 @@ export declare const OrganizationTeammembersApiFp: (configuration?: Configuratio
|
|
|
67362
67474
|
* @param {*} [options] Override http request option.
|
|
67363
67475
|
* @throws {RequiredError}
|
|
67364
67476
|
*/
|
|
67365
|
-
getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
67477
|
+
getOrganizationTeamMember(teamMemberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
67366
67478
|
/**
|
|
67367
67479
|
* Get Organization Team Members endpoint
|
|
67368
67480
|
* @summary Get Organization Team Members
|
|
@@ -67411,7 +67523,7 @@ export declare const OrganizationTeammembersApiFactory: (configuration?: Configu
|
|
|
67411
67523
|
* @param {*} [options] Override http request option.
|
|
67412
67524
|
* @throws {RequiredError}
|
|
67413
67525
|
*/
|
|
67414
|
-
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
67526
|
+
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
67415
67527
|
/**
|
|
67416
67528
|
* Get Organization Team Members endpoint
|
|
67417
67529
|
* @summary Get Organization Team Members
|
|
@@ -67514,7 +67626,7 @@ export declare class OrganizationTeammembersApi extends BaseAPI {
|
|
|
67514
67626
|
* @param {*} [options] Override http request option.
|
|
67515
67627
|
* @throws {RequiredError}
|
|
67516
67628
|
*/
|
|
67517
|
-
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
67629
|
+
getOrganizationTeamMember(requestParameters: OrganizationTeammembersApiGetOrganizationTeamMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
67518
67630
|
/**
|
|
67519
67631
|
* Get Organization Team Members endpoint
|
|
67520
67632
|
* @summary Get Organization Team Members
|
|
@@ -71877,7 +71989,7 @@ export declare const SeriesTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
71877
71989
|
* @param {*} [options] Override http request option.
|
|
71878
71990
|
* @throws {RequiredError}
|
|
71879
71991
|
*/
|
|
71880
|
-
deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
71992
|
+
deleteSeriesTranslation(seriesId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
71881
71993
|
/**
|
|
71882
71994
|
* Get Series Translation endpoint
|
|
71883
71995
|
* @summary Get Series Translation
|
|
@@ -71908,7 +72020,7 @@ export declare const SeriesTranslationsApiFp: (configuration?: Configuration) =>
|
|
|
71908
72020
|
* @param {*} [options] Override http request option.
|
|
71909
72021
|
* @throws {RequiredError}
|
|
71910
72022
|
*/
|
|
71911
|
-
updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
72023
|
+
updateSeriesTranslation(seriesId: string, locale: string, seriesTranslationUpdateInputs: SeriesTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
71912
72024
|
};
|
|
71913
72025
|
/**
|
|
71914
72026
|
* SeriesTranslationsApi - factory interface
|
|
@@ -71921,7 +72033,7 @@ export declare const SeriesTranslationsApiFactory: (configuration?: Configuratio
|
|
|
71921
72033
|
* @param {*} [options] Override http request option.
|
|
71922
72034
|
* @throws {RequiredError}
|
|
71923
72035
|
*/
|
|
71924
|
-
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72036
|
+
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
71925
72037
|
/**
|
|
71926
72038
|
* Get Series Translation endpoint
|
|
71927
72039
|
* @summary Get Series Translation
|
|
@@ -71945,7 +72057,7 @@ export declare const SeriesTranslationsApiFactory: (configuration?: Configuratio
|
|
|
71945
72057
|
* @param {*} [options] Override http request option.
|
|
71946
72058
|
* @throws {RequiredError}
|
|
71947
72059
|
*/
|
|
71948
|
-
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72060
|
+
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
71949
72061
|
};
|
|
71950
72062
|
/**
|
|
71951
72063
|
* Request parameters for deleteSeriesTranslation operation in SeriesTranslationsApi.
|
|
@@ -72023,7 +72135,7 @@ export declare class SeriesTranslationsApi extends BaseAPI {
|
|
|
72023
72135
|
* @param {*} [options] Override http request option.
|
|
72024
72136
|
* @throws {RequiredError}
|
|
72025
72137
|
*/
|
|
72026
|
-
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72138
|
+
deleteSeriesTranslation(requestParameters: SeriesTranslationsApiDeleteSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72027
72139
|
/**
|
|
72028
72140
|
* Get Series Translation endpoint
|
|
72029
72141
|
* @summary Get Series Translation
|
|
@@ -72047,7 +72159,7 @@ export declare class SeriesTranslationsApi extends BaseAPI {
|
|
|
72047
72159
|
* @param {*} [options] Override http request option.
|
|
72048
72160
|
* @throws {RequiredError}
|
|
72049
72161
|
*/
|
|
72050
|
-
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72162
|
+
updateSeriesTranslation(requestParameters: SeriesTranslationsApiUpdateSeriesTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72051
72163
|
}
|
|
72052
72164
|
/**
|
|
72053
72165
|
* SponsorsApi - axios parameter creator
|
|
@@ -72531,7 +72643,7 @@ export declare const SponsorsTranslationsApiFp: (configuration?: Configuration)
|
|
|
72531
72643
|
* @param {*} [options] Override http request option.
|
|
72532
72644
|
* @throws {RequiredError}
|
|
72533
72645
|
*/
|
|
72534
|
-
deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
72646
|
+
deleteLevelTranslation(levelId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
72535
72647
|
/**
|
|
72536
72648
|
* Get Level Translation endpoint
|
|
72537
72649
|
* @summary Get Level Translation
|
|
@@ -72562,7 +72674,7 @@ export declare const SponsorsTranslationsApiFp: (configuration?: Configuration)
|
|
|
72562
72674
|
* @param {*} [options] Override http request option.
|
|
72563
72675
|
* @throws {RequiredError}
|
|
72564
72676
|
*/
|
|
72565
|
-
updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
72677
|
+
updateLevelTranslation(levelId: string, locale: string, levelTranslationUpdateInputs: LevelTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
72566
72678
|
};
|
|
72567
72679
|
/**
|
|
72568
72680
|
* SponsorsTranslationsApi - factory interface
|
|
@@ -72575,7 +72687,7 @@ export declare const SponsorsTranslationsApiFactory: (configuration?: Configurat
|
|
|
72575
72687
|
* @param {*} [options] Override http request option.
|
|
72576
72688
|
* @throws {RequiredError}
|
|
72577
72689
|
*/
|
|
72578
|
-
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72690
|
+
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
72579
72691
|
/**
|
|
72580
72692
|
* Get Level Translation endpoint
|
|
72581
72693
|
* @summary Get Level Translation
|
|
@@ -72599,7 +72711,7 @@ export declare const SponsorsTranslationsApiFactory: (configuration?: Configurat
|
|
|
72599
72711
|
* @param {*} [options] Override http request option.
|
|
72600
72712
|
* @throws {RequiredError}
|
|
72601
72713
|
*/
|
|
72602
|
-
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
72714
|
+
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
72603
72715
|
};
|
|
72604
72716
|
/**
|
|
72605
72717
|
* Request parameters for deleteLevelTranslation operation in SponsorsTranslationsApi.
|
|
@@ -72677,7 +72789,7 @@ export declare class SponsorsTranslationsApi extends BaseAPI {
|
|
|
72677
72789
|
* @param {*} [options] Override http request option.
|
|
72678
72790
|
* @throws {RequiredError}
|
|
72679
72791
|
*/
|
|
72680
|
-
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72792
|
+
deleteLevelTranslation(requestParameters: SponsorsTranslationsApiDeleteLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72681
72793
|
/**
|
|
72682
72794
|
* Get Level Translation endpoint
|
|
72683
72795
|
* @summary Get Level Translation
|
|
@@ -72701,7 +72813,7 @@ export declare class SponsorsTranslationsApi extends BaseAPI {
|
|
|
72701
72813
|
* @param {*} [options] Override http request option.
|
|
72702
72814
|
* @throws {RequiredError}
|
|
72703
72815
|
*/
|
|
72704
|
-
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
72816
|
+
updateLevelTranslation(requestParameters: SponsorsTranslationsApiUpdateLevelTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
72705
72817
|
}
|
|
72706
72818
|
/**
|
|
72707
72819
|
* StorageFilesApi - axios parameter creator
|
|
@@ -73362,7 +73474,7 @@ export declare const StorageVideosApiFp: (configuration?: Configuration) => {
|
|
|
73362
73474
|
* @param {*} [options] Override http request option.
|
|
73363
73475
|
* @throws {RequiredError}
|
|
73364
73476
|
*/
|
|
73365
|
-
getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73477
|
+
getVideoDownloadStatus(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
73366
73478
|
/**
|
|
73367
73479
|
* Get Videos endpoint
|
|
73368
73480
|
* @summary Get Videos
|
|
@@ -73382,7 +73494,7 @@ export declare const StorageVideosApiFp: (configuration?: Configuration) => {
|
|
|
73382
73494
|
* @param {*} [options] Override http request option.
|
|
73383
73495
|
* @throws {RequiredError}
|
|
73384
73496
|
*/
|
|
73385
|
-
initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73497
|
+
initiateVideoDownload(videoId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
73386
73498
|
/**
|
|
73387
73499
|
* Update Video endpoint
|
|
73388
73500
|
* @summary Update Video
|
|
@@ -73428,7 +73540,7 @@ export declare const StorageVideosApiFactory: (configuration?: Configuration, ba
|
|
|
73428
73540
|
* @param {*} [options] Override http request option.
|
|
73429
73541
|
* @throws {RequiredError}
|
|
73430
73542
|
*/
|
|
73431
|
-
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
73543
|
+
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
73432
73544
|
/**
|
|
73433
73545
|
* Get Videos endpoint
|
|
73434
73546
|
* @summary Get Videos
|
|
@@ -73444,7 +73556,7 @@ export declare const StorageVideosApiFactory: (configuration?: Configuration, ba
|
|
|
73444
73556
|
* @param {*} [options] Override http request option.
|
|
73445
73557
|
* @throws {RequiredError}
|
|
73446
73558
|
*/
|
|
73447
|
-
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
73559
|
+
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
73448
73560
|
/**
|
|
73449
73561
|
* Update Video endpoint
|
|
73450
73562
|
* @summary Update Video
|
|
@@ -73566,7 +73678,7 @@ export declare class StorageVideosApi extends BaseAPI {
|
|
|
73566
73678
|
* @param {*} [options] Override http request option.
|
|
73567
73679
|
* @throws {RequiredError}
|
|
73568
73680
|
*/
|
|
73569
|
-
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
73681
|
+
getVideoDownloadStatus(requestParameters: StorageVideosApiGetVideoDownloadStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
73570
73682
|
/**
|
|
73571
73683
|
* Get Videos endpoint
|
|
73572
73684
|
* @summary Get Videos
|
|
@@ -73582,7 +73694,7 @@ export declare class StorageVideosApi extends BaseAPI {
|
|
|
73582
73694
|
* @param {*} [options] Override http request option.
|
|
73583
73695
|
* @throws {RequiredError}
|
|
73584
73696
|
*/
|
|
73585
|
-
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
73697
|
+
initiateVideoDownload(requestParameters: StorageVideosApiInitiateVideoDownloadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
73586
73698
|
/**
|
|
73587
73699
|
* Update Video endpoint
|
|
73588
73700
|
* @summary Update Video
|
|
@@ -73668,7 +73780,7 @@ export declare const StorageVideosCaptionsApiFp: (configuration?: Configuration)
|
|
|
73668
73780
|
* @param {*} [options] Override http request option.
|
|
73669
73781
|
* @throws {RequiredError}
|
|
73670
73782
|
*/
|
|
73671
|
-
downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
73783
|
+
downloadVideoCaption(videoId: string, language: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
73672
73784
|
/**
|
|
73673
73785
|
* Generate Video Captions endpoint
|
|
73674
73786
|
* @summary Generate Video Captions
|
|
@@ -73721,7 +73833,7 @@ export declare const StorageVideosCaptionsApiFactory: (configuration?: Configura
|
|
|
73721
73833
|
* @param {*} [options] Override http request option.
|
|
73722
73834
|
* @throws {RequiredError}
|
|
73723
73835
|
*/
|
|
73724
|
-
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
73836
|
+
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
73725
73837
|
/**
|
|
73726
73838
|
* Generate Video Captions endpoint
|
|
73727
73839
|
* @summary Generate Video Captions
|
|
@@ -73851,7 +73963,7 @@ export declare class StorageVideosCaptionsApi extends BaseAPI {
|
|
|
73851
73963
|
* @param {*} [options] Override http request option.
|
|
73852
73964
|
* @throws {RequiredError}
|
|
73853
73965
|
*/
|
|
73854
|
-
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
73966
|
+
downloadVideoCaption(requestParameters: StorageVideosCaptionsApiDownloadVideoCaptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
73855
73967
|
/**
|
|
73856
73968
|
* Generate Video Captions endpoint
|
|
73857
73969
|
* @summary Generate Video Captions
|
|
@@ -76302,7 +76414,7 @@ export declare const SurveysQuestionsApiFp: (configuration?: Configuration) => {
|
|
|
76302
76414
|
* @param {*} [options] Override http request option.
|
|
76303
76415
|
* @throws {RequiredError}
|
|
76304
76416
|
*/
|
|
76305
|
-
updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
76417
|
+
updateSurveyQuestionChoice(surveyId: string, questionId: string, choiceId: string, choice: SurveyQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
76306
76418
|
/**
|
|
76307
76419
|
* Update Survey Question Choice Sub Question endpoint
|
|
76308
76420
|
* @summary Update Survey Question Choice Sub Question
|
|
@@ -76463,7 +76575,7 @@ export declare const SurveysQuestionsApiFactory: (configuration?: Configuration,
|
|
|
76463
76575
|
* @param {*} [options] Override http request option.
|
|
76464
76576
|
* @throws {RequiredError}
|
|
76465
76577
|
*/
|
|
76466
|
-
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
76578
|
+
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
76467
76579
|
/**
|
|
76468
76580
|
* Update Survey Question Choice Sub Question endpoint
|
|
76469
76581
|
* @summary Update Survey Question Choice Sub Question
|
|
@@ -76994,7 +77106,7 @@ export declare class SurveysQuestionsApi extends BaseAPI {
|
|
|
76994
77106
|
* @param {*} [options] Override http request option.
|
|
76995
77107
|
* @throws {RequiredError}
|
|
76996
77108
|
*/
|
|
76997
|
-
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77109
|
+
updateSurveyQuestionChoice(requestParameters: SurveysQuestionsApiUpdateSurveyQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
76998
77110
|
/**
|
|
76999
77111
|
* Update Survey Question Choice Sub Question endpoint
|
|
77000
77112
|
* @summary Update Survey Question Choice Sub Question
|
|
@@ -77115,7 +77227,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77115
77227
|
* @param {*} [options] Override http request option.
|
|
77116
77228
|
* @throws {RequiredError}
|
|
77117
77229
|
*/
|
|
77118
|
-
deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77230
|
+
deleteSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77119
77231
|
/**
|
|
77120
77232
|
* Delete Survey Question Translation endpoint
|
|
77121
77233
|
* @summary Delete Survey Question Translation
|
|
@@ -77125,7 +77237,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77125
77237
|
* @param {*} [options] Override http request option.
|
|
77126
77238
|
* @throws {RequiredError}
|
|
77127
77239
|
*/
|
|
77128
|
-
deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77240
|
+
deleteSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77129
77241
|
/**
|
|
77130
77242
|
* Get Survey Question Choice Translation endpoint
|
|
77131
77243
|
* @summary Get Survey Question Choice Translation
|
|
@@ -77185,7 +77297,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77185
77297
|
* @param {*} [options] Override http request option.
|
|
77186
77298
|
* @throws {RequiredError}
|
|
77187
77299
|
*/
|
|
77188
|
-
updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77300
|
+
updateSurveyQuestionChoiceTranslation(surveyId: string, questionId: string, choiceId: string, locale: string, surveyQuestionChoiceTranslationUpdateInputs: SurveyQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77189
77301
|
/**
|
|
77190
77302
|
* Update Survey Question Translation endpoint
|
|
77191
77303
|
* @summary Update Survey Question Translation
|
|
@@ -77196,7 +77308,7 @@ export declare const SurveysQuestionsTranslationsApiFp: (configuration?: Configu
|
|
|
77196
77308
|
* @param {*} [options] Override http request option.
|
|
77197
77309
|
* @throws {RequiredError}
|
|
77198
77310
|
*/
|
|
77199
|
-
updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
77311
|
+
updateSurveyQuestionTranslation(surveyId: string, questionId: string, locale: string, surveyQuestionTranslationUpdateInputs: SurveyQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
77200
77312
|
};
|
|
77201
77313
|
/**
|
|
77202
77314
|
* SurveysQuestionsTranslationsApi - factory interface
|
|
@@ -77209,7 +77321,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77209
77321
|
* @param {*} [options] Override http request option.
|
|
77210
77322
|
* @throws {RequiredError}
|
|
77211
77323
|
*/
|
|
77212
|
-
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77324
|
+
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77213
77325
|
/**
|
|
77214
77326
|
* Delete Survey Question Translation endpoint
|
|
77215
77327
|
* @summary Delete Survey Question Translation
|
|
@@ -77217,7 +77329,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77217
77329
|
* @param {*} [options] Override http request option.
|
|
77218
77330
|
* @throws {RequiredError}
|
|
77219
77331
|
*/
|
|
77220
|
-
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77332
|
+
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77221
77333
|
/**
|
|
77222
77334
|
* Get Survey Question Choice Translation endpoint
|
|
77223
77335
|
* @summary Get Survey Question Choice Translation
|
|
@@ -77257,7 +77369,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77257
77369
|
* @param {*} [options] Override http request option.
|
|
77258
77370
|
* @throws {RequiredError}
|
|
77259
77371
|
*/
|
|
77260
|
-
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77372
|
+
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77261
77373
|
/**
|
|
77262
77374
|
* Update Survey Question Translation endpoint
|
|
77263
77375
|
* @summary Update Survey Question Translation
|
|
@@ -77265,7 +77377,7 @@ export declare const SurveysQuestionsTranslationsApiFactory: (configuration?: Co
|
|
|
77265
77377
|
* @param {*} [options] Override http request option.
|
|
77266
77378
|
* @throws {RequiredError}
|
|
77267
77379
|
*/
|
|
77268
|
-
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
77380
|
+
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
77269
77381
|
};
|
|
77270
77382
|
/**
|
|
77271
77383
|
* Request parameters for deleteSurveyQuestionChoiceTranslation operation in SurveysQuestionsTranslationsApi.
|
|
@@ -77456,7 +77568,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77456
77568
|
* @param {*} [options] Override http request option.
|
|
77457
77569
|
* @throws {RequiredError}
|
|
77458
77570
|
*/
|
|
77459
|
-
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77571
|
+
deleteSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77460
77572
|
/**
|
|
77461
77573
|
* Delete Survey Question Translation endpoint
|
|
77462
77574
|
* @summary Delete Survey Question Translation
|
|
@@ -77464,7 +77576,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77464
77576
|
* @param {*} [options] Override http request option.
|
|
77465
77577
|
* @throws {RequiredError}
|
|
77466
77578
|
*/
|
|
77467
|
-
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77579
|
+
deleteSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiDeleteSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77468
77580
|
/**
|
|
77469
77581
|
* Get Survey Question Choice Translation endpoint
|
|
77470
77582
|
* @summary Get Survey Question Choice Translation
|
|
@@ -77504,7 +77616,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77504
77616
|
* @param {*} [options] Override http request option.
|
|
77505
77617
|
* @throws {RequiredError}
|
|
77506
77618
|
*/
|
|
77507
|
-
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77619
|
+
updateSurveyQuestionChoiceTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77508
77620
|
/**
|
|
77509
77621
|
* Update Survey Question Translation endpoint
|
|
77510
77622
|
* @summary Update Survey Question Translation
|
|
@@ -77512,7 +77624,7 @@ export declare class SurveysQuestionsTranslationsApi extends BaseAPI {
|
|
|
77512
77624
|
* @param {*} [options] Override http request option.
|
|
77513
77625
|
* @throws {RequiredError}
|
|
77514
77626
|
*/
|
|
77515
|
-
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
77627
|
+
updateSurveyQuestionTranslation(requestParameters: SurveysQuestionsTranslationsApiUpdateSurveyQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
77516
77628
|
}
|
|
77517
77629
|
/**
|
|
77518
77630
|
* SurveysSectionsApi - axios parameter creator
|
|
@@ -78141,7 +78253,7 @@ export declare const SurveysSectionsTranslationsApiFp: (configuration?: Configur
|
|
|
78141
78253
|
* @param {*} [options] Override http request option.
|
|
78142
78254
|
* @throws {RequiredError}
|
|
78143
78255
|
*/
|
|
78144
|
-
deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
78256
|
+
deleteSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78145
78257
|
/**
|
|
78146
78258
|
* Get Survey Section Translation endpoint
|
|
78147
78259
|
* @summary Get Survey Section Translation
|
|
@@ -78175,7 +78287,7 @@ export declare const SurveysSectionsTranslationsApiFp: (configuration?: Configur
|
|
|
78175
78287
|
* @param {*} [options] Override http request option.
|
|
78176
78288
|
* @throws {RequiredError}
|
|
78177
78289
|
*/
|
|
78178
|
-
updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
78290
|
+
updateSurveySectionTranslation(surveyId: string, sectionId: string, locale: string, surveySectionTranslationUpdateInputs: SurveySectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78179
78291
|
};
|
|
78180
78292
|
/**
|
|
78181
78293
|
* SurveysSectionsTranslationsApi - factory interface
|
|
@@ -78188,7 +78300,7 @@ export declare const SurveysSectionsTranslationsApiFactory: (configuration?: Con
|
|
|
78188
78300
|
* @param {*} [options] Override http request option.
|
|
78189
78301
|
* @throws {RequiredError}
|
|
78190
78302
|
*/
|
|
78191
|
-
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
78303
|
+
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
78192
78304
|
/**
|
|
78193
78305
|
* Get Survey Section Translation endpoint
|
|
78194
78306
|
* @summary Get Survey Section Translation
|
|
@@ -78212,7 +78324,7 @@ export declare const SurveysSectionsTranslationsApiFactory: (configuration?: Con
|
|
|
78212
78324
|
* @param {*} [options] Override http request option.
|
|
78213
78325
|
* @throws {RequiredError}
|
|
78214
78326
|
*/
|
|
78215
|
-
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
78327
|
+
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
78216
78328
|
};
|
|
78217
78329
|
/**
|
|
78218
78330
|
* Request parameters for deleteSurveySectionTranslation operation in SurveysSectionsTranslationsApi.
|
|
@@ -78306,7 +78418,7 @@ export declare class SurveysSectionsTranslationsApi extends BaseAPI {
|
|
|
78306
78418
|
* @param {*} [options] Override http request option.
|
|
78307
78419
|
* @throws {RequiredError}
|
|
78308
78420
|
*/
|
|
78309
|
-
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
78421
|
+
deleteSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiDeleteSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
78310
78422
|
/**
|
|
78311
78423
|
* Get Survey Section Translation endpoint
|
|
78312
78424
|
* @summary Get Survey Section Translation
|
|
@@ -78330,7 +78442,7 @@ export declare class SurveysSectionsTranslationsApi extends BaseAPI {
|
|
|
78330
78442
|
* @param {*} [options] Override http request option.
|
|
78331
78443
|
* @throws {RequiredError}
|
|
78332
78444
|
*/
|
|
78333
|
-
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
78445
|
+
updateSurveySectionTranslation(requestParameters: SurveysSectionsTranslationsApiUpdateSurveySectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
78334
78446
|
}
|
|
78335
78447
|
/**
|
|
78336
78448
|
* SurveysSessionsApi - axios parameter creator
|
|
@@ -78936,7 +79048,7 @@ export declare const SurveysTranslationsApiFp: (configuration?: Configuration) =
|
|
|
78936
79048
|
* @param {*} [options] Override http request option.
|
|
78937
79049
|
* @throws {RequiredError}
|
|
78938
79050
|
*/
|
|
78939
|
-
deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
79051
|
+
deleteSurveyTranslation(surveyId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78940
79052
|
/**
|
|
78941
79053
|
* Get Survey Translation endpoint
|
|
78942
79054
|
* @summary Get Survey Translation
|
|
@@ -78967,7 +79079,7 @@ export declare const SurveysTranslationsApiFp: (configuration?: Configuration) =
|
|
|
78967
79079
|
* @param {*} [options] Override http request option.
|
|
78968
79080
|
* @throws {RequiredError}
|
|
78969
79081
|
*/
|
|
78970
|
-
updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
79082
|
+
updateSurveyTranslation(surveyId: string, locale: string, surveyTranslationUpdateInputs: SurveyTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
78971
79083
|
};
|
|
78972
79084
|
/**
|
|
78973
79085
|
* SurveysTranslationsApi - factory interface
|
|
@@ -78980,7 +79092,7 @@ export declare const SurveysTranslationsApiFactory: (configuration?: Configurati
|
|
|
78980
79092
|
* @param {*} [options] Override http request option.
|
|
78981
79093
|
* @throws {RequiredError}
|
|
78982
79094
|
*/
|
|
78983
|
-
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
79095
|
+
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
78984
79096
|
/**
|
|
78985
79097
|
* Get Survey Translation endpoint
|
|
78986
79098
|
* @summary Get Survey Translation
|
|
@@ -79004,7 +79116,7 @@ export declare const SurveysTranslationsApiFactory: (configuration?: Configurati
|
|
|
79004
79116
|
* @param {*} [options] Override http request option.
|
|
79005
79117
|
* @throws {RequiredError}
|
|
79006
79118
|
*/
|
|
79007
|
-
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
79119
|
+
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
79008
79120
|
};
|
|
79009
79121
|
/**
|
|
79010
79122
|
* Request parameters for deleteSurveyTranslation operation in SurveysTranslationsApi.
|
|
@@ -79082,7 +79194,7 @@ export declare class SurveysTranslationsApi extends BaseAPI {
|
|
|
79082
79194
|
* @param {*} [options] Override http request option.
|
|
79083
79195
|
* @throws {RequiredError}
|
|
79084
79196
|
*/
|
|
79085
|
-
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
79197
|
+
deleteSurveyTranslation(requestParameters: SurveysTranslationsApiDeleteSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
79086
79198
|
/**
|
|
79087
79199
|
* Get Survey Translation endpoint
|
|
79088
79200
|
* @summary Get Survey Translation
|
|
@@ -79106,7 +79218,7 @@ export declare class SurveysTranslationsApi extends BaseAPI {
|
|
|
79106
79218
|
* @param {*} [options] Override http request option.
|
|
79107
79219
|
* @throws {RequiredError}
|
|
79108
79220
|
*/
|
|
79109
|
-
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
79221
|
+
updateSurveyTranslation(requestParameters: SurveysTranslationsApiUpdateSurveyTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
79110
79222
|
}
|
|
79111
79223
|
/**
|
|
79112
79224
|
* ThreadsApi - axios parameter creator
|