@seamapi/types 1.796.0 → 1.797.0

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.
@@ -66743,6 +66743,7 @@ export type Routes = {
66743
66743
  business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
66744
66744
  feature_flags?: {
66745
66745
  RESERVATION_UI_V2?: boolean | undefined;
66746
+ SALTO_KS_ENTRANCES_ONLY_FOR_SPACES?: boolean | undefined;
66746
66747
  } | undefined;
66747
66748
  };
66748
66749
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.796.0",
3
+ "version": "1.797.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -67364,6 +67364,9 @@ export default {
67364
67364
  feature_flags: {
67365
67365
  properties: {
67366
67366
  RESERVATION_UI_V2: { type: 'boolean' },
67367
+ SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
67368
+ type: 'boolean',
67369
+ },
67367
67370
  },
67368
67371
  type: 'object',
67369
67372
  },
@@ -67777,6 +67780,9 @@ export default {
67777
67780
  feature_flags: {
67778
67781
  properties: {
67779
67782
  RESERVATION_UI_V2: { type: 'boolean' },
67783
+ SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
67784
+ type: 'boolean',
67785
+ },
67780
67786
  },
67781
67787
  type: 'object',
67782
67788
  },
@@ -79318,6 +79318,7 @@ export type Routes = {
79318
79318
  feature_flags?:
79319
79319
  | {
79320
79320
  RESERVATION_UI_V2?: boolean | undefined
79321
+ SALTO_KS_ENTRANCES_ONLY_FOR_SPACES?: boolean | undefined
79321
79322
  }
79322
79323
  | undefined
79323
79324
  }