@seamapi/types 1.977.0 → 1.979.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.
Files changed (38) hide show
  1. package/dist/connect.cjs +185 -22
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +722 -57
  4. package/dist/index.cjs +185 -22
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -0
  7. package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
  8. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
  10. package/lib/seam/connect/models/acs/acs-system.js +1 -0
  11. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  12. package/lib/seam/connect/models/acs/metadata/akiles.d.ts +33 -0
  13. package/lib/seam/connect/models/acs/metadata/akiles.js +25 -0
  14. package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -0
  15. package/lib/seam/connect/models/devices/device-metadata.d.ts +48 -0
  16. package/lib/seam/connect/models/devices/device-metadata.js +40 -0
  17. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  19. package/lib/seam/connect/models/devices/device-provider.js +2 -1
  20. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  21. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  22. package/lib/seam/connect/models/devices/device-type.js +1 -0
  23. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  24. package/lib/seam/connect/models/devices/device.d.ts +71 -3
  25. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +51 -3
  26. package/lib/seam/connect/models/phones/phone-session.d.ts +188 -0
  27. package/lib/seam/connect/openapi.js +136 -0
  28. package/lib/seam/connect/openapi.js.map +1 -1
  29. package/lib/seam/connect/route-types.d.ts +544 -45
  30. package/package.json +1 -1
  31. package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
  32. package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
  33. package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
  34. package/src/lib/seam/connect/models/devices/device-metadata.ts +41 -0
  35. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
  36. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  37. package/src/lib/seam/connect/openapi.ts +147 -0
  38. package/src/lib/seam/connect/route-types.ts +663 -0
@@ -3399,6 +3399,41 @@ const openapi = {
3399
3399
  format: 'uuid',
3400
3400
  type: 'string',
3401
3401
  },
3402
+ akiles_metadata: {
3403
+ description: 'Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).',
3404
+ properties: {
3405
+ actions: {
3406
+ description: 'Actions the gadget exposes (for example, open).',
3407
+ items: {
3408
+ properties: {
3409
+ id: {
3410
+ description: 'ID of the gadget action.',
3411
+ type: 'string',
3412
+ },
3413
+ name: {
3414
+ description: 'Name of the gadget action.',
3415
+ type: 'string',
3416
+ },
3417
+ },
3418
+ type: 'object',
3419
+ },
3420
+ type: 'array',
3421
+ },
3422
+ gadget_id: {
3423
+ description: 'ID of the Akiles gadget.',
3424
+ type: 'string',
3425
+ },
3426
+ site_id: {
3427
+ description: 'ID of the Akiles site the gadget belongs to.',
3428
+ type: 'string',
3429
+ },
3430
+ site_name: {
3431
+ description: 'Name of the Akiles site the gadget belongs to.',
3432
+ type: 'string',
3433
+ },
3434
+ },
3435
+ type: 'object',
3436
+ },
3402
3437
  assa_abloy_vostio_metadata: {
3403
3438
  description: 'ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).',
3404
3439
  properties: {
@@ -4095,6 +4130,7 @@ const openapi = {
4095
4130
  'assa_abloy_vostio_credential_service',
4096
4131
  'hotek_site',
4097
4132
  'kisi_organization',
4133
+ 'akiles_organization',
4098
4134
  ],
4099
4135
  type: 'string',
4100
4136
  },
@@ -4149,6 +4185,7 @@ const openapi = {
4149
4185
  'assa_abloy_vostio_credential_service',
4150
4186
  'hotek_site',
4151
4187
  'kisi_organization',
4188
+ 'akiles_organization',
4152
4189
  ],
4153
4190
  type: 'string',
4154
4191
  'x-deprecated': 'Use `external_type`.',
@@ -11496,6 +11533,7 @@ const openapi = {
11496
11533
  'keyincode_lock',
11497
11534
  'omnitec_lock',
11498
11535
  'kisi_lock',
11536
+ 'aqara_lock',
11499
11537
  ],
11500
11538
  type: 'string',
11501
11539
  },
@@ -12286,6 +12324,48 @@ const openapi = {
12286
12324
  },
12287
12325
  type: 'object',
12288
12326
  },
