@seamapi/types 1.59.1 → 1.60.1
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 +78 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +338 -132
- package/lib/seam/connect/openapi.d.ts +222 -132
- package/lib/seam/connect/openapi.js +77 -33
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +116 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -1
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +15 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +33 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +3 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +76 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +15 -8
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +93 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +81 -33
- package/src/lib/seam/connect/route-types.ts +116 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -1
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -0
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +18 -10
|
@@ -351,6 +351,10 @@ export default {
|
|
|
351
351
|
cooling_set_point_fahrenheit: { type: 'number' },
|
|
352
352
|
created_at: { format: 'date-time', type: 'string' },
|
|
353
353
|
device_id: { type: 'string' },
|
|
354
|
+
errors: {
|
|
355
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
356
|
+
nullable: true,
|
|
357
|
+
},
|
|
354
358
|
heating_set_point_celsius: { type: 'number' },
|
|
355
359
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
356
360
|
hvac_mode_setting: {
|
|
@@ -746,6 +750,17 @@ export default {
|
|
|
746
750
|
properties: {
|
|
747
751
|
check_in_time: { type: 'string' },
|
|
748
752
|
check_out_time: { type: 'string' },
|
|
753
|
+
dormakaba_oracode_user_level_id: {
|
|
754
|
+
format: 'uuid',
|
|
755
|
+
type: 'string',
|
|
756
|
+
},
|
|
757
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
758
|
+
type: 'number',
|
|
759
|
+
},
|
|
760
|
+
is_24_hour: { type: 'boolean' },
|
|
761
|
+
is_biweekly_mode: { type: 'boolean' },
|
|
762
|
+
is_master: { type: 'boolean' },
|
|
763
|
+
is_one_shot: { type: 'boolean' },
|
|
749
764
|
name: { type: 'string' },
|
|
750
765
|
prefix: { type: 'number' },
|
|
751
766
|
},
|
|
@@ -754,6 +769,12 @@ export default {
|
|
|
754
769
|
'prefix',
|
|
755
770
|
'check_in_time',
|
|
756
771
|
'check_out_time',
|
|
772
|
+
'is_24_hour',
|
|
773
|
+
'is_biweekly_mode',
|
|
774
|
+
'is_one_shot',
|
|
775
|
+
'is_master',
|
|
776
|
+
'ext_dormakaba_oracode_user_level_prefix',
|
|
777
|
+
'dormakaba_oracode_user_level_id',
|
|
757
778
|
],
|
|
758
779
|
type: 'object',
|
|
759
780
|
},
|
|
@@ -1121,6 +1142,10 @@ export default {
|
|
|
1121
1142
|
type: 'string',
|
|
1122
1143
|
},
|
|
1123
1144
|
device_id: { type: 'string' },
|
|
1145
|
+
errors: {
|
|
1146
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1147
|
+
nullable: true,
|
|
1148
|
+
},
|
|
1124
1149
|
heating_set_point_celsius: { type: 'number' },
|
|
1125
1150
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
1126
1151
|
hvac_mode_setting: {
|
|
@@ -1259,6 +1284,10 @@ export default {
|
|
|
1259
1284
|
type: 'string',
|
|
1260
1285
|
},
|
|
1261
1286
|
device_id: { type: 'string' },
|
|
1287
|
+
errors: {
|
|
1288
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1289
|
+
nullable: true,
|
|
1290
|
+
},
|
|
1262
1291
|
heating_set_point_celsius: { type: 'number' },
|
|
1263
1292
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
1264
1293
|
hvac_mode_setting: {
|
|
@@ -1389,6 +1418,10 @@ export default {
|
|
|
1389
1418
|
type: 'string',
|
|
1390
1419
|
},
|
|
1391
1420
|
device_id: { type: 'string' },
|
|
1421
|
+
errors: {
|
|
1422
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1423
|
+
nullable: true,
|
|
1424
|
+
},
|
|
1392
1425
|
heating_set_point_celsius: { type: 'number' },
|
|
1393
1426
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
1394
1427
|
hvac_mode_setting: {
|
|
@@ -1961,9 +1994,10 @@ export default {
|
|
|
1961
1994
|
401: { description: 'Unauthorized' },
|
|
1962
1995
|
},
|
|
1963
1996
|
security: [
|
|
1964
|
-
{
|
|
1965
|
-
{
|
|
1966
|
-
{
|
|
1997
|
+
{ client_session: [] },
|
|
1998
|
+
{ pat_with_workspace: [] },
|
|
1999
|
+
{ console_session: [] },
|
|
2000
|
+
{ api_key: [] },
|
|
1967
2001
|
],
|
|
1968
2002
|
summary: '/access_codes/create',
|
|
1969
2003
|
tags: ['/access_codes'],
|
|
@@ -2043,9 +2077,10 @@ export default {
|
|
|
2043
2077
|
401: { description: 'Unauthorized' },
|
|
2044
2078
|
},
|
|
2045
2079
|
security: [
|
|
2046
|
-
{
|
|
2047
|
-
{
|
|
2048
|
-
{
|
|
2080
|
+
{ client_session: [] },
|
|
2081
|
+
{ pat_with_workspace: [] },
|
|
2082
|
+
{ console_session: [] },
|
|
2083
|
+
{ api_key: [] },
|
|
2049
2084
|
],
|
|
2050
2085
|
summary: '/access_codes/create_multiple',
|
|
2051
2086
|
tags: ['/access_codes'],
|
|
@@ -2123,9 +2158,10 @@ export default {
|
|
|
2123
2158
|
401: { description: 'Unauthorized' },
|
|
2124
2159
|
},
|
|
2125
2160
|
security: [
|
|
2126
|
-
{
|
|
2127
|
-
{
|
|
2128
|
-
{
|
|
2161
|
+
{ client_session: [] },
|
|
2162
|
+
{ pat_with_workspace: [] },
|
|
2163
|
+
{ console_session: [] },
|
|
2164
|
+
{ api_key: [] },
|
|
2129
2165
|
],
|
|
2130
2166
|
summary: '/access_codes/create_multiple',
|
|
2131
2167
|
tags: ['/access_codes'],
|
|
@@ -2172,9 +2208,10 @@ export default {
|
|
|
2172
2208
|
401: { description: 'Unauthorized' },
|
|
2173
2209
|
},
|
|
2174
2210
|
security: [
|
|
2175
|
-
{
|
|
2176
|
-
{
|
|
2177
|
-
{
|
|
2211
|
+
{ client_session: [] },
|
|
2212
|
+
{ pat_with_workspace: [] },
|
|
2213
|
+
{ console_session: [] },
|
|
2214
|
+
{ api_key: [] },
|
|
2178
2215
|
],
|
|
2179
2216
|
summary: '/access_codes/delete',
|
|
2180
2217
|
tags: ['/access_codes'],
|
|
@@ -2219,9 +2256,10 @@ export default {
|
|
|
2219
2256
|
401: { description: 'Unauthorized' },
|
|
2220
2257
|
},
|
|
2221
2258
|
security: [
|
|
2222
|
-
{
|
|
2223
|
-
{
|
|
2224
|
-
{
|
|
2259
|
+
{ client_session: [] },
|
|
2260
|
+
{ pat_with_workspace: [] },
|
|
2261
|
+
{ console_session: [] },
|
|
2262
|
+
{ api_key: [] },
|
|
2225
2263
|
],
|
|
2226
2264
|
summary: '/access_codes/generate_code',
|
|
2227
2265
|
tags: ['/access_codes'],
|
|
@@ -2322,9 +2360,10 @@ export default {
|
|
|
2322
2360
|
401: { description: 'Unauthorized' },
|
|
2323
2361
|
},
|
|
2324
2362
|
security: [
|
|
2325
|
-
{
|
|
2326
|
-
{
|
|
2327
|
-
{
|
|
2363
|
+
{ client_session: [] },
|
|
2364
|
+
{ pat_with_workspace: [] },
|
|
2365
|
+
{ console_session: [] },
|
|
2366
|
+
{ api_key: [] },
|
|
2328
2367
|
],
|
|
2329
2368
|
summary: '/access_codes/list',
|
|
2330
2369
|
tags: ['/access_codes'],
|
|
@@ -2371,9 +2410,10 @@ export default {
|
|
|
2371
2410
|
401: { description: 'Unauthorized' },
|
|
2372
2411
|
},
|
|
2373
2412
|
security: [
|
|
2374
|
-
{
|
|
2375
|
-
{
|
|
2376
|
-
{
|
|
2413
|
+
{ client_session: [] },
|
|
2414
|
+
{ pat_with_workspace: [] },
|
|
2415
|
+
{ console_session: [] },
|
|
2416
|
+
{ api_key: [] },
|
|
2377
2417
|
],
|
|
2378
2418
|
summary: '/access_codes/pull_backup_access_code',
|
|
2379
2419
|
tags: ['/access_codes'],
|
|
@@ -2427,9 +2467,10 @@ export default {
|
|
|
2427
2467
|
401: { description: 'Unauthorized' },
|
|
2428
2468
|
},
|
|
2429
2469
|
security: [
|
|
2430
|
-
{
|
|
2431
|
-
{
|
|
2432
|
-
{
|
|
2470
|
+
{ client_session: [] },
|
|
2471
|
+
{ pat_with_workspace: [] },
|
|
2472
|
+
{ console_session: [] },
|
|
2473
|
+
{ api_key: [] },
|
|
2433
2474
|
],
|
|
2434
2475
|
summary: '/access_codes/simulate/create_unmanaged_access_code',
|
|
2435
2476
|
tags: ['/access_codes'],
|
|
@@ -2839,9 +2880,10 @@ export default {
|
|
|
2839
2880
|
401: { description: 'Unauthorized' },
|
|
2840
2881
|
},
|
|
2841
2882
|
security: [
|
|
2842
|
-
{
|
|
2843
|
-
{
|
|
2844
|
-
{
|
|
2883
|
+
{ client_session: [] },
|
|
2884
|
+
{ pat_with_workspace: [] },
|
|
2885
|
+
{ console_session: [] },
|
|
2886
|
+
{ api_key: [] },
|
|
2845
2887
|
],
|
|
2846
2888
|
summary: '/access_codes/update',
|
|
2847
2889
|
tags: ['/access_codes'],
|
|
@@ -2912,9 +2954,10 @@ export default {
|
|
|
2912
2954
|
401: { description: 'Unauthorized' },
|
|
2913
2955
|
},
|
|
2914
2956
|
security: [
|
|
2915
|
-
{
|
|
2916
|
-
{
|
|
2917
|
-
{
|
|
2957
|
+
{ client_session: [] },
|
|
2958
|
+
{ pat_with_workspace: [] },
|
|
2959
|
+
{ console_session: [] },
|
|
2960
|
+
{ api_key: [] },
|
|
2918
2961
|
],
|
|
2919
2962
|
summary: '/access_codes/update',
|
|
2920
2963
|
tags: ['/access_codes'],
|
|
@@ -2987,9 +3030,10 @@ export default {
|
|
|
2987
3030
|
401: { description: 'Unauthorized' },
|
|
2988
3031
|
},
|
|
2989
3032
|
security: [
|
|
2990
|
-
{
|
|
2991
|
-
{
|
|
2992
|
-
{
|
|
3033
|
+
{ client_session: [] },
|
|
3034
|
+
{ pat_with_workspace: [] },
|
|
3035
|
+
{ console_session: [] },
|
|
3036
|
+
{ api_key: [] },
|
|
2993
3037
|
],
|
|
2994
3038
|
summary: '/access_codes/update',
|
|
2995
3039
|
tags: ['/access_codes'],
|