@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
|
@@ -89398,6 +89398,99 @@ export type Routes = {
|
|
|
89398
89398
|
}
|
|
89399
89399
|
maxDuration: undefined
|
|
89400
89400
|
}
|
|
89401
|
+
'/seam/console/v1/lynx_migration/get_property_migration_status': {
|
|
89402
|
+
route: '/seam/console/v1/lynx_migration/get_property_migration_status'
|
|
89403
|
+
method: 'GET' | 'POST'
|
|
89404
|
+
queryParams: {}
|
|
89405
|
+
jsonBody: {}
|
|
89406
|
+
commonParams: {
|
|
89407
|
+
/** ID of the space (property) to get the migration status for. */
|
|
89408
|
+
space_id: string
|
|
89409
|
+
}
|
|
89410
|
+
formData: {}
|
|
89411
|
+
jsonResponse: {
|
|
89412
|
+
lynx_migration_property_run: {
|
|
89413
|
+
lynx_migration_property_run_id: string
|
|
89414
|
+
space_id: string
|
|
89415
|
+
status: string
|
|
89416
|
+
created_at: string
|
|
89417
|
+
updated_at: string
|
|
89418
|
+
child_status_counts: {
|
|
89419
|
+
[x: string]: number
|
|
89420
|
+
}
|
|
89421
|
+
} | null
|
|
89422
|
+
}
|
|
89423
|
+
maxDuration: undefined
|
|
89424
|
+
}
|
|
89425
|
+
'/seam/console/v1/lynx_migration/get_reservation_migration_status': {
|
|
89426
|
+
route: '/seam/console/v1/lynx_migration/get_reservation_migration_status'
|
|
89427
|
+
method: 'GET' | 'POST'
|
|
89428
|
+
queryParams: {}
|
|
89429
|
+
jsonBody: {}
|
|
89430
|
+
commonParams: {
|
|
89431
|
+
/** ID of the access grant (reservation) to get the migration status for. */
|
|
89432
|
+
access_grant_id: string
|
|
89433
|
+
}
|
|
89434
|
+
formData: {}
|
|
89435
|
+
jsonResponse: {
|
|
89436
|
+
lynx_migration_reservation_run: {
|
|
89437
|
+
lynx_migration_run_id: string
|
|
89438
|
+
access_grant_id: string
|
|
89439
|
+
status: string
|
|
89440
|
+
created_at: string
|
|
89441
|
+
updated_at: string
|
|
89442
|
+
} | null
|
|
89443
|
+
}
|
|
89444
|
+
maxDuration: undefined
|
|
89445
|
+
}
|
|
89446
|
+
'/seam/console/v1/lynx_migration/list_property_reservations': {
|
|
89447
|
+
route: '/seam/console/v1/lynx_migration/list_property_reservations'
|
|
89448
|
+
method: 'GET' | 'POST'
|
|
89449
|
+
queryParams: {}
|
|
89450
|
+
jsonBody: {}
|
|
89451
|
+
commonParams: {
|
|
89452
|
+
/** ID of the space (property) to plan a Lynx migration for. */
|
|
89453
|
+
space_id: string
|
|
89454
|
+
}
|
|
89455
|
+
formData: {}
|
|
89456
|
+
jsonResponse: {
|
|
89457
|
+
lynx_migration_property_plan: {
|
|
89458
|
+
space_id: string
|
|
89459
|
+
total: number
|
|
89460
|
+
eligible_count: number
|
|
89461
|
+
eligible: {
|
|
89462
|
+
access_grant_id: string
|
|
89463
|
+
guest_name: string | null
|
|
89464
|
+
}[]
|
|
89465
|
+
skipped: {
|
|
89466
|
+
access_grant_id: string
|
|
89467
|
+
guest_name: string | null
|
|
89468
|
+
reason: string | null
|
|
89469
|
+
}[]
|
|
89470
|
+
}
|
|
89471
|
+
}
|
|
89472
|
+
maxDuration: undefined
|
|
89473
|
+
}
|
|
89474
|
+
'/seam/console/v1/lynx_migration/migrate_property': {
|
|
89475
|
+
route: '/seam/console/v1/lynx_migration/migrate_property'
|
|
89476
|
+
method: 'POST'
|
|
89477
|
+
queryParams: {}
|
|
89478
|
+
jsonBody: {}
|
|
89479
|
+
commonParams: {
|
|
89480
|
+
/** ID of the space (property) to migrate. */
|
|
89481
|
+
space_id: string
|
|
89482
|
+
}
|
|
89483
|
+
formData: {}
|
|
89484
|
+
jsonResponse: {
|
|
89485
|
+
lynx_migration_property_run: {
|
|
89486
|
+
lynx_migration_property_run_id: string
|
|
89487
|
+
space_id: string
|
|
89488
|
+
status: string
|
|
89489
|
+
already_running: boolean
|
|
89490
|
+
}
|
|
89491
|
+
}
|
|
89492
|
+
maxDuration: undefined
|
|
89493
|
+
}
|
|
89401
89494
|
'/seam/console/v1/sites/create': {
|
|
89402
89495
|
route: '/seam/console/v1/sites/create'
|
|
89403
89496
|
method: 'POST'
|
|
@@ -89758,6 +89851,40 @@ export type Routes = {
|
|
|
89758
89851
|
}
|
|
89759
89852
|
maxDuration: undefined
|
|
89760
89853
|
}
|
|
89854
|
+
'/seam/console/v1/workspace/feature_flags/update': {
|
|
89855
|
+
route: '/seam/console/v1/workspace/feature_flags/update'
|
|
89856
|
+
method: 'POST'
|
|
89857
|
+
queryParams: {}
|
|
89858
|
+
jsonBody: {}
|
|
89859
|
+
commonParams: {
|
|
89860
|
+
/** Name of the workspace feature flag to update. */
|
|
89861
|
+
feature_flag_name:
|
|
89862
|
+
| 'RESERVATION_LEGACY'
|
|
89863
|
+
| 'EXPERIMENTAL_DASHBOARD_API_ENABLED'
|
|
89864
|
+
| 'ICAL_CONNECTOR'
|
|
89865
|
+
| 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS'
|
|
89866
|
+
| 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES'
|
|
89867
|
+
| 'MANAGE_DEVICES_CONFIRMATION_MODAL'
|
|
89868
|
+
| 'LYNX_MIGRATION_ENABLED'
|
|
89869
|
+
/** Whether the feature flag should be enabled for the workspace. */
|
|
89870
|
+
enabled: boolean
|
|
89871
|
+
}
|
|
89872
|
+
formData: {}
|
|
89873
|
+
jsonResponse: {
|
|
89874
|
+
feature_flag: {
|
|
89875
|
+
feature_flag_name:
|
|
89876
|
+
| 'RESERVATION_LEGACY'
|
|
89877
|
+
| 'EXPERIMENTAL_DASHBOARD_API_ENABLED'
|
|
89878
|
+
| 'ICAL_CONNECTOR'
|
|
89879
|
+
| 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS'
|
|
89880
|
+
| 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES'
|
|
89881
|
+
| 'MANAGE_DEVICES_CONFIRMATION_MODAL'
|
|
89882
|
+
| 'LYNX_MIGRATION_ENABLED'
|
|
89883
|
+
enabled: boolean
|
|
89884
|
+
}
|
|
89885
|
+
}
|
|
89886
|
+
maxDuration: undefined
|
|
89887
|
+
}
|
|
89761
89888
|
'/seam/customer/v1/access_grants/list': {
|
|
89762
89889
|
route: '/seam/customer/v1/access_grants/list'
|
|
89763
89890
|
method: 'GET' | 'POST'
|