@seamapi/types 1.367.2 → 1.369.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 +509 -234
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2801 -1000
- package/lib/seam/connect/models/action-attempts/common.js +36 -19
- package/lib/seam/connect/models/action-attempts/common.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/encode-credential.js +9 -5
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +320 -34
- package/lib/seam/connect/openapi.js +430 -164
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2481 -966
- package/package.json +3 -3
- package/src/lib/seam/connect/models/action-attempts/common.ts +42 -19
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +17 -5
- package/src/lib/seam/connect/openapi.ts +501 -164
- package/src/lib/seam/connect/route-types.ts +2481 -966
|
@@ -2466,14 +2466,19 @@ export default {
|
|
|
2466
2466
|
description: 'Locking door.',
|
|
2467
2467
|
properties: {
|
|
2468
2468
|
action_attempt_id: {
|
|
2469
|
-
description: '
|
|
2469
|
+
description: 'ID of the action attempt.',
|
|
2470
2470
|
format: 'uuid',
|
|
2471
2471
|
type: 'string',
|
|
2472
|
-
'x-title': 'Action Attempt ID',
|
|
2473
2472
|
},
|
|
2474
2473
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
2475
|
-
error: {
|
|
2476
|
-
|
|
2474
|
+
error: {
|
|
2475
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
2476
|
+
nullable: true,
|
|
2477
|
+
},
|
|
2478
|
+
result: {
|
|
2479
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
2480
|
+
nullable: true,
|
|
2481
|
+
},
|
|
2477
2482
|
status: { enum: ['pending'], type: 'string' },
|
|
2478
2483
|
},
|
|
2479
2484
|
required: [
|
|
@@ -2489,13 +2494,15 @@ export default {
|
|
|
2489
2494
|
description: 'Locking door succeeded.',
|
|
2490
2495
|
properties: {
|
|
2491
2496
|
action_attempt_id: {
|
|
2492
|
-
description: '
|
|
2497
|
+
description: 'ID of the action attempt.',
|
|
2493
2498
|
format: 'uuid',
|
|
2494
2499
|
type: 'string',
|
|
2495
|
-
'x-title': 'Action Attempt ID',
|
|
2496
2500
|
},
|
|
2497
2501
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
2498
|
-
error: {
|
|
2502
|
+
error: {
|
|
2503
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
2504
|
+
nullable: true,
|
|
2505
|
+
},
|
|
2499
2506
|
result: { properties: {}, type: 'object' },
|
|
2500
2507
|
status: { enum: ['success'], type: 'string' },
|
|
2501
2508
|
},
|
|
@@ -2512,10 +2519,9 @@ export default {
|
|
|
2512
2519
|
description: 'Locking door failed.',
|
|
2513
2520
|
properties: {
|
|
2514
2521
|
action_attempt_id: {
|
|
2515
|
-
description: '
|
|
2522
|
+
description: 'ID of the action attempt.',
|
|
2516
2523
|
format: 'uuid',
|
|
2517
2524
|
type: 'string',
|
|
2518
|
-
'x-title': 'Action Attempt ID',
|
|
2519
2525
|
},
|
|
2520
2526
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
2521
2527
|
error: {
|
|
@@ -2526,7 +2532,10 @@ export default {
|
|
|
2526
2532
|
required: ['type', 'message'],
|
|
2527
2533
|
type: 'object',
|
|
2528
2534
|
},
|
|
2529
|
-
result: {
|
|
2535
|
+
result: {
|
|
2536
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
2537
|
+
nullable: true,
|
|
2538
|
+
},
|
|
2530
2539
|
status: { enum: ['error'], type: 'string' },
|
|
2531
2540
|
},
|
|
2532
2541
|
required: [
|
|
@@ -2542,14 +2551,19 @@ export default {
|
|
|
2542
2551
|
description: 'Unlocking door.',
|
|
2543
2552
|
properties: {
|
|
2544
2553
|
action_attempt_id: {
|
|
2545
|
-
description: '
|
|
2554
|
+
description: 'ID of the action attempt.',
|
|
2546
2555
|
format: 'uuid',
|
|
2547
2556
|
type: 'string',
|
|
2548
|
-
'x-title': 'Action Attempt ID',
|
|
2549
2557
|
},
|
|
2550
2558
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
2551
|
-
error: {
|
|
2552
|
-
|
|
2559
|
+
error: {
|
|
2560
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
2561
|
+
nullable: true,
|
|
2562
|
+
},
|
|
2563
|
+
result: {
|
|
2564
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
2565
|
+
nullable: true,
|
|
2566
|
+
},
|
|
2553
2567
|
status: { enum: ['pending'], type: 'string' },
|
|
2554
2568
|
},
|
|
2555
2569
|
required: [
|
|
@@ -2565,13 +2579,15 @@ export default {
|
|
|
2565
2579
|
description: 'Unlocking door succeeded.',
|
|
2566
2580
|
properties: {
|
|
2567
2581
|
action_attempt_id: {
|
|
2568
|
-
description: '
|
|
2582
|
+
description: 'ID of the action attempt.',
|
|
2569
2583
|
format: 'uuid',
|
|
2570
2584
|
type: 'string',
|
|
2571
|
-
'x-title': 'Action Attempt ID',
|
|
2572
2585
|
},
|
|
2573
2586
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
2574
|
-
error: {
|
|
2587
|
+
error: {
|
|
2588
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
2589
|
+
nullable: true,
|
|
2590
|
+
},
|
|
2575
2591
|
result: { properties: {}, type: 'object' },
|
|
2576
2592
|
status: { enum: ['success'], type: 'string' },
|
|
2577
2593
|
},
|
|
@@ -2588,10 +2604,9 @@ export default {
|
|
|
2588
2604
|
description: 'Unlocking door failed.',
|
|
2589
2605
|
properties: {
|
|
2590
2606
|
action_attempt_id: {
|
|
2591
|
-
description: '
|
|
2607
|
+
description: 'ID of the action attempt.',
|
|
2592
2608
|
format: 'uuid',
|
|
2593
2609
|
type: 'string',
|
|
2594
|
-
'x-title': 'Action Attempt ID',
|
|
2595
2610
|
},
|
|
2596
2611
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
2597
2612
|
error: {
|
|
@@ -2602,7 +2617,10 @@ export default {
|
|
|
2602
2617
|
required: ['type', 'message'],
|
|
2603
2618
|
type: 'object',
|
|
2604
2619
|
},
|
|
2605
|
-
result: {
|
|
2620
|
+
result: {
|
|
2621
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
2622
|
+
nullable: true,
|
|
2623
|
+
},
|
|
2606
2624
|
status: { enum: ['error'], type: 'string' },
|
|
2607
2625
|
},
|
|
2608
2626
|
required: [
|
|
@@ -2618,14 +2636,19 @@ export default {
|
|
|
2618
2636
|
description: 'Reading credential data from physical encoder.',
|
|
2619
2637
|
properties: {
|
|
2620
2638
|
action_attempt_id: {
|
|
2621
|
-
description: '
|
|
2639
|
+
description: 'ID of the action attempt.',
|
|
2622
2640
|
format: 'uuid',
|
|
2623
2641
|
type: 'string',
|
|
2624
|
-
'x-title': 'Action Attempt ID',
|
|
2625
2642
|
},
|
|
2626
2643
|
action_type: { enum: ['SCAN_CREDENTIAL'], type: 'string' },
|
|
2627
|
-
error: {
|
|
2628
|
-
|
|
2644
|
+
error: {
|
|
2645
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
2646
|
+
nullable: true,
|
|
2647
|
+
},
|
|
2648
|
+
result: {
|
|
2649
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
2650
|
+
nullable: true,
|
|
2651
|
+
},
|
|
2629
2652
|
status: { enum: ['pending'], type: 'string' },
|
|
2630
2653
|
},
|
|
2631
2654
|
required: [
|
|
@@ -2641,13 +2664,15 @@ export default {
|
|
|
2641
2664
|
description: 'Reading credential data from physical encoder succeeded.',
|
|
2642
2665
|
properties: {
|
|
2643
2666
|
action_attempt_id: {
|
|
2644
|
-
description: '
|
|
2667
|
+
description: 'ID of the action attempt.',
|
|
2645
2668
|
format: 'uuid',
|
|
2646
2669
|
type: 'string',
|
|
2647
|
-
'x-title': 'Action Attempt ID',
|
|
2648
2670
|
},
|
|
2649
2671
|
action_type: { enum: ['SCAN_CREDENTIAL'], type: 'string' },
|
|
2650
|
-
error: {
|
|
2672
|
+
error: {
|
|
2673
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
2674
|
+
nullable: true,
|
|
2675
|
+
},
|
|
2651
2676
|
result: {
|
|
2652
2677
|
properties: {
|
|
2653
2678
|
acs_credential_on_encoder: {
|
|
@@ -3493,26 +3518,38 @@ export default {
|
|
|
3493
3518
|
description: 'Reading credential data from physical encoder failed.',
|
|
3494
3519
|
properties: {
|
|
3495
3520
|
action_attempt_id: {
|
|
3496
|
-
description: '
|
|
3521
|
+
description: 'ID of the action attempt.',
|
|
3497
3522
|
format: 'uuid',
|
|
3498
3523
|
type: 'string',
|
|
3499
|
-
'x-title': 'Action Attempt ID',
|
|
3500
3524
|
},
|
|
3501
3525
|
action_type: { enum: ['SCAN_CREDENTIAL'], type: 'string' },
|
|
3502
3526
|
error: {
|
|
3503
3527
|
oneOf: [
|
|
3504
3528
|
{
|
|
3529
|
+
description: "Error that doesn't fit into other specific error categories.",
|
|
3505
3530
|
properties: {
|
|
3506
|
-
message: {
|
|
3507
|
-
|
|
3531
|
+
message: {
|
|
3532
|
+
description: 'Message for the error associated with the action attempt.',
|
|
3533
|
+
type: 'string',
|
|
3534
|
+
},
|
|
3535
|
+
type: {
|
|
3536
|
+
description: 'Type of the error associated with the action attempt.',
|
|
3537
|
+
enum: ['uncategorized_error'],
|
|
3538
|
+
type: 'string',
|
|
3539
|
+
},
|
|
3508
3540
|
},
|
|
3509
3541
|
required: ['type', 'message'],
|
|
3510
3542
|
type: 'object',
|
|
3511
3543
|
},
|
|
3512
3544
|
{
|
|
3545
|
+
description: 'Error to indicate an expired action attempt.',
|
|
3513
3546
|
properties: {
|
|
3514
|
-
message: {
|
|
3547
|
+
message: {
|
|
3548
|
+
description: 'Message for the error associated with the action attempt.',
|
|
3549
|
+
type: 'string',
|
|
3550
|
+
},
|
|
3515
3551
|
type: {
|
|
3552
|
+
description: 'Type of the error associated with the action attempt.',
|
|
3516
3553
|
enum: ['action_attempt_expired'],
|
|
3517
3554
|
type: 'string',
|
|
3518
3555
|
},
|
|
@@ -3533,7 +3570,10 @@ export default {
|
|
|
3533
3570
|
},
|
|
3534
3571
|
],
|
|
3535
3572
|
},
|
|
3536
|
-
result: {
|
|
3573
|
+
result: {
|
|
3574
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
3575
|
+
nullable: true,
|
|
3576
|
+
},
|
|
3537
3577
|
status: { enum: ['error'], type: 'string' },
|
|
3538
3578
|
},
|
|
3539
3579
|
required: [
|
|
@@ -3546,17 +3586,26 @@ export default {
|
|
|
3546
3586
|
type: 'object',
|
|
3547
3587
|
},
|
|
3548
3588
|
{
|
|
3549
|
-
description: '
|
|
3589
|
+
description: 'Action attempt to track encoding credential data from the physical encoder onto a card.',
|
|
3550
3590
|
properties: {
|
|
3551
3591
|
action_attempt_id: {
|
|
3552
|
-
description: '
|
|
3592
|
+
description: 'ID of the action attempt.',
|
|
3553
3593
|
format: 'uuid',
|
|
3554
3594
|
type: 'string',
|
|
3555
|
-
'x-title': 'Action Attempt ID',
|
|
3556
3595
|
},
|
|
3557
|
-
action_type: {
|
|
3558
|
-
|
|
3559
|
-
|
|
3596
|
+
action_type: {
|
|
3597
|
+
description: 'Type of action that the action attempt tracks.',
|
|
3598
|
+
enum: ['ENCODE_CREDENTIAL'],
|
|
3599
|
+
type: 'string',
|
|
3600
|
+
},
|
|
3601
|
+
error: {
|
|
3602
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
3603
|
+
nullable: true,
|
|
3604
|
+
},
|
|
3605
|
+
result: {
|
|
3606
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
3607
|
+
nullable: true,
|
|
3608
|
+
},
|
|
3560
3609
|
status: { enum: ['pending'], type: 'string' },
|
|
3561
3610
|
},
|
|
3562
3611
|
required: [
|
|
@@ -3569,18 +3618,24 @@ export default {
|
|
|
3569
3618
|
type: 'object',
|
|
3570
3619
|
},
|
|
3571
3620
|
{
|
|
3572
|
-
description: '
|
|
3621
|
+
description: 'Action attempt to indicate that encoding credential data from the physical encoder onto a card succeeded.',
|
|
3573
3622
|
properties: {
|
|
3574
3623
|
action_attempt_id: {
|
|
3575
|
-
description: '
|
|
3624
|
+
description: 'ID of the action attempt.',
|
|
3576
3625
|
format: 'uuid',
|
|
3577
3626
|
type: 'string',
|
|
3578
|
-
'x-title': 'Action Attempt ID',
|
|
3579
3627
|
},
|
|
3580
|
-
action_type: {
|
|
3581
|
-
|
|
3628
|
+
action_type: {
|
|
3629
|
+
description: 'Type of action that the action attempt tracks.',
|
|
3630
|
+
enum: ['ENCODE_CREDENTIAL'],
|
|
3631
|
+
type: 'string',
|
|
3632
|
+
},
|
|
3633
|
+
error: {
|
|
3634
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
3635
|
+
nullable: true,
|
|
3636
|
+
},
|
|
3582
3637
|
result: {
|
|
3583
|
-
description: '
|
|
3638
|
+
description: 'If an encoding attempt was successful, includes the `acs_credential` data that was encoded onto the card.',
|
|
3584
3639
|
oneOf: [
|
|
3585
3640
|
{
|
|
3586
3641
|
description: 'Means by which an [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) gains access at an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). The `acs_credential` object represents a [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) that provides an ACS user access within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). For each `acs_credential` object, you define the access method. You can also specify additional properties, such as a PIN code.',
|
|
@@ -4269,7 +4324,6 @@ export default {
|
|
|
4269
4324
|
'x-route-path': '/acs/credentials/unmanaged',
|
|
4270
4325
|
},
|
|
4271
4326
|
],
|
|
4272
|
-
'x-route-path': '/acs/credentials',
|
|
4273
4327
|
},
|
|
4274
4328
|
status: { enum: ['success'], type: 'string' },
|
|
4275
4329
|
},
|
|
@@ -4283,29 +4337,45 @@ export default {
|
|
|
4283
4337
|
type: 'object',
|
|
4284
4338
|
},
|
|
4285
4339
|
{
|
|
4286
|
-
description: '
|
|
4340
|
+
description: 'Action attempt to indicate that encoding credential data from the physical encoder onto a card failed.',
|
|
4287
4341
|
properties: {
|
|
4288
4342
|
action_attempt_id: {
|
|
4289
|
-
description: '
|
|
4343
|
+
description: 'ID of the action attempt.',
|
|
4290
4344
|
format: 'uuid',
|
|
4291
4345
|
type: 'string',
|
|
4292
|
-
'x-title': 'Action Attempt ID',
|
|
4293
4346
|
},
|
|
4294
|
-
action_type: {
|
|
4347
|
+
action_type: {
|
|
4348
|
+
description: 'Type of action that the action attempt tracks.',
|
|
4349
|
+
enum: ['ENCODE_CREDENTIAL'],
|
|
4350
|
+
type: 'string',
|
|
4351
|
+
},
|
|
4295
4352
|
error: {
|
|
4296
4353
|
oneOf: [
|
|
4297
4354
|
{
|
|
4355
|
+
description: "Error that doesn't fit into other specific error categories.",
|
|
4298
4356
|
properties: {
|
|
4299
|
-
message: {
|
|
4300
|
-
|
|
4357
|
+
message: {
|
|
4358
|
+
description: 'Message for the error associated with the action attempt.',
|
|
4359
|
+
type: 'string',
|
|
4360
|
+
},
|
|
4361
|
+
type: {
|
|
4362
|
+
description: 'Type of the error associated with the action attempt.',
|
|
4363
|
+
enum: ['uncategorized_error'],
|
|
4364
|
+
type: 'string',
|
|
4365
|
+
},
|
|
4301
4366
|
},
|
|
4302
4367
|
required: ['type', 'message'],
|
|
4303
4368
|
type: 'object',
|
|
4304
4369
|
},
|
|
4305
4370
|
{
|
|
4371
|
+
description: 'Error to indicate an expired action attempt.',
|
|
4306
4372
|
properties: {
|
|
4307
|
-
message: {
|
|
4373
|
+
message: {
|
|
4374
|
+
description: 'Message for the error associated with the action attempt.',
|
|
4375
|
+
type: 'string',
|
|
4376
|
+
},
|
|
4308
4377
|
type: {
|
|
4378
|
+
description: 'Type of the error associated with the action attempt.',
|
|
4309
4379
|
enum: ['action_attempt_expired'],
|
|
4310
4380
|
type: 'string',
|
|
4311
4381
|
},
|
|
@@ -4348,7 +4418,10 @@ export default {
|
|
|
4348
4418
|
},
|
|
4349
4419
|
],
|
|
4350
4420
|
},
|
|
4351
|
-
result: {
|
|
4421
|
+
result: {
|
|
4422
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
4423
|
+
nullable: true,
|
|
4424
|
+
},
|
|
4352
4425
|
status: { enum: ['error'], type: 'string' },
|
|
4353
4426
|
},
|
|
4354
4427
|
required: [
|
|
@@ -4364,17 +4437,22 @@ export default {
|
|
|
4364
4437
|
description: 'Resetting sandbox workspace.',
|
|
4365
4438
|
properties: {
|
|
4366
4439
|
action_attempt_id: {
|
|
4367
|
-
description: '
|
|
4440
|
+
description: 'ID of the action attempt.',
|
|
4368
4441
|
format: 'uuid',
|
|
4369
4442
|
type: 'string',
|
|
4370
|
-
'x-title': 'Action Attempt ID',
|
|
4371
4443
|
},
|
|
4372
4444
|
action_type: {
|
|
4373
4445
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
4374
4446
|
type: 'string',
|
|
4375
4447
|
},
|
|
4376
|
-
error: {
|
|
4377
|
-
|
|
4448
|
+
error: {
|
|
4449
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4450
|
+
nullable: true,
|
|
4451
|
+
},
|
|
4452
|
+
result: {
|
|
4453
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
4454
|
+
nullable: true,
|
|
4455
|
+
},
|
|
4378
4456
|
status: { enum: ['pending'], type: 'string' },
|
|
4379
4457
|
},
|
|
4380
4458
|
required: [
|
|
@@ -4390,16 +4468,18 @@ export default {
|
|
|
4390
4468
|
description: 'Resetting sandbox workspace succeeded.',
|
|
4391
4469
|
properties: {
|
|
4392
4470
|
action_attempt_id: {
|
|
4393
|
-
description: '
|
|
4471
|
+
description: 'ID of the action attempt.',
|
|
4394
4472
|
format: 'uuid',
|
|
4395
4473
|
type: 'string',
|
|
4396
|
-
'x-title': 'Action Attempt ID',
|
|
4397
4474
|
},
|
|
4398
4475
|
action_type: {
|
|
4399
4476
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
4400
4477
|
type: 'string',
|
|
4401
4478
|
},
|
|
4402
|
-
error: {
|
|
4479
|
+
error: {
|
|
4480
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4481
|
+
nullable: true,
|
|
4482
|
+
},
|
|
4403
4483
|
result: { properties: {}, type: 'object' },
|
|
4404
4484
|
status: { enum: ['success'], type: 'string' },
|
|
4405
4485
|
},
|
|
@@ -4416,10 +4496,9 @@ export default {
|
|
|
4416
4496
|
description: 'Resetting sandbox workspace failed.',
|
|
4417
4497
|
properties: {
|
|
4418
4498
|
action_attempt_id: {
|
|
4419
|
-
description: '
|
|
4499
|
+
description: 'ID of the action attempt.',
|
|
4420
4500
|
format: 'uuid',
|
|
4421
4501
|
type: 'string',
|
|
4422
|
-
'x-title': 'Action Attempt ID',
|
|
4423
4502
|
},
|
|
4424
4503
|
action_type: {
|
|
4425
4504
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
@@ -4433,7 +4512,10 @@ export default {
|
|
|
4433
4512
|
required: ['type', 'message'],
|
|
4434
4513
|
type: 'object',
|
|
4435
4514
|
},
|
|
4436
|
-
result: {
|
|
4515
|
+
result: {
|
|
4516
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
4517
|
+
nullable: true,
|
|
4518
|
+
},
|
|
4437
4519
|
status: { enum: ['error'], type: 'string' },
|
|
4438
4520
|
},
|
|
4439
4521
|
required: [
|
|
@@ -4449,14 +4531,19 @@ export default {
|
|
|
4449
4531
|
description: 'Setting fan mode.',
|
|
4450
4532
|
properties: {
|
|
4451
4533
|
action_attempt_id: {
|
|
4452
|
-
description: '
|
|
4534
|
+
description: 'ID of the action attempt.',
|
|
4453
4535
|
format: 'uuid',
|
|
4454
4536
|
type: 'string',
|
|
4455
|
-
'x-title': 'Action Attempt ID',
|
|
4456
4537
|
},
|
|
4457
4538
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
4458
|
-
error: {
|
|
4459
|
-
|
|
4539
|
+
error: {
|
|
4540
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4541
|
+
nullable: true,
|
|
4542
|
+
},
|
|
4543
|
+
result: {
|
|
4544
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
4545
|
+
nullable: true,
|
|
4546
|
+
},
|
|
4460
4547
|
status: { enum: ['pending'], type: 'string' },
|
|
4461
4548
|
},
|
|
4462
4549
|
required: [
|
|
@@ -4472,13 +4559,15 @@ export default {
|
|
|
4472
4559
|
description: 'Setting fan mode succeeded.',
|
|
4473
4560
|
properties: {
|
|
4474
4561
|
action_attempt_id: {
|
|
4475
|
-
description: '
|
|
4562
|
+
description: 'ID of the action attempt.',
|
|
4476
4563
|
format: 'uuid',
|
|
4477
4564
|
type: 'string',
|
|
4478
|
-
'x-title': 'Action Attempt ID',
|
|
4479
4565
|
},
|
|
4480
4566
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
4481
|
-
error: {
|
|
4567
|
+
error: {
|
|
4568
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4569
|
+
nullable: true,
|
|
4570
|
+
},
|
|
4482
4571
|
result: { properties: {}, type: 'object' },
|
|
4483
4572
|
status: { enum: ['success'], type: 'string' },
|
|
4484
4573
|
},
|
|
@@ -4495,10 +4584,9 @@ export default {
|
|
|
4495
4584
|
description: 'Setting fan mode failed.',
|
|
4496
4585
|
properties: {
|
|
4497
4586
|
action_attempt_id: {
|
|
4498
|
-
description: '
|
|
4587
|
+
description: 'ID of the action attempt.',
|
|
4499
4588
|
format: 'uuid',
|
|
4500
4589
|
type: 'string',
|
|
4501
|
-
'x-title': 'Action Attempt ID',
|
|
4502
4590
|
},
|
|
4503
4591
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
4504
4592
|
error: {
|
|
@@ -4509,7 +4597,10 @@ export default {
|
|
|
4509
4597
|
required: ['type', 'message'],
|
|
4510
4598
|
type: 'object',
|
|
4511
4599
|
},
|
|
4512
|
-
result: {
|
|
4600
|
+
result: {
|
|
4601
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
4602
|
+
nullable: true,
|
|
4603
|
+
},
|
|
4513
4604
|
status: { enum: ['error'], type: 'string' },
|
|
4514
4605
|
},
|
|
4515
4606
|
required: [
|
|
@@ -4525,14 +4616,19 @@ export default {
|
|
|
4525
4616
|
description: 'Setting HVAC mode.',
|
|
4526
4617
|
properties: {
|
|
4527
4618
|
action_attempt_id: {
|
|
4528
|
-
description: '
|
|
4619
|
+
description: 'ID of the action attempt.',
|
|
4529
4620
|
format: 'uuid',
|
|
4530
4621
|
type: 'string',
|
|
4531
|
-
'x-title': 'Action Attempt ID',
|
|
4532
4622
|
},
|
|
4533
4623
|
action_type: { enum: ['SET_HVAC_MODE'], type: 'string' },
|
|
4534
|
-
error: {
|
|
4535
|
-
|
|
4624
|
+
error: {
|
|
4625
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4626
|
+
nullable: true,
|
|
4627
|
+
},
|
|
4628
|
+
result: {
|
|
4629
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
4630
|
+
nullable: true,
|
|
4631
|
+
},
|
|
4536
4632
|
status: { enum: ['pending'], type: 'string' },
|
|
4537
4633
|
},
|
|
4538
4634
|
required: [
|
|
@@ -4548,13 +4644,15 @@ export default {
|
|
|
4548
4644
|
description: 'Setting HVAC mode succeeded.',
|
|
4549
4645
|
properties: {
|
|
4550
4646
|
action_attempt_id: {
|
|
4551
|
-
description: '
|
|
4647
|
+
description: 'ID of the action attempt.',
|
|
4552
4648
|
format: 'uuid',
|
|
4553
4649
|
type: 'string',
|
|
4554
|
-
'x-title': 'Action Attempt ID',
|
|
4555
4650
|
},
|
|
4556
4651
|
action_type: { enum: ['SET_HVAC_MODE'], type: 'string' },
|
|
4557
|
-
error: {
|
|
4652
|
+
error: {
|
|
4653
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4654
|
+
nullable: true,
|
|
4655
|
+
},
|
|
4558
4656
|
result: { properties: {}, type: 'object' },
|
|
4559
4657
|
status: { enum: ['success'], type: 'string' },
|
|
4560
4658
|
},
|
|
@@ -4571,10 +4669,9 @@ export default {
|
|
|
4571
4669
|
description: 'Setting HVAC mode failed.',
|
|
4572
4670
|
properties: {
|
|
4573
4671
|
action_attempt_id: {
|
|
4574
|
-
description: '
|
|
4672
|
+
description: 'ID of the action attempt.',
|
|
4575
4673
|
format: 'uuid',
|
|
4576
4674
|
type: 'string',
|
|
4577
|
-
'x-title': 'Action Attempt ID',
|
|
4578
4675
|
},
|
|
4579
4676
|
action_type: { enum: ['SET_HVAC_MODE'], type: 'string' },
|
|
4580
4677
|
error: {
|
|
@@ -4585,7 +4682,10 @@ export default {
|
|
|
4585
4682
|
required: ['type', 'message'],
|
|
4586
4683
|
type: 'object',
|
|
4587
4684
|
},
|
|
4588
|
-
result: {
|
|
4685
|
+
result: {
|
|
4686
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
4687
|
+
nullable: true,
|
|
4688
|
+
},
|
|
4589
4689
|
status: { enum: ['error'], type: 'string' },
|
|
4590
4690
|
},
|
|
4591
4691
|
required: [
|
|
@@ -4601,17 +4701,22 @@ export default {
|
|
|
4601
4701
|
description: 'Activating climate preset.',
|
|
4602
4702
|
properties: {
|
|
4603
4703
|
action_attempt_id: {
|
|
4604
|
-
description: '
|
|
4704
|
+
description: 'ID of the action attempt.',
|
|
4605
4705
|
format: 'uuid',
|
|
4606
4706
|
type: 'string',
|
|
4607
|
-
'x-title': 'Action Attempt ID',
|
|
4608
4707
|
},
|
|
4609
4708
|
action_type: {
|
|
4610
4709
|
enum: ['ACTIVATE_CLIMATE_PRESET'],
|
|
4611
4710
|
type: 'string',
|
|
4612
4711
|
},
|
|
4613
|
-
error: {
|
|
4614
|
-
|
|
4712
|
+
error: {
|
|
4713
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4714
|
+
nullable: true,
|
|
4715
|
+
},
|
|
4716
|
+
result: {
|
|
4717
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
4718
|
+
nullable: true,
|
|
4719
|
+
},
|
|
4615
4720
|
status: { enum: ['pending'], type: 'string' },
|
|
4616
4721
|
},
|
|
4617
4722
|
required: [
|
|
@@ -4627,16 +4732,18 @@ export default {
|
|
|
4627
4732
|
description: 'Activating climate preset succeeded.',
|
|
4628
4733
|
properties: {
|
|
4629
4734
|
action_attempt_id: {
|
|
4630
|
-
description: '
|
|
4735
|
+
description: 'ID of the action attempt.',
|
|
4631
4736
|
format: 'uuid',
|
|
4632
4737
|
type: 'string',
|
|
4633
|
-
'x-title': 'Action Attempt ID',
|
|
4634
4738
|
},
|
|
4635
4739
|
action_type: {
|
|
4636
4740
|
enum: ['ACTIVATE_CLIMATE_PRESET'],
|
|
4637
4741
|
type: 'string',
|
|
4638
4742
|
},
|
|
4639
|
-
error: {
|
|
4743
|
+
error: {
|
|
4744
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4745
|
+
nullable: true,
|
|
4746
|
+
},
|
|
4640
4747
|
result: { properties: {}, type: 'object' },
|
|
4641
4748
|
status: { enum: ['success'], type: 'string' },
|
|
4642
4749
|
},
|
|
@@ -4653,10 +4760,9 @@ export default {
|
|
|
4653
4760
|
description: 'Activating climate preset failed.',
|
|
4654
4761
|
properties: {
|
|
4655
4762
|
action_attempt_id: {
|
|
4656
|
-
description: '
|
|
4763
|
+
description: 'ID of the action attempt.',
|
|
4657
4764
|
format: 'uuid',
|
|
4658
4765
|
type: 'string',
|
|
4659
|
-
'x-title': 'Action Attempt ID',
|
|
4660
4766
|
},
|
|
4661
4767
|
action_type: {
|
|
4662
4768
|
enum: ['ACTIVATE_CLIMATE_PRESET'],
|
|
@@ -4670,7 +4776,10 @@ export default {
|
|
|
4670
4776
|
required: ['type', 'message'],
|
|
4671
4777
|
type: 'object',
|
|
4672
4778
|
},
|
|
4673
|
-
result: {
|
|
4779
|
+
result: {
|
|
4780
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
4781
|
+
nullable: true,
|
|
4782
|
+
},
|
|
4674
4783
|
status: { enum: ['error'], type: 'string' },
|
|
4675
4784
|
},
|
|
4676
4785
|
required: [
|
|
@@ -4685,14 +4794,19 @@ export default {
|
|
|
4685
4794
|
{
|
|
4686
4795
|
properties: {
|
|
4687
4796
|
action_attempt_id: {
|
|
4688
|
-
description: '
|
|
4797
|
+
description: 'ID of the action attempt.',
|
|
4689
4798
|
format: 'uuid',
|
|
4690
4799
|
type: 'string',
|
|
4691
|
-
'x-title': 'Action Attempt ID',
|
|
4692
4800
|
},
|
|
4693
4801
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
4694
|
-
error: {
|
|
4695
|
-
|
|
4802
|
+
error: {
|
|
4803
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4804
|
+
nullable: true,
|
|
4805
|
+
},
|
|
4806
|
+
result: {
|
|
4807
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
4808
|
+
nullable: true,
|
|
4809
|
+
},
|
|
4696
4810
|
status: { enum: ['pending'], type: 'string' },
|
|
4697
4811
|
},
|
|
4698
4812
|
required: [
|
|
@@ -4707,13 +4821,15 @@ export default {
|
|
|
4707
4821
|
{
|
|
4708
4822
|
properties: {
|
|
4709
4823
|
action_attempt_id: {
|
|
4710
|
-
description: '
|
|
4824
|
+
description: 'ID of the action attempt.',
|
|
4711
4825
|
format: 'uuid',
|
|
4712
4826
|
type: 'string',
|
|
4713
|
-
'x-title': 'Action Attempt ID',
|
|
4714
4827
|
},
|
|
4715
4828
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
4716
|
-
error: {
|
|
4829
|
+
error: {
|
|
4830
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4831
|
+
nullable: true,
|
|
4832
|
+
},
|
|
4717
4833
|
result: { properties: {}, type: 'object' },
|
|
4718
4834
|
status: { enum: ['success'], type: 'string' },
|
|
4719
4835
|
},
|
|
@@ -4729,10 +4845,9 @@ export default {
|
|
|
4729
4845
|
{
|
|
4730
4846
|
properties: {
|
|
4731
4847
|
action_attempt_id: {
|
|
4732
|
-
description: '
|
|
4848
|
+
description: 'ID of the action attempt.',
|
|
4733
4849
|
format: 'uuid',
|
|
4734
4850
|
type: 'string',
|
|
4735
|
-
'x-title': 'Action Attempt ID',
|
|
4736
4851
|
},
|
|
4737
4852
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
4738
4853
|
error: {
|
|
@@ -4743,7 +4858,10 @@ export default {
|
|
|
4743
4858
|
required: ['type', 'message'],
|
|
4744
4859
|
type: 'object',
|
|
4745
4860
|
},
|
|
4746
|
-
result: {
|
|
4861
|
+
result: {
|
|
4862
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
4863
|
+
nullable: true,
|
|
4864
|
+
},
|
|
4747
4865
|
status: { enum: ['error'], type: 'string' },
|
|
4748
4866
|
},
|
|
4749
4867
|
required: [
|
|
@@ -4758,14 +4876,19 @@ export default {
|
|
|
4758
4876
|
{
|
|
4759
4877
|
properties: {
|
|
4760
4878
|
action_attempt_id: {
|
|
4761
|
-
description: '
|
|
4879
|
+
description: 'ID of the action attempt.',
|
|
4762
4880
|
format: 'uuid',
|
|
4763
4881
|
type: 'string',
|
|
4764
|
-
'x-title': 'Action Attempt ID',
|
|
4765
4882
|
},
|
|
4766
4883
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
4767
|
-
error: {
|
|
4768
|
-
|
|
4884
|
+
error: {
|
|
4885
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4886
|
+
nullable: true,
|
|
4887
|
+
},
|
|
4888
|
+
result: {
|
|
4889
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
4890
|
+
nullable: true,
|
|
4891
|
+
},
|
|
4769
4892
|
status: { enum: ['pending'], type: 'string' },
|
|
4770
4893
|
},
|
|
4771
4894
|
required: [
|
|
@@ -4780,13 +4903,15 @@ export default {
|
|
|
4780
4903
|
{
|
|
4781
4904
|
properties: {
|
|
4782
4905
|
action_attempt_id: {
|
|
4783
|
-
description: '
|
|
4906
|
+
description: 'ID of the action attempt.',
|
|
4784
4907
|
format: 'uuid',
|
|
4785
4908
|
type: 'string',
|
|
4786
|
-
'x-title': 'Action Attempt ID',
|
|
4787
4909
|
},
|
|
4788
4910
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
4789
|
-
error: {
|
|
4911
|
+
error: {
|
|
4912
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4913
|
+
nullable: true,
|
|
4914
|
+
},
|
|
4790
4915
|
result: { properties: { access_code: {} }, type: 'object' },
|
|
4791
4916
|
status: { enum: ['success'], type: 'string' },
|
|
4792
4917
|
},
|
|
@@ -4802,10 +4927,9 @@ export default {
|
|
|
4802
4927
|
{
|
|
4803
4928
|
properties: {
|
|
4804
4929
|
action_attempt_id: {
|
|
4805
|
-
description: '
|
|
4930
|
+
description: 'ID of the action attempt.',
|
|
4806
4931
|
format: 'uuid',
|
|
4807
4932
|
type: 'string',
|
|
4808
|
-
'x-title': 'Action Attempt ID',
|
|
4809
4933
|
},
|
|
4810
4934
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
4811
4935
|
error: {
|
|
@@ -4816,7 +4940,10 @@ export default {
|
|
|
4816
4940
|
required: ['type', 'message'],
|
|
4817
4941
|
type: 'object',
|
|
4818
4942
|
},
|
|
4819
|
-
result: {
|
|
4943
|
+
result: {
|
|
4944
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
4945
|
+
nullable: true,
|
|
4946
|
+
},
|
|
4820
4947
|
status: { enum: ['error'], type: 'string' },
|
|
4821
4948
|
},
|
|
4822
4949
|
required: [
|
|
@@ -4831,14 +4958,19 @@ export default {
|
|
|
4831
4958
|
{
|
|
4832
4959
|
properties: {
|
|
4833
4960
|
action_attempt_id: {
|
|
4834
|
-
description: '
|
|
4961
|
+
description: 'ID of the action attempt.',
|
|
4835
4962
|
format: 'uuid',
|
|
4836
4963
|
type: 'string',
|
|
4837
|
-
'x-title': 'Action Attempt ID',
|
|
4838
4964
|
},
|
|
4839
4965
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
4840
|
-
error: {
|
|
4841
|
-
|
|
4966
|
+
error: {
|
|
4967
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4968
|
+
nullable: true,
|
|
4969
|
+
},
|
|
4970
|
+
result: {
|
|
4971
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
4972
|
+
nullable: true,
|
|
4973
|
+
},
|
|
4842
4974
|
status: { enum: ['pending'], type: 'string' },
|
|
4843
4975
|
},
|
|
4844
4976
|
required: [
|
|
@@ -4853,13 +4985,15 @@ export default {
|
|
|
4853
4985
|
{
|
|
4854
4986
|
properties: {
|
|
4855
4987
|
action_attempt_id: {
|
|
4856
|
-
description: '
|
|
4988
|
+
description: 'ID of the action attempt.',
|
|
4857
4989
|
format: 'uuid',
|
|
4858
4990
|
type: 'string',
|
|
4859
|
-
'x-title': 'Action Attempt ID',
|
|
4860
4991
|
},
|
|
4861
4992
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
4862
|
-
error: {
|
|
4993
|
+
error: {
|
|
4994
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4995
|
+
nullable: true,
|
|
4996
|
+
},
|
|
4863
4997
|
result: { properties: {}, type: 'object' },
|
|
4864
4998
|
status: { enum: ['success'], type: 'string' },
|
|
4865
4999
|
},
|
|
@@ -4875,10 +5009,9 @@ export default {
|
|
|
4875
5009
|
{
|
|
4876
5010
|
properties: {
|
|
4877
5011
|
action_attempt_id: {
|
|
4878
|
-
description: '
|
|
5012
|
+
description: 'ID of the action attempt.',
|
|
4879
5013
|
format: 'uuid',
|
|
4880
5014
|
type: 'string',
|
|
4881
|
-
'x-title': 'Action Attempt ID',
|
|
4882
5015
|
},
|
|
4883
5016
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
4884
5017
|
error: {
|
|
@@ -4889,7 +5022,10 @@ export default {
|
|
|
4889
5022
|
required: ['type', 'message'],
|
|
4890
5023
|
type: 'object',
|
|
4891
5024
|
},
|
|
4892
|
-
result: {
|
|
5025
|
+
result: {
|
|
5026
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
5027
|
+
nullable: true,
|
|
5028
|
+
},
|
|
4893
5029
|
status: { enum: ['error'], type: 'string' },
|
|
4894
5030
|
},
|
|
4895
5031
|
required: [
|
|
@@ -4904,14 +5040,19 @@ export default {
|
|
|
4904
5040
|
{
|
|
4905
5041
|
properties: {
|
|
4906
5042
|
action_attempt_id: {
|
|
4907
|
-
description: '
|
|
5043
|
+
description: 'ID of the action attempt.',
|
|
4908
5044
|
format: 'uuid',
|
|
4909
5045
|
type: 'string',
|
|
4910
|
-
'x-title': 'Action Attempt ID',
|
|
4911
5046
|
},
|
|
4912
5047
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
4913
|
-
error: {
|
|
4914
|
-
|
|
5048
|
+
error: {
|
|
5049
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5050
|
+
nullable: true,
|
|
5051
|
+
},
|
|
5052
|
+
result: {
|
|
5053
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
5054
|
+
nullable: true,
|
|
5055
|
+
},
|
|
4915
5056
|
status: { enum: ['pending'], type: 'string' },
|
|
4916
5057
|
},
|
|
4917
5058
|
required: [
|
|
@@ -4926,13 +5067,15 @@ export default {
|
|
|
4926
5067
|
{
|
|
4927
5068
|
properties: {
|
|
4928
5069
|
action_attempt_id: {
|
|
4929
|
-
description: '
|
|
5070
|
+
description: 'ID of the action attempt.',
|
|
4930
5071
|
format: 'uuid',
|
|
4931
5072
|
type: 'string',
|
|
4932
|
-
'x-title': 'Action Attempt ID',
|
|
4933
5073
|
},
|
|
4934
5074
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
4935
|
-
error: {
|
|
5075
|
+
error: {
|
|
5076
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5077
|
+
nullable: true,
|
|
5078
|
+
},
|
|
4936
5079
|
result: { properties: { access_code: {} }, type: 'object' },
|
|
4937
5080
|
status: { enum: ['success'], type: 'string' },
|
|
4938
5081
|
},
|
|
@@ -4948,10 +5091,9 @@ export default {
|
|
|
4948
5091
|
{
|
|
4949
5092
|
properties: {
|
|
4950
5093
|
action_attempt_id: {
|
|
4951
|
-
description: '
|
|
5094
|
+
description: 'ID of the action attempt.',
|
|
4952
5095
|
format: 'uuid',
|
|
4953
5096
|
type: 'string',
|
|
4954
|
-
'x-title': 'Action Attempt ID',
|
|
4955
5097
|
},
|
|
4956
5098
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
4957
5099
|
error: {
|
|
@@ -4962,7 +5104,10 @@ export default {
|
|
|
4962
5104
|
required: ['type', 'message'],
|
|
4963
5105
|
type: 'object',
|
|
4964
5106
|
},
|
|
4965
|
-
result: {
|
|
5107
|
+
result: {
|
|
5108
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
5109
|
+
nullable: true,
|
|
5110
|
+
},
|
|
4966
5111
|
status: { enum: ['error'], type: 'string' },
|
|
4967
5112
|
},
|
|
4968
5113
|
required: [
|
|
@@ -4977,14 +5122,19 @@ export default {
|
|
|
4977
5122
|
{
|
|
4978
5123
|
properties: {
|
|
4979
5124
|
action_attempt_id: {
|
|
4980
|
-
description: '
|
|
5125
|
+
description: 'ID of the action attempt.',
|
|
4981
5126
|
format: 'uuid',
|
|
4982
5127
|
type: 'string',
|
|
4983
|
-
'x-title': 'Action Attempt ID',
|
|
4984
5128
|
},
|
|
4985
5129
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
4986
|
-
error: {
|
|
4987
|
-
|
|
5130
|
+
error: {
|
|
5131
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5132
|
+
nullable: true,
|
|
5133
|
+
},
|
|
5134
|
+
result: {
|
|
5135
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
5136
|
+
nullable: true,
|
|
5137
|
+
},
|
|
4988
5138
|
status: { enum: ['pending'], type: 'string' },
|
|
4989
5139
|
},
|
|
4990
5140
|
required: [
|
|
@@ -4999,13 +5149,15 @@ export default {
|
|
|
4999
5149
|
{
|
|
5000
5150
|
properties: {
|
|
5001
5151
|
action_attempt_id: {
|
|
5002
|
-
description: '
|
|
5152
|
+
description: 'ID of the action attempt.',
|
|
5003
5153
|
format: 'uuid',
|
|
5004
5154
|
type: 'string',
|
|
5005
|
-
'x-title': 'Action Attempt ID',
|
|
5006
5155
|
},
|
|
5007
5156
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5008
|
-
error: {
|
|
5157
|
+
error: {
|
|
5158
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5159
|
+
nullable: true,
|
|
5160
|
+
},
|
|
5009
5161
|
result: { properties: { noise_threshold: {} }, type: 'object' },
|
|
5010
5162
|
status: { enum: ['success'], type: 'string' },
|
|
5011
5163
|
},
|
|
@@ -5021,10 +5173,9 @@ export default {
|
|
|
5021
5173
|
{
|
|
5022
5174
|
properties: {
|
|
5023
5175
|
action_attempt_id: {
|
|
5024
|
-
description: '
|
|
5176
|
+
description: 'ID of the action attempt.',
|
|
5025
5177
|
format: 'uuid',
|
|
5026
5178
|
type: 'string',
|
|
5027
|
-
'x-title': 'Action Attempt ID',
|
|
5028
5179
|
},
|
|
5029
5180
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5030
5181
|
error: {
|
|
@@ -5035,7 +5186,10 @@ export default {
|
|
|
5035
5186
|
required: ['type', 'message'],
|
|
5036
5187
|
type: 'object',
|
|
5037
5188
|
},
|
|
5038
|
-
result: {
|
|
5189
|
+
result: {
|
|
5190
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
5191
|
+
nullable: true,
|
|
5192
|
+
},
|
|
5039
5193
|
status: { enum: ['error'], type: 'string' },
|
|
5040
5194
|
},
|
|
5041
5195
|
required: [
|
|
@@ -5050,14 +5204,19 @@ export default {
|
|
|
5050
5204
|
{
|
|
5051
5205
|
properties: {
|
|
5052
5206
|
action_attempt_id: {
|
|
5053
|
-
description: '
|
|
5207
|
+
description: 'ID of the action attempt.',
|
|
5054
5208
|
format: 'uuid',
|
|
5055
5209
|
type: 'string',
|
|
5056
|
-
'x-title': 'Action Attempt ID',
|
|
5057
5210
|
},
|
|
5058
5211
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
5059
|
-
error: {
|
|
5060
|
-
|
|
5212
|
+
error: {
|
|
5213
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5214
|
+
nullable: true,
|
|
5215
|
+
},
|
|
5216
|
+
result: {
|
|
5217
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
5218
|
+
nullable: true,
|
|
5219
|
+
},
|
|
5061
5220
|
status: { enum: ['pending'], type: 'string' },
|
|
5062
5221
|
},
|
|
5063
5222
|
required: [
|
|
@@ -5072,13 +5231,15 @@ export default {
|
|
|
5072
5231
|
{
|
|
5073
5232
|
properties: {
|
|
5074
5233
|
action_attempt_id: {
|
|
5075
|
-
description: '
|
|
5234
|
+
description: 'ID of the action attempt.',
|
|
5076
5235
|
format: 'uuid',
|
|
5077
5236
|
type: 'string',
|
|
5078
|
-
'x-title': 'Action Attempt ID',
|
|
5079
5237
|
},
|
|
5080
5238
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
5081
|
-
error: {
|
|
5239
|
+
error: {
|
|
5240
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5241
|
+
nullable: true,
|
|
5242
|
+
},
|
|
5082
5243
|
result: { properties: {}, type: 'object' },
|
|
5083
5244
|
status: { enum: ['success'], type: 'string' },
|
|
5084
5245
|
},
|
|
@@ -5094,10 +5255,9 @@ export default {
|
|
|
5094
5255
|
{
|
|
5095
5256
|
properties: {
|
|
5096
5257
|
action_attempt_id: {
|
|
5097
|
-
description: '
|
|
5258
|
+
description: 'ID of the action attempt.',
|
|
5098
5259
|
format: 'uuid',
|
|
5099
5260
|
type: 'string',
|
|
5100
|
-
'x-title': 'Action Attempt ID',
|
|
5101
5261
|
},
|
|
5102
5262
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
5103
5263
|
error: {
|
|
@@ -5108,7 +5268,10 @@ export default {
|
|
|
5108
5268
|
required: ['type', 'message'],
|
|
5109
5269
|
type: 'object',
|
|
5110
5270
|
},
|
|
5111
|
-
result: {
|
|
5271
|
+
result: {
|
|
5272
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
5273
|
+
nullable: true,
|
|
5274
|
+
},
|
|
5112
5275
|
status: { enum: ['error'], type: 'string' },
|
|
5113
5276
|
},
|
|
5114
5277
|
required: [
|
|
@@ -5123,14 +5286,19 @@ export default {
|
|
|
5123
5286
|
{
|
|
5124
5287
|
properties: {
|
|
5125
5288
|
action_attempt_id: {
|
|
5126
|
-
description: '
|
|
5289
|
+
description: 'ID of the action attempt.',
|
|
5127
5290
|
format: 'uuid',
|
|
5128
5291
|
type: 'string',
|
|
5129
|
-
'x-title': 'Action Attempt ID',
|
|
5130
5292
|
},
|
|
5131
5293
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5132
|
-
error: {
|
|
5133
|
-
|
|
5294
|
+
error: {
|
|
5295
|
+
description: 'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5296
|
+
nullable: true,
|
|
5297
|
+
},
|
|
5298
|
+
result: {
|
|
5299
|
+
description: 'Result of the action attempt. Null for pending action attempts.',
|
|
5300
|
+
nullable: true,
|
|
5301
|
+
},
|
|
5134
5302
|
status: { enum: ['pending'], type: 'string' },
|
|
5135
5303
|
},
|
|
5136
5304
|
required: [
|
|
@@ -5145,13 +5313,15 @@ export default {
|
|
|
5145
5313
|
{
|
|
5146
5314
|
properties: {
|
|
5147
5315
|
action_attempt_id: {
|
|
5148
|
-
description: '
|
|
5316
|
+
description: 'ID of the action attempt.',
|
|
5149
5317
|
format: 'uuid',
|
|
5150
5318
|
type: 'string',
|
|
5151
|
-
'x-title': 'Action Attempt ID',
|
|
5152
5319
|
},
|
|
5153
5320
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5154
|
-
error: {
|
|
5321
|
+
error: {
|
|
5322
|
+
description: 'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5323
|
+
nullable: true,
|
|
5324
|
+
},
|
|
5155
5325
|
result: { properties: { noise_threshold: {} }, type: 'object' },
|
|
5156
5326
|
status: { enum: ['success'], type: 'string' },
|
|
5157
5327
|
},
|
|
@@ -5167,10 +5337,9 @@ export default {
|
|
|
5167
5337
|
{
|
|
5168
5338
|
properties: {
|
|
5169
5339
|
action_attempt_id: {
|
|
5170
|
-
description: '
|
|
5340
|
+
description: 'ID of the action attempt.',
|
|
5171
5341
|
format: 'uuid',
|
|
5172
5342
|
type: 'string',
|
|
5173
|
-
'x-title': 'Action Attempt ID',
|
|
5174
5343
|
},
|
|
5175
5344
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5176
5345
|
error: {
|
|
@@ -5181,7 +5350,10 @@ export default {
|
|
|
5181
5350
|
required: ['type', 'message'],
|
|
5182
5351
|
type: 'object',
|
|
5183
5352
|
},
|
|
5184
|
-
result: {
|
|
5353
|
+
result: {
|
|
5354
|
+
description: 'Result of the action attempt. Null for failed action attempts.',
|
|
5355
|
+
nullable: true,
|
|
5356
|
+
},
|
|
5185
5357
|
status: { enum: ['error'], type: 'string' },
|
|
5186
5358
|
},
|
|
5187
5359
|
required: [
|
|
@@ -21221,6 +21393,96 @@ export default {
|
|
|
21221
21393
|
'x-response-key': 'device_providers',
|
|
21222
21394
|
},
|
|
21223
21395
|
},
|
|
21396
|
+
'/devices/simulate/access_code_lock': {
|
|
21397
|
+
post: {
|
|
21398
|
+
operationId: 'devicesSimulateAccessCodeLockPost',
|
|
21399
|
+
requestBody: {
|
|
21400
|
+
content: {
|
|
21401
|
+
'application/json': {
|
|
21402
|
+
schema: {
|
|
21403
|
+
properties: {
|
|
21404
|
+
access_code_id: { format: 'uuid', type: 'string' },
|
|
21405
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
21406
|
+
},
|
|
21407
|
+
required: ['device_id', 'access_code_id'],
|
|
21408
|
+
type: 'object',
|
|
21409
|
+
},
|
|
21410
|
+
},
|
|
21411
|
+
},
|
|
21412
|
+
},
|
|
21413
|
+
responses: {
|
|
21414
|
+
200: {
|
|
21415
|
+
content: {
|
|
21416
|
+
'application/json': {
|
|
21417
|
+
schema: {
|
|
21418
|
+
properties: { ok: { type: 'boolean' } },
|
|
21419
|
+
required: ['ok'],
|
|
21420
|
+
type: 'object',
|
|
21421
|
+
},
|
|
21422
|
+
},
|
|
21423
|
+
},
|
|
21424
|
+
description: 'OK',
|
|
21425
|
+
},
|
|
21426
|
+
400: { description: 'Bad Request' },
|
|
21427
|
+
401: { description: 'Unauthorized' },
|
|
21428
|
+
},
|
|
21429
|
+
security: [
|
|
21430
|
+
{ api_key: [] },
|
|
21431
|
+
{ pat_with_workspace: [] },
|
|
21432
|
+
{ console_session_with_workspace: [] },
|
|
21433
|
+
],
|
|
21434
|
+
summary: '/devices/simulate/access_code_lock',
|
|
21435
|
+
tags: ['/devices'],
|
|
21436
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
21437
|
+
'x-fern-sdk-method-name': 'access_code_lock',
|
|
21438
|
+
'x-response-key': null,
|
|
21439
|
+
},
|
|
21440
|
+
},
|
|
21441
|
+
'/devices/simulate/access_code_unlock': {
|
|
21442
|
+
post: {
|
|
21443
|
+
operationId: 'devicesSimulateAccessCodeUnlockPost',
|
|
21444
|
+
requestBody: {
|
|
21445
|
+
content: {
|
|
21446
|
+
'application/json': {
|
|
21447
|
+
schema: {
|
|
21448
|
+
properties: {
|
|
21449
|
+
access_code_id: { format: 'uuid', type: 'string' },
|
|
21450
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
21451
|
+
},
|
|
21452
|
+
required: ['device_id', 'access_code_id'],
|
|
21453
|
+
type: 'object',
|
|
21454
|
+
},
|
|
21455
|
+
},
|
|
21456
|
+
},
|
|
21457
|
+
},
|
|
21458
|
+
responses: {
|
|
21459
|
+
200: {
|
|
21460
|
+
content: {
|
|
21461
|
+
'application/json': {
|
|
21462
|
+
schema: {
|
|
21463
|
+
properties: { ok: { type: 'boolean' } },
|
|
21464
|
+
required: ['ok'],
|
|
21465
|
+
type: 'object',
|
|
21466
|
+
},
|
|
21467
|
+
},
|
|
21468
|
+
},
|
|
21469
|
+
description: 'OK',
|
|
21470
|
+
},
|
|
21471
|
+
400: { description: 'Bad Request' },
|
|
21472
|
+
401: { description: 'Unauthorized' },
|
|
21473
|
+
},
|
|
21474
|
+
security: [
|
|
21475
|
+
{ api_key: [] },
|
|
21476
|
+
{ pat_with_workspace: [] },
|
|
21477
|
+
{ console_session_with_workspace: [] },
|
|
21478
|
+
],
|
|
21479
|
+
summary: '/devices/simulate/access_code_unlock',
|
|
21480
|
+
tags: ['/devices'],
|
|
21481
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
21482
|
+
'x-fern-sdk-method-name': 'access_code_unlock',
|
|
21483
|
+
'x-response-key': null,
|
|
21484
|
+
},
|
|
21485
|
+
},
|
|
21224
21486
|
'/devices/simulate/connect': {
|
|
21225
21487
|
post: {
|
|
21226
21488
|
operationId: 'devicesSimulateConnectPost',
|
|
@@ -24603,6 +24865,7 @@ export default {
|
|
|
24603
24865
|
401: { description: 'Unauthorized' },
|
|
24604
24866
|
},
|
|
24605
24867
|
security: [
|
|
24868
|
+
{ client_session: [] },
|
|
24606
24869
|
{ pat_with_workspace: [] },
|
|
24607
24870
|
{ console_session_with_workspace: [] },
|
|
24608
24871
|
{ api_key: [] },
|
|
@@ -24657,6 +24920,7 @@ export default {
|
|
|
24657
24920
|
401: { description: 'Unauthorized' },
|
|
24658
24921
|
},
|
|
24659
24922
|
security: [
|
|
24923
|
+
{ client_session: [] },
|
|
24660
24924
|
{ pat_with_workspace: [] },
|
|
24661
24925
|
{ console_session_with_workspace: [] },
|
|
24662
24926
|
{ api_key: [] },
|
|
@@ -26375,6 +26639,7 @@ export default {
|
|
|
26375
26639
|
{ pat_with_workspace: [] },
|
|
26376
26640
|
{ console_session_with_workspace: [] },
|
|
26377
26641
|
{ api_key: [] },
|
|
26642
|
+
{ client_session: [] },
|
|
26378
26643
|
],
|
|
26379
26644
|
summary: '/thermostats/update_climate_preset',
|
|
26380
26645
|
tags: ['/thermostats'],
|
|
@@ -26472,6 +26737,7 @@ export default {
|
|
|
26472
26737
|
{ pat_with_workspace: [] },
|
|
26473
26738
|
{ console_session_with_workspace: [] },
|
|
26474
26739
|
{ api_key: [] },
|
|
26740
|
+
{ client_session: [] },
|
|
26475
26741
|
],
|
|
26476
26742
|
summary: '/thermostats/update_climate_preset',
|
|
26477
26743
|
tags: ['/thermostats'],
|