@connectedxm/admin-sdk 7.2.1 → 7.2.3
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 +354 -15
- package/dist/api.d.ts +189 -15
- package/dist/api.js +256 -6
- package/dist/esm/api.d.ts +189 -15
- package/dist/esm/api.js +254 -4
- package/docs/AccountsApi.md +64 -0
- package/docs/BaseBooking.md +2 -0
- package/docs/Booking.md +4 -0
- package/docs/BookingsApi.md +120 -4
- package/docs/{GetBookingPlaceBookings200Response.md → GetAccountBookings200Response.md} +3 -3
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -880,6 +880,7 @@ export interface BaseBooking {
|
|
|
880
880
|
'day': string;
|
|
881
881
|
'time': string;
|
|
882
882
|
'duration': number;
|
|
883
|
+
'checkedIn': string | null;
|
|
883
884
|
'status': PurchaseStatus;
|
|
884
885
|
'account': BaseAccount;
|
|
885
886
|
'space': BaseBookingSpace;
|
|
@@ -2525,6 +2526,7 @@ export interface Booking {
|
|
|
2525
2526
|
'day': string;
|
|
2526
2527
|
'time': string;
|
|
2527
2528
|
'duration': number;
|
|
2529
|
+
'checkedIn': string | null;
|
|
2528
2530
|
'status': PurchaseStatus;
|
|
2529
2531
|
'account': BaseAccount;
|
|
2530
2532
|
'space': BaseBookingSpace;
|
|
@@ -2532,6 +2534,7 @@ export interface Booking {
|
|
|
2532
2534
|
'createdAt': string;
|
|
2533
2535
|
'updatedAt': string;
|
|
2534
2536
|
'responses'?: Array<BaseBookingQuestionResponse>;
|
|
2537
|
+
'place'?: BaseBookingPlace;
|
|
2535
2538
|
}
|
|
2536
2539
|
export interface BookingCreateInputs {
|
|
2537
2540
|
'accountId': string;
|
|
@@ -6139,6 +6142,15 @@ export interface GetAccountAddresses200Response {
|
|
|
6139
6142
|
export declare enum GetAccountAddresses200ResponseStatusEnum {
|
|
6140
6143
|
Ok = "ok"
|
|
6141
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
|
+
}
|
|
6142
6154
|
export interface GetAccountEvents200Response {
|
|
6143
6155
|
'status': GetAccountEvents200ResponseStatusEnum;
|
|
6144
6156
|
'message': string;
|
|
@@ -6376,15 +6388,6 @@ export interface GetBenefits200Response {
|
|
|
6376
6388
|
export declare enum GetBenefits200ResponseStatusEnum {
|
|
6377
6389
|
Ok = "ok"
|
|
6378
6390
|
}
|
|
6379
|
-
export interface GetBookingPlaceBookings200Response {
|
|
6380
|
-
'status': GetBookingPlaceBookings200ResponseStatusEnum;
|
|
6381
|
-
'message': string;
|
|
6382
|
-
'data': Array<Booking>;
|
|
6383
|
-
'count'?: number;
|
|
6384
|
-
}
|
|
6385
|
-
export declare enum GetBookingPlaceBookings200ResponseStatusEnum {
|
|
6386
|
-
Ok = "ok"
|
|
6387
|
-
}
|
|
6388
6391
|
export interface GetBookingPlaceTranslation200Response {
|
|
6389
6392
|
'status': GetBookingPlaceTranslation200ResponseStatusEnum;
|
|
6390
6393
|
'message': string;
|
|
@@ -12680,6 +12683,18 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12680
12683
|
* @throws {RequiredError}
|
|
12681
12684
|
*/
|
|
12682
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>;
|
|
12683
12698
|
/**
|
|
12684
12699
|
* Get Account Comments endpoint
|
|
12685
12700
|
* @summary Get Account Comments
|
|
@@ -12878,6 +12893,18 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12878
12893
|
* @throws {RequiredError}
|
|
12879
12894
|
*/
|
|
12880
12895
|
getAccountActivities(accountId: string, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountActivities200Response>>;
|
|
12896
|
+
/**
|
|
12897
|
+
* Get Account Bookings endpoint
|
|
12898
|
+
* @summary Get Account Bookings
|
|
12899
|
+
* @param {string} accountId The account identifier
|
|
12900
|
+
* @param {number} [page] Page number
|
|
12901
|
+
* @param {number} [pageSize] Number of items per page
|
|
12902
|
+
* @param {string} [orderBy] Field to order by
|
|
12903
|
+
* @param {string} [search] Search query
|
|
12904
|
+
* @param {*} [options] Override http request option.
|
|
12905
|
+
* @throws {RequiredError}
|
|
12906
|
+
*/
|
|
12907
|
+
getAccountBookings(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountBookings200Response>>;
|
|
12881
12908
|
/**
|
|
12882
12909
|
* Get Account Comments endpoint
|
|
12883
12910
|
* @summary Get Account Comments
|
|
@@ -13066,6 +13093,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
13066
13093
|
* @throws {RequiredError}
|
|
13067
13094
|
*/
|
|
13068
13095
|
getAccountActivities(requestParameters: AccountsApiGetAccountActivitiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountActivities200Response>;
|
|
13096
|
+
/**
|
|
13097
|
+
* Get Account Bookings endpoint
|
|
13098
|
+
* @summary Get Account Bookings
|
|
13099
|
+
* @param {AccountsApiGetAccountBookingsRequest} requestParameters Request parameters.
|
|
13100
|
+
* @param {*} [options] Override http request option.
|
|
13101
|
+
* @throws {RequiredError}
|
|
13102
|
+
*/
|
|
13103
|
+
getAccountBookings(requestParameters: AccountsApiGetAccountBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountBookings200Response>;
|
|
13069
13104
|
/**
|
|
13070
13105
|
* Get Account Comments endpoint
|
|
13071
13106
|
* @summary Get Account Comments
|
|
@@ -13261,6 +13296,31 @@ export interface AccountsApiGetAccountActivitiesRequest {
|
|
|
13261
13296
|
*/
|
|
13262
13297
|
readonly search?: string;
|
|
13263
13298
|
}
|
|
13299
|
+
/**
|
|
13300
|
+
* Request parameters for getAccountBookings operation in AccountsApi.
|
|
13301
|
+
*/
|
|
13302
|
+
export interface AccountsApiGetAccountBookingsRequest {
|
|
13303
|
+
/**
|
|
13304
|
+
* The account identifier
|
|
13305
|
+
*/
|
|
13306
|
+
readonly accountId: string;
|
|
13307
|
+
/**
|
|
13308
|
+
* Page number
|
|
13309
|
+
*/
|
|
13310
|
+
readonly page?: number;
|
|
13311
|
+
/**
|
|
13312
|
+
* Number of items per page
|
|
13313
|
+
*/
|
|
13314
|
+
readonly pageSize?: number;
|
|
13315
|
+
/**
|
|
13316
|
+
* Field to order by
|
|
13317
|
+
*/
|
|
13318
|
+
readonly orderBy?: string;
|
|
13319
|
+
/**
|
|
13320
|
+
* Search query
|
|
13321
|
+
*/
|
|
13322
|
+
readonly search?: string;
|
|
13323
|
+
}
|
|
13264
13324
|
/**
|
|
13265
13325
|
* Request parameters for getAccountComments operation in AccountsApi.
|
|
13266
13326
|
*/
|
|
@@ -13546,6 +13606,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
13546
13606
|
* @throws {RequiredError}
|
|
13547
13607
|
*/
|
|
13548
13608
|
getAccountActivities(requestParameters: AccountsApiGetAccountActivitiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountActivities200Response, any, {}>>;
|
|
13609
|
+
/**
|
|
13610
|
+
* Get Account Bookings endpoint
|
|
13611
|
+
* @summary Get Account Bookings
|
|
13612
|
+
* @param {AccountsApiGetAccountBookingsRequest} requestParameters Request parameters.
|
|
13613
|
+
* @param {*} [options] Override http request option.
|
|
13614
|
+
* @throws {RequiredError}
|
|
13615
|
+
*/
|
|
13616
|
+
getAccountBookings(requestParameters: AccountsApiGetAccountBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountBookings200Response, any, {}>>;
|
|
13549
13617
|
/**
|
|
13550
13618
|
* Get Account Comments endpoint
|
|
13551
13619
|
* @summary Get Account Comments
|
|
@@ -17880,6 +17948,16 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
17880
17948
|
* @throws {RequiredError}
|
|
17881
17949
|
*/
|
|
17882
17950
|
cancelBooking: (placeId: string, spaceId: string, bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17951
|
+
/**
|
|
17952
|
+
* Check In Booking endpoint
|
|
17953
|
+
* @summary Check In Booking
|
|
17954
|
+
* @param {string} placeId The place identifier
|
|
17955
|
+
* @param {string} spaceId The space identifier
|
|
17956
|
+
* @param {string} bookingId The booking identifier
|
|
17957
|
+
* @param {*} [options] Override http request option.
|
|
17958
|
+
* @throws {RequiredError}
|
|
17959
|
+
*/
|
|
17960
|
+
checkInBooking: (placeId: string, spaceId: string, bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17883
17961
|
/**
|
|
17884
17962
|
* Create Booking endpoint
|
|
17885
17963
|
* @summary Create Booking
|
|
@@ -18132,6 +18210,16 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18132
18210
|
* @throws {RequiredError}
|
|
18133
18211
|
*/
|
|
18134
18212
|
removeBookingSpaceTier: (placeId: string, spaceId: string, tierId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18213
|
+
/**
|
|
18214
|
+
* Undo Check In Booking endpoint
|
|
18215
|
+
* @summary Undo Check In Booking
|
|
18216
|
+
* @param {string} placeId The place identifier
|
|
18217
|
+
* @param {string} spaceId The space identifier
|
|
18218
|
+
* @param {string} bookingId The booking identifier
|
|
18219
|
+
* @param {*} [options] Override http request option.
|
|
18220
|
+
* @throws {RequiredError}
|
|
18221
|
+
*/
|
|
18222
|
+
undoCheckInBooking: (placeId: string, spaceId: string, bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18135
18223
|
/**
|
|
18136
18224
|
* Update Booking endpoint
|
|
18137
18225
|
* @summary Update Booking
|
|
@@ -18168,6 +18256,16 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
18168
18256
|
* @throws {RequiredError}
|
|
18169
18257
|
*/
|
|
18170
18258
|
cancelBooking(placeId: string, spaceId: string, bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBooking200Response>>;
|
|
18259
|
+
/**
|
|
18260
|
+
* Check In Booking endpoint
|
|
18261
|
+
* @summary Check In Booking
|
|
18262
|
+
* @param {string} placeId The place identifier
|
|
18263
|
+
* @param {string} spaceId The space identifier
|
|
18264
|
+
* @param {string} bookingId The booking identifier
|
|
18265
|
+
* @param {*} [options] Override http request option.
|
|
18266
|
+
* @throws {RequiredError}
|
|
18267
|
+
*/
|
|
18268
|
+
checkInBooking(placeId: string, spaceId: string, bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBooking200Response>>;
|
|
18171
18269
|
/**
|
|
18172
18270
|
* Create Booking endpoint
|
|
18173
18271
|
* @summary Create Booking
|
|
@@ -18217,7 +18315,7 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
18217
18315
|
* @param {*} [options] Override http request option.
|
|
18218
18316
|
* @throws {RequiredError}
|
|
18219
18317
|
*/
|
|
18220
|
-
getBookingPlaceBookings(placeId: string, past?: boolean, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
18318
|
+
getBookingPlaceBookings(placeId: string, past?: boolean, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountBookings200Response>>;
|
|
18221
18319
|
/**
|
|
18222
18320
|
* Get Booking Place Payments endpoint
|
|
18223
18321
|
* @summary Get Booking Place Payments
|
|
@@ -18336,7 +18434,7 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
18336
18434
|
* @param {*} [options] Override http request option.
|
|
18337
18435
|
* @throws {RequiredError}
|
|
18338
18436
|
*/
|
|
18339
|
-
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<
|
|
18437
|
+
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>>;
|
|
18340
18438
|
/**
|
|
18341
18439
|
* Get Booking Space Payments endpoint
|
|
18342
18440
|
* @summary Get Booking Space Payments
|
|
@@ -18420,6 +18518,16 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
18420
18518
|
* @throws {RequiredError}
|
|
18421
18519
|
*/
|
|
18422
18520
|
removeBookingSpaceTier(placeId: string, spaceId: string, tierId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpace200Response>>;
|
|
18521
|
+
/**
|
|
18522
|
+
* Undo Check In Booking endpoint
|
|
18523
|
+
* @summary Undo Check In Booking
|
|
18524
|
+
* @param {string} placeId The place identifier
|
|
18525
|
+
* @param {string} spaceId The space identifier
|
|
18526
|
+
* @param {string} bookingId The booking identifier
|
|
18527
|
+
* @param {*} [options] Override http request option.
|
|
18528
|
+
* @throws {RequiredError}
|
|
18529
|
+
*/
|
|
18530
|
+
undoCheckInBooking(placeId: string, spaceId: string, bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBooking200Response>>;
|
|
18423
18531
|
/**
|
|
18424
18532
|
* Update Booking endpoint
|
|
18425
18533
|
* @summary Update Booking
|
|
@@ -18452,6 +18560,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
18452
18560
|
* @throws {RequiredError}
|
|
18453
18561
|
*/
|
|
18454
18562
|
cancelBooking(requestParameters: BookingsApiCancelBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBooking200Response>;
|
|
18563
|
+
/**
|
|
18564
|
+
* Check In Booking endpoint
|
|
18565
|
+
* @summary Check In Booking
|
|
18566
|
+
* @param {BookingsApiCheckInBookingRequest} requestParameters Request parameters.
|
|
18567
|
+
* @param {*} [options] Override http request option.
|
|
18568
|
+
* @throws {RequiredError}
|
|
18569
|
+
*/
|
|
18570
|
+
checkInBooking(requestParameters: BookingsApiCheckInBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBooking200Response>;
|
|
18455
18571
|
/**
|
|
18456
18572
|
* Create Booking endpoint
|
|
18457
18573
|
* @summary Create Booking
|
|
@@ -18491,7 +18607,7 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
18491
18607
|
* @param {*} [options] Override http request option.
|
|
18492
18608
|
* @throws {RequiredError}
|
|
18493
18609
|
*/
|
|
18494
|
-
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18610
|
+
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountBookings200Response>;
|
|
18495
18611
|
/**
|
|
18496
18612
|
* Get Booking Place Payments endpoint
|
|
18497
18613
|
* @summary Get Booking Place Payments
|
|
@@ -18579,7 +18695,7 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
18579
18695
|
* @param {*} [options] Override http request option.
|
|
18580
18696
|
* @throws {RequiredError}
|
|
18581
18697
|
*/
|
|
18582
|
-
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18698
|
+
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountBookings200Response>;
|
|
18583
18699
|
/**
|
|
18584
18700
|
* Get Booking Space Payments endpoint
|
|
18585
18701
|
* @summary Get Booking Space Payments
|
|
@@ -18636,6 +18752,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
18636
18752
|
* @throws {RequiredError}
|
|
18637
18753
|
*/
|
|
18638
18754
|
removeBookingSpaceTier(requestParameters: BookingsApiRemoveBookingSpaceTierRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpace200Response>;
|
|
18755
|
+
/**
|
|
18756
|
+
* Undo Check In Booking endpoint
|
|
18757
|
+
* @summary Undo Check In Booking
|
|
18758
|
+
* @param {BookingsApiUndoCheckInBookingRequest} requestParameters Request parameters.
|
|
18759
|
+
* @param {*} [options] Override http request option.
|
|
18760
|
+
* @throws {RequiredError}
|
|
18761
|
+
*/
|
|
18762
|
+
undoCheckInBooking(requestParameters: BookingsApiUndoCheckInBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBooking200Response>;
|
|
18639
18763
|
/**
|
|
18640
18764
|
* Update Booking endpoint
|
|
18641
18765
|
* @summary Update Booking
|
|
@@ -18679,6 +18803,23 @@ export interface BookingsApiCancelBookingRequest {
|
|
|
18679
18803
|
*/
|
|
18680
18804
|
readonly bookingId: string;
|
|
18681
18805
|
}
|
|
18806
|
+
/**
|
|
18807
|
+
* Request parameters for checkInBooking operation in BookingsApi.
|
|
18808
|
+
*/
|
|
18809
|
+
export interface BookingsApiCheckInBookingRequest {
|
|
18810
|
+
/**
|
|
18811
|
+
* The place identifier
|
|
18812
|
+
*/
|
|
18813
|
+
readonly placeId: string;
|
|
18814
|
+
/**
|
|
18815
|
+
* The space identifier
|
|
18816
|
+
*/
|
|
18817
|
+
readonly spaceId: string;
|
|
18818
|
+
/**
|
|
18819
|
+
* The booking identifier
|
|
18820
|
+
*/
|
|
18821
|
+
readonly bookingId: string;
|
|
18822
|
+
}
|
|
18682
18823
|
/**
|
|
18683
18824
|
* Request parameters for createBooking operation in BookingsApi.
|
|
18684
18825
|
*/
|
|
@@ -19155,6 +19296,23 @@ export interface BookingsApiRemoveBookingSpaceTierRequest {
|
|
|
19155
19296
|
*/
|
|
19156
19297
|
readonly tierId: string;
|
|
19157
19298
|
}
|
|
19299
|
+
/**
|
|
19300
|
+
* Request parameters for undoCheckInBooking operation in BookingsApi.
|
|
19301
|
+
*/
|
|
19302
|
+
export interface BookingsApiUndoCheckInBookingRequest {
|
|
19303
|
+
/**
|
|
19304
|
+
* The place identifier
|
|
19305
|
+
*/
|
|
19306
|
+
readonly placeId: string;
|
|
19307
|
+
/**
|
|
19308
|
+
* The space identifier
|
|
19309
|
+
*/
|
|
19310
|
+
readonly spaceId: string;
|
|
19311
|
+
/**
|
|
19312
|
+
* The booking identifier
|
|
19313
|
+
*/
|
|
19314
|
+
readonly bookingId: string;
|
|
19315
|
+
}
|
|
19158
19316
|
/**
|
|
19159
19317
|
* Request parameters for updateBooking operation in BookingsApi.
|
|
19160
19318
|
*/
|
|
@@ -19193,6 +19351,14 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
19193
19351
|
* @throws {RequiredError}
|
|
19194
19352
|
*/
|
|
19195
19353
|
cancelBooking(requestParameters: BookingsApiCancelBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBooking200Response, any, {}>>;
|
|
19354
|
+
/**
|
|
19355
|
+
* Check In Booking endpoint
|
|
19356
|
+
* @summary Check In Booking
|
|
19357
|
+
* @param {BookingsApiCheckInBookingRequest} requestParameters Request parameters.
|
|
19358
|
+
* @param {*} [options] Override http request option.
|
|
19359
|
+
* @throws {RequiredError}
|
|
19360
|
+
*/
|
|
19361
|
+
checkInBooking(requestParameters: BookingsApiCheckInBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBooking200Response, any, {}>>;
|
|
19196
19362
|
/**
|
|
19197
19363
|
* Create Booking endpoint
|
|
19198
19364
|
* @summary Create Booking
|
|
@@ -19232,7 +19398,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
19232
19398
|
* @param {*} [options] Override http request option.
|
|
19233
19399
|
* @throws {RequiredError}
|
|
19234
19400
|
*/
|
|
19235
|
-
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19401
|
+
getBookingPlaceBookings(requestParameters: BookingsApiGetBookingPlaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountBookings200Response, any, {}>>;
|
|
19236
19402
|
/**
|
|
19237
19403
|
* Get Booking Place Payments endpoint
|
|
19238
19404
|
* @summary Get Booking Place Payments
|
|
@@ -19320,7 +19486,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
19320
19486
|
* @param {*} [options] Override http request option.
|
|
19321
19487
|
* @throws {RequiredError}
|
|
19322
19488
|
*/
|
|
19323
|
-
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19489
|
+
getBookingSpaceBookings(requestParameters: BookingsApiGetBookingSpaceBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountBookings200Response, any, {}>>;
|
|
19324
19490
|
/**
|
|
19325
19491
|
* Get Booking Space Payments endpoint
|
|
19326
19492
|
* @summary Get Booking Space Payments
|
|
@@ -19377,6 +19543,14 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
19377
19543
|
* @throws {RequiredError}
|
|
19378
19544
|
*/
|
|
19379
19545
|
removeBookingSpaceTier(requestParameters: BookingsApiRemoveBookingSpaceTierRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpace200Response, any, {}>>;
|
|
19546
|
+
/**
|
|
19547
|
+
* Undo Check In Booking endpoint
|
|
19548
|
+
* @summary Undo Check In Booking
|
|
19549
|
+
* @param {BookingsApiUndoCheckInBookingRequest} requestParameters Request parameters.
|
|
19550
|
+
* @param {*} [options] Override http request option.
|
|
19551
|
+
* @throws {RequiredError}
|
|
19552
|
+
*/
|
|
19553
|
+
undoCheckInBooking(requestParameters: BookingsApiUndoCheckInBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBooking200Response, any, {}>>;
|
|
19380
19554
|
/**
|
|
19381
19555
|
* Update Booking endpoint
|
|
19382
19556
|
* @summary Update Booking
|