@revolugo/common 7.4.2-alpha.15 → 7.4.2-alpha.17
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/schemas/booking.ts +1 -1
- package/src/schemas/contact-person.ts +1 -1
- package/src/schemas/event.ts +1 -1
- package/src/schemas/hotel-rooming-list.ts +1 -1
- package/src/schemas/invoice.ts +1 -1
- package/src/schemas/payment-methods.ts +1 -1
- package/src/types/elements/hotel-offer-request.ts +0 -1
- package/src/types/elements/hotel-room-offer-request.ts +0 -1
- package/src/utils/dayjs.ts +4 -4
package/package.json
CHANGED
package/src/schemas/booking.ts
CHANGED
package/src/schemas/event.ts
CHANGED
package/src/schemas/invoice.ts
CHANGED
|
@@ -135,7 +135,6 @@ export interface HotelRoomOfferRequestCreate {
|
|
|
135
135
|
eventMetadata?: HotelRoomOfferRequest['eventMetadata']
|
|
136
136
|
hotelId: HotelRoomOfferRequest['hotelId']
|
|
137
137
|
roomCount: HotelRoomOfferRequest['roomCount']
|
|
138
|
-
sourceMarket: HotelRoomOfferRequest['sourceMarket']
|
|
139
138
|
}
|
|
140
139
|
export interface HotelRoomOfferRequestsCreatePayload {
|
|
141
140
|
hotelRoomOfferRequestCreateApi?: HotelRoomOfferRequestCreate
|
package/src/utils/dayjs.ts
CHANGED
|
@@ -13,12 +13,12 @@ import timezone from 'dayjs/plugin/timezone.js'
|
|
|
13
13
|
import utc from 'dayjs/plugin/utc.js'
|
|
14
14
|
/* eslint-enable no-restricted-imports, no-restricted-syntax */
|
|
15
15
|
|
|
16
|
-
/* eslint-disable no-restricted-syntax, import/no-unassigned-import */
|
|
16
|
+
/* eslint-disable no-restricted-syntax, import-x/no-unassigned-import */
|
|
17
17
|
import 'dayjs/locale/fr.js'
|
|
18
18
|
import 'dayjs/locale/en.js'
|
|
19
|
-
/* eslint-enable no-restricted-syntax, import/no-unassigned-import */
|
|
19
|
+
/* eslint-enable no-restricted-syntax, import-x/no-unassigned-import */
|
|
20
20
|
|
|
21
|
-
/* eslint-disable import/no-named-as-default-member */
|
|
21
|
+
/* eslint-disable import-x/no-named-as-default-member */
|
|
22
22
|
dayjs.extend(advancedFormat)
|
|
23
23
|
dayjs.extend(customParseFormat)
|
|
24
24
|
dayjs.extend(isBetween)
|
|
@@ -30,7 +30,7 @@ dayjs.extend(minMax)
|
|
|
30
30
|
dayjs.extend(relativeTime)
|
|
31
31
|
dayjs.extend(timezone)
|
|
32
32
|
dayjs.extend(utc)
|
|
33
|
-
/* eslint-enable import/no-named-as-default-member */
|
|
33
|
+
/* eslint-enable import-x/no-named-as-default-member */
|
|
34
34
|
|
|
35
35
|
export { dayjs }
|
|
36
36
|
|