@connectedxm/admin-sdk 7.2.2 → 7.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +2 -2
- package/README.md +4 -2
- package/api.ts +285 -28
- package/dist/api.d.ts +158 -27
- package/dist/api.js +195 -15
- package/dist/esm/api.d.ts +158 -27
- package/dist/esm/api.js +188 -8
- package/docs/AccountsApi.md +128 -0
- package/docs/Booking.md +2 -0
- package/docs/BookingsApi.md +4 -4
- package/docs/{GetBookingPlaceBookings200Response.md → GetAccountBookings200Response.md} +3 -3
- package/docs/{GetSupportTickets200Response.md → GetAccountSupportTickets200Response.md} +3 -3
- package/docs/SupportApi.md +2 -2
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2534,6 +2534,7 @@ export interface Booking {
|
|
|
2534
2534
|
'createdAt': string;
|
|
2535
2535
|
'updatedAt': string;
|
|
2536
2536
|
'responses'?: Array<BaseBookingQuestionResponse>;
|
|
2537
|
+
'place'?: BaseBookingPlace;
|
|
2537
2538
|
}
|
|
2538
2539
|
export interface BookingCreateInputs {
|
|
2539
2540
|
'accountId': string;
|
|
@@ -6141,6 +6142,15 @@ export interface GetAccountAddresses200Response {
|
|
|
6141
6142
|
export declare enum GetAccountAddresses200ResponseStatusEnum {
|
|
6142
6143
|
Ok = "ok"
|
|
6143
6144
|
}
|
|
6145
|
+
export interface GetAccountBookings200Response {
|
|
6146
|
+
'status': GetAccountBookings200ResponseStatusEnum;
|
|
6147
|
+
'message': string;
|
|
6148
|
+
'data': Array<Booking>;
|
|
6149
|
+
'count'?: number;
|
|
6150
|
+
}
|
|
6151
|
+
export declare enum GetAccountBookings200ResponseStatusEnum {
|
|
6152
|
+
Ok = "ok"
|
|
6153
|
+
}
|
|
6144
6154
|
export interface GetAccountEvents200Response {
|
|
6145
6155
|
'status': GetAccountEvents200ResponseStatusEnum;
|
|
6146
6156
|
'message': string;
|
|
@@ -6238,6 +6248,15 @@ export interface GetAccountRegistrations200Response {
|
|
|
6238
6248
|
export declare enum GetAccountRegistrations200ResponseStatusEnum {
|
|
6239
6249
|
Ok = "ok"
|
|
6240
6250
|
}
|
|
6251
|
+
export interface GetAccountSupportTickets200Response {
|
|
6252
|
+
'status': GetAccountSupportTickets200ResponseStatusEnum;
|
|
6253
|
+
'message': string;
|
|
6254
|
+
'data': Array<SupportTicket>;
|
|
6255
|
+
'count'?: number;
|
|
6256
|
+
}
|
|
6257
|
+
export declare enum GetAccountSupportTickets200ResponseStatusEnum {
|
|
6258
|
+
Ok = "ok"
|
|
6259
|
+
}
|
|
6241
6260
|
export interface GetAccountThreads200Response {
|
|
6242
6261
|
'status': GetAccountThreads200ResponseStatusEnum;
|
|
6243
6262
|
'message': string;
|
|
@@ -6378,15 +6397,6 @@ export interface GetBenefits200Response {
|
|
|
6378
6397
|
export declare enum GetBenefits200ResponseStatusEnum {
|
|
6379
6398
|
Ok = "ok"
|
|
6380
6399
|
}
|
|
6381
|
-
export interface GetBookingPlaceBookings200Response {
|
|
6382
|
-
'status': GetBookingPlaceBookings200ResponseStatusEnum;
|
|
6383
|
-
'message': string;
|
|
6384
|
-
'data': Array<Booking>;
|
|
6385
|
-
'count'?: number;
|
|
6386
|
-
}
|
|
6387
|
-
export declare enum GetBookingPlaceBookings200ResponseStatusEnum {
|
|
6388
|
-
Ok = "ok"
|
|
6389
|
-
}
|
|
6390
6400
|
export interface GetBookingPlaceTranslation200Response {
|
|
6391
6401
|
'status': GetBookingPlaceTranslation200ResponseStatusEnum;
|
|
6392
6402
|
'message': string;
|
|
@@ -8485,15 +8495,6 @@ export interface GetSupportTicketViewer200Response {
|
|
|
8485
8495
|
export declare enum GetSupportTicketViewer200ResponseStatusEnum {
|
|
8486
8496
|
Ok = "ok"
|
|
8487
8497
|
}
|
|
8488
|
-
export interface GetSupportTickets200Response {
|
|
8489
|
-
'status': GetSupportTickets200ResponseStatusEnum;
|
|
8490
|
-
'message': string;
|
|
8491
|
-
'data': Array<SupportTicket>;
|
|
8492
|
-
'count'?: number;
|
|
8493
|
-
}
|
|
8494
|
-
export declare enum GetSupportTickets200ResponseStatusEnum {
|
|
8495
|
-
Ok = "ok"
|
|
8496
|
-
}
|
|
8497
8498
|
export interface GetSurveyQuestionChoiceSubQuestions200Response {
|
|
8498
8499
|
'status': GetSurveyQuestionChoiceSubQuestions200ResponseStatusEnum;
|
|
8499
8500
|
'message': string;
|
|
@@ -12682,6 +12683,18 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12682
12683
|
* @throws {RequiredError}
|
|
12683
12684
|
*/
|
|
12684
12685
|
getAccountActivities: (accountId: string, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12686
|
+
/**
|
|
12687
|
+
* Get Account Bookings endpoint
|
|
12688
|
+
* @summary Get Account Bookings
|
|
12689
|
+
* @param {string} accountId The account identifier
|
|
12690
|
+
* @param {number} [page] Page number
|
|
12691
|
+
* @param {number} [pageSize] Number of items per page
|
|
12692
|
+
* @param {string} [orderBy] Field to order by
|
|
12693
|
+
* @param {string} [search] Search query
|
|
12694
|
+
* @param {*} [options] Override http request option.
|
|
12695
|
+
* @throws {RequiredError}
|
|
12696
|
+
*/
|
|
12697
|
+
getAccountBookings: (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12685
12698
|
/**
|
|
12686
12699
|
* Get Account Comments endpoint
|
|
12687
12700
|
* @summary Get Account Comments
|
|
@@ -12751,6 +12764,18 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12751
12764
|
* @throws {RequiredError}
|
|
12752
12765
|
*/
|
|
12753
12766
|
getAccountRegistrations: (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12767
|
+
/**
|
|
12768
|
+
* Get Account Support Tickets endpoint
|
|
12769
|
+
* @summary Get Account Support Tickets
|
|
12770
|
+
* @param {string} accountId The account identifier
|
|
12771
|
+
* @param {number} [page] Page number
|
|
12772
|
+
* @param {number} [pageSize] Number of items per page
|
|
12773
|
+
* @param {string} [orderBy] Field to order by
|
|
12774
|
+
* @param {string} [search] Search query
|
|
12775
|
+
* @param {*} [options] Override http request option.
|
|
12776
|
+
* @throws {RequiredError}
|
|
12777
|
+
*/
|
|
12778
|
+
getAccountSupportTickets: (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12754
12779
|
/**
|
|
12755
12780
|
* Get Account Threads endpoint
|
|
12756
12781
|
* @summary Get Account Threads
|
|
@@ -12880,6 +12905,18 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12880
12905
|
* @throws {RequiredError}
|
|
12881
12906
|
*/
|
|
12882
12907
|
getAccountActivities(accountId: string, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountActivities200Response>>;
|
|
12908
|
+
/**
|
|
12909
|
+
* Get Account Bookings endpoint
|
|
12910
|
+
* @summary Get Account Bookings
|
|
12911
|
+
* @param {string} accountId The account identifier
|
|
12912
|
+
* @param {number} [page] Page number
|
|
12913
|
+
* @param {number} [pageSize] Number of items per page
|
|
12914
|
+
* @param {string} [orderBy] Field to order by
|
|
12915
|
+
* @param {string} [search] Search query
|
|
12916
|
+
* @param {*} [options] Override http request option.
|
|
12917
|
+
* @throws {RequiredError}
|
|
12918
|
+
*/
|
|
12919
|
+
getAccountBookings(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountBookings200Response>>;
|
|
12883
12920
|
/**
|
|
12884
12921
|
* Get Account Comments endpoint
|
|
12885
12922
|
* @summary Get Account Comments
|
|
@@ -12949,6 +12986,18 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12949
12986
|
* @throws {RequiredError}
|
|
12950
12987
|
*/
|
|
12951
12988
|
getAccountRegistrations(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountRegistrations200Response>>;
|
|
12989
|
+
/**
|
|
12990
|
+
* Get Account Support Tickets endpoint
|
|
12991
|
+
* @summary Get Account Support Tickets
|
|
12992
|
+
* @param {string} accountId The account identifier
|
|
12993
|
+
* @param {number} [page] Page number
|
|
12994
|
+
* @param {number} [pageSize] Number of items per page
|
|
12995
|
+
* @param {string} [orderBy] Field to order by
|
|
12996
|
+
* @param {string} [search] Search query
|
|
12997
|
+
* @param {*} [options] Override http request option.
|
|
12998
|
+
* @throws {RequiredError}
|
|
12999
|
+
*/
|
|
13000
|
+
getAccountSupportTickets(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountSupportTickets200Response>>;
|
|
12952
13001
|
/**
|
|
12953
13002
|
* Get Account Threads endpoint
|
|
12954
13003
|
* @summary Get Account Threads
|
|
@@ -13068,6 +13117,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
13068
13117
|
* @throws {RequiredError}
|
|
13069
13118
|
*/
|
|
13070
13119
|
getAccountActivities(requestParameters: AccountsApiGetAccountActivitiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountActivities200Response>;
|
|
13120
|
+
/**
|
|
13121
|
+
* Get Account Bookings endpoint
|
|
13122
|
+
* @summary Get Account Bookings
|
|
13123
|
+
* @param {AccountsApiGetAccountBookingsRequest} requestParameters Request parameters.
|
|
13124
|
+
* @param {*} [options] Override http request option.
|
|
13125
|
+
* @throws {RequiredError}
|
|
13126
|
+
*/
|
|
13127
|
+
getAccountBookings(requestParameters: AccountsApiGetAccountBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountBookings200Response>;
|
|
13071
13128
|
/**
|
|
13072
13129
|
* Get Account Comments endpoint
|
|
13073
13130
|
* @summary Get Account Comments
|
|
@@ -13116,6 +13173,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
13116
13173
|
* @throws {RequiredError}
|
|
13117
13174
|
*/
|
|
13118
13175
|
getAccountRegistrations(requestParameters: AccountsApiGetAccountRegistrationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountRegistrations200Response>;
|
|
13176
|
+
/**
|
|
13177
|
+
* Get Account Support Tickets endpoint
|
|
13178
|
+
* @summary Get Account Support Tickets
|
|
13179
|
+
* @param {AccountsApiGetAccountSupportTicketsRequest} requestParameters Request parameters.
|
|
13180
|
+
* @param {*} [options] Override http request option.
|
|
13181
|
+
* @throws {RequiredError}
|
|
13182
|
+
*/
|
|
13183
|
+
getAccountSupportTickets(requestParameters: AccountsApiGetAccountSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountSupportTickets200Response>;
|
|
13119
13184
|
/**
|
|
13120
13185
|
* Get Account Threads endpoint
|
|
13121
13186
|
* @summary Get Account Threads
|
|
@@ -13263,6 +13328,31 @@ export interface AccountsApiGetAccountActivitiesRequest {
|
|
|
13263
13328
|
*/
|
|
13264
13329
|
readonly search?: string;
|
|
13265
13330
|
}
|
|
13331
|
+
/**
|
|
13332
|
+
* Request parameters for getAccountBookings operation in AccountsApi.
|
|
13333
|
+
*/
|
|
13334
|
+
export interface AccountsApiGetAccountBookingsRequest {
|
|
13335
|
+
/**
|
|
13336
|
+
* The account identifier
|
|
13337
|
+
*/
|
|
13338
|
+
readonly accountId: string;
|
|
13339
|
+
/**
|
|
13340
|
+
* Page number
|
|
13341
|
+
*/
|
|
13342
|
+
readonly page?: number;
|
|
13343
|
+
/**
|
|
13344
|
+
* Number of items per page
|
|
13345
|
+
*/
|
|
13346
|
+
readonly pageSize?: number;
|
|
13347
|
+
/**
|
|
13348
|
+
* Field to order by
|
|
13349
|
+
*/
|
|
13350
|
+
readonly orderBy?: string;
|
|
13351
|
+
/**
|
|
13352
|
+
* Search query
|
|
13353
|
+
*/
|
|
13354
|
+
readonly search?: string;
|
|
13355
|
+
}
|
|
13266
13356
|
/**
|
|
13267
13357
|
* Request parameters for getAccountComments operation in AccountsApi.
|
|
13268
13358
|
*/
|
|
@@ -13401,6 +13491,31 @@ export interface AccountsApiGetAccountRegistrationsRequest {
|
|
|
13401
13491
|
*/
|
|
13402
13492
|
readonly search?: string;
|
|
13403
13493
|
}
|
|
13494
|
+
/**
|
|
13495
|
+
* Request parameters for getAccountSupportTickets operation in AccountsApi.
|
|
13496
|
+
*/
|
|
13497
|
+
export interface AccountsApiGetAccountSupportTicketsRequest {
|
|
13498
|
+
/**
|
|
13499
|
+
* The account identifier
|
|
13500
|
+
*/
|
|
13501
|
+
readonly accountId: string;
|
|
13502
|
+
/**
|
|
13503
|
+
* Page number
|
|
13504
|
+
*/
|
|
13505
|
+
readonly page?: number;
|
|
13506
|
+
/**
|
|
13507
|
+
* Number of items per page
|
|
13508
|
+
*/
|
|
13509
|
+
readonly pageSize?: number;
|
|
13510
|
+
/**
|
|
13511
|
+
* Field to order by
|
|
13512
|
+
*/
|
|
13513
|
+
readonly orderBy?: string;
|
|
13514
|
+
/**
|
|
13515
|
+
* Search query
|
|
13516
|
+
*/
|
|
13517
|
+
readonly search?: string;
|
|
13518
|
+
}
|
|
13404
13519
|
/**
|
|
13405
13520
|
* Request parameters for getAccountThreads operation in AccountsApi.
|
|
13406
13521
|
*/
|
|
@@ -13548,6 +13663,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
13548
13663
|
* @throws {RequiredError}
|
|
13549
13664
|
*/
|
|
13550
13665
|
getAccountActivities(requestParameters: AccountsApiGetAccountActivitiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountActivities200Response, any, {}>>;
|
|
13666
|
+
/**
|
|
13667
|
+
* Get Account Bookings endpoint
|
|
13668
|
+
* @summary Get Account Bookings
|
|
13669
|
+
* @param {AccountsApiGetAccountBookingsRequest} requestParameters Request parameters.
|
|
13670
|
+
* @param {*} [options] Override http request option.
|
|
13671
|
+
* @throws {RequiredError}
|
|
13672
|
+
*/
|
|
13673
|
+
getAccountBookings(requestParameters: AccountsApiGetAccountBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountBookings200Response, any, {}>>;
|
|
13551
13674
|
/**
|
|
13552
13675
|
* Get Account Comments endpoint
|
|
13553
13676
|
* @summary Get Account Comments
|
|
@@ -13596,6 +13719,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
13596
13719
|
* @throws {RequiredError}
|
|
13597
13720
|
*/
|
|
13598
13721
|
getAccountRegistrations(requestParameters: AccountsApiGetAccountRegistrationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountRegistrations200Response, any, {}>>;
|
|
13722
|
+
/**
|
|
13723
|
+
* Get Account Support Tickets endpoint
|
|
13724
|
+
* @summary Get Account Support Tickets
|
|
13725
|
+
* @param {AccountsApiGetAccountSupportTicketsRequest} requestParameters Request parameters.
|
|
13726
|
+
* @param {*} [options] Override http request option.
|
|
13727
|
+
* @throws {RequiredError}
|
|
13728
|
+
*/
|
|
13729
|
+
getAccountSupportTickets(requestParameters: AccountsApiGetAccountSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountSupportTickets200Response, any, {}>>;
|
|
13599
13730
|
/**
|
|
13600
13731
|
* Get Account Threads endpoint
|
|
13601
13732
|
* @summary Get Account Threads
|
|
@@ -18249,7 +18380,7 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
18249
18380
|
* @param {*} [options] Override http request option.
|
|
18250
18381
|
* @throws {RequiredError}
|
|
18251
18382
|
*/
|
|
18252
|
-
getBookingPlaceBookings(placeId: string, past?: boolean, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
18383
|
+
getBookingPlaceBookings(placeId: string, past?: boolean, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountBookings200Response>>;
|
|
18253
18384
|
/**
|
|
18254
18385
|
* Get Booking Place Payments endpoint
|
|
18255
18386
|
* @summary Get Booking Place Payments
|
|
@@ -18368,7 +18499,7 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
18368
18499
|
* @param {*} [options] Override http request option.
|
|
18369
18500
|
* @throws {RequiredError}
|
|
18370
18501
|
*/
|
|
18371
|
-
getBookingSpaceBookings(placeId: string, spaceId: string, past?: boolean, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
18502
|
+
getBookingSpaceBookings(placeId: string, spaceId: string, past?: boolean, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountBookings200Response>>;
|
|
18372
18503
|
/**
|
|
18373
18504
|
* Get Booking Space Payments endpoint
|
|
18374
18505
|
* @summary Get Booking Space Payments
|
|
@@ -18541,7 +18672,7 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
18541
18672
|
* @param {*} [options] Override http request option.
|
|
18542
18673
|
* @throws {RequiredError}
|
|
18543
18674
|
*/
|
|
18544
|
-
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18675
|
+
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountBookings200Response>;
|
|
18545
18676
|
/**
|
|
18546
18677
|
* Get Booking Place Payments endpoint
|
|
18547
18678
|
* @summary Get Booking Place Payments
|
|
@@ -18629,7 +18760,7 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
18629
18760
|
* @param {*} [options] Override http request option.
|
|
18630
18761
|
* @throws {RequiredError}
|
|
18631
18762
|
*/
|
|
18632
|
-
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18763
|
+
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountBookings200Response>;
|
|
18633
18764
|
/**
|
|
18634
18765
|
* Get Booking Space Payments endpoint
|
|
18635
18766
|
* @summary Get Booking Space Payments
|
|
@@ -19332,7 +19463,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
19332
19463
|
* @param {*} [options] Override http request option.
|
|
19333
19464
|
* @throws {RequiredError}
|
|
19334
19465
|
*/
|
|
19335
|
-
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19466
|
+
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountBookings200Response, any, {}>>;
|
|
19336
19467
|
/**
|
|
19337
19468
|
* Get Booking Place Payments endpoint
|
|
19338
19469
|
* @summary Get Booking Place Payments
|
|
@@ -19420,7 +19551,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
19420
19551
|
* @param {*} [options] Override http request option.
|
|
19421
19552
|
* @throws {RequiredError}
|
|
19422
19553
|
*/
|
|
19423
|
-
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19554
|
+
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountBookings200Response, any, {}>>;
|
|
19424
19555
|
/**
|
|
19425
19556
|
* Get Booking Space Payments endpoint
|
|
19426
19557
|
* @summary Get Booking Space Payments
|
|
@@ -75287,7 +75418,7 @@ export declare const SupportApiFp: (configuration?: Configuration) => {
|
|
|
75287
75418
|
* @param {*} [options] Override http request option.
|
|
75288
75419
|
* @throws {RequiredError}
|
|
75289
75420
|
*/
|
|
75290
|
-
getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
75421
|
+
getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountSupportTickets200Response>>;
|
|
75291
75422
|
/**
|
|
75292
75423
|
* Update Support Ticket endpoint
|
|
75293
75424
|
* @summary Update Support Ticket
|
|
@@ -75349,7 +75480,7 @@ export declare const SupportApiFactory: (configuration?: Configuration, basePath
|
|
|
75349
75480
|
* @param {*} [options] Override http request option.
|
|
75350
75481
|
* @throws {RequiredError}
|
|
75351
75482
|
*/
|
|
75352
|
-
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
75483
|
+
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountSupportTickets200Response>;
|
|
75353
75484
|
/**
|
|
75354
75485
|
* Update Support Ticket endpoint
|
|
75355
75486
|
* @summary Update Support Ticket
|
|
@@ -75515,7 +75646,7 @@ export declare class SupportApi extends BaseAPI {
|
|
|
75515
75646
|
* @param {*} [options] Override http request option.
|
|
75516
75647
|
* @throws {RequiredError}
|
|
75517
75648
|
*/
|
|
75518
|
-
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
75649
|
+
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountSupportTickets200Response, any, {}>>;
|
|
75519
75650
|
/**
|
|
75520
75651
|
* Update Support Ticket endpoint
|
|
75521
75652
|
* @summary Update Support Ticket
|