@revolugo/common 6.13.1-beta.2 → 6.13.1-beta.21
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
package/src/icons/index.ts
CHANGED
|
@@ -20,6 +20,7 @@ export const ICONS_NAME = Object.freeze({
|
|
|
20
20
|
calendar: 'ph:calendar-blank',
|
|
21
21
|
car: 'ph:car',
|
|
22
22
|
caretDown: 'ph:caret-down',
|
|
23
|
+
caretLeft: 'ph:caret-left',
|
|
23
24
|
caretRight: 'ph:caret-right',
|
|
24
25
|
caretUp: 'ph:caret-up',
|
|
25
26
|
caretUpDown: 'ph:caret-up-down',
|
|
@@ -83,8 +84,10 @@ export const ICONS_NAME = Object.freeze({
|
|
|
83
84
|
gavel: 'ph:gavel',
|
|
84
85
|
gear: 'ph:gear',
|
|
85
86
|
globe: 'ph:globe',
|
|
87
|
+
golf: 'ph:golf',
|
|
86
88
|
graph: 'ph:graph',
|
|
87
89
|
gym: 'ph:barbell',
|
|
90
|
+
hairDryer: 'ph:hair-dryer',
|
|
88
91
|
hammer: 'ph:hammer',
|
|
89
92
|
handPeace: 'ph:hand-peace',
|
|
90
93
|
heart: 'ph:heart',
|
|
@@ -112,8 +115,10 @@ export const ICONS_NAME = Object.freeze({
|
|
|
112
115
|
minus: 'ph:minus',
|
|
113
116
|
minusCircle: 'ph:minus-circle',
|
|
114
117
|
money: 'ph:money',
|
|
118
|
+
monitor: 'ph:monitor',
|
|
115
119
|
mosque: 'ph:mosque',
|
|
116
120
|
musicNotes: 'ph:music-notes',
|
|
121
|
+
noSmoking: 'ph:cigarette-slash',
|
|
117
122
|
note: 'ph:note',
|
|
118
123
|
paintBrush: 'ph:paint-brush',
|
|
119
124
|
palette: 'ph:palette',
|
|
@@ -124,6 +129,7 @@ export const ICONS_NAME = Object.freeze({
|
|
|
124
129
|
pencil: 'ph:pencil',
|
|
125
130
|
phone: 'ph:phone',
|
|
126
131
|
pill: 'ph:pill',
|
|
132
|
+
planeTakeOff: 'ph:airplane-takeoff',
|
|
127
133
|
plus: 'ph:plus',
|
|
128
134
|
plusCircle: 'ph:plus-circle',
|
|
129
135
|
policeCar: 'ph:police-car',
|
|
@@ -147,10 +153,13 @@ export const ICONS_NAME = Object.freeze({
|
|
|
147
153
|
storefront: 'ph:storefront',
|
|
148
154
|
student: 'ph:student',
|
|
149
155
|
subway: 'ph:subway',
|
|
156
|
+
swimmingPool: 'ph:swimming-pool',
|
|
150
157
|
synagogue: 'ph:synagogue',
|
|
151
158
|
tShirt: 'ph:t-shirt',
|
|
152
159
|
taxi: 'ph:taxi',
|
|
160
|
+
tennisBall: 'ph:tennis-ball',
|
|
153
161
|
tent: 'ph:tent',
|
|
162
|
+
thermometerHot: 'ph:thermometer-hot',
|
|
154
163
|
thumbsUp: 'ph:thumbs-up',
|
|
155
164
|
tooth: 'ph:tooth',
|
|
156
165
|
train: 'ph:train',
|
|
@@ -165,11 +174,14 @@ export const ICONS_NAME = Object.freeze({
|
|
|
165
174
|
users: 'ph:users',
|
|
166
175
|
usersThree: 'ph:users-three',
|
|
167
176
|
van: 'ph:van',
|
|
177
|
+
vault: 'ph:vault',
|
|
168
178
|
walking: 'ph:person-simple-walk',
|
|
169
179
|
warning: 'ph:warning',
|
|
170
180
|
warningCircle: 'ph:warning-circle',
|
|
181
|
+
wheelchair: 'ph:wheelchair',
|
|
171
182
|
wifiHigh: 'ph:wifi-high',
|
|
172
183
|
wifiSlash: 'ph:wifi-slash',
|
|
184
|
+
wind: 'ph:wind',
|
|
173
185
|
wine: 'ph:wine',
|
|
174
186
|
wrench: 'ph:wrench',
|
|
175
187
|
})
|
|
@@ -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
|
*
|