@seamapi/types 1.824.0 → 1.825.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.
@@ -7047,8 +7047,8 @@ export type Routes = {
7047
7047
  starts_at?: (string | null) | undefined;
7048
7048
  /** Date and time after which the time-bound access code becomes inactive. */
7049
7049
  ends_at?: (string | null) | undefined;
7050
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
7051
- status: 'set';
7050
+ /** 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. */
7051
+ status: 'set' | 'unset';
7052
7052
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
7053
7053
  dormakaba_oracode_metadata?: ({
7054
7054
  /** Dormakaba Oracode stay ID associated with this access code. */
@@ -8939,8 +8939,8 @@ export type Routes = {
8939
8939
  starts_at?: (string | null) | undefined;
8940
8940
  /** Date and time after which the time-bound access code becomes inactive. */
8941
8941
  ends_at?: (string | null) | undefined;
8942
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
8943
- status: 'set';
8942
+ /** 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. */
8943
+ status: 'set' | 'unset';
8944
8944
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
8945
8945
  dormakaba_oracode_metadata?: ({
8946
8946
  /** Dormakaba Oracode stay ID associated with this access code. */
@@ -9461,8 +9461,8 @@ export type Routes = {
9461
9461
  starts_at?: (string | null) | undefined;
9462
9462
  /** Date and time after which the time-bound access code becomes inactive. */
9463
9463
  ends_at?: (string | null) | undefined;
9464
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
9465
- status: 'set';
9464
+ /** 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. */
9465
+ status: 'set' | 'unset';
9466
9466
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
9467
9467
  dormakaba_oracode_metadata?: ({
9468
9468
  /** Dormakaba Oracode stay ID associated with this access code. */
@@ -100241,8 +100241,8 @@ export type Routes = {
100241
100241
  starts_at?: (string | null) | undefined;
100242
100242
  /** Date and time after which the time-bound access code becomes inactive. */
100243
100243
  ends_at?: (string | null) | undefined;
100244
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
100245
- status: 'set';
100244
+ /** 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. */
100245
+ status: 'set' | 'unset';
100246
100246
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
100247
100247
  dormakaba_oracode_metadata?: ({
100248
100248
  /** Dormakaba Oracode stay ID associated with this access code. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.824.0",
3
+ "version": "1.825.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -25,9 +25,9 @@ export const unmanaged_access_code = access_code
25
25
  .literal(false)
26
26
  .describe('Indicates that Seam does not manage the access code.'),
27
27
  status: z
28
- .enum(['set'])
28
+ .enum(['set', 'unset'])
29
29
  .describe(
30
- 'Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational.',
30
+ '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.',
31
31
  ),
32
32
  dormakaba_oracode_metadata: dormakaba_oracode_access_code_metadata
33
33
  .nullable()
@@ -27565,8 +27565,8 @@ const openapi: OpenAPISpec = {
27565
27565
  },
27566
27566
  status: {
27567
27567
  description:
27568
- 'Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational.',
27569
- enum: ['set'],
27568
+ '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.',
27569
+ enum: ['set', 'unset'],
27570
27570
  type: 'string',
27571
27571
  },
27572
27572
  type: {
@@ -7943,8 +7943,8 @@ export type Routes = {
7943
7943
  starts_at?: (string | null) | undefined
7944
7944
  /** Date and time after which the time-bound access code becomes inactive. */
7945
7945
  ends_at?: (string | null) | undefined
7946
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
7947
- status: 'set'
7946
+ /** 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. */
7947
+ status: 'set' | 'unset'
7948
7948
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
7949
7949
  dormakaba_oracode_metadata?:
7950
7950
  | ({
@@ -10100,8 +10100,8 @@ export type Routes = {
10100
10100
  starts_at?: (string | null) | undefined
10101
10101
  /** Date and time after which the time-bound access code becomes inactive. */
10102
10102
  ends_at?: (string | null) | undefined
10103
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
10104
- status: 'set'
10103
+ /** 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. */
10104
+ status: 'set' | 'unset'
10105
10105
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
10106
10106
  dormakaba_oracode_metadata?:
10107
10107
  | ({
@@ -10679,8 +10679,8 @@ export type Routes = {
10679
10679
  starts_at?: (string | null) | undefined
10680
10680
  /** Date and time after which the time-bound access code becomes inactive. */
10681
10681
  ends_at?: (string | null) | undefined
10682
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
10683
- status: 'set'
10682
+ /** 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. */
10683
+ status: 'set' | 'unset'
10684
10684
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
10685
10685
  dormakaba_oracode_metadata?:
10686
10686
  | ({
@@ -119181,8 +119181,8 @@ export type Routes = {
119181
119181
  starts_at?: (string | null) | undefined
119182
119182
  /** Date and time after which the time-bound access code becomes inactive. */
119183
119183
  ends_at?: (string | null) | undefined
119184
- /** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. */
119185
- status: 'set'
119184
+ /** 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. */
119185
+ status: 'set' | 'unset'
119186
119186
  /** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
119187
119187
  dormakaba_oracode_metadata?:
119188
119188
  | ({