@connectedxm/admin 6.28.0 → 6.28.1

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/dist/index.d.cts CHANGED
@@ -851,6 +851,7 @@ interface BaseEventAddOn {
851
851
  supply: number | null;
852
852
  price: number;
853
853
  pricePerNight: boolean;
854
+ includedNights: number;
854
855
  sortOrder: number;
855
856
  imageId: string | null;
856
857
  image: BaseImage | null;
@@ -5126,6 +5127,7 @@ interface EventAddOnCreateInputs {
5126
5127
  longDescription?: string | null;
5127
5128
  price: number | string | null;
5128
5129
  pricePerNight?: boolean;
5130
+ includedNights?: number;
5129
5131
  supply?: number | string | null;
5130
5132
  sortOrder?: number | string | null;
5131
5133
  imageId?: string | null;
@@ -5144,6 +5146,7 @@ interface EventAddOnUpdateInputs {
5144
5146
  longDescription?: string | null;
5145
5147
  price?: number | string | null;
5146
5148
  pricePerNight?: boolean;
5149
+ includedNights?: number;
5147
5150
  supply?: number | string | null;
5148
5151
  sortOrder?: number | string | null;
5149
5152
  imageId?: string | null;
package/dist/index.d.ts CHANGED
@@ -851,6 +851,7 @@ interface BaseEventAddOn {
851
851
  supply: number | null;
852
852
  price: number;
853
853
  pricePerNight: boolean;
854
+ includedNights: number;
854
855
  sortOrder: number;
855
856
  imageId: string | null;
856
857
  image: BaseImage | null;
@@ -5126,6 +5127,7 @@ interface EventAddOnCreateInputs {
5126
5127
  longDescription?: string | null;
5127
5128
  price: number | string | null;
5128
5129
  pricePerNight?: boolean;
5130
+ includedNights?: number;
5129
5131
  supply?: number | string | null;
5130
5132
  sortOrder?: number | string | null;
5131
5133
  imageId?: string | null;
@@ -5144,6 +5146,7 @@ interface EventAddOnUpdateInputs {
5144
5146
  longDescription?: string | null;
5145
5147
  price?: number | string | null;
5146
5148
  pricePerNight?: boolean;
5149
+ includedNights?: number;
5147
5150
  supply?: number | string | null;
5148
5151
  sortOrder?: number | string | null;
5149
5152
  imageId?: string | null;
package/openapi.json CHANGED
@@ -95880,6 +95880,9 @@
95880
95880
  "pricePerNight": {
95881
95881
  "type": "boolean"
95882
95882
  },
95883
+ "includedNights": {
95884
+ "type": "number"
95885
+ },
95883
95886
  "sortOrder": {
95884
95887
  "type": "number"
95885
95888
  },
@@ -95923,6 +95926,7 @@
95923
95926
  "supply",
95924
95927
  "price",
95925
95928
  "pricePerNight",
95929
+ "includedNights",
95926
95930
  "sortOrder",
95927
95931
  "imageId",
95928
95932
  "image",
@@ -113886,6 +113890,9 @@
113886
113890
  "pricePerNight": {
113887
113891
  "type": "boolean"
113888
113892
  },
113893
+ "includedNights": {
113894
+ "type": "number"
113895
+ },
113889
113896
  "supply": {
113890
113897
  "oneOf": [
113891
113898
  {
@@ -113975,6 +113982,9 @@
113975
113982
  "pricePerNight": {
113976
113983
  "type": "boolean"
113977
113984
  },
113985
+ "includedNights": {
113986
+ "type": "number"
113987
+ },
113978
113988
  "supply": {
113979
113989
  "oneOf": [
113980
113990
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.28.0",
3
+ "version": "6.28.1",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",