@seamapi/types 1.920.0 → 1.922.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 +68 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -2
- package/dist/index.cjs +68 -34
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.js +6 -1
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.js +14 -8
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.js +7 -4
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +18 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -1
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +17 -8
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +22 -21
- package/src/lib/seam/connect/openapi.ts +23 -4
- package/src/lib/seam/connect/route-types.ts +4 -2
|
@@ -43,7 +43,7 @@ export type Routes = {
|
|
|
43
43
|
/** Indicates whether the [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) is a single-use access code. */
|
|
44
44
|
is_one_time_use?: boolean | undefined;
|
|
45
45
|
/** Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`. */
|
|
46
|
-
max_time_rounding?: '1hour' | '1day' | '1h' | '1d';
|
|
46
|
+
max_time_rounding?: ('1hour' | '1day' | '1h' | '1d') | undefined;
|
|
47
47
|
};
|
|
48
48
|
commonParams: {};
|
|
49
49
|
formData: {};
|
|
@@ -9848,7 +9848,7 @@ export type Routes = {
|
|
|
9848
9848
|
/** Indicates whether the [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) is a single-use access code. */
|
|
9849
9849
|
is_one_time_use?: boolean | undefined;
|
|
9850
9850
|
/** Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`. */
|
|
9851
|
-
max_time_rounding?: ('1hour' | '1day' | '1h' | '1d') | undefined;
|
|
9851
|
+
max_time_rounding?: (('1hour' | '1day' | '1h' | '1d') | undefined) | undefined;
|
|
9852
9852
|
/** ID of the access code that you want to update. */
|
|
9853
9853
|
access_code_id: string;
|
|
9854
9854
|
/** ID of the device containing the access code that you want to update. */
|
package/package.json
CHANGED
|
@@ -29,7 +29,12 @@ const cannot_create_requested_access_methods_error =
|
|
|
29
29
|
.describe(
|
|
30
30
|
'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
31
31
|
),
|
|
32
|
-
})
|
|
32
|
+
}).describe(`
|
|
33
|
+
---
|
|
34
|
+
resource_type: access_grant
|
|
35
|
+
---
|
|
36
|
+
Indicates that Seam could not create one or more of the requested access methods for the access grant.
|
|
37
|
+
`)
|
|
33
38
|
|
|
34
39
|
const common_access_grant_warning = z.object({
|
|
35
40
|
created_at: z
|
|
@@ -15,8 +15,8 @@ const common_bridge_client_session_error = z.object({
|
|
|
15
15
|
const error_code_description =
|
|
16
16
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.'
|
|
17
17
|
|
|
18
|
-
export const bridge_lan_unreachable = common_bridge_client_session_error
|
|
19
|
-
|
|
18
|
+
export const bridge_lan_unreachable = common_bridge_client_session_error.extend(
|
|
19
|
+
{
|
|
20
20
|
error_code: z
|
|
21
21
|
.literal('bridge_lan_unreachable')
|
|
22
22
|
.describe(error_code_description),
|
|
@@ -44,16 +44,25 @@ export const bridge_lan_unreachable = common_bridge_client_session_error
|
|
|
44
44
|
.boolean()
|
|
45
45
|
.nullable()
|
|
46
46
|
.describe("Indicates whether Seam Bridge's SOCKS server is healthy."),
|
|
47
|
-
}
|
|
48
|
-
|
|
47
|
+
},
|
|
48
|
+
).describe(`
|
|
49
|
+
---
|
|
50
|
+
resource_type: bridge_client_session
|
|
51
|
+
---
|
|
52
|
+
Indicates that Seam cannot reach Seam Bridge's LAN.
|
|
53
|
+
`)
|
|
49
54
|
|
|
50
|
-
export const no_communication_from_bridge =
|
|
51
|
-
.extend({
|
|
55
|
+
export const no_communication_from_bridge =
|
|
56
|
+
common_bridge_client_session_error.extend({
|
|
52
57
|
error_code: z
|
|
53
58
|
.literal('no_communication_from_bridge')
|
|
54
59
|
.describe(error_code_description),
|
|
55
|
-
})
|
|
56
|
-
|
|
60
|
+
}).describe(`
|
|
61
|
+
---
|
|
62
|
+
resource_type: bridge_client_session
|
|
63
|
+
---
|
|
64
|
+
Indicates that Seam Bridge has stopped communicating with Seam.
|
|
65
|
+
`)
|
|
57
66
|
|
|
58
67
|
export const bridge_client_session_error = z
|
|
59
68
|
.discriminatedUnion('error_code', [
|
|
@@ -49,27 +49,28 @@ const acs_user_profile_does_not_match_user_identity =
|
|
|
49
49
|
"Indicates that the ACS user's profile does not match the user identity's profile",
|
|
50
50
|
)
|
|
51
51
|
|
|
52
|
-
const user_identity_issue_with_acs_user = common_user_identity_error
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
.
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
.
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
52
|
+
const user_identity_issue_with_acs_user = common_user_identity_error.extend({
|
|
53
|
+
error_code: z
|
|
54
|
+
.literal('issue_with_acs_user')
|
|
55
|
+
.describe(
|
|
56
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
57
|
+
),
|
|
58
|
+
acs_user_id: z
|
|
59
|
+
.string()
|
|
60
|
+
.uuid()
|
|
61
|
+
.describe('ID of the access system user that has an issue.'),
|
|
62
|
+
acs_system_id: z
|
|
63
|
+
.string()
|
|
64
|
+
.uuid()
|
|
65
|
+
.describe(
|
|
66
|
+
'ID of the access system that the user identity is associated with.',
|
|
67
|
+
),
|
|
68
|
+
}).describe(`
|
|
69
|
+
---
|
|
70
|
+
resource_type: user_identity
|
|
71
|
+
---
|
|
72
|
+
Indicates that there is an issue with an access system user associated with this user identity.
|
|
73
|
+
`)
|
|
73
74
|
|
|
74
75
|
const _user_identity_error_map = z.object({
|
|
75
76
|
issue_with_acs_user: z
|
|
@@ -1926,6 +1926,8 @@ const openapi: OpenAPISpec = {
|
|
|
1926
1926
|
discriminator: { propertyName: 'error_code' },
|
|
1927
1927
|
oneOf: [
|
|
1928
1928
|
{
|
|
1929
|
+
description:
|
|
1930
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
1929
1931
|
properties: {
|
|
1930
1932
|
created_at: {
|
|
1931
1933
|
description:
|
|
@@ -1953,6 +1955,7 @@ const openapi: OpenAPISpec = {
|
|
|
1953
1955
|
},
|
|
1954
1956
|
required: ['created_at', 'message', 'error_code'],
|
|
1955
1957
|
type: 'object',
|
|
1958
|
+
'x-resource-type': 'access_grant',
|
|
1956
1959
|
},
|
|
1957
1960
|
],
|
|
1958
1961
|
},
|
|
@@ -11724,6 +11727,7 @@ const openapi: OpenAPISpec = {
|
|
|
11724
11727
|
'is_bridge_socks_server_healthy',
|
|
11725
11728
|
],
|
|
11726
11729
|
type: 'object',
|
|
11730
|
+
'x-resource-type': 'bridge_client_session',
|
|
11727
11731
|
},
|
|
11728
11732
|
{
|
|
11729
11733
|
description:
|
|
@@ -11749,6 +11753,7 @@ const openapi: OpenAPISpec = {
|
|
|
11749
11753
|
},
|
|
11750
11754
|
required: ['message', 'created_at', 'error_code'],
|
|
11751
11755
|
type: 'object',
|
|
11756
|
+
'x-resource-type': 'bridge_client_session',
|
|
11752
11757
|
},
|
|
11753
11758
|
],
|
|
11754
11759
|
},
|
|
@@ -28227,6 +28232,7 @@ const openapi: OpenAPISpec = {
|
|
|
28227
28232
|
'acs_system_id',
|
|
28228
28233
|
],
|
|
28229
28234
|
type: 'object',
|
|
28235
|
+
'x-resource-type': 'user_identity',
|
|
28230
28236
|
},
|
|
28231
28237
|
],
|
|
28232
28238
|
},
|
|
@@ -33984,6 +33990,7 @@ const openapi: OpenAPISpec = {
|
|
|
33984
33990
|
'acs_system_id',
|
|
33985
33991
|
],
|
|
33986
33992
|
type: 'object',
|
|
33993
|
+
'x-resource-type': 'user_identity',
|
|
33987
33994
|
},
|
|
33988
33995
|
],
|
|
33989
33996
|
},
|
|
@@ -34342,7 +34349,6 @@ const openapi: OpenAPISpec = {
|
|
|
34342
34349
|
type: 'boolean',
|
|
34343
34350
|
},
|
|
34344
34351
|
max_time_rounding: {
|
|
34345
|
-
default: '1hour',
|
|
34346
34352
|
description:
|
|
34347
34353
|
'Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`.',
|
|
34348
34354
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
@@ -36781,7 +36787,6 @@ const openapi: OpenAPISpec = {
|
|
|
36781
36787
|
type: 'boolean',
|
|
36782
36788
|
},
|
|
36783
36789
|
max_time_rounding: {
|
|
36784
|
-
default: '1hour',
|
|
36785
36790
|
description:
|
|
36786
36791
|
'Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`.',
|
|
36787
36792
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
@@ -36935,7 +36940,6 @@ const openapi: OpenAPISpec = {
|
|
|
36935
36940
|
type: 'boolean',
|
|
36936
36941
|
},
|
|
36937
36942
|
max_time_rounding: {
|
|
36938
|
-
default: '1hour',
|
|
36939
36943
|
description:
|
|
36940
36944
|
'Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`.',
|
|
36941
36945
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
@@ -37089,7 +37093,6 @@ const openapi: OpenAPISpec = {
|
|
|
37089
37093
|
type: 'boolean',
|
|
37090
37094
|
},
|
|
37091
37095
|
max_time_rounding: {
|
|
37092
|
-
default: '1hour',
|
|
37093
37096
|
description:
|
|
37094
37097
|
'Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`.',
|
|
37095
37098
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
@@ -38491,6 +38494,8 @@ const openapi: OpenAPISpec = {
|
|
|
38491
38494
|
discriminator: { propertyName: 'error_code' },
|
|
38492
38495
|
oneOf: [
|
|
38493
38496
|
{
|
|
38497
|
+
description:
|
|
38498
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
38494
38499
|
properties: {
|
|
38495
38500
|
created_at: {
|
|
38496
38501
|
description:
|
|
@@ -38524,6 +38529,7 @@ const openapi: OpenAPISpec = {
|
|
|
38524
38529
|
'error_code',
|
|
38525
38530
|
],
|
|
38526
38531
|
type: 'object',
|
|
38532
|
+
'x-resource-type': 'access_grant',
|
|
38527
38533
|
},
|
|
38528
38534
|
],
|
|
38529
38535
|
},
|
|
@@ -39200,6 +39206,8 @@ const openapi: OpenAPISpec = {
|
|
|
39200
39206
|
discriminator: { propertyName: 'error_code' },
|
|
39201
39207
|
oneOf: [
|
|
39202
39208
|
{
|
|
39209
|
+
description:
|
|
39210
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
39203
39211
|
properties: {
|
|
39204
39212
|
created_at: {
|
|
39205
39213
|
description:
|
|
@@ -39233,6 +39241,7 @@ const openapi: OpenAPISpec = {
|
|
|
39233
39241
|
'error_code',
|
|
39234
39242
|
],
|
|
39235
39243
|
type: 'object',
|
|
39244
|
+
'x-resource-type': 'access_grant',
|
|
39236
39245
|
},
|
|
39237
39246
|
],
|
|
39238
39247
|
},
|
|
@@ -39955,6 +39964,8 @@ const openapi: OpenAPISpec = {
|
|
|
39955
39964
|
discriminator: { propertyName: 'error_code' },
|
|
39956
39965
|
oneOf: [
|
|
39957
39966
|
{
|
|
39967
|
+
description:
|
|
39968
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
39958
39969
|
properties: {
|
|
39959
39970
|
created_at: {
|
|
39960
39971
|
description:
|
|
@@ -39988,6 +39999,7 @@ const openapi: OpenAPISpec = {
|
|
|
39988
39999
|
'error_code',
|
|
39989
40000
|
],
|
|
39990
40001
|
type: 'object',
|
|
40002
|
+
'x-resource-type': 'access_grant',
|
|
39991
40003
|
},
|
|
39992
40004
|
],
|
|
39993
40005
|
},
|
|
@@ -40702,6 +40714,8 @@ const openapi: OpenAPISpec = {
|
|
|
40702
40714
|
discriminator: { propertyName: 'error_code' },
|
|
40703
40715
|
oneOf: [
|
|
40704
40716
|
{
|
|
40717
|
+
description:
|
|
40718
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
40705
40719
|
properties: {
|
|
40706
40720
|
created_at: {
|
|
40707
40721
|
description:
|
|
@@ -40735,6 +40749,7 @@ const openapi: OpenAPISpec = {
|
|
|
40735
40749
|
'error_code',
|
|
40736
40750
|
],
|
|
40737
40751
|
type: 'object',
|
|
40752
|
+
'x-resource-type': 'access_grant',
|
|
40738
40753
|
},
|
|
40739
40754
|
],
|
|
40740
40755
|
},
|
|
@@ -85562,6 +85577,7 @@ const openapi: OpenAPISpec = {
|
|
|
85562
85577
|
'acs_system_id',
|
|
85563
85578
|
],
|
|
85564
85579
|
type: 'object',
|
|
85580
|
+
'x-resource-type': 'user_identity',
|
|
85565
85581
|
},
|
|
85566
85582
|
],
|
|
85567
85583
|
},
|
|
@@ -85811,6 +85827,7 @@ const openapi: OpenAPISpec = {
|
|
|
85811
85827
|
'acs_system_id',
|
|
85812
85828
|
],
|
|
85813
85829
|
type: 'object',
|
|
85830
|
+
'x-resource-type': 'user_identity',
|
|
85814
85831
|
},
|
|
85815
85832
|
],
|
|
85816
85833
|
},
|
|
@@ -86088,6 +86105,7 @@ const openapi: OpenAPISpec = {
|
|
|
86088
86105
|
'acs_system_id',
|
|
86089
86106
|
],
|
|
86090
86107
|
type: 'object',
|
|
86108
|
+
'x-resource-type': 'user_identity',
|
|
86091
86109
|
},
|
|
86092
86110
|
],
|
|
86093
86111
|
},
|
|
@@ -86360,6 +86378,7 @@ const openapi: OpenAPISpec = {
|
|
|
86360
86378
|
'acs_system_id',
|
|
86361
86379
|
],
|
|
86362
86380
|
type: 'object',
|
|
86381
|
+
'x-resource-type': 'user_identity',
|
|
86363
86382
|
},
|
|
86364
86383
|
],
|
|
86365
86384
|
},
|
|
@@ -43,7 +43,7 @@ export type Routes = {
|
|
|
43
43
|
/** Indicates whether the [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) is a single-use access code. */
|
|
44
44
|
is_one_time_use?: boolean | undefined
|
|
45
45
|
/** Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`. */
|
|
46
|
-
max_time_rounding?: '1hour' | '1day' | '1h' | '1d'
|
|
46
|
+
max_time_rounding?: ('1hour' | '1day' | '1h' | '1d') | undefined
|
|
47
47
|
}
|
|
48
48
|
commonParams: {}
|
|
49
49
|
formData: {}
|
|
@@ -11161,7 +11161,9 @@ export type Routes = {
|
|
|
11161
11161
|
/** Indicates whether the [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) is a single-use access code. */
|
|
11162
11162
|
is_one_time_use?: boolean | undefined
|
|
11163
11163
|
/** Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`. */
|
|
11164
|
-
max_time_rounding?:
|
|
11164
|
+
max_time_rounding?:
|
|
11165
|
+
| (('1hour' | '1day' | '1h' | '1d') | undefined)
|
|
11166
|
+
| undefined
|
|
11165
11167
|
/** ID of the access code that you want to update. */
|
|
11166
11168
|
access_code_id: string
|
|
11167
11169
|
/** ID of the device containing the access code that you want to update. */
|