@seamapi/types 1.943.0 → 1.945.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 +110 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -2
- package/dist/index.cjs +110 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +108 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +108 -2
- package/src/lib/seam/connect/route-types.ts +18 -0
package/dist/connect.cjs
CHANGED
|
@@ -67967,7 +67967,7 @@ var openapi = {
|
|
|
67967
67967
|
},
|
|
67968
67968
|
"/seam/console/v1/lynx_migration/get_reservation_migration_status": {
|
|
67969
67969
|
get: {
|
|
67970
|
-
description: "Returns the most recent per-reservation Lynx cutover run for an access grant.\nReturns a null run when the reservation has never been migrated. Keyed by\naccess_grant_id \u2014 a successful cutover deletes the access grant, but the run\nrecord outlives it, so status remains available after the migration completes.",
|
|
67970
|
+
description: "Returns the most recent per-reservation Lynx cutover run for an access grant.\nReturns a null run when the reservation has never been migrated. Keyed by\naccess_grant_id \u2014 a successful cutover deletes the access grant, but the run\nrecord outlives it, so status remains available after the migration completes.\n\nIncludes the codes the cutover deleted (snapshotted before deletion, so the\nhistory survives the hard-delete) and each connected-account sync it requested.",
|
|
67971
67971
|
operationId: "seamConsoleV1LynxMigrationGetReservationMigrationStatusGet",
|
|
67972
67972
|
parameters: [
|
|
67973
67973
|
{
|
|
@@ -67991,7 +67991,57 @@ var openapi = {
|
|
|
67991
67991
|
nullable: true,
|
|
67992
67992
|
properties: {
|
|
67993
67993
|
access_grant_id: { format: "uuid", type: "string" },
|
|
67994
|
+
account_sync_requests: {
|
|
67995
|
+
items: {
|
|
67996
|
+
properties: {
|
|
67997
|
+
at: { type: "string" },
|
|
67998
|
+
connected_account_ids: {
|
|
67999
|
+
items: { format: "uuid", type: "string" },
|
|
68000
|
+
type: "array"
|
|
68001
|
+
},
|
|
68002
|
+
phase: { type: "string" }
|
|
68003
|
+
},
|
|
68004
|
+
required: ["at", "phase", "connected_account_ids"],
|
|
68005
|
+
type: "object"
|
|
68006
|
+
},
|
|
68007
|
+
type: "array"
|
|
68008
|
+
},
|
|
67994
68009
|
created_at: { type: "string" },
|
|
68010
|
+
deleted_codes: {
|
|
68011
|
+
items: {
|
|
68012
|
+
properties: {
|
|
68013
|
+
access_code_id: {
|
|
68014
|
+
format: "uuid",
|
|
68015
|
+
type: "string"
|
|
68016
|
+
},
|
|
68017
|
+
code: { nullable: true, type: "string" },
|
|
68018
|
+
device_id: {
|
|
68019
|
+
format: "uuid",
|
|
68020
|
+
nullable: true,
|
|
68021
|
+
type: "string"
|
|
68022
|
+
},
|
|
68023
|
+
ends_at: { nullable: true, type: "string" },
|
|
68024
|
+
is_managed: { type: "boolean" },
|
|
68025
|
+
name: { nullable: true, type: "string" },
|
|
68026
|
+
origin: { type: "string" },
|
|
68027
|
+
starts_at: { nullable: true, type: "string" },
|
|
68028
|
+
type: { nullable: true, type: "string" }
|
|
68029
|
+
},
|
|
68030
|
+
required: [
|
|
68031
|
+
"access_code_id",
|
|
68032
|
+
"code",
|
|
68033
|
+
"name",
|
|
68034
|
+
"is_managed",
|
|
68035
|
+
"device_id",
|
|
68036
|
+
"type",
|
|
68037
|
+
"starts_at",
|
|
68038
|
+
"ends_at",
|
|
68039
|
+
"origin"
|
|
68040
|
+
],
|
|
68041
|
+
type: "object"
|
|
68042
|
+
},
|
|
68043
|
+
type: "array"
|
|
68044
|
+
},
|
|
67995
68045
|
lynx_migration_run_id: {
|
|
67996
68046
|
format: "uuid",
|
|
67997
68047
|
type: "string"
|
|
@@ -68004,7 +68054,9 @@ var openapi = {
|
|
|
68004
68054
|
"access_grant_id",
|
|
68005
68055
|
"status",
|
|
68006
68056
|
"created_at",
|
|
68007
|
-
"updated_at"
|
|
68057
|
+
"updated_at",
|
|
68058
|
+
"deleted_codes",
|
|
68059
|
+
"account_sync_requests"
|
|
68008
68060
|
],
|
|
68009
68061
|
type: "object"
|
|
68010
68062
|
},
|
|
@@ -68035,7 +68087,7 @@ var openapi = {
|
|
|
68035
68087
|
"x-undocumented": "Internal endpoint for Console"
|
|
68036
68088
|
},
|
|
68037
68089
|
post: {
|
|
68038
|
-
description: "Returns the most recent per-reservation Lynx cutover run for an access grant.\nReturns a null run when the reservation has never been migrated. Keyed by\naccess_grant_id \u2014 a successful cutover deletes the access grant, but the run\nrecord outlives it, so status remains available after the migration completes.",
|
|
68090
|
+
description: "Returns the most recent per-reservation Lynx cutover run for an access grant.\nReturns a null run when the reservation has never been migrated. Keyed by\naccess_grant_id \u2014 a successful cutover deletes the access grant, but the run\nrecord outlives it, so status remains available after the migration completes.\n\nIncludes the codes the cutover deleted (snapshotted before deletion, so the\nhistory survives the hard-delete) and each connected-account sync it requested.",
|
|
68039
68091
|
operationId: "seamConsoleV1LynxMigrationGetReservationMigrationStatusPost",
|
|
68040
68092
|
requestBody: {
|
|
68041
68093
|
content: {
|
|
@@ -68064,7 +68116,57 @@ var openapi = {
|
|
|
68064
68116
|
nullable: true,
|
|
68065
68117
|
properties: {
|
|
68066
68118
|
access_grant_id: { format: "uuid", type: "string" },
|
|
68119
|
+
account_sync_requests: {
|
|
68120
|
+
items: {
|
|
68121
|
+
properties: {
|
|
68122
|
+
at: { type: "string" },
|
|
68123
|
+
connected_account_ids: {
|
|
68124
|
+
items: { format: "uuid", type: "string" },
|
|
68125
|
+
type: "array"
|
|
68126
|
+
},
|
|
68127
|
+
phase: { type: "string" }
|
|
68128
|
+
},
|
|
68129
|
+
required: ["at", "phase", "connected_account_ids"],
|
|
68130
|
+
type: "object"
|
|
68131
|
+
},
|
|
68132
|
+
type: "array"
|
|
68133
|
+
},
|
|
68067
68134
|
created_at: { type: "string" },
|
|
68135
|
+
deleted_codes: {
|
|
68136
|
+
items: {
|
|
68137
|
+
properties: {
|
|
68138
|
+
access_code_id: {
|
|
68139
|
+
format: "uuid",
|
|
68140
|
+
type: "string"
|
|
68141
|
+
},
|
|
68142
|
+
code: { nullable: true, type: "string" },
|
|
68143
|
+
device_id: {
|
|
68144
|
+
format: "uuid",
|
|
68145
|
+
nullable: true,
|
|
68146
|
+
type: "string"
|
|
68147
|
+
},
|
|
68148
|
+
ends_at: { nullable: true, type: "string" },
|
|
68149
|
+
is_managed: { type: "boolean" },
|
|
68150
|
+
name: { nullable: true, type: "string" },
|
|
68151
|
+
origin: { type: "string" },
|
|
68152
|
+
starts_at: { nullable: true, type: "string" },
|
|
68153
|
+
type: { nullable: true, type: "string" }
|
|
68154
|
+
},
|
|
68155
|
+
required: [
|
|
68156
|
+
"access_code_id",
|
|
68157
|
+
"code",
|
|
68158
|
+
"name",
|
|
68159
|
+
"is_managed",
|
|
68160
|
+
"device_id",
|
|
68161
|
+
"type",
|
|
68162
|
+
"starts_at",
|
|
68163
|
+
"ends_at",
|
|
68164
|
+
"origin"
|
|
68165
|
+
],
|
|
68166
|
+
type: "object"
|
|
68167
|
+
},
|
|
68168
|
+
type: "array"
|
|
68169
|
+
},
|
|
68068
68170
|
lynx_migration_run_id: {
|
|
68069
68171
|
format: "uuid",
|
|
68070
68172
|
type: "string"
|
|
@@ -68077,7 +68179,9 @@ var openapi = {
|
|
|
68077
68179
|
"access_grant_id",
|
|
68078
68180
|
"status",
|
|
68079
68181
|
"created_at",
|
|
68080
|
-
"updated_at"
|
|
68182
|
+
"updated_at",
|
|
68183
|
+
"deleted_codes",
|
|
68184
|
+
"account_sync_requests"
|
|
68081
68185
|
],
|
|
68082
68186
|
type: "object"
|
|
68083
68187
|
},
|
|
@@ -69684,6 +69788,7 @@ var openapi = {
|
|
|
69684
69788
|
"VISIONLINE_SERIALIZE_BRIDGE_REQUESTS",
|
|
69685
69789
|
"SALTO_KS_ENTRANCES_ONLY_FOR_SPACES",
|
|
69686
69790
|
"MANAGE_DEVICES_CONFIRMATION_MODAL",
|
|
69791
|
+
"RECLAIM_ORPHANED_BACKUP_ACCESS_CODES",
|
|
69687
69792
|
"LYNX_MIGRATION_ENABLED"
|
|
69688
69793
|
],
|
|
69689
69794
|
type: "string"
|
|
@@ -69712,6 +69817,7 @@ var openapi = {
|
|
|
69712
69817
|
"VISIONLINE_SERIALIZE_BRIDGE_REQUESTS",
|
|
69713
69818
|
"SALTO_KS_ENTRANCES_ONLY_FOR_SPACES",
|
|
69714
69819
|
"MANAGE_DEVICES_CONFIRMATION_MODAL",
|
|
69820
|
+
"RECLAIM_ORPHANED_BACKUP_ACCESS_CODES",
|
|
69715
69821
|
"LYNX_MIGRATION_ENABLED"
|
|
69716
69822
|
],
|
|
69717
69823
|
type: "string"
|