@roomstay/core 0.1.33-4 → 0.1.33

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.
Files changed (42) hide show
  1. package/dist/index.d.ts +0 -0
  2. package/dist/node.js +0 -0
  3. package/dist/types/Booking/IBookingCreateErrorResponse.d.ts +0 -0
  4. package/dist/types/Booking/IBookingPayment.type.d.ts +0 -0
  5. package/dist/types/Booking/IBookingQuote.type.d.ts +0 -0
  6. package/dist/types/Booking/IBookingStatus.type.d.ts +0 -0
  7. package/dist/types/Booking/IPrice.type.d.ts +0 -0
  8. package/dist/types/Company/ECompanyProvider.enum.d.ts +0 -0
  9. package/dist/types/Company/IAdminCompany.type.d.ts +0 -0
  10. package/dist/types/Company/IAdminCompanyUser.type.d.ts +0 -0
  11. package/dist/types/Events/IRoomstayEvent.type.d.ts +0 -0
  12. package/dist/types/General/HttpMethod.enum.d.ts +0 -0
  13. package/dist/types/Hotel/EHotelPriceModel.enum.d.ts +0 -0
  14. package/dist/types/Hotel/EHotelWeekdayStartsOn.enum.d.ts +0 -0
  15. package/dist/types/Hotel/IAuxiliaryFilter.type.d.ts +1 -1
  16. package/dist/types/Hotel/IHotelColorScheme.type.d.ts +0 -0
  17. package/dist/types/Hotel/IHotelOverrides.type.d.ts +0 -0
  18. package/dist/types/Hotel/IHotelReplica.type.d.ts +0 -0
  19. package/dist/types/Hotel/IHotelService.type.d.ts +0 -0
  20. package/dist/types/Image/IRoomstayImage.type.d.ts +0 -0
  21. package/dist/types/Member/IRoomstayCognitoMember.type.d.ts +0 -0
  22. package/dist/types/Member/IRoomstayMember.type.d.ts +0 -0
  23. package/dist/types/Member/IRoomstayMemberBooking.type.d.ts +0 -0
  24. package/dist/types/Member/IRoomstayMemberBookingAddress.type.d.ts +0 -0
  25. package/dist/types/Member/IRoomstayMemberBookingItem.type.d.ts +0 -0
  26. package/dist/types/Member/IRoomstayMemberBookingProfile.type.d.ts +0 -0
  27. package/dist/types/Member/IRoomstayMemberCards.type.d.ts +0 -0
  28. package/dist/types/Member/ISession.type.d.ts +0 -0
  29. package/dist/types/Policies/EGuaranteePolicy.enum.d.ts +0 -0
  30. package/dist/types/RMS/ERMSDiscountType.enum.d.ts +0 -0
  31. package/dist/types/RMS/IRMSPropertyDiscount.type.d.ts +0 -0
  32. package/dist/types/RMS/IRMSRequirement.type.d.ts +0 -0
  33. package/dist/types/Room/IRoomGroup.type.d.ts +0 -0
  34. package/dist/types/index.d.ts +0 -0
  35. package/dist/utils/bookingTotal.d.ts +0 -0
  36. package/dist/utils/index.d.ts +0 -0
  37. package/dist/utils/roomstayImageResize.d.ts +0 -0
  38. package/dist/utils/uppercaseString.d.ts +0 -0
  39. package/dist/web.js +0 -0
  40. package/package.json +1 -1
  41. package/dist/types/General/IJsonString.type.d.ts +0 -6
  42. package/dist/utils/nameof.d.ts +0 -2
package/dist/index.d.ts CHANGED
File without changes
package/dist/node.js CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -13,7 +13,7 @@ export type IAuxiliaryFilter = {
13
13
  requireInput?: boolean;
14
14
  /** If set to true, and user decides to filter by 3rd entry, 1st & 2nd also works */
15
15
  includeAllAbove: boolean;
16
- options: {
16
+ options: string[] | {
17
17
  value: string | number;
18
18
  label: string;
19
19
  }[];
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/web.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomstay/core",
3
- "version": "0.1.33-4",
3
+ "version": "0.1.33",
4
4
  "description": "Details shared between Roomstay libraries. Anything from Currency, to Generic types",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [
@@ -1,6 +0,0 @@
1
- /**
2
- * Basic object to wrap a string that is de/encoded as JSON.
3
- */
4
- export type IJsonString = {
5
- message: string;
6
- };
@@ -1,2 +0,0 @@
1
- export declare const nameof: <T>(name: Extract<keyof T, string>) => string;
2
- export declare const nameofField: <T>(instance: T, name: keyof T) => string;