@seamapi/types 1.951.0 → 1.952.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 +116 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +297 -4
- package/dist/index.cjs +116 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +7 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto.d.ts +2 -2
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +11 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -18
- package/lib/seam/connect/openapi.js +96 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +217 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -0
- package/src/lib/seam/connect/models/devices/device.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +112 -2
- package/src/lib/seam/connect/route-types.ts +248 -0
|
@@ -4343,7 +4343,7 @@ const openapi: OpenAPISpec = {
|
|
|
4343
4343
|
},
|
|
4344
4344
|
{
|
|
4345
4345
|
description:
|
|
4346
|
-
'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
4346
|
+
'deprecated: Use `privacy_mode` instead. Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
4347
4347
|
properties: {
|
|
4348
4348
|
created_at: {
|
|
4349
4349
|
description:
|
|
@@ -4366,6 +4366,31 @@ const openapi: OpenAPISpec = {
|
|
|
4366
4366
|
required: ['created_at', 'message', 'warning_code'],
|
|
4367
4367
|
type: 'object',
|
|
4368
4368
|
},
|
|
4369
|
+
{
|
|
4370
|
+
description:
|
|
4371
|
+
'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
4372
|
+
properties: {
|
|
4373
|
+
created_at: {
|
|
4374
|
+
description:
|
|
4375
|
+
'Date and time at which Seam created the warning.',
|
|
4376
|
+
format: 'date-time',
|
|
4377
|
+
type: 'string',
|
|
4378
|
+
},
|
|
4379
|
+
message: {
|
|
4380
|
+
description:
|
|
4381
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
4382
|
+
type: 'string',
|
|
4383
|
+
},
|
|
4384
|
+
warning_code: {
|
|
4385
|
+
description:
|
|
4386
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
4387
|
+
enum: ['privacy_mode'],
|
|
4388
|
+
type: 'string',
|
|
4389
|
+
},
|
|
4390
|
+
},
|
|
4391
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
4392
|
+
type: 'object',
|
|
4393
|
+
},
|
|
4369
4394
|
],
|
|
4370
4395
|
},
|
|
4371
4396
|
type: 'array',
|
|
@@ -16872,6 +16897,7 @@ const openapi: OpenAPISpec = {
|
|
|
16872
16897
|
'x-variant-group-key': 'access_codes',
|
|
16873
16898
|
},
|
|
16874
16899
|
{
|
|
16900
|
+
deprecated: true,
|
|
16875
16901
|
description:
|
|
16876
16902
|
'Indicates that the Salto KS lock is in Privacy Mode. Access Codes will not unlock doors.',
|
|
16877
16903
|
properties: {
|
|
@@ -16895,6 +16921,33 @@ const openapi: OpenAPISpec = {
|
|
|
16895
16921
|
},
|
|
16896
16922
|
required: ['message', 'created_at', 'warning_code'],
|
|
16897
16923
|
type: 'object',
|
|
16924
|
+
'x-deprecated': 'Use `privacy_mode` instead.',
|
|
16925
|
+
'x-variant-group-key': 'access_codes',
|
|
16926
|
+
},
|
|
16927
|
+
{
|
|
16928
|
+
description:
|
|
16929
|
+
'Indicates that the lock is in Privacy Mode. Access codes and remote unlock are blocked until Privacy Mode is disabled.',
|
|
16930
|
+
properties: {
|
|
16931
|
+
created_at: {
|
|
16932
|
+
description:
|
|
16933
|
+
'Date and time at which Seam created the warning.',
|
|
16934
|
+
format: 'date-time',
|
|
16935
|
+
type: 'string',
|
|
16936
|
+
},
|
|
16937
|
+
message: {
|
|
16938
|
+
description:
|
|
16939
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
16940
|
+
type: 'string',
|
|
16941
|
+
},
|
|
16942
|
+
warning_code: {
|
|
16943
|
+
description:
|
|
16944
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
16945
|
+
enum: ['privacy_mode'],
|
|
16946
|
+
type: 'string',
|
|
16947
|
+
},
|
|
16948
|
+
},
|
|
16949
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
16950
|
+
type: 'object',
|
|
16898
16951
|
'x-variant-group-key': 'access_codes',
|
|
16899
16952
|
},
|
|
16900
16953
|
{
|
|
@@ -28297,7 +28350,7 @@ const openapi: OpenAPISpec = {
|
|
|
28297
28350
|
},
|
|
28298
28351
|
{
|
|
28299
28352
|
description:
|
|
28300
|
-
'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
28353
|
+
'deprecated: Use `privacy_mode` instead. Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
28301
28354
|
properties: {
|
|
28302
28355
|
created_at: {
|
|
28303
28356
|
description:
|
|
@@ -28324,6 +28377,35 @@ const openapi: OpenAPISpec = {
|
|
|
28324
28377
|
],
|
|
28325
28378
|
type: 'object',
|
|
28326
28379
|
},
|
|
28380
|
+
{
|
|
28381
|
+
description:
|
|
28382
|
+
'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
28383
|
+
properties: {
|
|
28384
|
+
created_at: {
|
|
28385
|
+
description:
|
|
28386
|
+
'Date and time at which Seam created the warning.',
|
|
28387
|
+
format: 'date-time',
|
|
28388
|
+
type: 'string',
|
|
28389
|
+
},
|
|
28390
|
+
message: {
|
|
28391
|
+
description:
|
|
28392
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
28393
|
+
type: 'string',
|
|
28394
|
+
},
|
|
28395
|
+
warning_code: {
|
|
28396
|
+
description:
|
|
28397
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
28398
|
+
enum: ['privacy_mode'],
|
|
28399
|
+
type: 'string',
|
|
28400
|
+
},
|
|
28401
|
+
},
|
|
28402
|
+
required: [
|
|
28403
|
+
'created_at',
|
|
28404
|
+
'message',
|
|
28405
|
+
'warning_code',
|
|
28406
|
+
],
|
|
28407
|
+
type: 'object',
|
|
28408
|
+
},
|
|
28327
28409
|
],
|
|
28328
28410
|
},
|
|
28329
28411
|
type: 'array',
|
|
@@ -34008,6 +34090,7 @@ const openapi: OpenAPISpec = {
|
|
|
34008
34090
|
'x-variant-group-key': 'access_codes',
|
|
34009
34091
|
},
|
|
34010
34092
|
{
|
|
34093
|
+
deprecated: true,
|
|
34011
34094
|
description:
|
|
34012
34095
|
'Indicates that the Salto KS lock is in Privacy Mode. Access Codes will not unlock doors.',
|
|
34013
34096
|
properties: {
|
|
@@ -34031,6 +34114,33 @@ const openapi: OpenAPISpec = {
|
|
|
34031
34114
|
},
|
|
34032
34115
|
required: ['message', 'created_at', 'warning_code'],
|
|
34033
34116
|
type: 'object',
|
|
34117
|
+
'x-deprecated': 'Use `privacy_mode` instead.',
|
|
34118
|
+
'x-variant-group-key': 'access_codes',
|
|
34119
|
+
},
|
|
34120
|
+
{
|
|
34121
|
+
description:
|
|
34122
|
+
'Indicates that the lock is in Privacy Mode. Access codes and remote unlock are blocked until Privacy Mode is disabled.',
|
|
34123
|
+
properties: {
|
|
34124
|
+
created_at: {
|
|
34125
|
+
description:
|
|
34126
|
+
'Date and time at which Seam created the warning.',
|
|
34127
|
+
format: 'date-time',
|
|
34128
|
+
type: 'string',
|
|
34129
|
+
},
|
|
34130
|
+
message: {
|
|
34131
|
+
description:
|
|
34132
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
34133
|
+
type: 'string',
|
|
34134
|
+
},
|
|
34135
|
+
warning_code: {
|
|
34136
|
+
description:
|
|
34137
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
34138
|
+
enum: ['privacy_mode'],
|
|
34139
|
+
type: 'string',
|
|
34140
|
+
},
|
|
34141
|
+
},
|
|
34142
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
34143
|
+
type: 'object',
|
|
34034
34144
|
'x-variant-group-key': 'access_codes',
|
|
34035
34145
|
},
|
|
34036
34146
|
{
|
|
@@ -14900,6 +14900,14 @@ export type Routes = {
|
|
|
14900
14900
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14901
14901
|
warning_code: 'salto_ks_privacy_mode'
|
|
14902
14902
|
}
|
|
14903
|
+
| {
|
|
14904
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14905
|
+
message: string
|
|
14906
|
+
/** Date and time at which Seam created the warning. */
|
|
14907
|
+
created_at: string
|
|
14908
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14909
|
+
warning_code: 'privacy_mode'
|
|
14910
|
+
}
|
|
14903
14911
|
| {
|
|
14904
14912
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14905
14913
|
message: string
|
|
@@ -15160,6 +15168,14 @@ export type Routes = {
|
|
|
15160
15168
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15161
15169
|
warning_code: 'salto_ks_privacy_mode'
|
|
15162
15170
|
}
|
|
15171
|
+
| {
|
|
15172
|
+
/** Date and time at which Seam created the warning. */
|
|
15173
|
+
created_at: string
|
|
15174
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15175
|
+
message: string
|
|
15176
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15177
|
+
warning_code: 'privacy_mode'
|
|
15178
|
+
}
|
|
15163
15179
|
)[]
|
|
15164
15180
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
15165
15181
|
latch_metadata?:
|
|
@@ -22826,6 +22842,14 @@ export type Routes = {
|
|
|
22826
22842
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22827
22843
|
warning_code: 'salto_ks_privacy_mode'
|
|
22828
22844
|
}
|
|
22845
|
+
| {
|
|
22846
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22847
|
+
message: string
|
|
22848
|
+
/** Date and time at which Seam created the warning. */
|
|
22849
|
+
created_at: string
|
|
22850
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22851
|
+
warning_code: 'privacy_mode'
|
|
22852
|
+
}
|
|
22829
22853
|
| {
|
|
22830
22854
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22831
22855
|
message: string
|
|
@@ -23086,6 +23110,14 @@ export type Routes = {
|
|
|
23086
23110
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23087
23111
|
warning_code: 'salto_ks_privacy_mode'
|
|
23088
23112
|
}
|
|
23113
|
+
| {
|
|
23114
|
+
/** Date and time at which Seam created the warning. */
|
|
23115
|
+
created_at: string
|
|
23116
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23117
|
+
message: string
|
|
23118
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23119
|
+
warning_code: 'privacy_mode'
|
|
23120
|
+
}
|
|
23089
23121
|
)[]
|
|
23090
23122
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
23091
23123
|
latch_metadata?:
|
|
@@ -26695,6 +26727,14 @@ export type Routes = {
|
|
|
26695
26727
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26696
26728
|
warning_code: 'salto_ks_privacy_mode'
|
|
26697
26729
|
}
|
|
26730
|
+
| {
|
|
26731
|
+
/** Date and time at which Seam created the warning. */
|
|
26732
|
+
created_at: string
|
|
26733
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26734
|
+
message: string
|
|
26735
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26736
|
+
warning_code: 'privacy_mode'
|
|
26737
|
+
}
|
|
26698
26738
|
)[]
|
|
26699
26739
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
26700
26740
|
latch_metadata?:
|
|
@@ -28768,6 +28808,14 @@ export type Routes = {
|
|
|
28768
28808
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28769
28809
|
warning_code: 'salto_ks_privacy_mode'
|
|
28770
28810
|
}
|
|
28811
|
+
| {
|
|
28812
|
+
/** Date and time at which Seam created the warning. */
|
|
28813
|
+
created_at: string
|
|
28814
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28815
|
+
message: string
|
|
28816
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28817
|
+
warning_code: 'privacy_mode'
|
|
28818
|
+
}
|
|
28771
28819
|
)[]
|
|
28772
28820
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
28773
28821
|
latch_metadata?:
|
|
@@ -35832,6 +35880,14 @@ export type Routes = {
|
|
|
35832
35880
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35833
35881
|
warning_code: 'salto_ks_privacy_mode'
|
|
35834
35882
|
}
|
|
35883
|
+
| {
|
|
35884
|
+
/** Date and time at which Seam created the warning. */
|
|
35885
|
+
created_at: string
|
|
35886
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
35887
|
+
message: string
|
|
35888
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35889
|
+
warning_code: 'privacy_mode'
|
|
35890
|
+
}
|
|
35835
35891
|
)[]
|
|
35836
35892
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
35837
35893
|
latch_metadata?:
|
|
@@ -36098,6 +36154,14 @@ export type Routes = {
|
|
|
36098
36154
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36099
36155
|
warning_code: 'salto_ks_privacy_mode'
|
|
36100
36156
|
}
|
|
36157
|
+
| {
|
|
36158
|
+
/** Date and time at which Seam created the warning. */
|
|
36159
|
+
created_at: string
|
|
36160
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36161
|
+
message: string
|
|
36162
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36163
|
+
warning_code: 'privacy_mode'
|
|
36164
|
+
}
|
|
36101
36165
|
)[]
|
|
36102
36166
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
36103
36167
|
latch_metadata?:
|
|
@@ -40150,6 +40214,14 @@ export type Routes = {
|
|
|
40150
40214
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40151
40215
|
warning_code: 'salto_ks_privacy_mode'
|
|
40152
40216
|
}
|
|
40217
|
+
| {
|
|
40218
|
+
/** Date and time at which Seam created the warning. */
|
|
40219
|
+
created_at: string
|
|
40220
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40221
|
+
message: string
|
|
40222
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40223
|
+
warning_code: 'privacy_mode'
|
|
40224
|
+
}
|
|
40153
40225
|
)[]
|
|
40154
40226
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
40155
40227
|
latch_metadata?:
|
|
@@ -49097,6 +49169,14 @@ export type Routes = {
|
|
|
49097
49169
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49098
49170
|
warning_code: 'salto_ks_privacy_mode'
|
|
49099
49171
|
}
|
|
49172
|
+
| {
|
|
49173
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49174
|
+
message: string
|
|
49175
|
+
/** Date and time at which Seam created the warning. */
|
|
49176
|
+
created_at: string
|
|
49177
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49178
|
+
warning_code: 'privacy_mode'
|
|
49179
|
+
}
|
|
49100
49180
|
| {
|
|
49101
49181
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49102
49182
|
message: string
|
|
@@ -51167,6 +51247,14 @@ export type Routes = {
|
|
|
51167
51247
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51168
51248
|
warning_code: 'salto_ks_privacy_mode'
|
|
51169
51249
|
}
|
|
51250
|
+
| {
|
|
51251
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51252
|
+
message: string
|
|
51253
|
+
/** Date and time at which Seam created the warning. */
|
|
51254
|
+
created_at: string
|
|
51255
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51256
|
+
warning_code: 'privacy_mode'
|
|
51257
|
+
}
|
|
51170
51258
|
| {
|
|
51171
51259
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51172
51260
|
message: string
|
|
@@ -53296,6 +53384,14 @@ export type Routes = {
|
|
|
53296
53384
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53297
53385
|
warning_code: 'salto_ks_privacy_mode'
|
|
53298
53386
|
}
|
|
53387
|
+
| {
|
|
53388
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53389
|
+
message: string
|
|
53390
|
+
/** Date and time at which Seam created the warning. */
|
|
53391
|
+
created_at: string
|
|
53392
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53393
|
+
warning_code: 'privacy_mode'
|
|
53394
|
+
}
|
|
53299
53395
|
| {
|
|
53300
53396
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53301
53397
|
message: string
|
|
@@ -54147,6 +54243,14 @@ export type Routes = {
|
|
|
54147
54243
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54148
54244
|
warning_code: 'salto_ks_privacy_mode'
|
|
54149
54245
|
}
|
|
54246
|
+
| {
|
|
54247
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54248
|
+
message: string
|
|
54249
|
+
/** Date and time at which Seam created the warning. */
|
|
54250
|
+
created_at: string
|
|
54251
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54252
|
+
warning_code: 'privacy_mode'
|
|
54253
|
+
}
|
|
54150
54254
|
| {
|
|
54151
54255
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54152
54256
|
message: string
|
|
@@ -65626,6 +65730,14 @@ export type Routes = {
|
|
|
65626
65730
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65627
65731
|
warning_code: 'salto_ks_privacy_mode'
|
|
65628
65732
|
}
|
|
65733
|
+
| {
|
|
65734
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65735
|
+
message: string
|
|
65736
|
+
/** Date and time at which Seam created the warning. */
|
|
65737
|
+
created_at: string
|
|
65738
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65739
|
+
warning_code: 'privacy_mode'
|
|
65740
|
+
}
|
|
65629
65741
|
| {
|
|
65630
65742
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65631
65743
|
message: string
|
|
@@ -67452,6 +67564,14 @@ export type Routes = {
|
|
|
67452
67564
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67453
67565
|
warning_code: 'salto_ks_privacy_mode'
|
|
67454
67566
|
}
|
|
67567
|
+
| {
|
|
67568
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67569
|
+
message: string
|
|
67570
|
+
/** Date and time at which Seam created the warning. */
|
|
67571
|
+
created_at: string
|
|
67572
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67573
|
+
warning_code: 'privacy_mode'
|
|
67574
|
+
}
|
|
67455
67575
|
| {
|
|
67456
67576
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67457
67577
|
message: string
|
|
@@ -69475,6 +69595,14 @@ export type Routes = {
|
|
|
69475
69595
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69476
69596
|
warning_code: 'salto_ks_privacy_mode'
|
|
69477
69597
|
}
|
|
69598
|
+
| {
|
|
69599
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69600
|
+
message: string
|
|
69601
|
+
/** Date and time at which Seam created the warning. */
|
|
69602
|
+
created_at: string
|
|
69603
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69604
|
+
warning_code: 'privacy_mode'
|
|
69605
|
+
}
|
|
69478
69606
|
| {
|
|
69479
69607
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69480
69608
|
message: string
|
|
@@ -71300,6 +71428,14 @@ export type Routes = {
|
|
|
71300
71428
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71301
71429
|
warning_code: 'salto_ks_privacy_mode'
|
|
71302
71430
|
}
|
|
71431
|
+
| {
|
|
71432
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71433
|
+
message: string
|
|
71434
|
+
/** Date and time at which Seam created the warning. */
|
|
71435
|
+
created_at: string
|
|
71436
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71437
|
+
warning_code: 'privacy_mode'
|
|
71438
|
+
}
|
|
71303
71439
|
| {
|
|
71304
71440
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71305
71441
|
message: string
|
|
@@ -81034,6 +81170,14 @@ export type Routes = {
|
|
|
81034
81170
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81035
81171
|
warning_code: 'salto_ks_privacy_mode'
|
|
81036
81172
|
}
|
|
81173
|
+
| {
|
|
81174
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
81175
|
+
message: string
|
|
81176
|
+
/** Date and time at which Seam created the warning. */
|
|
81177
|
+
created_at: string
|
|
81178
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81179
|
+
warning_code: 'privacy_mode'
|
|
81180
|
+
}
|
|
81037
81181
|
| {
|
|
81038
81182
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
81039
81183
|
message: string
|
|
@@ -82859,6 +83003,14 @@ export type Routes = {
|
|
|
82859
83003
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82860
83004
|
warning_code: 'salto_ks_privacy_mode'
|
|
82861
83005
|
}
|
|
83006
|
+
| {
|
|
83007
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83008
|
+
message: string
|
|
83009
|
+
/** Date and time at which Seam created the warning. */
|
|
83010
|
+
created_at: string
|
|
83011
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83012
|
+
warning_code: 'privacy_mode'
|
|
83013
|
+
}
|
|
82862
83014
|
| {
|
|
82863
83015
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82864
83016
|
message: string
|
|
@@ -99182,6 +99334,14 @@ export type Routes = {
|
|
|
99182
99334
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99183
99335
|
warning_code: 'salto_ks_privacy_mode'
|
|
99184
99336
|
}
|
|
99337
|
+
| {
|
|
99338
|
+
/** Date and time at which Seam created the warning. */
|
|
99339
|
+
created_at: string
|
|
99340
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99341
|
+
message: string
|
|
99342
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99343
|
+
warning_code: 'privacy_mode'
|
|
99344
|
+
}
|
|
99185
99345
|
)[]
|
|
99186
99346
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
99187
99347
|
latch_metadata?:
|
|
@@ -101404,6 +101564,14 @@ export type Routes = {
|
|
|
101404
101564
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101405
101565
|
warning_code: 'salto_ks_privacy_mode'
|
|
101406
101566
|
}
|
|
101567
|
+
| {
|
|
101568
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101569
|
+
message: string
|
|
101570
|
+
/** Date and time at which Seam created the warning. */
|
|
101571
|
+
created_at: string
|
|
101572
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101573
|
+
warning_code: 'privacy_mode'
|
|
101574
|
+
}
|
|
101407
101575
|
| {
|
|
101408
101576
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101409
101577
|
message: string
|
|
@@ -101664,6 +101832,14 @@ export type Routes = {
|
|
|
101664
101832
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101665
101833
|
warning_code: 'salto_ks_privacy_mode'
|
|
101666
101834
|
}
|
|
101835
|
+
| {
|
|
101836
|
+
/** Date and time at which Seam created the warning. */
|
|
101837
|
+
created_at: string
|
|
101838
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101839
|
+
message: string
|
|
101840
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101841
|
+
warning_code: 'privacy_mode'
|
|
101842
|
+
}
|
|
101667
101843
|
)[]
|
|
101668
101844
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
101669
101845
|
latch_metadata?:
|
|
@@ -110203,6 +110379,14 @@ export type Routes = {
|
|
|
110203
110379
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110204
110380
|
warning_code: 'salto_ks_privacy_mode'
|
|
110205
110381
|
}
|
|
110382
|
+
| {
|
|
110383
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
110384
|
+
message: string
|
|
110385
|
+
/** Date and time at which Seam created the warning. */
|
|
110386
|
+
created_at: string
|
|
110387
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110388
|
+
warning_code: 'privacy_mode'
|
|
110389
|
+
}
|
|
110206
110390
|
| {
|
|
110207
110391
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
110208
110392
|
message: string
|
|
@@ -116072,6 +116256,14 @@ export type Routes = {
|
|
|
116072
116256
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116073
116257
|
warning_code: 'salto_ks_privacy_mode'
|
|
116074
116258
|
}
|
|
116259
|
+
| {
|
|
116260
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
116261
|
+
message: string
|
|
116262
|
+
/** Date and time at which Seam created the warning. */
|
|
116263
|
+
created_at: string
|
|
116264
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116265
|
+
warning_code: 'privacy_mode'
|
|
116266
|
+
}
|
|
116075
116267
|
| {
|
|
116076
116268
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
116077
116269
|
message: string
|
|
@@ -117897,6 +118089,14 @@ export type Routes = {
|
|
|
117897
118089
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117898
118090
|
warning_code: 'salto_ks_privacy_mode'
|
|
117899
118091
|
}
|
|
118092
|
+
| {
|
|
118093
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118094
|
+
message: string
|
|
118095
|
+
/** Date and time at which Seam created the warning. */
|
|
118096
|
+
created_at: string
|
|
118097
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118098
|
+
warning_code: 'privacy_mode'
|
|
118099
|
+
}
|
|
117900
118100
|
| {
|
|
117901
118101
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
117902
118102
|
message: string
|
|
@@ -128566,6 +128766,14 @@ export type Routes = {
|
|
|
128566
128766
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128567
128767
|
warning_code: 'salto_ks_privacy_mode'
|
|
128568
128768
|
}
|
|
128769
|
+
| {
|
|
128770
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128771
|
+
message: string
|
|
128772
|
+
/** Date and time at which Seam created the warning. */
|
|
128773
|
+
created_at: string
|
|
128774
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128775
|
+
warning_code: 'privacy_mode'
|
|
128776
|
+
}
|
|
128569
128777
|
| {
|
|
128570
128778
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128571
128779
|
message: string
|
|
@@ -130393,6 +130601,14 @@ export type Routes = {
|
|
|
130393
130601
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130394
130602
|
warning_code: 'salto_ks_privacy_mode'
|
|
130395
130603
|
}
|
|
130604
|
+
| {
|
|
130605
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
130606
|
+
message: string
|
|
130607
|
+
/** Date and time at which Seam created the warning. */
|
|
130608
|
+
created_at: string
|
|
130609
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130610
|
+
warning_code: 'privacy_mode'
|
|
130611
|
+
}
|
|
130396
130612
|
| {
|
|
130397
130613
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
130398
130614
|
message: string
|
|
@@ -130661,6 +130877,14 @@ export type Routes = {
|
|
|
130661
130877
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130662
130878
|
warning_code: 'salto_ks_privacy_mode'
|
|
130663
130879
|
}
|
|
130880
|
+
| {
|
|
130881
|
+
/** Date and time at which Seam created the warning. */
|
|
130882
|
+
created_at: string
|
|
130883
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
130884
|
+
message: string
|
|
130885
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130886
|
+
warning_code: 'privacy_mode'
|
|
130887
|
+
}
|
|
130664
130888
|
)[]
|
|
130665
130889
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
130666
130890
|
latch_metadata?:
|
|
@@ -133670,6 +133894,14 @@ export type Routes = {
|
|
|
133670
133894
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133671
133895
|
warning_code: 'salto_ks_privacy_mode'
|
|
133672
133896
|
}
|
|
133897
|
+
| {
|
|
133898
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133899
|
+
message: string
|
|
133900
|
+
/** Date and time at which Seam created the warning. */
|
|
133901
|
+
created_at: string
|
|
133902
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133903
|
+
warning_code: 'privacy_mode'
|
|
133904
|
+
}
|
|
133673
133905
|
| {
|
|
133674
133906
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133675
133907
|
message: string
|
|
@@ -133930,6 +134162,14 @@ export type Routes = {
|
|
|
133930
134162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133931
134163
|
warning_code: 'salto_ks_privacy_mode'
|
|
133932
134164
|
}
|
|
134165
|
+
| {
|
|
134166
|
+
/** Date and time at which Seam created the warning. */
|
|
134167
|
+
created_at: string
|
|
134168
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
134169
|
+
message: string
|
|
134170
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134171
|
+
warning_code: 'privacy_mode'
|
|
134172
|
+
}
|
|
133933
134173
|
)[]
|
|
133934
134174
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
133935
134175
|
latch_metadata?:
|
|
@@ -137656,6 +137896,14 @@ export type Routes = {
|
|
|
137656
137896
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137657
137897
|
warning_code: 'salto_ks_privacy_mode'
|
|
137658
137898
|
}
|
|
137899
|
+
| {
|
|
137900
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137901
|
+
message: string
|
|
137902
|
+
/** Date and time at which Seam created the warning. */
|
|
137903
|
+
created_at: string
|
|
137904
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137905
|
+
warning_code: 'privacy_mode'
|
|
137906
|
+
}
|
|
137659
137907
|
| {
|
|
137660
137908
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137661
137909
|
message: string
|