@seamapi/types 1.939.0 → 1.941.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 +661 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +113 -0
- package/dist/index.cjs +661 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +661 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +113 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +683 -0
- package/src/lib/seam/connect/route-types.ts +127 -0
|
@@ -74602,6 +74602,99 @@ export type Routes = {
|
|
|
74602
74602
|
};
|
|
74603
74603
|
maxDuration: undefined;
|
|
74604
74604
|
};
|
|
74605
|
+
'/seam/console/v1/lynx_migration/get_property_migration_status': {
|
|
74606
|
+
route: '/seam/console/v1/lynx_migration/get_property_migration_status';
|
|
74607
|
+
method: 'GET' | 'POST';
|
|
74608
|
+
queryParams: {};
|
|
74609
|
+
jsonBody: {};
|
|
74610
|
+
commonParams: {
|
|
74611
|
+
/** ID of the space (property) to get the migration status for. */
|
|
74612
|
+
space_id: string;
|
|
74613
|
+
};
|
|
74614
|
+
formData: {};
|
|
74615
|
+
jsonResponse: {
|
|
74616
|
+
lynx_migration_property_run: {
|
|
74617
|
+
lynx_migration_property_run_id: string;
|
|
74618
|
+
space_id: string;
|
|
74619
|
+
status: string;
|
|
74620
|
+
created_at: string;
|
|
74621
|
+
updated_at: string;
|
|
74622
|
+
child_status_counts: {
|
|
74623
|
+
[x: string]: number;
|
|
74624
|
+
};
|
|
74625
|
+
} | null;
|
|
74626
|
+
};
|
|
74627
|
+
maxDuration: undefined;
|
|
74628
|
+
};
|
|
74629
|
+
'/seam/console/v1/lynx_migration/get_reservation_migration_status': {
|
|
74630
|
+
route: '/seam/console/v1/lynx_migration/get_reservation_migration_status';
|
|
74631
|
+
method: 'GET' | 'POST';
|
|
74632
|
+
queryParams: {};
|
|
74633
|
+
jsonBody: {};
|
|
74634
|
+
commonParams: {
|
|
74635
|
+
/** ID of the access grant (reservation) to get the migration status for. */
|
|
74636
|
+
access_grant_id: string;
|
|
74637
|
+
};
|
|
74638
|
+
formData: {};
|
|
74639
|
+
jsonResponse: {
|
|
74640
|
+
lynx_migration_reservation_run: {
|
|
74641
|
+
lynx_migration_run_id: string;
|
|
74642
|
+
access_grant_id: string;
|
|
74643
|
+
status: string;
|
|
74644
|
+
created_at: string;
|
|
74645
|
+
updated_at: string;
|
|
74646
|
+
} | null;
|
|
74647
|
+
};
|
|
74648
|
+
maxDuration: undefined;
|
|
74649
|
+
};
|
|
74650
|
+
'/seam/console/v1/lynx_migration/list_property_reservations': {
|
|
74651
|
+
route: '/seam/console/v1/lynx_migration/list_property_reservations';
|
|
74652
|
+
method: 'GET' | 'POST';
|
|
74653
|
+
queryParams: {};
|
|
74654
|
+
jsonBody: {};
|
|
74655
|
+
commonParams: {
|
|
74656
|
+
/** ID of the space (property) to plan a Lynx migration for. */
|
|
74657
|
+
space_id: string;
|
|
74658
|
+
};
|
|
74659
|
+
formData: {};
|
|
74660
|
+
jsonResponse: {
|
|
74661
|
+
lynx_migration_property_plan: {
|
|
74662
|
+
space_id: string;
|
|
74663
|
+
total: number;
|
|
74664
|
+
eligible_count: number;
|
|
74665
|
+
eligible: {
|
|
74666
|
+
access_grant_id: string;
|
|
74667
|
+
guest_name: string | null;
|
|
74668
|
+
}[];
|
|
74669
|
+
skipped: {
|
|
74670
|
+
access_grant_id: string;
|
|
74671
|
+
guest_name: string | null;
|
|
74672
|
+
reason: string | null;
|
|
74673
|
+
}[];
|
|
74674
|
+
};
|
|
74675
|
+
};
|
|
74676
|
+
maxDuration: undefined;
|
|
74677
|
+
};
|
|
74678
|
+
'/seam/console/v1/lynx_migration/migrate_property': {
|
|
74679
|
+
route: '/seam/console/v1/lynx_migration/migrate_property';
|
|
74680
|
+
method: 'POST';
|
|
74681
|
+
queryParams: {};
|
|
74682
|
+
jsonBody: {};
|
|
74683
|
+
commonParams: {
|
|
74684
|
+
/** ID of the space (property) to migrate. */
|
|
74685
|
+
space_id: string;
|
|
74686
|
+
};
|
|
74687
|
+
formData: {};
|
|
74688
|
+
jsonResponse: {
|
|
74689
|
+
lynx_migration_property_run: {
|
|
74690
|
+
lynx_migration_property_run_id: string;
|
|
74691
|
+
space_id: string;
|
|
74692
|
+
status: string;
|
|
74693
|
+
already_running: boolean;
|
|
74694
|
+
};
|
|
74695
|
+
};
|
|
74696
|
+
maxDuration: undefined;
|
|
74697
|
+
};
|
|
74605
74698
|
'/seam/console/v1/sites/create': {
|
|
74606
74699
|
route: '/seam/console/v1/sites/create';
|
|
74607
74700
|
method: 'POST';
|
|
@@ -74921,6 +75014,26 @@ export type Routes = {
|
|
|
74921
75014
|
};
|
|
74922
75015
|
maxDuration: undefined;
|
|
74923
75016
|
};
|
|
75017
|
+
'/seam/console/v1/workspace/feature_flags/update': {
|
|
75018
|
+
route: '/seam/console/v1/workspace/feature_flags/update';
|
|
75019
|
+
method: 'POST';
|
|
75020
|
+
queryParams: {};
|
|
75021
|
+
jsonBody: {};
|
|
75022
|
+
commonParams: {
|
|
75023
|
+
/** Name of the workspace feature flag to update. */
|
|
75024
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'LYNX_MIGRATION_ENABLED';
|
|
75025
|
+
/** Whether the feature flag should be enabled for the workspace. */
|
|
75026
|
+
enabled: boolean;
|
|
75027
|
+
};
|
|
75028
|
+
formData: {};
|
|
75029
|
+
jsonResponse: {
|
|
75030
|
+
feature_flag: {
|
|
75031
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'LYNX_MIGRATION_ENABLED';
|
|
75032
|
+
enabled: boolean;
|
|
75033
|
+
};
|
|
75034
|
+
};
|
|
75035
|
+
maxDuration: undefined;
|
|
75036
|
+
};
|
|
74924
75037
|
'/seam/customer/v1/access_grants/list': {
|
|
74925
75038
|
route: '/seam/customer/v1/access_grants/list';
|
|
74926
75039
|
method: 'GET' | 'POST';
|