@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.
- package/dist/connect.cjs +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -0
- package/dist/index.cjs +8 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +6 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -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
|
@@ -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
|
}
|