@revolugo/common 6.15.8-alpha.0 → 6.15.8-alpha.2

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.15.8-alpha.0",
3
+ "version": "6.15.8-alpha.2",
4
4
  "private": false,
5
5
  "description": "Revolugo common",
6
6
  "author": "Revolugo",
@@ -1,5 +1,6 @@
1
1
  export const ICONS_NAME = Object.freeze({
2
2
  airplane: 'ph:airplane',
3
+ appleBrand: 'logos:apple',
3
4
  archive: 'ph:archive',
4
5
  arrowDown: 'ph:arrow-down',
5
6
  arrowHorizontal: 'ph:arrows-horizontal',
@@ -88,6 +89,7 @@ export const ICONS_NAME = Object.freeze({
88
89
  gear: 'ph:gear',
89
90
  globe: 'ph:globe',
90
91
  golf: 'ph:golf',
92
+ googleCalendar: 'logos:google-calendar',
91
93
  graph: 'ph:graph',
92
94
  gym: 'ph:barbell',
93
95
  hairDryer: 'ph:hair-dryer',
@@ -126,6 +128,8 @@ export const ICONS_NAME = Object.freeze({
126
128
  musicNotes: 'ph:music-notes',
127
129
  noSmoking: 'ph:cigarette-slash',
128
130
  note: 'ph:note',
131
+ office365: 'custom:ms-office-365',
132
+ outlook: 'custom:ms-outlook',
129
133
  paintBrush: 'ph:paint-brush',
130
134
  palette: 'ph:palette',
131
135
  paperPlaneTilt: 'ph:paper-plane-tilt',
@@ -1,9 +1,6 @@
1
- // eslint-disable-next-line no-restricted-imports
2
- import type { PayLaterStatus } from '../booking.ts'
3
1
  import type { CancellationPolicy } from './cancellation-policy.ts'
4
2
  import type { CurrencyType } from './currency.ts'
5
3
  import type { HotelRoomOffer } from './hotel-room-offer.ts'
6
- import type { PaymentMethod } from './payment-method.ts'
7
4
 
8
5
  export interface BookingPolicies {
9
6
  /**
@@ -82,10 +79,6 @@ export interface BookingPolicies {
82
79
  * @memberof BookingPolicies
83
80
  */
84
81
  isPriceIncreased: boolean
85
-
86
- payLater?: PayLaterStatus
87
-
88
- paymentMethods?: PaymentMethod[]
89
82
  }
90
83
 
91
84
  /**
@@ -57,7 +57,7 @@ export interface HotelRoom {
57
57
  * @type {string}
58
58
  * @memberof HotelRoom
59
59
  */
60
- id?: string
60
+ id: string
61
61
  /**
62
62
  * List of indexes corresponding to image names for the given Hotel Room among the related hotel images.
63
63
  * @type {Array<number>}