12327
+ aqara_metadata: {
12328
+ description: 'Metadata for an Aqara device.',
12329
+ properties: {
12330
+ device_name: {
12331
+ description: 'Device name for an Aqara device.',
12332
+ type: 'string',
12333
+ },
12334
+ did: {
12335
+ description: 'Device ID (did) for an Aqara device.',
12336
+ type: 'string',
12337
+ },
12338
+ firmware_version: {
12339
+ description: 'Firmware version for an Aqara device.',
12340
+ nullable: true,
12341
+ type: 'string',
12342
+ },
12343
+ model: {
12344
+ description: 'Model identifier for an Aqara device.',
12345
+ type: 'string',
12346
+ },
12347
+ model_type: {
12348
+ description: 'Model type for an Aqara device.',
12349
+ format: 'float',
12350
+ type: 'number',
12351
+ },
12352
+ parent_did: {
12353
+ description: 'Parent gateway device ID for an Aqara device.',
12354
+ type: 'string',
12355
+ },
12356
+ position_id: {
12357
+ description: 'Position (room) ID for an Aqara device.',
12358
+ nullable: true,
12359
+ type: 'string',
12360
+ },
12361
+ time_zone: {
12362
+ description: 'Time zone reported for an Aqara device (e.g. GMT-07:00).',
12363
+ nullable: true,
12364
+ type: 'string',
12365
+ },
12366
+ },
12367
+ type: 'object',
12368
+ },
12289
12369
  assa_abloy_vostio_metadata: {
12290
12370
  description: 'Metadata for an ASSA ABLOY Vostio system.',
12291
12371
  properties: {
@@ -15290,6 +15370,7 @@ const openapi = {
15290
15370
  'acuity_scheduling',
15291
15371
  'omnitec',
15292
15372
  'kisi',
15373
+ 'aqara',
15293
15374
  ],
15294
15375
  type: 'string',
15295
15376
  },
@@ -24933,6 +25014,41 @@ const openapi = {
24933
25014
  format: 'uuid',
24934
25015
  type: 'string',
24935
25016
  },
25017
+ akiles_metadata: {
25018
+ description: 'Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).',
25019
+ properties: {
25020
+ actions: {
25021
+ description: 'Actions the gadget exposes (for example, open).',
25022
+ items: {
25023
+ properties: {
25024
+ id: {
25025
+ description: 'ID of the gadget action.',
25026
+ type: 'string',
25027
+ },
25028
+ name: {
25029
+ description: 'Name of the gadget action.',
25030
+ type: 'string',
25031
+ },
25032
+ },
25033
+ type: 'object',
25034
+ },
25035
+ type: 'array',
25036
+ },
25037
+ gadget_id: {
25038
+ description: 'ID of the Akiles gadget.',
25039
+ type: 'string',
25040
+ },
25041
+ site_id: {
25042
+ description: 'ID of the Akiles site the gadget belongs to.',
25043
+ type: 'string',
25044
+ },
25045
+ site_name: {
25046
+ description: 'Name of the Akiles site the gadget belongs to.',
25047
+ type: 'string',
25048
+ },
25049
+ },
25050
+ type: 'object',
25051
+ },
24936
25052
  assa_abloy_vostio_metadata: {
24937
25053
  description: 'ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).',
24938
25054
  properties: {
@@ -29327,6 +29443,7 @@ const openapi = {
29327
29443
  'keyincode_lock',
29328
29444
  'omnitec_lock',
29329
29445
  'kisi_lock',
29446
+ 'aqara_lock',
29330
29447
  ],
29331
29448
  type: 'string',
29332
29449
  },
@@ -48170,6 +48287,7 @@ const openapi = {
48170
48287
  'acuity_scheduling',
48171
48288
  'omnitec',
48172
48289
  'kisi',
48290
+ 'aqara',
48173
48291
  'yale_access',
48174
48292
  'hid_cm',
48175
48293
  'google_nest',
@@ -52172,6 +52290,7 @@ const openapi = {
52172
52290
  'keyincode_lock',
52173
52291
  'omnitec_lock',
52174
52292
  'kisi_lock',
52293
+ 'aqara_lock',
52175
52294
  ],
52176
52295
  type: 'string',
52177
52296
  },
@@ -52249,6 +52368,7 @@ const openapi = {
52249
52368
  'keyincode_lock',
52250
52369
  'omnitec_lock',
52251
52370
  'kisi_lock',
52371
+ 'aqara_lock',
52252
52372
  ],
52253
52373
  type: 'string',
52254
52374
  },
@@ -52325,6 +52445,7 @@ const openapi = {
52325
52445
  'tedee',
52326
52446
  'keyincode',
52327
52447
  'akiles',
52448
+ 'aqara',
52328
52449
  'ecobee',
52329
52450
  'honeywell_resideo',
52330
52451
  'keynest',
@@ -52620,6 +52741,7 @@ const openapi = {
52620
52741
  'keyincode_lock',
52621
52742
  'omnitec_lock',
52622
52743
  'kisi_lock',
52744
+ 'aqara_lock',
52623
52745
  ],
52624
52746
  type: 'string',
52625
52747
  },
@@ -52693,6 +52815,7 @@ const openapi = {
52693
52815
  'keyincode_lock',
52694
52816
  'omnitec_lock',
52695
52817
  'kisi_lock',
52818
+ 'aqara_lock',
52696
52819
  ],
52697
52820
  type: 'string',
52698
52821
  },
