@connectedxm/admin 7.2.8 → 7.2.9

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
@@ -3781,6 +3781,7 @@ interface BaseBookingSpace {
3781
3781
  name: string;
3782
3782
  slug: string;
3783
3783
  supply: number;
3784
+ bookingLimitPerAccount: number | null;
3784
3785
  slotDuration: number;
3785
3786
  price: number;
3786
3787
  description: string | null;
@@ -6694,6 +6695,7 @@ interface BookingPlaceTranslationUpdateInputs {
6694
6695
  interface BookingSpaceCreateInputs {
6695
6696
  name: string;
6696
6697
  supply: number | string;
6698
+ bookingLimitPerAccount?: number | string | null;
6697
6699
  slotDuration: number | string;
6698
6700
  price?: number | string;
6699
6701
  description?: string | null;
@@ -6718,6 +6720,7 @@ interface BookingSpaceCreateInputs {
6718
6720
  interface BookingSpaceUpdateInputs {
6719
6721
  name?: string;
6720
6722
  supply?: number | string;
6723
+ bookingLimitPerAccount?: number | string | null;
6721
6724
  price?: number | string;
6722
6725
  description?: string | null;
6723
6726
  imageId?: string | null;
package/dist/index.d.ts CHANGED
@@ -3781,6 +3781,7 @@ interface BaseBookingSpace {
3781
3781
  name: string;
3782
3782
  slug: string;
3783
3783
  supply: number;
3784
+ bookingLimitPerAccount: number | null;
3784
3785
  slotDuration: number;
3785
3786
  price: number;
3786
3787
  description: string | null;
@@ -6694,6 +6695,7 @@ interface BookingPlaceTranslationUpdateInputs {
6694
6695
  interface BookingSpaceCreateInputs {
6695
6696
  name: string;
6696
6697
  supply: number | string;
6698
+ bookingLimitPerAccount?: number | string | null;
6697
6699
  slotDuration: number | string;
6698
6700
  price?: number | string;
6699
6701
  description?: string | null;
@@ -6718,6 +6720,7 @@ interface BookingSpaceCreateInputs {
6718
6720
  interface BookingSpaceUpdateInputs {
6719
6721
  name?: string;
6720
6722
  supply?: number | string;
6723
+ bookingLimitPerAccount?: number | string | null;
6721
6724
  price?: number | string;
6722
6725
  description?: string | null;
6723
6726
  imageId?: string | null;
package/openapi.json CHANGED
@@ -108504,6 +108504,10 @@
108504
108504
  "supply": {
108505
108505
  "type": "number"
108506
108506
  },
108507
+ "bookingLimitPerAccount": {
108508
+ "type": "number",
108509
+ "nullable": true
108510
+ },
108507
108511
  "slotDuration": {
108508
108512
  "type": "number"
108509
108513
  },
@@ -108552,6 +108556,7 @@
108552
108556
  "name",
108553
108557
  "slug",
108554
108558
  "supply",
108559
+ "bookingLimitPerAccount",
108555
108560
  "slotDuration",
108556
108561
  "price",
108557
108562
  "description",
@@ -120781,6 +120786,17 @@
120781
120786
  }
120782
120787
  ]
120783
120788
  },
120789
+ "bookingLimitPerAccount": {
120790
+ "oneOf": [
120791
+ {
120792
+ "type": "number"
120793
+ },
120794
+ {
120795
+ "type": "string"
120796
+ }
120797
+ ],
120798
+ "nullable": true
120799
+ },
120784
120800
  "slotDuration": {
120785
120801
  "oneOf": [
120786
120802
  {
@@ -120899,6 +120915,17 @@
120899
120915
  }
120900
120916
  ]
120901
120917
  },
120918
+ "bookingLimitPerAccount": {
120919
+ "oneOf": [
120920
+ {
120921
+ "type": "number"
120922
+ },
120923
+ {
120924
+ "type": "string"
120925
+ }
120926
+ ],
120927
+ "nullable": true
120928
+ },
120902
120929
  "price": {
120903
120930
  "oneOf": [
120904
120931
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "7.2.8",
3
+ "version": "7.2.9",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",