@seamapi/types 1.563.0 → 1.565.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 +7841 -119
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5720 -6
- package/dist/index.cjs +7841 -119
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +12 -0
- package/lib/seam/connect/models/batch.js +12 -2
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5856 -156
- package/lib/seam/connect/openapi.js +7833 -115
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +12 -2
- package/src/lib/seam/connect/openapi.ts +9183 -117
- package/src/lib/seam/connect/route-types.ts +14 -0
|
@@ -69352,10 +69352,17 @@ export type Routes = {
|
|
|
69352
69352
|
ends_at: string | null
|
|
69353
69353
|
created_at: string
|
|
69354
69354
|
guest_name: string | null
|
|
69355
|
+
spaces: {
|
|
69356
|
+
space_id: string | null
|
|
69357
|
+
space_key: string
|
|
69358
|
+
name: string | null
|
|
69359
|
+
}[]
|
|
69355
69360
|
access_methods: {
|
|
69356
69361
|
access_method_id: string
|
|
69357
69362
|
mode: string
|
|
69358
69363
|
is_issued: boolean
|
|
69364
|
+
is_card_encoding_required?: boolean | undefined
|
|
69365
|
+
code?: (string | null) | undefined
|
|
69359
69366
|
}[]
|
|
69360
69367
|
}
|
|
69361
69368
|
}
|
|
@@ -69392,6 +69399,11 @@ export type Routes = {
|
|
|
69392
69399
|
mode: string
|
|
69393
69400
|
is_issued: boolean
|
|
69394
69401
|
}[]
|
|
69402
|
+
spaces: {
|
|
69403
|
+
space_id: string | null
|
|
69404
|
+
space_key: string
|
|
69405
|
+
name: string | null
|
|
69406
|
+
}[]
|
|
69395
69407
|
}[]
|
|
69396
69408
|
/** Information about the current page of results. */
|
|
69397
69409
|
pagination: {
|
|
@@ -71829,6 +71841,7 @@ export type Routes = {
|
|
|
71829
71841
|
can_simulate_hub_connection?: boolean | undefined
|
|
71830
71842
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
71831
71843
|
can_simulate_paid_subscription?: boolean | undefined
|
|
71844
|
+
space_ids: string[]
|
|
71832
71845
|
}[]
|
|
71833
71846
|
| undefined
|
|
71834
71847
|
acs_entrances?:
|
|
@@ -71980,6 +71993,7 @@ export type Routes = {
|
|
|
71980
71993
|
can_unlock_with_card?: boolean | undefined
|
|
71981
71994
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
71982
71995
|
can_unlock_with_code?: boolean | undefined
|
|
71996
|
+
space_ids: string[]
|
|
71983
71997
|
}[]
|
|
71984
71998
|
| undefined
|
|
71985
71999
|
connected_accounts?:
|