@seamapi/types 1.526.0 → 1.528.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 +59 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +71 -10
- package/dist/index.cjs +59 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +37 -0
- package/lib/seam/connect/models/customer/customer-delete-data.d.ts +3 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js +5 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -0
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +37 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-delete-data.ts +6 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +38 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
|
@@ -8189,6 +8189,7 @@ export default {
|
|
|
8189
8189
|
can_simulate_disconnection: { type: 'boolean' },
|
|
8190
8190
|
can_simulate_hub_connection: { type: 'boolean' },
|
|
8191
8191
|
can_simulate_hub_disconnection: { type: 'boolean' },
|
|
8192
|
+
can_simulate_paid_subscription: { type: 'boolean' },
|
|
8192
8193
|
can_simulate_removal: { type: 'boolean' },
|
|
8193
8194
|
can_turn_off_hvac: { type: 'boolean' },
|
|
8194
8195
|
can_unlock_with_code: { type: 'boolean' },
|
|
@@ -11443,6 +11444,7 @@ export default {
|
|
|
11443
11444
|
can_simulate_disconnection: { type: 'boolean' },
|
|
11444
11445
|
can_simulate_hub_connection: { type: 'boolean' },
|
|
11445
11446
|
can_simulate_hub_disconnection: { type: 'boolean' },
|
|
11447
|
+
can_simulate_paid_subscription: { type: 'boolean' },
|
|
11446
11448
|
can_simulate_removal: { type: 'boolean' },
|
|
11447
11449
|
can_turn_off_hvac: { type: 'boolean' },
|
|
11448
11450
|
can_unlock_with_code: { type: 'boolean' },
|
|
@@ -21193,6 +21195,7 @@ export default {
|
|
|
21193
21195
|
can_simulate_disconnection: { type: 'boolean' },
|
|
21194
21196
|
can_simulate_hub_connection: { type: 'boolean' },
|
|
21195
21197
|
can_simulate_hub_disconnection: { type: 'boolean' },
|
|
21198
|
+
can_simulate_paid_subscription: { type: 'boolean' },
|
|
21196
21199
|
can_simulate_removal: { type: 'boolean' },
|
|
21197
21200
|
can_turn_off_hvac: { type: 'boolean' },
|
|
21198
21201
|
can_unlock_with_code: { type: 'boolean' },
|
|
@@ -35668,6 +35671,15 @@ export default {
|
|
|
35668
35671
|
description: 'Deletes customer data including resources like spaces, properties, rooms, users, etc.\nThis will delete the partner resources and any related Seam resources (user identities, access grants, spaces).',
|
|
35669
35672
|
operationId: 'customersDeleteDataDelete',
|
|
35670
35673
|
parameters: [
|
|
35674
|
+
{
|
|
35675
|
+
in: 'query',
|
|
35676
|
+
name: 'customer_keys',
|
|
35677
|
+
schema: {
|
|
35678
|
+
description: 'List of customer keys to delete all data for.',
|
|
35679
|
+
items: { type: 'string' },
|
|
35680
|
+
type: 'array',
|
|
35681
|
+
},
|
|
35682
|
+
},
|
|
35671
35683
|
{
|
|
35672
35684
|
in: 'query',
|
|
35673
35685
|
name: 'space_keys',
|
|
@@ -35878,6 +35890,11 @@ export default {
|
|
|
35878
35890
|
items: { type: 'string' },
|
|
35879
35891
|
type: 'array',
|
|
35880
35892
|
},
|
|
35893
|
+
customer_keys: {
|
|
35894
|
+
description: 'List of customer keys to delete all data for.',
|
|
35895
|
+
items: { type: 'string' },
|
|
35896
|
+
type: 'array',
|
|
35897
|
+
},
|
|
35881
35898
|
facility_keys: {
|
|
35882
35899
|
description: 'List of facility keys to delete.',
|
|
35883
35900
|
items: { type: 'string' },
|
|
@@ -37099,6 +37116,7 @@ export default {
|
|
|
37099
37116
|
'can_run_thermostat_programs',
|
|
37100
37117
|
'can_simulate_hub_connection',
|
|
37101
37118
|
'can_simulate_hub_disconnection',
|
|
37119
|
+
'can_simulate_paid_subscription',
|
|
37102
37120
|
],
|
|
37103
37121
|
type: 'string',
|
|
37104
37122
|
},
|
|
@@ -37127,6 +37145,7 @@ export default {
|
|
|
37127
37145
|
'can_run_thermostat_programs',
|
|
37128
37146
|
'can_simulate_hub_connection',
|
|
37129
37147
|
'can_simulate_hub_disconnection',
|
|
37148
|
+
'can_simulate_paid_subscription',
|
|
37130
37149
|
],
|
|
37131
37150
|
type: 'string',
|
|
37132
37151
|
},
|
|
@@ -37401,6 +37420,7 @@ export default {
|
|
|
37401
37420
|
'can_run_thermostat_programs',
|
|
37402
37421
|
'can_simulate_hub_connection',
|
|
37403
37422
|
'can_simulate_hub_disconnection',
|
|
37423
|
+
'can_simulate_paid_subscription',
|
|
37404
37424
|
],
|
|
37405
37425
|
type: 'string',
|
|
37406
37426
|
},
|
|
@@ -37425,6 +37445,7 @@ export default {
|
|
|
37425
37445
|
'can_run_thermostat_programs',
|
|
37426
37446
|
'can_simulate_hub_connection',
|
|
37427
37447
|
'can_simulate_hub_disconnection',
|
|
37448
|
+
'can_simulate_paid_subscription',
|
|
37428
37449
|
],
|
|
37429
37450
|
type: 'string',
|
|
37430
37451
|
},
|
|
@@ -38339,6 +38360,7 @@ export default {
|
|
|
38339
38360
|
'can_run_thermostat_programs',
|
|
38340
38361
|
'can_simulate_hub_connection',
|
|
38341
38362
|
'can_simulate_hub_disconnection',
|
|
38363
|
+
'can_simulate_paid_subscription',
|
|
38342
38364
|
],
|
|
38343
38365
|
type: 'string',
|
|
38344
38366
|
},
|
|
@@ -38367,6 +38389,7 @@ export default {
|
|
|
38367
38389
|
'can_run_thermostat_programs',
|
|
38368
38390
|
'can_simulate_hub_connection',
|
|
38369
38391
|
'can_simulate_hub_disconnection',
|
|
38392
|
+
'can_simulate_paid_subscription',
|
|
38370
38393
|
],
|
|
38371
38394
|
type: 'string',
|
|
38372
38395
|
},
|
|
@@ -38638,6 +38661,7 @@ export default {
|
|
|
38638
38661
|
'can_run_thermostat_programs',
|
|
38639
38662
|
'can_simulate_hub_connection',
|
|
38640
38663
|
'can_simulate_hub_disconnection',
|
|
38664
|
+
'can_simulate_paid_subscription',
|
|
38641
38665
|
],
|
|
38642
38666
|
type: 'string',
|
|
38643
38667
|
},
|
|
@@ -38662,6 +38686,7 @@ export default {
|
|
|
38662
38686
|
'can_run_thermostat_programs',
|
|
38663
38687
|
'can_simulate_hub_connection',
|
|
38664
38688
|
'can_simulate_hub_disconnection',
|
|
38689
|
+
'can_simulate_paid_subscription',
|
|
38665
38690
|
],
|
|
38666
38691
|
type: 'string',
|
|
38667
38692
|
},
|
|
@@ -40553,6 +40578,7 @@ export default {
|
|
|
40553
40578
|
'can_run_thermostat_programs',
|
|
40554
40579
|
'can_simulate_hub_connection',
|
|
40555
40580
|
'can_simulate_hub_disconnection',
|
|
40581
|
+
'can_simulate_paid_subscription',
|
|
40556
40582
|
],
|
|
40557
40583
|
type: 'string',
|
|
40558
40584
|
},
|
|
@@ -40581,6 +40607,7 @@ export default {
|
|
|
40581
40607
|
'can_run_thermostat_programs',
|
|
40582
40608
|
'can_simulate_hub_connection',
|
|
40583
40609
|
'can_simulate_hub_disconnection',
|
|
40610
|
+
'can_simulate_paid_subscription',
|
|
40584
40611
|
],
|
|
40585
40612
|
type: 'string',
|
|
40586
40613
|
},
|
|
@@ -40804,6 +40831,7 @@ export default {
|
|
|
40804
40831
|
'can_run_thermostat_programs',
|
|
40805
40832
|
'can_simulate_hub_connection',
|
|
40806
40833
|
'can_simulate_hub_disconnection',
|
|
40834
|
+
'can_simulate_paid_subscription',
|
|
40807
40835
|
],
|
|
40808
40836
|
type: 'string',
|
|
40809
40837
|
},
|
|
@@ -40828,6 +40856,7 @@ export default {
|
|
|
40828
40856
|
'can_run_thermostat_programs',
|
|
40829
40857
|
'can_simulate_hub_connection',
|
|
40830
40858
|
'can_simulate_hub_disconnection',
|
|
40859
|
+
'can_simulate_paid_subscription',
|
|
40831
40860
|
],
|
|
40832
40861
|
type: 'string',
|
|
40833
40862
|
},
|
|
@@ -41341,6 +41370,7 @@ export default {
|
|
|
41341
41370
|
'can_run_thermostat_programs',
|
|
41342
41371
|
'can_simulate_hub_connection',
|
|
41343
41372
|
'can_simulate_hub_disconnection',
|
|
41373
|
+
'can_simulate_paid_subscription',
|
|
41344
41374
|
],
|
|
41345
41375
|
type: 'string',
|
|
41346
41376
|
},
|
|
@@ -41369,6 +41399,7 @@ export default {
|
|
|
41369
41399
|
'can_run_thermostat_programs',
|
|
41370
41400
|
'can_simulate_hub_connection',
|
|
41371
41401
|
'can_simulate_hub_disconnection',
|
|
41402
|
+
'can_simulate_paid_subscription',
|
|
41372
41403
|
],
|
|
41373
41404
|
type: 'string',
|
|
41374
41405
|
},
|
|
@@ -41536,6 +41567,7 @@ export default {
|
|
|
41536
41567
|
'can_run_thermostat_programs',
|
|
41537
41568
|
'can_simulate_hub_connection',
|
|
41538
41569
|
'can_simulate_hub_disconnection',
|
|
41570
|
+
'can_simulate_paid_subscription',
|
|
41539
41571
|
],
|
|
41540
41572
|
type: 'string',
|
|
41541
41573
|
},
|
|
@@ -41560,6 +41592,7 @@ export default {
|
|
|
41560
41592
|
'can_run_thermostat_programs',
|
|
41561
41593
|
'can_simulate_hub_connection',
|
|
41562
41594
|
'can_simulate_hub_disconnection',
|
|
41595
|
+
'can_simulate_paid_subscription',
|
|
41563
41596
|
],
|
|
41564
41597
|
type: 'string',
|
|
41565
41598
|
},
|
|
@@ -48371,6 +48404,7 @@ export default {
|
|
|
48371
48404
|
'can_run_thermostat_programs',
|
|
48372
48405
|
'can_simulate_hub_connection',
|
|
48373
48406
|
'can_simulate_hub_disconnection',
|
|
48407
|
+
'can_simulate_paid_subscription',
|
|
48374
48408
|
],
|
|
48375
48409
|
type: 'string',
|
|
48376
48410
|
},
|
|
@@ -48399,6 +48433,7 @@ export default {
|
|
|
48399
48433
|
'can_run_thermostat_programs',
|
|
48400
48434
|
'can_simulate_hub_connection',
|
|
48401
48435
|
'can_simulate_hub_disconnection',
|
|
48436
|
+
'can_simulate_paid_subscription',
|
|
48402
48437
|
],
|
|
48403
48438
|
type: 'string',
|
|
48404
48439
|
},
|
|
@@ -48580,6 +48615,7 @@ export default {
|
|
|
48580
48615
|
'can_run_thermostat_programs',
|
|
48581
48616
|
'can_simulate_hub_connection',
|
|
48582
48617
|
'can_simulate_hub_disconnection',
|
|
48618
|
+
'can_simulate_paid_subscription',
|
|
48583
48619
|
],
|
|
48584
48620
|
type: 'string',
|
|
48585
48621
|
},
|
|
@@ -48604,6 +48640,7 @@ export default {
|
|
|
48604
48640
|
'can_run_thermostat_programs',
|
|
48605
48641
|
'can_simulate_hub_connection',
|
|
48606
48642
|
'can_simulate_hub_disconnection',
|
|
48643
|
+
'can_simulate_paid_subscription',
|
|
48607
48644
|
],
|
|
48608
48645
|
type: 'string',
|
|
48609
48646
|
},
|