@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
package/src/constants/index.ts
CHANGED
|
@@ -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 {
|
|
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
|
*
|