@seamapi/types 1.824.0 → 1.826.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 +16 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -16
- package/dist/index.cjs +16 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +3 -3
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +2 -2
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +5 -5
- package/lib/seam/connect/openapi.js +14 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +14 -5
- package/src/lib/seam/connect/route-types.ts +8 -8
|
@@ -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
|
@@ -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: {
|
|
@@ -71756,7 +71756,10 @@ const openapi: OpenAPISpec = {
|
|
|
71756
71756
|
400: { description: 'Bad Request' },
|
|
71757
71757
|
401: { description: 'Unauthorized' },
|
|
71758
71758
|
},
|
|
71759
|
-
security: [
|
|
71759
|
+
security: [
|
|
71760
|
+
{ client_session_with_customer: [] },
|
|
71761
|
+
{ console_session_with_workspace: [] },
|
|
71762
|
+
],
|
|
71760
71763
|
summary: '/seam/customer/v1/spaces/create',
|
|
71761
71764
|
tags: [],
|
|
71762
71765
|
'x-draft': 'Early access.',
|
|
@@ -71826,7 +71829,10 @@ const openapi: OpenAPISpec = {
|
|
|
71826
71829
|
400: { description: 'Bad Request' },
|
|
71827
71830
|
401: { description: 'Unauthorized' },
|
|
71828
71831
|
},
|
|
71829
|
-
security: [
|
|
71832
|
+
security: [
|
|
71833
|
+
{ client_session_with_customer: [] },
|
|
71834
|
+
{ console_session_with_workspace: [] },
|
|
71835
|
+
],
|
|
71830
71836
|
summary: '/seam/customer/v1/spaces/list',
|
|
71831
71837
|
tags: [],
|
|
71832
71838
|
'x-draft': 'Early access.',
|
|
@@ -71891,7 +71897,10 @@ const openapi: OpenAPISpec = {
|
|
|
71891
71897
|
400: { description: 'Bad Request' },
|
|
71892
71898
|
401: { description: 'Unauthorized' },
|
|
71893
71899
|
},
|
|
71894
|
-
security: [
|
|
71900
|
+
security: [
|
|
71901
|
+
{ client_session_with_customer: [] },
|
|
71902
|
+
{ console_session_with_workspace: [] },
|
|
71903
|
+
],
|
|
71895
71904
|
summary: '/seam/customer/v1/spaces/list',
|
|
71896
71905
|
tags: [],
|
|
71897
71906
|
'x-draft': 'Early access.',
|
|
@@ -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
|
| ({
|