@revolugo/common 6.13.1-beta.16 → 6.13.1-beta.18

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.13.1-beta.16",
3
+ "version": "6.13.1-beta.18",
4
4
  "private": false,
5
5
  "description": "Revolugo common",
6
6
  "author": "Revolugo",
@@ -8,3 +8,4 @@ export * from './locales.ts'
8
8
  export * from './measurement.ts'
9
9
  export * from './poller.ts'
10
10
  export * from './time.ts'
11
+ export * from './stay-taxes-info.ts'
@@ -0,0 +1,7 @@
1
+ export enum StayTaxesInfoEnum {
2
+ Included = 'included',
3
+ NotIncluded = 'not_included',
4
+ Unknown = 'unknown',
5
+ }
6
+
7
+ export type StayTaxesInfo = `${StayTaxesInfoEnum}`
@@ -8,7 +8,10 @@ import type { SourceMarket } from './source-market.ts'
8
8
  import type { Tag } from './tag.ts'
9
9
  import type { Tax } from './tax.ts'
10
10
  // eslint-disable-next-line no-restricted-imports
11
- import type { BreakfastOptionType } from '../../constants/index.ts'
11
+ import type {
12
+ BreakfastOptionType,
13
+ StayTaxesInfo,
14
+ } from '../../constants/index.ts'
12
15
 
13
16
  export interface HotelRoomOffersDataResponse {
14
17
  /**
@@ -187,6 +190,14 @@ export interface HotelRoomOffer {
187
190
  * @memberof HotelRoomOffer
188
191
  */
189
192
  taxes?: Tax[]
193
+
194
+ /**
195
+ *
196
+ * @type {StayTaxesInfo}
197
+ * @memberof HotelRoomOffer
198
+ */
199
+ stayTaxesInfo: StayTaxesInfo
200
+
190
201
  /**
191
202
  * Hotel Room Offer type.
192
203
  *