Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export const unmanaged_access_code = access_code
.literal(false)
.describe('Indicates that Seam does not manage the access code.'),
status: z
.enum(['set'])
.enum(['set', 'unset'])
.describe(
'Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational.',
'Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device.',
),
dormakaba_oracode_metadata: dormakaba_oracode_access_code_metadata
.nullable()
Expand Down
4 changes: 2 additions & 2 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27565,8 +27565,8 @@ const openapi: OpenAPISpec = {
},
status: {
description:
'Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational.',
enum: ['set'],
'Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device.',
enum: ['set', 'unset'],
type: 'string',
},
type: {
Expand Down
16 changes: 8 additions & 8 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7943,8 +7943,8 @@ export type Routes = {
starts_at?: (string | null) | undefined
/** Date and time after which the time-bound access code becomes inactive. */
ends_at?: (string | null) | undefined
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
status: 'set'
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
status: 'set' | 'unset'
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
dormakaba_oracode_metadata?:
| ({
Expand Down Expand Up @@ -10100,8 +10100,8 @@ export type Routes = {
starts_at?: (string | null) | undefined
/** Date and time after which the time-bound access code becomes inactive. */
ends_at?: (string | null) | undefined
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
status: 'set'
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
status: 'set' | 'unset'
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
dormakaba_oracode_metadata?:
| ({
Expand Down Expand Up @@ -10679,8 +10679,8 @@ export type Routes = {
starts_at?: (string | null) | undefined
/** Date and time after which the time-bound access code becomes inactive. */
ends_at?: (string | null) | undefined
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
status: 'set'
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
status: 'set' | 'unset'
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
dormakaba_oracode_metadata?:
| ({
Expand Down Expand Up @@ -119181,8 +119181,8 @@ export type Routes = {
starts_at?: (string | null) | undefined
/** Date and time after which the time-bound access code becomes inactive. */
ends_at?: (string | null) | undefined
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
status: 'set'
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
status: 'set' | 'unset'
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
dormakaba_oracode_metadata?:
| ({
Expand Down
Loading