@revolugo/common 6.12.1-beta.13 → 6.12.1-beta.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolugo/common",
3
- "version": "6.12.1-beta.13",
3
+ "version": "6.12.1-beta.15",
4
4
  "private": false,
5
5
  "description": "Revolugo common",
6
6
  "author": "Revolugo",
@@ -0,0 +1,10 @@
1
+ import type { CurrencyType } from './currency.ts'
2
+ // eslint-disable-next-line no-restricted-imports
3
+ import type { Locale } from '../../constants/index.ts'
4
+
5
+ export interface HotelRoomOffersListPayload {
6
+ currency: CurrencyType
7
+ hotelRoomOfferRequestId: string
8
+ lang?: Locale
9
+ limit?: number | null
10
+ }
@@ -138,3 +138,6 @@ export type HotelRoomOfferRequestCreate = Pick<
138
138
  | 'roomCount'
139
139
  | 'sourceMarket'
140
140
  >
141
+ export interface HotelRoomOfferRequestsCreatePayload {
142
+ hotelRoomOfferRequestCreateApi?: HotelRoomOfferRequestCreate
143
+ }
@@ -22,3 +22,4 @@ export * from './contact-person.ts'
22
22
  export type * from './hotel-review-rating.ts'
23
23
  export type * from './travel-times.ts'
24
24
  export * from './hotel-offer-list.ts'
25
+ export type * from './hotel-room-offer-list.ts'