@seamapi/types 1.908.0 → 1.910.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 +36 -1010
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -2497
- package/dist/index.cjs +36 -1010
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +97 -1168
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -229
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -391
- package/lib/seam/connect/models/customization-profiles/customization-profile.d.ts +4 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js +5 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js.map +1 -1
- package/lib/seam/connect/openapi.js +140 -948
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -1474
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -276
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +144 -1090
- package/src/lib/seam/connect/route-types.ts +45 -1650
package/dist/index.cjs
CHANGED
|
@@ -2364,26 +2364,6 @@ var provider_issue2 = common_access_code_error.extend({
|
|
|
2364
2364
|
}).describe(
|
|
2365
2365
|
"Indicates a provider-specific issue that prevents the access code from being set or managed. Check the error message for details."
|
|
2366
2366
|
);
|
|
2367
|
-
var smartthings_failed_to_set_access_code_error = common_access_code_error.extend({
|
|
2368
|
-
error_code: zod.z.literal("smartthings_failed_to_set_access_code").describe(error_code_description3)
|
|
2369
|
-
}).describe(
|
|
2370
|
-
`
|
|
2371
|
-
---
|
|
2372
|
-
deprecated: Handled by the generic \`failed_to_set_on_device\` system.
|
|
2373
|
-
---
|
|
2374
|
-
Failed to set code on SmartThings device.
|
|
2375
|
-
`
|
|
2376
|
-
);
|
|
2377
|
-
var smartthings_failed_to_set_after_multiple_retries = common_access_code_error.extend({
|
|
2378
|
-
error_code: zod.z.literal("smartthings_failed_to_set_after_multiple_retries").describe(error_code_description3)
|
|
2379
|
-
}).describe(
|
|
2380
|
-
`
|
|
2381
|
-
---
|
|
2382
|
-
deprecated: Handled by the generic \`failed_to_set_on_device\` system.
|
|
2383
|
-
---
|
|
2384
|
-
Failed to set code after multiple retries.
|
|
2385
|
-
`
|
|
2386
|
-
);
|
|
2387
2367
|
var modified_field = zod.z.object({
|
|
2388
2368
|
field: zod.z.string().describe(
|
|
2389
2369
|
"The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`)."
|
|
@@ -2428,61 +2408,11 @@ var access_code_state_unconfirmed = common_access_code_error.extend({
|
|
|
2428
2408
|
}).describe(
|
|
2429
2409
|
"Indicates that the provider cannot confirm whether the access code was set or removed on the device."
|
|
2430
2410
|
);
|
|
2431
|
-
var kwikset_unable_to_confirm_code = common_access_code_error.extend({
|
|
2432
|
-
error_code: zod.z.literal("kwikset_unable_to_confirm_code").describe(error_code_description3)
|
|
2433
|
-
}).describe(
|
|
2434
|
-
`
|
|
2435
|
-
---
|
|
2436
|
-
deprecated: Use \`access_code_state_unconfirmed\` instead.
|
|
2437
|
-
---
|
|
2438
|
-
Unable to confirm that the access code is set on Kwikset device.
|
|
2439
|
-
`
|
|
2440
|
-
);
|
|
2441
|
-
var kwikset_unable_to_confirm_deletion = common_access_code_error.extend({
|
|
2442
|
-
error_code: zod.z.literal("kwikset_unable_to_confirm_deletion").describe(error_code_description3)
|
|
2443
|
-
}).describe(
|
|
2444
|
-
`
|
|
2445
|
-
---
|
|
2446
|
-
deprecated: Use \`access_code_state_unconfirmed\` instead.
|
|
2447
|
-
---
|
|
2448
|
-
Unable to confirm the deletion of the access code on Kwikset device.
|
|
2449
|
-
`
|
|
2450
|
-
);
|
|
2451
2411
|
var insufficient_permissions2 = common_access_code_error.extend({
|
|
2452
2412
|
error_code: zod.z.literal("insufficient_permissions").describe(error_code_description3)
|
|
2453
2413
|
}).describe(
|
|
2454
2414
|
"Admin role required\u2014insufficient permissions to manage PINs on this device. Please have an admin update your role, or ask them to set the PIN."
|
|
2455
2415
|
);
|
|
2456
|
-
var august_lock_invalid_code_length = common_access_code_error.extend({
|
|
2457
|
-
error_code: zod.z.literal("august_lock_invalid_code_length").describe(error_code_description3)
|
|
2458
|
-
}).describe(
|
|
2459
|
-
`
|
|
2460
|
-
---
|
|
2461
|
-
deprecated: Use \`provider_issue\` instead.
|
|
2462
|
-
---
|
|
2463
|
-
Invalid code length for August lock.
|
|
2464
|
-
`
|
|
2465
|
-
);
|
|
2466
|
-
var august_lock_temporarily_offline_error = common_access_code_error.extend({
|
|
2467
|
-
error_code: zod.z.literal("august_lock_temporarily_offline").describe(error_code_description3)
|
|
2468
|
-
}).describe(
|
|
2469
|
-
`
|
|
2470
|
-
---
|
|
2471
|
-
deprecated: Use \`provider_issue\` instead.
|
|
2472
|
-
---
|
|
2473
|
-
August lock is temporarily offline.
|
|
2474
|
-
`
|
|
2475
|
-
);
|
|
2476
|
-
var august_lock_missing_keypad = common_access_code_error.extend({
|
|
2477
|
-
error_code: zod.z.literal("august_lock_missing_keypad").describe(error_code_description3)
|
|
2478
|
-
}).describe(
|
|
2479
|
-
`
|
|
2480
|
-
---
|
|
2481
|
-
deprecated: Use \`provider_issue\` instead.
|
|
2482
|
-
---
|
|
2483
|
-
August lock is missing a keypad.
|
|
2484
|
-
`
|
|
2485
|
-
);
|
|
2486
2416
|
var access_code_inactive_error = common_access_code_error.extend({
|
|
2487
2417
|
error_code: zod.z.literal("access_code_inactive").describe(error_code_description3)
|
|
2488
2418
|
}).describe(
|
|
@@ -2498,46 +2428,6 @@ var salto_ks_user_not_subscribed = common_access_code_error.extend({
|
|
|
2498
2428
|
Salto site user is not subscribed.
|
|
2499
2429
|
`
|
|
2500
2430
|
);
|
|
2501
|
-
var wyze_duplicate_code_name = common_access_code_error.extend({
|
|
2502
|
-
error_code: zod.z.literal("wyze_duplicate_code_name").describe(error_code_description3)
|
|
2503
|
-
}).describe(
|
|
2504
|
-
`
|
|
2505
|
-
---
|
|
2506
|
-
deprecated: Use \`duplicate_code_on_device\` instead.
|
|
2507
|
-
---
|
|
2508
|
-
Duplicate access code name detected.
|
|
2509
|
-
`
|
|
2510
|
-
);
|
|
2511
|
-
var wyze_potential_duplicate_code = common_access_code_error.extend({
|
|
2512
|
-
error_code: zod.z.literal("wyze_potential_duplicate_code").describe(error_code_description3)
|
|
2513
|
-
}).describe(
|
|
2514
|
-
`
|
|
2515
|
-
---
|
|
2516
|
-
deprecated: Use \`duplicate_code_on_device\` instead.
|
|
2517
|
-
---
|
|
2518
|
-
Potential duplicate access code detected.
|
|
2519
|
-
`
|
|
2520
|
-
);
|
|
2521
|
-
var dormakaba_oracode_invalid_time_range = common_access_code_error.extend({
|
|
2522
|
-
error_code: zod.z.literal("dormakaba_oracode_invalid_time_range").describe(error_code_description3)
|
|
2523
|
-
}).describe(
|
|
2524
|
-
`
|
|
2525
|
-
---
|
|
2526
|
-
deprecated: Use \`provider_issue\` instead.
|
|
2527
|
-
---
|
|
2528
|
-
No Dormakaba Oracode user levels configured for the requested time range.
|
|
2529
|
-
`
|
|
2530
|
-
);
|
|
2531
|
-
var keynest_unsupported_third_party_locker = common_access_code_error.extend({
|
|
2532
|
-
error_code: zod.z.literal("keynest_unsupported_third_party_locker").describe(error_code_description3)
|
|
2533
|
-
}).describe(
|
|
2534
|
-
`
|
|
2535
|
-
---
|
|
2536
|
-
deprecated: Use \`provider_issue\` instead.
|
|
2537
|
-
---
|
|
2538
|
-
KeyNest locker is not supported.
|
|
2539
|
-
`
|
|
2540
|
-
);
|
|
2541
2431
|
var replaced_by_newer_access_code = common_access_code_error.extend({
|
|
2542
2432
|
error_code: zod.z.literal("replaced_by_newer_access_code").describe(error_code_description3)
|
|
2543
2433
|
}).describe(
|
|
@@ -2545,54 +2435,32 @@ var replaced_by_newer_access_code = common_access_code_error.extend({
|
|
|
2545
2435
|
);
|
|
2546
2436
|
var access_code_error = zod.z.discriminatedUnion("error_code", [
|
|
2547
2437
|
provider_issue2,
|
|
2548
|
-
smartthings_failed_to_set_access_code_error,
|
|
2549
|
-
smartthings_failed_to_set_after_multiple_retries,
|
|
2550
2438
|
failed_to_set_on_device,
|
|
2551
2439
|
failed_to_remove_from_device,
|
|
2552
2440
|
duplicate_code_on_device,
|
|
2553
2441
|
duplicate_code_attempt_prevented,
|
|
2554
2442
|
no_space_for_access_code_on_device,
|
|
2555
2443
|
access_code_state_unconfirmed,
|
|
2556
|
-
kwikset_unable_to_confirm_code,
|
|
2557
|
-
kwikset_unable_to_confirm_deletion,
|
|
2558
2444
|
code_modified_external_to_seam_error,
|
|
2559
|
-
august_lock_invalid_code_length,
|
|
2560
|
-
august_lock_missing_keypad,
|
|
2561
|
-
august_lock_temporarily_offline_error,
|
|
2562
2445
|
access_code_inactive_error,
|
|
2563
2446
|
salto_ks_user_not_subscribed,
|
|
2564
|
-
wyze_duplicate_code_name,
|
|
2565
|
-
wyze_potential_duplicate_code,
|
|
2566
|
-
dormakaba_oracode_invalid_time_range,
|
|
2567
2447
|
insufficient_permissions2,
|
|
2568
|
-
keynest_unsupported_third_party_locker,
|
|
2569
2448
|
replaced_by_newer_access_code
|
|
2570
2449
|
]).describe(
|
|
2571
2450
|
"Errors associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes)."
|
|
2572
2451
|
);
|
|
2573
2452
|
zod.z.object({
|
|
2574
2453
|
provider_issue: provider_issue2.optional().nullable(),
|
|
2575
|
-
smartthings_failed_to_set_access_code: smartthings_failed_to_set_access_code_error.optional().nullable(),
|
|
2576
|
-
smartthings_failed_to_set_after_multiple_retries: smartthings_failed_to_set_after_multiple_retries.optional().nullable(),
|
|
2577
2454
|
failed_to_set_on_device: failed_to_set_on_device.optional().nullable(),
|
|
2578
2455
|
failed_to_remove_from_device: failed_to_remove_from_device.optional().nullable(),
|
|
2579
2456
|
no_space_for_access_code_on_device: no_space_for_access_code_on_device.optional().nullable(),
|
|
2580
2457
|
duplicate_code_on_device: duplicate_code_on_device.optional().nullable(),
|
|
2581
2458
|
duplicate_code_attempt_prevented: duplicate_code_attempt_prevented.optional().nullable(),
|
|
2582
2459
|
access_code_state_unconfirmed: access_code_state_unconfirmed.optional().nullable(),
|
|
2583
|
-
kwikset_unable_to_confirm_code: kwikset_unable_to_confirm_code.optional().nullable(),
|
|
2584
|
-
kwikset_unable_to_confirm_deletion: kwikset_unable_to_confirm_deletion.optional().nullable(),
|
|
2585
2460
|
insufficient_permissions: insufficient_permissions2.optional().nullable(),
|
|
2586
2461
|
code_modified_external_to_seam_error: code_modified_external_to_seam_error.optional().nullable(),
|
|
2587
|
-
august_lock_invalid_code_length: august_lock_invalid_code_length.optional().nullable(),
|
|
2588
|
-
august_lock_temporarily_offline: august_lock_temporarily_offline_error.optional().nullable(),
|
|
2589
|
-
august_lock_missing_keypad: august_lock_missing_keypad.optional().nullable(),
|
|
2590
2462
|
access_code_inactive: access_code_inactive_error.optional().nullable(),
|
|
2591
2463
|
salto_ks_user_not_subscribed: salto_ks_user_not_subscribed.optional().nullable(),
|
|
2592
|
-
wyze_duplicate_code_name: wyze_duplicate_code_name.optional().nullable(),
|
|
2593
|
-
wyze_potential_duplicate_code: wyze_potential_duplicate_code.optional().nullable(),
|
|
2594
|
-
dormakaba_oracode_invalid_time_range: dormakaba_oracode_invalid_time_range.optional().nullable(),
|
|
2595
|
-
keynest_unsupported_third_party_locker: keynest_unsupported_third_party_locker.optional().nullable(),
|
|
2596
2464
|
replaced_by_newer_access_code: replaced_by_newer_access_code.optional().nullable()
|
|
2597
2465
|
});
|
|
2598
2466
|
var common_access_code_warning = zod.z.object({
|
|
@@ -2602,12 +2470,6 @@ var common_access_code_warning = zod.z.object({
|
|
|
2602
2470
|
created_at: zod.z.string().datetime().optional().describe("Date and time at which Seam created the warning.")
|
|
2603
2471
|
});
|
|
2604
2472
|
var warning_code_description3 = "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.";
|
|
2605
|
-
var smartthings_failed_to_set_access_code_warning = common_access_code_warning.extend({
|
|
2606
|
-
warning_code: zod.z.literal("smartthings_failed_to_set_access_code").describe(warning_code_description3)
|
|
2607
|
-
}).describe("Failed to set code on SmartThings device.");
|
|
2608
|
-
var august_lock_temporarily_offline_warning = common_access_code_warning.extend({
|
|
2609
|
-
warning_code: zod.z.literal("august_lock_temporarily_offline").describe(error_code_description3)
|
|
2610
|
-
}).describe("August lock is temporarily offline.");
|
|
2611
2473
|
var code_modified_external_to_seam_warning = common_access_code_warning.extend({
|
|
2612
2474
|
warning_code: zod.z.literal("code_modified_external_to_seam").describe(warning_code_description3),
|
|
2613
2475
|
change_type: zod.z.enum(["modified", "removed"]).optional().describe(
|
|
@@ -2634,16 +2496,6 @@ var provider_issue_warning = common_access_code_warning.extend({
|
|
|
2634
2496
|
}).describe(
|
|
2635
2497
|
"Indicates a provider-specific issue that may affect the access code. Check the warning message for details."
|
|
2636
2498
|
);
|
|
2637
|
-
var schlage_creation_outage = common_access_code_warning.extend({
|
|
2638
|
-
warning_code: zod.z.literal("schlage_creation_outage").describe(warning_code_description3)
|
|
2639
|
-
}).describe(
|
|
2640
|
-
`
|
|
2641
|
-
---
|
|
2642
|
-
deprecated: Use \`provider_issue\` instead.
|
|
2643
|
-
---
|
|
2644
|
-
Received an error when attempting to create this code.
|
|
2645
|
-
`
|
|
2646
|
-
);
|
|
2647
2499
|
var schlage_access_code_ambiguous_timezone_dst_risk = common_access_code_warning.extend({
|
|
2648
2500
|
warning_code: zod.z.literal("schlage_access_code_ambiguous_timezone_dst_risk").describe(warning_code_description3)
|
|
2649
2501
|
}).describe(
|
|
@@ -2666,24 +2518,11 @@ var igloo_algopin_must_be_used_within_24_hours = common_access_code_warning.exte
|
|
|
2666
2518
|
var management_transferred = common_access_code_warning.extend({
|
|
2667
2519
|
warning_code: zod.z.literal("management_transferred").describe(warning_code_description3)
|
|
2668
2520
|
}).describe("Management was transferred to another workspace.");
|
|
2669
|
-
var kwikset_unable_to_confirm_code_warning = common_access_code_warning.extend({
|
|
2670
|
-
warning_code: zod.z.literal("kwikset_unable_to_confirm_code").describe(warning_code_description3)
|
|
2671
|
-
}).describe("Unable to confirm that the access code is set on Kwikset device.");
|
|
2672
2521
|
var access_code_inactive = common_access_code_warning.extend({
|
|
2673
2522
|
warning_code: zod.z.literal("access_code_inactive").describe(warning_code_description3)
|
|
2674
2523
|
}).describe(
|
|
2675
2524
|
"Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled."
|
|
2676
2525
|
);
|
|
2677
|
-
var ultraloq_access_code_disabled = common_access_code_warning.extend({
|
|
2678
|
-
warning_code: zod.z.literal("ultraloq_access_code_disabled").describe(warning_code_description3)
|
|
2679
|
-
}).describe(
|
|
2680
|
-
`
|
|
2681
|
-
---
|
|
2682
|
-
deprecated: Use \`access_code_inactive\` instead.
|
|
2683
|
-
---
|
|
2684
|
-
Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.
|
|
2685
|
-
`
|
|
2686
|
-
);
|
|
2687
2526
|
var using_backup_access_code = common_access_code_warning.extend({
|
|
2688
2527
|
warning_code: zod.z.literal("using_backup_access_code").describe(warning_code_description3)
|
|
2689
2528
|
}).describe(
|
|
@@ -2694,20 +2533,15 @@ var being_deleted2 = common_access_code_warning.extend({
|
|
|
2694
2533
|
}).describe("Access code is being deleted.");
|
|
2695
2534
|
var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
2696
2535
|
provider_issue_warning,
|
|
2697
|
-
smartthings_failed_to_set_access_code_warning,
|
|
2698
2536
|
schlage_detected_duplicate,
|
|
2699
|
-
schlage_creation_outage,
|
|
2700
2537
|
schlage_access_code_ambiguous_timezone_dst_risk,
|
|
2701
2538
|
code_modified_external_to_seam_warning,
|
|
2702
2539
|
delay_in_setting_on_device,
|
|
2703
2540
|
delay_in_removing_from_device,
|
|
2704
2541
|
third_party_integration_detected2,
|
|
2705
|
-
august_lock_temporarily_offline_warning,
|
|
2706
2542
|
igloo_algopin_must_be_used_within_24_hours,
|
|
2707
2543
|
management_transferred,
|
|
2708
|
-
kwikset_unable_to_confirm_code_warning,
|
|
2709
2544
|
access_code_inactive,
|
|
2710
|
-
ultraloq_access_code_disabled,
|
|
2711
2545
|
using_backup_access_code,
|
|
2712
2546
|
being_deleted2
|
|
2713
2547
|
]).describe(
|
|
@@ -2715,20 +2549,15 @@ var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
2715
2549
|
);
|
|
2716
2550
|
zod.z.object({
|
|
2717
2551
|
provider_issue: provider_issue_warning.optional().nullable(),
|
|
2718
|
-
smartthings_failed_to_set_access_code: smartthings_failed_to_set_access_code_warning.optional().nullable(),
|
|
2719
2552
|
schlage_detected_duplicate: schlage_detected_duplicate.optional().nullable(),
|
|
2720
|
-
schlage_creation_outage: schlage_creation_outage.optional().nullable(),
|
|
2721
2553
|
schlage_access_code_ambiguous_timezone_dst_risk: schlage_access_code_ambiguous_timezone_dst_risk.optional().nullable(),
|
|
2722
2554
|
code_modified_external_to_seam_warning: code_modified_external_to_seam_warning.optional().nullable(),
|
|
2723
2555
|
delay_in_setting_on_device: delay_in_setting_on_device.optional().nullable(),
|
|
2724
2556
|
delay_in_removing_from_device: delay_in_removing_from_device.optional().nullable(),
|
|
2725
2557
|
third_party_integration_detected: third_party_integration_detected2.optional().nullable(),
|
|
2726
|
-
august_lock_temporarily_offline: august_lock_temporarily_offline_warning.optional().nullable(),
|
|
2727
2558
|
igloo_algopin_must_be_used_within_24_hours: igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
|
|
2728
2559
|
management_transferred: management_transferred.optional().nullable(),
|
|
2729
|
-
kwikset_unable_to_confirm_code_warning: kwikset_unable_to_confirm_code_warning.optional().nullable(),
|
|
2730
2560
|
access_code_inactive: access_code_inactive.optional().nullable(),
|
|
2731
|
-
ultraloq_access_code_disabled: ultraloq_access_code_disabled.optional().nullable(),
|
|
2732
2561
|
using_backup_access_code: using_backup_access_code.optional().nullable(),
|
|
2733
2562
|
being_deleted: being_deleted2.optional().nullable()
|
|
2734
2563
|
});
|
|
@@ -5469,6 +5298,10 @@ var customer_portal_theme = zod.z.object({
|
|
|
5469
5298
|
font_family: zod.z.string().optional(),
|
|
5470
5299
|
mono_font_family: zod.z.string().optional()
|
|
5471
5300
|
});
|
|
5301
|
+
var message_overrides = zod.z.record(
|
|
5302
|
+
zod.z.string(),
|
|
5303
|
+
zod.z.record(zod.z.string(), zod.z.string())
|
|
5304
|
+
);
|
|
5472
5305
|
var customization_profile = zod.z.object({
|
|
5473
5306
|
workspace_id: zod.z.string().uuid(),
|
|
5474
5307
|
name: zod.z.string().nullable(),
|
|
@@ -5477,7 +5310,8 @@ var customization_profile = zod.z.object({
|
|
|
5477
5310
|
logo_url: zod.z.string().url().optional(),
|
|
5478
5311
|
primary_color: zod.z.string().optional(),
|
|
5479
5312
|
secondary_color: zod.z.string().optional(),
|
|
5480
|
-
customer_portal_theme: customer_portal_theme.optional()
|
|
5313
|
+
customer_portal_theme: customer_portal_theme.optional(),
|
|
5314
|
+
message_overrides: message_overrides.optional()
|
|
5481
5315
|
}).describe(`
|
|
5482
5316
|
---
|
|
5483
5317
|
title: Customization Profile
|
|
@@ -7474,64 +7308,6 @@ var openapi = {
|
|
|
7474
7308
|
required: ["message", "is_access_code_error", "error_code"],
|
|
7475
7309
|
type: "object"
|
|
7476
7310
|
},
|
|
7477
|
-
{
|
|
7478
|
-
deprecated: true,
|
|
7479
|
-
description: "Failed to set code on SmartThings device.",
|
|
7480
|
-
properties: {
|
|
7481
|
-
created_at: {
|
|
7482
|
-
description: "Date and time at which Seam created the error.",
|
|
7483
|
-
format: "date-time",
|
|
7484
|
-
type: "string"
|
|
7485
|
-
},
|
|
7486
|
-
error_code: {
|
|
7487
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7488
|
-
enum: ["smartthings_failed_to_set_access_code"],
|
|
7489
|
-
type: "string"
|
|
7490
|
-
},
|
|
7491
|
-
is_access_code_error: {
|
|
7492
|
-
description: "Indicates that this is an access code error.",
|
|
7493
|
-
enum: [true],
|
|
7494
|
-
type: "boolean"
|
|
7495
|
-
},
|
|
7496
|
-
message: {
|
|
7497
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7498
|
-
type: "string"
|
|
7499
|
-
}
|
|
7500
|
-
},
|
|
7501
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7502
|
-
type: "object",
|
|
7503
|
-
"x-deprecated": "Handled by the generic `failed_to_set_on_device` system."
|
|
7504
|
-
},
|
|
7505
|
-
{
|
|
7506
|
-
deprecated: true,
|
|
7507
|
-
description: "Failed to set code after multiple retries.",
|
|
7508
|
-
properties: {
|
|
7509
|
-
created_at: {
|
|
7510
|
-
description: "Date and time at which Seam created the error.",
|
|
7511
|
-
format: "date-time",
|
|
7512
|
-
type: "string"
|
|
7513
|
-
},
|
|
7514
|
-
error_code: {
|
|
7515
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7516
|
-
enum: [
|
|
7517
|
-
"smartthings_failed_to_set_after_multiple_retries"
|
|
7518
|
-
],
|
|
7519
|
-
type: "string"
|
|
7520
|
-
},
|
|
7521
|
-
is_access_code_error: {
|
|
7522
|
-
description: "Indicates that this is an access code error.",
|
|
7523
|
-
enum: [true],
|
|
7524
|
-
type: "boolean"
|
|
7525
|
-
},
|
|
7526
|
-
message: {
|
|
7527
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7528
|
-
type: "string"
|
|
7529
|
-
}
|
|
7530
|
-
},
|
|
7531
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7532
|
-
type: "object",
|
|
7533
|
-
"x-deprecated": "Handled by the generic `failed_to_set_on_device` system."
|
|
7534
|
-
},
|
|
7535
7311
|
{
|
|
7536
7312
|
description: "Failed to set code on device.",
|
|
7537
7313
|
properties: {
|
|
@@ -7698,62 +7474,6 @@ var openapi = {
|
|
|
7698
7474
|
required: ["message", "is_access_code_error", "error_code"],
|
|
7699
7475
|
type: "object"
|
|
7700
7476
|
},
|
|
7701
|
-
{
|
|
7702
|
-
deprecated: true,
|
|
7703
|
-
description: "Unable to confirm that the access code is set on Kwikset device.",
|
|
7704
|
-
properties: {
|
|
7705
|
-
created_at: {
|
|
7706
|
-
description: "Date and time at which Seam created the error.",
|
|
7707
|
-
format: "date-time",
|
|
7708
|
-
type: "string"
|
|
7709
|
-
},
|
|
7710
|
-
error_code: {
|
|
7711
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7712
|
-
enum: ["kwikset_unable_to_confirm_code"],
|
|
7713
|
-
type: "string"
|
|
7714
|
-
},
|
|
7715
|
-
is_access_code_error: {
|
|
7716
|
-
description: "Indicates that this is an access code error.",
|
|
7717
|
-
enum: [true],
|
|
7718
|
-
type: "boolean"
|
|
7719
|
-
},
|
|
7720
|
-
message: {
|
|
7721
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7722
|
-
type: "string"
|
|
7723
|
-
}
|
|
7724
|
-
},
|
|
7725
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7726
|
-
type: "object",
|
|
7727
|
-
"x-deprecated": "Use `access_code_state_unconfirmed` instead."
|
|
7728
|
-
},
|
|
7729
|
-
{
|
|
7730
|
-
deprecated: true,
|
|
7731
|
-
description: "Unable to confirm the deletion of the access code on Kwikset device.",
|
|
7732
|
-
properties: {
|
|
7733
|
-
created_at: {
|
|
7734
|
-
description: "Date and time at which Seam created the error.",
|
|
7735
|
-
format: "date-time",
|
|
7736
|
-
type: "string"
|
|
7737
|
-
},
|
|
7738
|
-
error_code: {
|
|
7739
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7740
|
-
enum: ["kwikset_unable_to_confirm_deletion"],
|
|
7741
|
-
type: "string"
|
|
7742
|
-
},
|
|
7743
|
-
is_access_code_error: {
|
|
7744
|
-
description: "Indicates that this is an access code error.",
|
|
7745
|
-
enum: [true],
|
|
7746
|
-
type: "boolean"
|
|
7747
|
-
},
|
|
7748
|
-
message: {
|
|
7749
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7750
|
-
type: "string"
|
|
7751
|
-
}
|
|
7752
|
-
},
|
|
7753
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7754
|
-
type: "object",
|
|
7755
|
-
"x-deprecated": "Use `access_code_state_unconfirmed` instead."
|
|
7756
|
-
},
|
|
7757
7477
|
{
|
|
7758
7478
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
7759
7479
|
properties: {
|
|
@@ -7809,90 +7529,6 @@ var openapi = {
|
|
|
7809
7529
|
required: ["message", "is_access_code_error", "error_code"],
|
|
7810
7530
|
type: "object"
|
|
7811
7531
|
},
|
|
7812
|
-
{
|
|
7813
|
-
deprecated: true,
|
|
7814
|
-
description: "Invalid code length for August lock.",
|
|
7815
|
-
properties: {
|
|
7816
|
-
created_at: {
|
|
7817
|
-
description: "Date and time at which Seam created the error.",
|
|
7818
|
-
format: "date-time",
|
|
7819
|
-
type: "string"
|
|
7820
|
-
},
|
|
7821
|
-
error_code: {
|
|
7822
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7823
|
-
enum: ["august_lock_invalid_code_length"],
|
|
7824
|
-
type: "string"
|
|
7825
|
-
},
|
|
7826
|
-
is_access_code_error: {
|
|
7827
|
-
description: "Indicates that this is an access code error.",
|
|
7828
|
-
enum: [true],
|
|
7829
|
-
type: "boolean"
|
|
7830
|
-
},
|
|
7831
|
-
message: {
|
|
7832
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7833
|
-
type: "string"
|
|
7834
|
-
}
|
|
7835
|
-
},
|
|
7836
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7837
|
-
type: "object",
|
|
7838
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
7839
|
-
},
|
|
7840
|
-
{
|
|
7841
|
-
deprecated: true,
|
|
7842
|
-
description: "August lock is missing a keypad.",
|
|
7843
|
-
properties: {
|
|
7844
|
-
created_at: {
|
|
7845
|
-
description: "Date and time at which Seam created the error.",
|
|
7846
|
-
format: "date-time",
|
|
7847
|
-
type: "string"
|
|
7848
|
-
},
|
|
7849
|
-
error_code: {
|
|
7850
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7851
|
-
enum: ["august_lock_missing_keypad"],
|
|
7852
|
-
type: "string"
|
|
7853
|
-
},
|
|
7854
|
-
is_access_code_error: {
|
|
7855
|
-
description: "Indicates that this is an access code error.",
|
|
7856
|
-
enum: [true],
|
|
7857
|
-
type: "boolean"
|
|
7858
|
-
},
|
|
7859
|
-
message: {
|
|
7860
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7861
|
-
type: "string"
|
|
7862
|
-
}
|
|
7863
|
-
},
|
|
7864
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7865
|
-
type: "object",
|
|
7866
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
7867
|
-
},
|
|
7868
|
-
{
|
|
7869
|
-
deprecated: true,
|
|
7870
|
-
description: "August lock is temporarily offline.",
|
|
7871
|
-
properties: {
|
|
7872
|
-
created_at: {
|
|
7873
|
-
description: "Date and time at which Seam created the error.",
|
|
7874
|
-
format: "date-time",
|
|
7875
|
-
type: "string"
|
|
7876
|
-
},
|
|
7877
|
-
error_code: {
|
|
7878
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7879
|
-
enum: ["august_lock_temporarily_offline"],
|
|
7880
|
-
type: "string"
|
|
7881
|
-
},
|
|
7882
|
-
is_access_code_error: {
|
|
7883
|
-
description: "Indicates that this is an access code error.",
|
|
7884
|
-
enum: [true],
|
|
7885
|
-
type: "boolean"
|
|
7886
|
-
},
|
|
7887
|
-
message: {
|
|
7888
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7889
|
-
type: "string"
|
|
7890
|
-
}
|
|
7891
|
-
},
|
|
7892
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7893
|
-
type: "object",
|
|
7894
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
7895
|
-
},
|
|
7896
7532
|
{
|
|
7897
7533
|
description: "Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.",
|
|
7898
7534
|
properties: {
|
|
@@ -7947,90 +7583,6 @@ var openapi = {
|
|
|
7947
7583
|
type: "object",
|
|
7948
7584
|
"x-deprecated": "Use `access_code_inactive` instead."
|
|
7949
7585
|
},
|
|
7950
|
-
{
|
|
7951
|
-
deprecated: true,
|
|
7952
|
-
description: "Duplicate access code name detected.",
|
|
7953
|
-
properties: {
|
|
7954
|
-
created_at: {
|
|
7955
|
-
description: "Date and time at which Seam created the error.",
|
|
7956
|
-
format: "date-time",
|
|
7957
|
-
type: "string"
|
|
7958
|
-
},
|
|
7959
|
-
error_code: {
|
|
7960
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7961
|
-
enum: ["wyze_duplicate_code_name"],
|
|
7962
|
-
type: "string"
|
|
7963
|
-
},
|
|
7964
|
-
is_access_code_error: {
|
|
7965
|
-
description: "Indicates that this is an access code error.",
|
|
7966
|
-
enum: [true],
|
|
7967
|
-
type: "boolean"
|
|
7968
|
-
},
|
|
7969
|
-
message: {
|
|
7970
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7971
|
-
type: "string"
|
|
7972
|
-
}
|
|
7973
|
-
},
|
|
7974
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7975
|
-
type: "object",
|
|
7976
|
-
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
7977
|
-
},
|
|
7978
|
-
{
|
|
7979
|
-
deprecated: true,
|
|
7980
|
-
description: "Potential duplicate access code detected.",
|
|
7981
|
-
properties: {
|
|
7982
|
-
created_at: {
|
|
7983
|
-
description: "Date and time at which Seam created the error.",
|
|
7984
|
-
format: "date-time",
|
|
7985
|
-
type: "string"
|
|
7986
|
-
},
|
|
7987
|
-
error_code: {
|
|
7988
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7989
|
-
enum: ["wyze_potential_duplicate_code"],
|
|
7990
|
-
type: "string"
|
|
7991
|
-
},
|
|
7992
|
-
is_access_code_error: {
|
|
7993
|
-
description: "Indicates that this is an access code error.",
|
|
7994
|
-
enum: [true],
|
|
7995
|
-
type: "boolean"
|
|
7996
|
-
},
|
|
7997
|
-
message: {
|
|
7998
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7999
|
-
type: "string"
|
|
8000
|
-
}
|
|
8001
|
-
},
|
|
8002
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
8003
|
-
type: "object",
|
|
8004
|
-
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
8005
|
-
},
|
|
8006
|
-
{
|
|
8007
|
-
deprecated: true,
|
|
8008
|
-
description: "No Dormakaba Oracode user levels configured for the requested time range.",
|
|
8009
|
-
properties: {
|
|
8010
|
-
created_at: {
|
|
8011
|
-
description: "Date and time at which Seam created the error.",
|
|
8012
|
-
format: "date-time",
|
|
8013
|
-
type: "string"
|
|
8014
|
-
},
|
|
8015
|
-
error_code: {
|
|
8016
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
8017
|
-
enum: ["dormakaba_oracode_invalid_time_range"],
|
|
8018
|
-
type: "string"
|
|
8019
|
-
},
|
|
8020
|
-
is_access_code_error: {
|
|
8021
|
-
description: "Indicates that this is an access code error.",
|
|
8022
|
-
enum: [true],
|
|
8023
|
-
type: "boolean"
|
|
8024
|
-
},
|
|
8025
|
-
message: {
|
|
8026
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
8027
|
-
type: "string"
|
|
8028
|
-
}
|
|
8029
|
-
},
|
|
8030
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
8031
|
-
type: "object",
|
|
8032
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
8033
|
-
},
|
|
8034
7586
|
{
|
|
8035
7587
|
description: "Admin role required\u2014insufficient permissions to manage PINs on this device. Please have an admin update your role, or ask them to set the PIN.",
|
|
8036
7588
|
properties: {
|
|
@@ -8057,34 +7609,6 @@ var openapi = {
|
|
|
8057
7609
|
required: ["message", "is_access_code_error", "error_code"],
|
|
8058
7610
|
type: "object"
|
|
8059
7611
|
},
|
|
8060
|
-
{
|
|
8061
|
-
deprecated: true,
|
|
8062
|
-
description: "KeyNest locker is not supported.",
|
|
8063
|
-
properties: {
|
|
8064
|
-
created_at: {
|
|
8065
|
-
description: "Date and time at which Seam created the error.",
|
|
8066
|
-
format: "date-time",
|
|
8067
|
-
type: "string"
|
|
8068
|
-
},
|
|
8069
|
-
error_code: {
|
|
8070
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
8071
|
-
enum: ["keynest_unsupported_third_party_locker"],
|
|
8072
|
-
type: "string"
|
|
8073
|
-
},
|
|
8074
|
-
is_access_code_error: {
|
|
8075
|
-
description: "Indicates that this is an access code error.",
|
|
8076
|
-
enum: [true],
|
|
8077
|
-
type: "boolean"
|
|
8078
|
-
},
|
|
8079
|
-
message: {
|
|
8080
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
8081
|
-
type: "string"
|
|
8082
|
-
}
|
|
8083
|
-
},
|
|
8084
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
8085
|
-
type: "object",
|
|
8086
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
8087
|
-
},
|
|
8088
7612
|
{
|
|
8089
7613
|
description: "This access code was overridden on the device by a newer access code programmed to the same slot.",
|
|
8090
7614
|
properties: {
|
|
@@ -8977,27 +8501,6 @@ var openapi = {
|
|
|
8977
8501
|
required: ["message", "warning_code"],
|
|
8978
8502
|
type: "object"
|
|
8979
8503
|
},
|
|
8980
|
-
{
|
|
8981
|
-
description: "Failed to set code on SmartThings device.",
|
|
8982
|
-
properties: {
|
|
8983
|
-
created_at: {
|
|
8984
|
-
description: "Date and time at which Seam created the warning.",
|
|
8985
|
-
format: "date-time",
|
|
8986
|
-
type: "string"
|
|
8987
|
-
},
|
|
8988
|
-
message: {
|
|
8989
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
8990
|
-
type: "string"
|
|
8991
|
-
},
|
|
8992
|
-
warning_code: {
|
|
8993
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
8994
|
-
enum: ["smartthings_failed_to_set_access_code"],
|
|
8995
|
-
type: "string"
|
|
8996
|
-
}
|
|
8997
|
-
},
|
|
8998
|
-
required: ["message", "warning_code"],
|
|
8999
|
-
type: "object"
|
|
9000
|
-
},
|
|
9001
8504
|
{
|
|
9002
8505
|
deprecated: true,
|
|
9003
8506
|
description: "Duplicate access code detected.",
|
|
@@ -9021,29 +8524,6 @@ var openapi = {
|
|
|
9021
8524
|
type: "object",
|
|
9022
8525
|
"x-deprecated": "Use `duplicate_code_on_device` error instead."
|
|
9023
8526
|
},
|
|
9024
|
-
{
|
|
9025
|
-
deprecated: true,
|
|
9026
|
-
description: "Received an error when attempting to create this code.",
|
|
9027
|
-
properties: {
|
|
9028
|
-
created_at: {
|
|
9029
|
-
description: "Date and time at which Seam created the warning.",
|
|
9030
|
-
format: "date-time",
|
|
9031
|
-
type: "string"
|
|
9032
|
-
},
|
|
9033
|
-
message: {
|
|
9034
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
9035
|
-
type: "string"
|
|
9036
|
-
},
|
|
9037
|
-
warning_code: {
|
|
9038
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
9039
|
-
enum: ["schlage_creation_outage"],
|
|
9040
|
-
type: "string"
|
|
9041
|
-
}
|
|
9042
|
-
},
|
|
9043
|
-
required: ["message", "warning_code"],
|
|
9044
|
-
type: "object",
|
|
9045
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
9046
|
-
},
|
|
9047
8527
|
{
|
|
9048
8528
|
description: "The Schlage device's timezone is ambiguous and this code's schedule crosses a daylight-saving transition in at least one plausible timezone. A 1-hour safety buffer has been applied to the side of the schedule affected by the transition (`ends_at` for spring-forward, `starts_at` for fall-back) so the code stays active through the shift \u2014 the code may be usable up to 1 hour beyond your requested window. Set the device's timezone via `/devices/report_provider_metadata` to clear the buffer and guarantee exact DST handling.",
|
|
9049
8529
|
properties: {
|
|
@@ -9178,27 +8658,6 @@ var openapi = {
|
|
|
9178
8658
|
required: ["message", "warning_code"],
|
|
9179
8659
|
type: "object"
|
|
9180
8660
|
},
|
|
9181
|
-
{
|
|
9182
|
-
description: "August lock is temporarily offline.",
|
|
9183
|
-
properties: {
|
|
9184
|
-
created_at: {
|
|
9185
|
-
description: "Date and time at which Seam created the warning.",
|
|
9186
|
-
format: "date-time",
|
|
9187
|
-
type: "string"
|
|
9188
|
-
},
|
|
9189
|
-
message: {
|
|
9190
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
9191
|
-
type: "string"
|
|
9192
|
-
},
|
|
9193
|
-
warning_code: {
|
|
9194
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
9195
|
-
enum: ["august_lock_temporarily_offline"],
|
|
9196
|
-
type: "string"
|
|
9197
|
-
}
|
|
9198
|
-
},
|
|
9199
|
-
required: ["message", "warning_code"],
|
|
9200
|
-
type: "object"
|
|
9201
|
-
},
|
|
9202
8661
|
{
|
|
9203
8662
|
description: "Algopins must be used within 24 hours.",
|
|
9204
8663
|
properties: {
|
|
@@ -9241,27 +8700,6 @@ var openapi = {
|
|
|
9241
8700
|
required: ["message", "warning_code"],
|
|
9242
8701
|
type: "object"
|
|
9243
8702
|
},
|
|
9244
|
-
{
|
|
9245
|
-
description: "Unable to confirm that the access code is set on Kwikset device.",
|
|
9246
|
-
properties: {
|
|
9247
|
-
created_at: {
|
|
9248
|
-
description: "Date and time at which Seam created the warning.",
|
|
9249
|
-
format: "date-time",
|
|
9250
|
-
type: "string"
|
|
9251
|
-
},
|
|
9252
|
-
message: {
|
|
9253
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
9254
|
-
type: "string"
|
|
9255
|
-
},
|
|
9256
|
-
warning_code: {
|
|
9257
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
9258
|
-
enum: ["kwikset_unable_to_confirm_code"],
|
|
9259
|
-
type: "string"
|
|
9260
|
-
}
|
|
9261
|
-
},
|
|
9262
|
-
required: ["message", "warning_code"],
|
|
9263
|
-
type: "object"
|
|
9264
|
-
},
|
|
9265
8703
|
{
|
|
9266
8704
|
description: "Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.",
|
|
9267
8705
|
properties: {
|
|
@@ -9283,29 +8721,6 @@ var openapi = {
|
|
|
9283
8721
|
required: ["message", "warning_code"],
|
|
9284
8722
|
type: "object"
|
|
9285
8723
|
},
|
|
9286
|
-
{
|
|
9287
|
-
deprecated: true,
|
|
9288
|
-
description: "Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.",
|
|
9289
|
-
properties: {
|
|
9290
|
-
created_at: {
|
|
9291
|
-
description: "Date and time at which Seam created the warning.",
|
|
9292
|
-
format: "date-time",
|
|
9293
|
-
type: "string"
|
|
9294
|
-
},
|
|
9295
|
-
message: {
|
|
9296
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
9297
|
-
type: "string"
|
|
9298
|
-
},
|
|
9299
|
-
warning_code: {
|
|
9300
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
9301
|
-
enum: ["ultraloq_access_code_disabled"],
|
|
9302
|
-
type: "string"
|
|
9303
|
-
}
|
|
9304
|
-
},
|
|
9305
|
-
required: ["message", "warning_code"],
|
|
9306
|
-
type: "object",
|
|
9307
|
-
"x-deprecated": "Use `access_code_inactive` instead."
|
|
9308
|
-
},
|
|
9309
8724
|
{
|
|
9310
8725
|
description: "A backup access code has been pulled and is being used in place of this access code.",
|
|
9311
8726
|
properties: {
|
|
@@ -19023,6 +18438,13 @@ var openapi = {
|
|
|
19023
18438
|
},
|
|
19024
18439
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
19025
18440
|
logo_url: { format: "uri", type: "string" },
|
|
18441
|
+
message_overrides: {
|
|
18442
|
+
additionalProperties: {
|
|
18443
|
+
additionalProperties: { type: "string" },
|
|
18444
|
+
type: "object"
|
|
18445
|
+
},
|
|
18446
|
+
type: "object"
|
|
18447
|
+
},
|
|
19026
18448
|
name: { nullable: true, type: "string" },
|
|
19027
18449
|
primary_color: { type: "string" },
|
|
19028
18450
|
secondary_color: { type: "string" },
|
|
@@ -32923,64 +32345,6 @@ var openapi = {
|
|
|
32923
32345
|
required: ["message", "is_access_code_error", "error_code"],
|
|
32924
32346
|
type: "object"
|
|
32925
32347
|
},
|
|
32926
|
-
{
|
|
32927
|
-
deprecated: true,
|
|
32928
|
-
description: "Failed to set code on SmartThings device.",
|
|
32929
|
-
properties: {
|
|
32930
|
-
created_at: {
|
|
32931
|
-
description: "Date and time at which Seam created the error.",
|
|
32932
|
-
format: "date-time",
|
|
32933
|
-
type: "string"
|
|
32934
|
-
},
|
|
32935
|
-
error_code: {
|
|
32936
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
32937
|
-
enum: ["smartthings_failed_to_set_access_code"],
|
|
32938
|
-
type: "string"
|
|
32939
|
-
},
|
|
32940
|
-
is_access_code_error: {
|
|
32941
|
-
description: "Indicates that this is an access code error.",
|
|
32942
|
-
enum: [true],
|
|
32943
|
-
type: "boolean"
|
|
32944
|
-
},
|
|
32945
|
-
message: {
|
|
32946
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
32947
|
-
type: "string"
|
|
32948
|
-
}
|
|
32949
|
-
},
|
|
32950
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
32951
|
-
type: "object",
|
|
32952
|
-
"x-deprecated": "Handled by the generic `failed_to_set_on_device` system."
|
|
32953
|
-
},
|
|
32954
|
-
{
|
|
32955
|
-
deprecated: true,
|
|
32956
|
-
description: "Failed to set code after multiple retries.",
|
|
32957
|
-
properties: {
|
|
32958
|
-
created_at: {
|
|
32959
|
-
description: "Date and time at which Seam created the error.",
|
|
32960
|
-
format: "date-time",
|
|
32961
|
-
type: "string"
|
|
32962
|
-
},
|
|
32963
|
-
error_code: {
|
|
32964
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
32965
|
-
enum: [
|
|
32966
|
-
"smartthings_failed_to_set_after_multiple_retries"
|
|
32967
|
-
],
|
|
32968
|
-
type: "string"
|
|
32969
|
-
},
|
|
32970
|
-
is_access_code_error: {
|
|
32971
|
-
description: "Indicates that this is an access code error.",
|
|
32972
|
-
enum: [true],
|
|
32973
|
-
type: "boolean"
|
|
32974
|
-
},
|
|
32975
|
-
message: {
|
|
32976
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
32977
|
-
type: "string"
|
|
32978
|
-
}
|
|
32979
|
-
},
|
|
32980
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
32981
|
-
type: "object",
|
|
32982
|
-
"x-deprecated": "Handled by the generic `failed_to_set_on_device` system."
|
|
32983
|
-
},
|
|
32984
32348
|
{
|
|
32985
32349
|
description: "Failed to set code on device.",
|
|
32986
32350
|
properties: {
|
|
@@ -33147,62 +32511,6 @@ var openapi = {
|
|
|
33147
32511
|
required: ["message", "is_access_code_error", "error_code"],
|
|
33148
32512
|
type: "object"
|
|
33149
32513
|
},
|
|
33150
|
-
{
|
|
33151
|
-
deprecated: true,
|
|
33152
|
-
description: "Unable to confirm that the access code is set on Kwikset device.",
|
|
33153
|
-
properties: {
|
|
33154
|
-
created_at: {
|
|
33155
|
-
description: "Date and time at which Seam created the error.",
|
|
33156
|
-
format: "date-time",
|
|
33157
|
-
type: "string"
|
|
33158
|
-
},
|
|
33159
|
-
error_code: {
|
|
33160
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33161
|
-
enum: ["kwikset_unable_to_confirm_code"],
|
|
33162
|
-
type: "string"
|
|
33163
|
-
},
|
|
33164
|
-
is_access_code_error: {
|
|
33165
|
-
description: "Indicates that this is an access code error.",
|
|
33166
|
-
enum: [true],
|
|
33167
|
-
type: "boolean"
|
|
33168
|
-
},
|
|
33169
|
-
message: {
|
|
33170
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33171
|
-
type: "string"
|
|
33172
|
-
}
|
|
33173
|
-
},
|
|
33174
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33175
|
-
type: "object",
|
|
33176
|
-
"x-deprecated": "Use `access_code_state_unconfirmed` instead."
|
|
33177
|
-
},
|
|
33178
|
-
{
|
|
33179
|
-
deprecated: true,
|
|
33180
|
-
description: "Unable to confirm the deletion of the access code on Kwikset device.",
|
|
33181
|
-
properties: {
|
|
33182
|
-
created_at: {
|
|
33183
|
-
description: "Date and time at which Seam created the error.",
|
|
33184
|
-
format: "date-time",
|
|
33185
|
-
type: "string"
|
|
33186
|
-
},
|
|
33187
|
-
error_code: {
|
|
33188
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33189
|
-
enum: ["kwikset_unable_to_confirm_deletion"],
|
|
33190
|
-
type: "string"
|
|
33191
|
-
},
|
|
33192
|
-
is_access_code_error: {
|
|
33193
|
-
description: "Indicates that this is an access code error.",
|
|
33194
|
-
enum: [true],
|
|
33195
|
-
type: "boolean"
|
|
33196
|
-
},
|
|
33197
|
-
message: {
|
|
33198
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33199
|
-
type: "string"
|
|
33200
|
-
}
|
|
33201
|
-
},
|
|
33202
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33203
|
-
type: "object",
|
|
33204
|
-
"x-deprecated": "Use `access_code_state_unconfirmed` instead."
|
|
33205
|
-
},
|
|
33206
32514
|
{
|
|
33207
32515
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
33208
32516
|
properties: {
|
|
@@ -33258,90 +32566,6 @@ var openapi = {
|
|
|
33258
32566
|
required: ["message", "is_access_code_error", "error_code"],
|
|
33259
32567
|
type: "object"
|
|
33260
32568
|
},
|
|
33261
|
-
{
|
|
33262
|
-
deprecated: true,
|
|
33263
|
-
description: "Invalid code length for August lock.",
|
|
33264
|
-
properties: {
|
|
33265
|
-
created_at: {
|
|
33266
|
-
description: "Date and time at which Seam created the error.",
|
|
33267
|
-
format: "date-time",
|
|
33268
|
-
type: "string"
|
|
33269
|
-
},
|
|
33270
|
-
error_code: {
|
|
33271
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33272
|
-
enum: ["august_lock_invalid_code_length"],
|
|
33273
|
-
type: "string"
|
|
33274
|
-
},
|
|
33275
|
-
is_access_code_error: {
|
|
33276
|
-
description: "Indicates that this is an access code error.",
|
|
33277
|
-
enum: [true],
|
|
33278
|
-
type: "boolean"
|
|
33279
|
-
},
|
|
33280
|
-
message: {
|
|
33281
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33282
|
-
type: "string"
|
|
33283
|
-
}
|
|
33284
|
-
},
|
|
33285
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33286
|
-
type: "object",
|
|
33287
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
33288
|
-
},
|
|
33289
|
-
{
|
|
33290
|
-
deprecated: true,
|
|
33291
|
-
description: "August lock is missing a keypad.",
|
|
33292
|
-
properties: {
|
|
33293
|
-
created_at: {
|
|
33294
|
-
description: "Date and time at which Seam created the error.",
|
|
33295
|
-
format: "date-time",
|
|
33296
|
-
type: "string"
|
|
33297
|
-
},
|
|
33298
|
-
error_code: {
|
|
33299
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33300
|
-
enum: ["august_lock_missing_keypad"],
|
|
33301
|
-
type: "string"
|
|
33302
|
-
},
|
|
33303
|
-
is_access_code_error: {
|
|
33304
|
-
description: "Indicates that this is an access code error.",
|
|
33305
|
-
enum: [true],
|
|
33306
|
-
type: "boolean"
|
|
33307
|
-
},
|
|
33308
|
-
message: {
|
|
33309
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33310
|
-
type: "string"
|
|
33311
|
-
}
|
|
33312
|
-
},
|
|
33313
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33314
|
-
type: "object",
|
|
33315
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
33316
|
-
},
|
|
33317
|
-
{
|
|
33318
|
-
deprecated: true,
|
|
33319
|
-
description: "August lock is temporarily offline.",
|
|
33320
|
-
properties: {
|
|
33321
|
-
created_at: {
|
|
33322
|
-
description: "Date and time at which Seam created the error.",
|
|
33323
|
-
format: "date-time",
|
|
33324
|
-
type: "string"
|
|
33325
|
-
},
|
|
33326
|
-
error_code: {
|
|
33327
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33328
|
-
enum: ["august_lock_temporarily_offline"],
|
|
33329
|
-
type: "string"
|
|
33330
|
-
},
|
|
33331
|
-
is_access_code_error: {
|
|
33332
|
-
description: "Indicates that this is an access code error.",
|
|
33333
|
-
enum: [true],
|
|
33334
|
-
type: "boolean"
|
|
33335
|
-
},
|
|
33336
|
-
message: {
|
|
33337
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33338
|
-
type: "string"
|
|
33339
|
-
}
|
|
33340
|
-
},
|
|
33341
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33342
|
-
type: "object",
|
|
33343
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
33344
|
-
},
|
|
33345
32569
|
{
|
|
33346
32570
|
description: "Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.",
|
|
33347
32571
|
properties: {
|
|
@@ -33396,90 +32620,6 @@ var openapi = {
|
|
|
33396
32620
|
type: "object",
|
|
33397
32621
|
"x-deprecated": "Use `access_code_inactive` instead."
|
|
33398
32622
|
},
|
|
33399
|
-
{
|
|
33400
|
-
deprecated: true,
|
|
33401
|
-
description: "Duplicate access code name detected.",
|
|
33402
|
-
properties: {
|
|
33403
|
-
created_at: {
|
|
33404
|
-
description: "Date and time at which Seam created the error.",
|
|
33405
|
-
format: "date-time",
|
|
33406
|
-
type: "string"
|
|
33407
|
-
},
|
|
33408
|
-
error_code: {
|
|
33409
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33410
|
-
enum: ["wyze_duplicate_code_name"],
|
|
33411
|
-
type: "string"
|
|
33412
|
-
},
|
|
33413
|
-
is_access_code_error: {
|
|
33414
|
-
description: "Indicates that this is an access code error.",
|
|
33415
|
-
enum: [true],
|
|
33416
|
-
type: "boolean"
|
|
33417
|
-
},
|
|
33418
|
-
message: {
|
|
33419
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33420
|
-
type: "string"
|
|
33421
|
-
}
|
|
33422
|
-
},
|
|
33423
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33424
|
-
type: "object",
|
|
33425
|
-
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
33426
|
-
},
|
|
33427
|
-
{
|
|
33428
|
-
deprecated: true,
|
|
33429
|
-
description: "Potential duplicate access code detected.",
|
|
33430
|
-
properties: {
|
|
33431
|
-
created_at: {
|
|
33432
|
-
description: "Date and time at which Seam created the error.",
|
|
33433
|
-
format: "date-time",
|
|
33434
|
-
type: "string"
|
|
33435
|
-
},
|
|
33436
|
-
error_code: {
|
|
33437
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33438
|
-
enum: ["wyze_potential_duplicate_code"],
|
|
33439
|
-
type: "string"
|
|
33440
|
-
},
|
|
33441
|
-
is_access_code_error: {
|
|
33442
|
-
description: "Indicates that this is an access code error.",
|
|
33443
|
-
enum: [true],
|
|
33444
|
-
type: "boolean"
|
|
33445
|
-
},
|
|
33446
|
-
message: {
|
|
33447
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33448
|
-
type: "string"
|
|
33449
|
-
}
|
|
33450
|
-
},
|
|
33451
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33452
|
-
type: "object",
|
|
33453
|
-
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
33454
|
-
},
|
|
33455
|
-
{
|
|
33456
|
-
deprecated: true,
|
|
33457
|
-
description: "No Dormakaba Oracode user levels configured for the requested time range.",
|
|
33458
|
-
properties: {
|
|
33459
|
-
created_at: {
|
|
33460
|
-
description: "Date and time at which Seam created the error.",
|
|
33461
|
-
format: "date-time",
|
|
33462
|
-
type: "string"
|
|
33463
|
-
},
|
|
33464
|
-
error_code: {
|
|
33465
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33466
|
-
enum: ["dormakaba_oracode_invalid_time_range"],
|
|
33467
|
-
type: "string"
|
|
33468
|
-
},
|
|
33469
|
-
is_access_code_error: {
|
|
33470
|
-
description: "Indicates that this is an access code error.",
|
|
33471
|
-
enum: [true],
|
|
33472
|
-
type: "boolean"
|
|
33473
|
-
},
|
|
33474
|
-
message: {
|
|
33475
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33476
|
-
type: "string"
|
|
33477
|
-
}
|
|
33478
|
-
},
|
|
33479
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33480
|
-
type: "object",
|
|
33481
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
33482
|
-
},
|
|
33483
32623
|
{
|
|
33484
32624
|
description: "Admin role required\u2014insufficient permissions to manage PINs on this device. Please have an admin update your role, or ask them to set the PIN.",
|
|
33485
32625
|
properties: {
|
|
@@ -33506,34 +32646,6 @@ var openapi = {
|
|
|
33506
32646
|
required: ["message", "is_access_code_error", "error_code"],
|
|
33507
32647
|
type: "object"
|
|
33508
32648
|
},
|
|
33509
|
-
{
|
|
33510
|
-
deprecated: true,
|
|
33511
|
-
description: "KeyNest locker is not supported.",
|
|
33512
|
-
properties: {
|
|
33513
|
-
created_at: {
|
|
33514
|
-
description: "Date and time at which Seam created the error.",
|
|
33515
|
-
format: "date-time",
|
|
33516
|
-
type: "string"
|
|
33517
|
-
},
|
|
33518
|
-
error_code: {
|
|
33519
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
33520
|
-
enum: ["keynest_unsupported_third_party_locker"],
|
|
33521
|
-
type: "string"
|
|
33522
|
-
},
|
|
33523
|
-
is_access_code_error: {
|
|
33524
|
-
description: "Indicates that this is an access code error.",
|
|
33525
|
-
enum: [true],
|
|
33526
|
-
type: "boolean"
|
|
33527
|
-
},
|
|
33528
|
-
message: {
|
|
33529
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
33530
|
-
type: "string"
|
|
33531
|
-
}
|
|
33532
|
-
},
|
|
33533
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
33534
|
-
type: "object",
|
|
33535
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
33536
|
-
},
|
|
33537
32649
|
{
|
|
33538
32650
|
description: "This access code was overridden on the device by a newer access code programmed to the same slot.",
|
|
33539
32651
|
properties: {
|
|
@@ -34143,27 +33255,6 @@ var openapi = {
|
|
|
34143
33255
|
required: ["message", "warning_code"],
|
|
34144
33256
|
type: "object"
|
|
34145
33257
|
},
|
|
34146
|
-
{
|
|
34147
|
-
description: "Failed to set code on SmartThings device.",
|
|
34148
|
-
properties: {
|
|
34149
|
-
created_at: {
|
|
34150
|
-
description: "Date and time at which Seam created the warning.",
|
|
34151
|
-
format: "date-time",
|
|
34152
|
-
type: "string"
|
|
34153
|
-
},
|
|
34154
|
-
message: {
|
|
34155
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
34156
|
-
type: "string"
|
|
34157
|
-
},
|
|
34158
|
-
warning_code: {
|
|
34159
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
34160
|
-
enum: ["smartthings_failed_to_set_access_code"],
|
|
34161
|
-
type: "string"
|
|
34162
|
-
}
|
|
34163
|
-
},
|
|
34164
|
-
required: ["message", "warning_code"],
|
|
34165
|
-
type: "object"
|
|
34166
|
-
},
|
|
34167
33258
|
{
|
|
34168
33259
|
deprecated: true,
|
|
34169
33260
|
description: "Duplicate access code detected.",
|
|
@@ -34187,29 +33278,6 @@ var openapi = {
|
|
|
34187
33278
|
type: "object",
|
|
34188
33279
|
"x-deprecated": "Use `duplicate_code_on_device` error instead."
|
|
34189
33280
|
},
|
|
34190
|
-
{
|
|
34191
|
-
deprecated: true,
|
|
34192
|
-
description: "Received an error when attempting to create this code.",
|
|
34193
|
-
properties: {
|
|
34194
|
-
created_at: {
|
|
34195
|
-
description: "Date and time at which Seam created the warning.",
|
|
34196
|
-
format: "date-time",
|
|
34197
|
-
type: "string"
|
|
34198
|
-
},
|
|
34199
|
-
message: {
|
|
34200
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
34201
|
-
type: "string"
|
|
34202
|
-
},
|
|
34203
|
-
warning_code: {
|
|
34204
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
34205
|
-
enum: ["schlage_creation_outage"],
|
|
34206
|
-
type: "string"
|
|
34207
|
-
}
|
|
34208
|
-
},
|
|
34209
|
-
required: ["message", "warning_code"],
|
|
34210
|
-
type: "object",
|
|
34211
|
-
"x-deprecated": "Use `provider_issue` instead."
|
|
34212
|
-
},
|
|
34213
33281
|
{
|
|
34214
33282
|
description: "The Schlage device's timezone is ambiguous and this code's schedule crosses a daylight-saving transition in at least one plausible timezone. A 1-hour safety buffer has been applied to the side of the schedule affected by the transition (`ends_at` for spring-forward, `starts_at` for fall-back) so the code stays active through the shift \u2014 the code may be usable up to 1 hour beyond your requested window. Set the device's timezone via `/devices/report_provider_metadata` to clear the buffer and guarantee exact DST handling.",
|
|
34215
33283
|
properties: {
|
|
@@ -34344,27 +33412,6 @@ var openapi = {
|
|
|
34344
33412
|
required: ["message", "warning_code"],
|
|
34345
33413
|
type: "object"
|
|
34346
33414
|
},
|
|
34347
|
-
{
|
|
34348
|
-
description: "August lock is temporarily offline.",
|
|
34349
|
-
properties: {
|
|
34350
|
-
created_at: {
|
|
34351
|
-
description: "Date and time at which Seam created the warning.",
|
|
34352
|
-
format: "date-time",
|
|
34353
|
-
type: "string"
|
|
34354
|
-
},
|
|
34355
|
-
message: {
|
|
34356
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
34357
|
-
type: "string"
|
|
34358
|
-
},
|
|
34359
|
-
warning_code: {
|
|
34360
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
34361
|
-
enum: ["august_lock_temporarily_offline"],
|
|
34362
|
-
type: "string"
|
|
34363
|
-
}
|
|
34364
|
-
},
|
|
34365
|
-
required: ["message", "warning_code"],
|
|
34366
|
-
type: "object"
|
|
34367
|
-
},
|
|
34368
33415
|
{
|
|
34369
33416
|
description: "Algopins must be used within 24 hours.",
|
|
34370
33417
|
properties: {
|
|
@@ -34407,27 +33454,6 @@ var openapi = {
|
|
|
34407
33454
|
required: ["message", "warning_code"],
|
|
34408
33455
|
type: "object"
|
|
34409
33456
|
},
|
|
34410
|
-
{
|
|
34411
|
-
description: "Unable to confirm that the access code is set on Kwikset device.",
|
|
34412
|
-
properties: {
|
|
34413
|
-
created_at: {
|
|
34414
|
-
description: "Date and time at which Seam created the warning.",
|
|
34415
|
-
format: "date-time",
|
|
34416
|
-
type: "string"
|
|
34417
|
-
},
|
|
34418
|
-
message: {
|
|
34419
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
34420
|
-
type: "string"
|
|
34421
|
-
},
|
|
34422
|
-
warning_code: {
|
|
34423
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
34424
|
-
enum: ["kwikset_unable_to_confirm_code"],
|
|
34425
|
-
type: "string"
|
|
34426
|
-
}
|
|
34427
|
-
},
|
|
34428
|
-
required: ["message", "warning_code"],
|
|
34429
|
-
type: "object"
|
|
34430
|
-
},
|
|
34431
33457
|
{
|
|
34432
33458
|
description: "Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.",
|
|
34433
33459
|
properties: {
|
|
@@ -34449,29 +33475,6 @@ var openapi = {
|
|
|
34449
33475
|
required: ["message", "warning_code"],
|
|
34450
33476
|
type: "object"
|
|
34451
33477
|
},
|
|
34452
|
-
{
|
|
34453
|
-
deprecated: true,
|
|
34454
|
-
description: "Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.",
|
|
34455
|
-
properties: {
|
|
34456
|
-
created_at: {
|
|
34457
|
-
description: "Date and time at which Seam created the warning.",
|
|
34458
|
-
format: "date-time",
|
|
34459
|
-
type: "string"
|
|
34460
|
-
},
|
|
34461
|
-
message: {
|
|
34462
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
34463
|
-
type: "string"
|
|
34464
|
-
},
|
|
34465
|
-
warning_code: {
|
|
34466
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
34467
|
-
enum: ["ultraloq_access_code_disabled"],
|
|
34468
|
-
type: "string"
|
|
34469
|
-
}
|
|
34470
|
-
},
|
|
34471
|
-
required: ["message", "warning_code"],
|
|
34472
|
-
type: "object",
|
|
34473
|
-
"x-deprecated": "Use `access_code_inactive` instead."
|
|
34474
|
-
},
|
|
34475
33478
|
{
|
|
34476
33479
|
description: "A backup access code has been pulled and is being used in place of this access code.",
|
|
34477
33480
|
properties: {
|
|
@@ -87995,6 +86998,13 @@ var openapi = {
|
|
|
87995
86998
|
},
|
|
87996
86999
|
type: "object"
|
|
87997
87000
|
},
|
|
87001
|
+
message_overrides: {
|
|
87002
|
+
additionalProperties: {
|
|
87003
|
+
additionalProperties: { type: "string" },
|
|
87004
|
+
type: "object"
|
|
87005
|
+
},
|
|
87006
|
+
type: "object"
|
|
87007
|
+
},
|
|
87998
87008
|
name: { default: null, nullable: true, type: "string" },
|
|
87999
87009
|
primary_color: { type: "string" },
|
|
88000
87010
|
secondary_color: { type: "string" }
|
|
@@ -88275,6 +87285,14 @@ var openapi = {
|
|
|
88275
87285
|
type: "object"
|
|
88276
87286
|
},
|
|
88277
87287
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
87288
|
+
message_overrides: {
|
|
87289
|
+
additionalProperties: {
|
|
87290
|
+
additionalProperties: { type: "string" },
|
|
87291
|
+
type: "object"
|
|
87292
|
+
},
|
|
87293
|
+
nullable: true,
|
|
87294
|
+
type: "object"
|
|
87295
|
+
},
|
|
88278
87296
|
name: { nullable: true, type: "string" },
|
|
88279
87297
|
primary_color: { type: "string" },
|
|
88280
87298
|
secondary_color: { type: "string" }
|
|
@@ -88336,6 +87354,14 @@ var openapi = {
|
|
|
88336
87354
|
type: "object"
|
|
88337
87355
|
},
|
|
88338
87356
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
87357
|
+
message_overrides: {
|
|
87358
|
+
additionalProperties: {
|
|
87359
|
+
additionalProperties: { type: "string" },
|
|
87360
|
+
type: "object"
|
|
87361
|
+
},
|
|
87362
|
+
nullable: true,
|
|
87363
|
+
type: "object"
|
|
87364
|
+
},
|
|
88339
87365
|
name: { nullable: true, type: "string" },
|
|
88340
87366
|
primary_color: { type: "string" },
|
|
88341
87367
|
secondary_color: { type: "string" }
|