@ember-home/unbound-ts-client 0.0.35 → 0.0.36
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/dist/index.d.mts +87 -5
- package/dist/index.d.ts +87 -5
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -119,6 +119,15 @@ var ReservationChannelTypes = {
|
|
|
119
119
|
Gds: "GDS",
|
|
120
120
|
Google: "GOOGLE"
|
|
121
121
|
};
|
|
122
|
+
var ReservationStatus = {
|
|
123
|
+
Cancelled: "CANCELLED",
|
|
124
|
+
Inquiry: "INQUIRY",
|
|
125
|
+
Expired: "EXPIRED",
|
|
126
|
+
AwaitingPayment: "AWAITING_PAYMENT",
|
|
127
|
+
Declined: "DECLINED",
|
|
128
|
+
Pending: "PENDING",
|
|
129
|
+
Confirmed: "CONFIRMED"
|
|
130
|
+
};
|
|
122
131
|
var SortOrder = {
|
|
123
132
|
Asc: "asc",
|
|
124
133
|
Desc: "desc"
|
|
@@ -5421,6 +5430,7 @@ export {
|
|
|
5421
5430
|
ProvidersApiFactory,
|
|
5422
5431
|
ProvidersApiFp,
|
|
5423
5432
|
ReservationChannelTypes,
|
|
5433
|
+
ReservationStatus,
|
|
5424
5434
|
ReservationsApi,
|
|
5425
5435
|
ReservationsApiAxiosParamCreator,
|
|
5426
5436
|
ReservationsApiFactory,
|