@@ -52829,6 +52952,7 @@ const openapi = {
52829
52952
  'tedee',
52830
52953
  'keyincode',
52831
52954
  'akiles',
52955
+ 'aqara',
52832
52956
  'ecobee',
52833
52957
  'honeywell_resideo',
52834
52958
  'keynest',
@@ -54935,6 +55059,7 @@ const openapi = {
54935
55059
  'keyincode_lock',
54936
55060
  'omnitec_lock',
54937
55061
  'kisi_lock',
55062
+ 'aqara_lock',
54938
55063
  ],
54939
55064
  type: 'string',
54940
55065
  },
@@ -55012,6 +55137,7 @@ const openapi = {
55012
55137
  'keyincode_lock',
55013
55138
  'omnitec_lock',
55014
55139
  'kisi_lock',
55140
+ 'aqara_lock',
55015
55141
  ],
55016
55142
  type: 'string',
55017
55143
  },
@@ -55088,6 +55214,7 @@ const openapi = {
55088
55214
  'tedee',
55089
55215
  'keyincode',
55090
55216
  'akiles',
55217
+ 'aqara',
55091
55218
  'ecobee',
55092
55219
  'honeywell_resideo',
55093
55220
  'keynest',
@@ -55382,6 +55509,7 @@ const openapi = {
55382
55509
  'keyincode_lock',
55383
55510
  'omnitec_lock',
55384
55511
  'kisi_lock',
55512
+ 'aqara_lock',
55385
55513
  ],
55386
55514
  type: 'string',
55387
55515
  },
@@ -55455,6 +55583,7 @@ const openapi = {
55455
55583
  'keyincode_lock',
55456
55584
  'omnitec_lock',
55457
55585
  'kisi_lock',
55586
+ 'aqara_lock',
55458
55587
  ],
55459
55588
  type: 'string',
55460
55589
  },
@@ -55591,6 +55720,7 @@ const openapi = {
55591
55720
  'tedee',
55592
55721
  'keyincode',
55593
55722
  'akiles',
55723
+ 'aqara',
55594
55724
  'ecobee',
55595
55725
  'honeywell_resideo',
55596
55726
  'keynest',
@@ -57656,6 +57786,7 @@ const openapi = {
57656
57786
  'keyincode_lock',
57657
57787
  'omnitec_lock',
57658
57788
  'kisi_lock',
57789
+ 'aqara_lock',
57659
57790
  ],
57660
57791
  type: 'string',
57661
57792
  },
@@ -57697,6 +57828,7 @@ const openapi = {
57697
57828
  'keyincode_lock',
57698
57829
  'omnitec_lock',
57699
57830
  'kisi_lock',
57831
+ 'aqara_lock',
57700
57832
  ],
57701
57833
  type: 'string',
57702
57834
  },
@@ -57735,6 +57867,7 @@ const openapi = {
57735
57867
  'tedee',
57736
57868
  'keyincode',
57737
57869
  'akiles',
57870
+ 'aqara',
57738
57871
  'korelock',
57739
57872
  'smartthings',
57740
57873
  'ultraloq',
@@ -58013,6 +58146,7 @@ const openapi = {
58013
58146
  'keyincode_lock',
58014
58147
  'omnitec_lock',
58015
58148
  'kisi_lock',
58149
+ 'aqara_lock',
58016
58150
  ],
58017
58151
  type: 'string',
58018
58152
  },
@@ -58050,6 +58184,7 @@ const openapi = {
58050
58184
  'keyincode_lock',
58051
58185
  'omnitec_lock',
58052
58186
  'kisi_lock',
58187
+ 'aqara_lock',
58053
58188
  ],
58054
58189
  type: 'string',
58055
58190
  },
@@ -58148,6 +58283,7 @@ const openapi = {
58148
58283
  'tedee',
58149
58284
  'keyincode',
58150
58285
  'akiles',
58286
+ 'aqara',
58151
58287
  'korelock',
58152
58288
  'smartthings',
58153
58289
  'ultraloq',