@seamapi/types 1.939.0 → 1.940.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.
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.939.0",
3
+ "version": "1.940.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",