@revolugo/common 7.11.0-rc.3 → 7.11.1-alpha.0
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 +1 -1
- package/src/constants/index.ts +1 -0
- package/src/constants/insurance.ts +2 -0
- package/src/icons/index.ts +1 -0
- package/src/types/elements/event.ts +12 -0
- package/src/types/event.ts +2 -0
- package/src/types/hotel-contract.ts +1 -0
- package/src/types/index.ts +1 -0
- package/src/types/insurance.ts +8 -0
package/package.json
CHANGED
package/src/constants/index.ts
CHANGED
package/src/icons/index.ts
CHANGED
|
@@ -154,6 +154,7 @@ export const ICONS_NAME = Object.freeze({
|
|
|
154
154
|
running: 'ph:person-simple-run',
|
|
155
155
|
scissors: 'ph:scissors',
|
|
156
156
|
shield: 'ph:shield',
|
|
157
|
+
shieldCheck: 'ph:shield-check',
|
|
157
158
|
shirt: 'ph:shirt-folded',
|
|
158
159
|
shoppingBag: 'ph:shopping-bag',
|
|
159
160
|
shoppingCart: 'ph:shopping-cart',
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
export interface Event {
|
|
2
|
+
/**
|
|
3
|
+
* Latitude of the event venue
|
|
4
|
+
* @type {number}
|
|
5
|
+
* @memberof EventApi
|
|
6
|
+
*/
|
|
7
|
+
latitude?: number | null
|
|
8
|
+
/**
|
|
9
|
+
* Longitude of the event venue
|
|
10
|
+
* @type {number}
|
|
11
|
+
* @memberof EventApi
|
|
12
|
+
*/
|
|
13
|
+
longitude?: number | null
|
|
2
14
|
/**
|
|
3
15
|
* Unique name of the event
|
|
4
16
|
* @type {string}
|
package/src/types/event.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface IHotelContract {
|
|
|
7
7
|
forcedTotalComissionsAmount: number
|
|
8
8
|
forcedTotalPurchasedAmount: number
|
|
9
9
|
forcedTotalVatComissionsAmount: number
|
|
10
|
+
hotelContractTaaps?: { taapId: string }[] | null
|
|
10
11
|
hotelId: string
|
|
11
12
|
hotelRoomStocks?: IHotelRoomStock[]
|
|
12
13
|
name: string
|
package/src/types/index.ts
CHANGED
|
@@ -19,5 +19,6 @@ export type * from './event.ts'
|
|
|
19
19
|
export type * from './geo-coordinates.ts'
|
|
20
20
|
export type * from './hotel-contract.ts'
|
|
21
21
|
export type * from './hotel-room-stock.ts'
|
|
22
|
+
export type * from './insurance.ts'
|
|
22
23
|
export type * from './money-object.ts'
|
|
23
24
|
export type * from './paginated-queries.ts'
|