@seamapi/types 1.857.0 → 1.859.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 +442 -111
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -489
- package/dist/index.cjs +442 -111
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -129
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -22
- 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 -47
- package/lib/seam/connect/models/batch.d.ts +0 -144
- package/lib/seam/connect/models/devices/device-metadata.d.ts +0 -5
- package/lib/seam/connect/models/devices/device-metadata.js +0 -4
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +0 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -5
- package/lib/seam/connect/openapi.js +442 -98
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -210
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -24
- package/src/lib/seam/connect/models/devices/device-metadata.ts +0 -6
- package/src/lib/seam/connect/openapi.ts +443 -117
- package/src/lib/seam/connect/route-types.ts +436 -232
package/dist/connect.cjs
CHANGED
|
@@ -1098,9 +1098,6 @@ var device_metadata = zod.z.object({
|
|
|
1098
1098
|
),
|
|
1099
1099
|
timezone_raw_offset_ms: zod.z.number().describe(
|
|
1100
1100
|
`Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`
|
|
1101
|
-
),
|
|
1102
|
-
time_zone: zod.z.string().optional().describe(
|
|
1103
|
-
`IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.`
|
|
1104
1101
|
)
|
|
1105
1102
|
}).describe(`Metadata for an Omnitec device.`),
|
|
1106
1103
|
tado_metadata: zod.z.object({
|
|
@@ -2332,9 +2329,6 @@ var kwikset_insufficient_permissions = common_access_code_error.extend({
|
|
|
2332
2329
|
var august_lock_invalid_code_length = common_access_code_error.extend({
|
|
2333
2330
|
error_code: zod.z.literal("august_lock_invalid_code_length").describe(error_code_description3)
|
|
2334
2331
|
}).describe("Invalid code length for August lock.");
|
|
2335
|
-
var august_device_programming_delay_error = common_access_code_error.extend({
|
|
2336
|
-
error_code: zod.z.literal("august_device_programming_delay").describe(error_code_description3)
|
|
2337
|
-
}).describe("Access code has not yet been fully moved to the device.");
|
|
2338
2332
|
var august_lock_temporarily_offline_error = common_access_code_error.extend({
|
|
2339
2333
|
error_code: zod.z.literal("august_lock_temporarily_offline").describe(error_code_description3)
|
|
2340
2334
|
}).describe("August lock is temporarily offline.");
|
|
@@ -2379,7 +2373,6 @@ var access_code_error = zod.z.discriminatedUnion("error_code", [
|
|
|
2379
2373
|
kwikset_unable_to_confirm_deletion,
|
|
2380
2374
|
code_modified_external_to_seam_error,
|
|
2381
2375
|
august_lock_invalid_code_length,
|
|
2382
|
-
august_device_programming_delay_error,
|
|
2383
2376
|
august_lock_missing_keypad,
|
|
2384
2377
|
august_lock_temporarily_offline_error,
|
|
2385
2378
|
salto_ks_user_not_subscribed,
|
|
@@ -2406,7 +2399,6 @@ zod.z.object({
|
|
|
2406
2399
|
kwikset_insufficient_permissions: kwikset_insufficient_permissions.optional().nullable(),
|
|
2407
2400
|
code_modified_external_to_seam_error: code_modified_external_to_seam_error.optional().nullable(),
|
|
2408
2401
|
august_lock_invalid_code_length: august_lock_invalid_code_length.optional().nullable(),
|
|
2409
|
-
august_device_programming_delay: august_device_programming_delay_error.optional().nullable(),
|
|
2410
2402
|
august_lock_temporarily_offline: august_lock_temporarily_offline_error.optional().nullable(),
|
|
2411
2403
|
august_lock_missing_keypad: august_lock_missing_keypad.optional().nullable(),
|
|
2412
2404
|
salto_ks_user_not_subscribed: salto_ks_user_not_subscribed.optional().nullable(),
|
|
@@ -2426,9 +2418,6 @@ var warning_code_description3 = "Unique identifier of the type of warning. Enabl
|
|
|
2426
2418
|
var smartthings_failed_to_set_access_code_warning = common_access_code_warning.extend({
|
|
2427
2419
|
warning_code: zod.z.literal("smartthings_failed_to_set_access_code").describe(warning_code_description3)
|
|
2428
2420
|
}).describe("Failed to set code on SmartThings device.");
|
|
2429
|
-
var august_device_programming_delay_warning = common_access_code_warning.extend({
|
|
2430
|
-
warning_code: zod.z.literal("august_device_programming_delay").describe(warning_code_description3)
|
|
2431
|
-
}).describe("Access code has not yet been fully moved to the device.");
|
|
2432
2421
|
var august_lock_temporarily_offline_warning = common_access_code_warning.extend({
|
|
2433
2422
|
warning_code: zod.z.literal("august_lock_temporarily_offline").describe(error_code_description3)
|
|
2434
2423
|
}).describe("August lock is temporarily offline.");
|
|
@@ -2490,7 +2479,6 @@ var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
2490
2479
|
delay_in_setting_on_device,
|
|
2491
2480
|
delay_in_removing_from_device,
|
|
2492
2481
|
third_party_integration_detected2,
|
|
2493
|
-
august_device_programming_delay_warning,
|
|
2494
2482
|
august_lock_temporarily_offline_warning,
|
|
2495
2483
|
igloo_algopin_must_be_used_within_24_hours,
|
|
2496
2484
|
management_transferred,
|
|
@@ -2510,7 +2498,6 @@ zod.z.object({
|
|
|
2510
2498
|
delay_in_setting_on_device: delay_in_setting_on_device.optional().nullable(),
|
|
2511
2499
|
delay_in_removing_from_device: delay_in_removing_from_device.optional().nullable(),
|
|
2512
2500
|
third_party_integration_detected: third_party_integration_detected2.optional().nullable(),
|
|
2513
|
-
august_device_programming_delay: august_device_programming_delay_warning.optional().nullable(),
|
|
2514
2501
|
august_lock_temporarily_offline: august_lock_temporarily_offline_warning.optional().nullable(),
|
|
2515
2502
|
igloo_algopin_must_be_used_within_24_hours: igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
|
|
2516
2503
|
management_transferred: management_transferred.optional().nullable(),
|
|
@@ -7481,32 +7468,6 @@ var openapi = {
|
|
|
7481
7468
|
required: ["message", "is_access_code_error", "error_code"],
|
|
7482
7469
|
type: "object"
|
|
7483
7470
|
},
|
|
7484
|
-
{
|
|
7485
|
-
description: "Access code has not yet been fully moved to the device.",
|
|
7486
|
-
properties: {
|
|
7487
|
-
created_at: {
|
|
7488
|
-
description: "Date and time at which Seam created the error.",
|
|
7489
|
-
format: "date-time",
|
|
7490
|
-
type: "string"
|
|
7491
|
-
},
|
|
7492
|
-
error_code: {
|
|
7493
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
7494
|
-
enum: ["august_device_programming_delay"],
|
|
7495
|
-
type: "string"
|
|
7496
|
-
},
|
|
7497
|
-
is_access_code_error: {
|
|
7498
|
-
description: "Indicates that this is an access code error.",
|
|
7499
|
-
enum: [true],
|
|
7500
|
-
type: "boolean"
|
|
7501
|
-
},
|
|
7502
|
-
message: {
|
|
7503
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7504
|
-
type: "string"
|
|
7505
|
-
}
|
|
7506
|
-
},
|
|
7507
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
7508
|
-
type: "object"
|
|
7509
|
-
},
|
|
7510
7471
|
{
|
|
7511
7472
|
description: "August lock is missing a keypad.",
|
|
7512
7473
|
properties: {
|
|
@@ -8717,27 +8678,6 @@ var openapi = {
|
|
|
8717
8678
|
required: ["message", "warning_code"],
|
|
8718
8679
|
type: "object"
|
|
8719
8680
|
},
|
|
8720
|
-
{
|
|
8721
|
-
description: "Access code has not yet been fully moved to the device.",
|
|
8722
|
-
properties: {
|
|
8723
|
-
created_at: {
|
|
8724
|
-
description: "Date and time at which Seam created the warning.",
|
|
8725
|
-
format: "date-time",
|
|
8726
|
-
type: "string"
|
|
8727
|
-
},
|
|
8728
|
-
message: {
|
|
8729
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
8730
|
-
type: "string"
|
|
8731
|
-
},
|
|
8732
|
-
warning_code: {
|
|
8733
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
8734
|
-
enum: ["august_device_programming_delay"],
|
|
8735
|
-
type: "string"
|
|
8736
|
-
}
|
|
8737
|
-
},
|
|
8738
|
-
required: ["message", "warning_code"],
|
|
8739
|
-
type: "object"
|
|
8740
|
-
},
|
|
8741
8681
|
{
|
|
8742
8682
|
description: "August lock is temporarily offline.",
|
|
8743
8683
|
properties: {
|
|
@@ -19712,10 +19652,6 @@ var openapi = {
|
|
|
19712
19652
|
description: "Lock name for an Omnitec device.",
|
|
19713
19653
|
type: "string"
|
|
19714
19654
|
},
|
|
19715
|
-
time_zone: {
|
|
19716
|
-
description: "IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.",
|
|
19717
|
-
type: "string"
|
|
19718
|
-
},
|
|
19719
19655
|
timezone_raw_offset_ms: {
|
|
19720
19656
|
description: "Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.",
|
|
19721
19657
|
format: "float",
|
|
@@ -31974,32 +31910,6 @@ var openapi = {
|
|
|
31974
31910
|
required: ["message", "is_access_code_error", "error_code"],
|
|
31975
31911
|
type: "object"
|
|
31976
31912
|
},
|
|
31977
|
-
{
|
|
31978
|
-
description: "Access code has not yet been fully moved to the device.",
|
|
31979
|
-
properties: {
|
|
31980
|
-
created_at: {
|
|
31981
|
-
description: "Date and time at which Seam created the error.",
|
|
31982
|
-
format: "date-time",
|
|
31983
|
-
type: "string"
|
|
31984
|
-
},
|
|
31985
|
-
error_code: {
|
|
31986
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
31987
|
-
enum: ["august_device_programming_delay"],
|
|
31988
|
-
type: "string"
|
|
31989
|
-
},
|
|
31990
|
-
is_access_code_error: {
|
|
31991
|
-
description: "Indicates that this is an access code error.",
|
|
31992
|
-
enum: [true],
|
|
31993
|
-
type: "boolean"
|
|
31994
|
-
},
|
|
31995
|
-
message: {
|
|
31996
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
31997
|
-
type: "string"
|
|
31998
|
-
}
|
|
31999
|
-
},
|
|
32000
|
-
required: ["message", "is_access_code_error", "error_code"],
|
|
32001
|
-
type: "object"
|
|
32002
|
-
},
|
|
32003
31913
|
{
|
|
32004
31914
|
description: "August lock is missing a keypad.",
|
|
32005
31915
|
properties: {
|
|
@@ -32927,27 +32837,6 @@ var openapi = {
|
|
|
32927
32837
|
required: ["message", "warning_code"],
|
|
32928
32838
|
type: "object"
|
|
32929
32839
|
},
|
|
32930
|
-
{
|
|
32931
|
-
description: "Access code has not yet been fully moved to the device.",
|
|
32932
|
-
properties: {
|
|
32933
|
-
created_at: {
|
|
32934
|
-
description: "Date and time at which Seam created the warning.",
|
|
32935
|
-
format: "date-time",
|
|
32936
|
-
type: "string"
|
|
32937
|
-
},
|
|
32938
|
-
message: {
|
|
32939
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
32940
|
-
type: "string"
|
|
32941
|
-
},
|
|
32942
|
-
warning_code: {
|
|
32943
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
32944
|
-
enum: ["august_device_programming_delay"],
|
|
32945
|
-
type: "string"
|
|
32946
|
-
}
|
|
32947
|
-
},
|
|
32948
|
-
required: ["message", "warning_code"],
|
|
32949
|
-
type: "object"
|
|
32950
|
-
},
|
|
32951
32840
|
{
|
|
32952
32841
|
description: "August lock is temporarily offline.",
|
|
32953
32842
|
properties: {
|
|
@@ -57709,6 +57598,448 @@ var openapi = {
|
|
|
57709
57598
|
format: "uuid",
|
|
57710
57599
|
type: "string"
|
|
57711
57600
|
},
|
|
57601
|
+
omnitec_metadata: {
|
|
57602
|
+
description: "Omnitec-specific metadata to update",
|
|
57603
|
+
properties: {
|
|
57604
|
+
time_zone: {
|
|
57605
|
+
description: "IANA timezone for the Omnitec device",
|
|
57606
|
+
enum: [
|
|
57607
|
+
"Africa/Abidjan",
|
|
57608
|
+
"Africa/Accra",
|
|
57609
|
+
"Africa/Addis_Ababa",
|
|
57610
|
+
"Africa/Algiers",
|
|
57611
|
+
"Africa/Asmera",
|
|
57612
|
+
"Africa/Bamako",
|
|
57613
|
+
"Africa/Bangui",
|
|
57614
|
+
"Africa/Banjul",
|
|
57615
|
+
"Africa/Bissau",
|
|
57616
|
+
"Africa/Blantyre",
|
|
57617
|
+
"Africa/Brazzaville",
|
|
57618
|
+
"Africa/Bujumbura",
|
|
57619
|
+
"Africa/Cairo",
|
|
57620
|
+
"Africa/Casablanca",
|
|
57621
|
+
"Africa/Ceuta",
|
|
57622
|
+
"Africa/Conakry",
|
|
57623
|
+
"Africa/Dakar",
|
|
57624
|
+
"Africa/Dar_es_Salaam",
|
|
57625
|
+
"Africa/Djibouti",
|
|
57626
|
+
"Africa/Douala",
|
|
57627
|
+
"Africa/El_Aaiun",
|
|
57628
|
+
"Africa/Freetown",
|
|
57629
|
+
"Africa/Gaborone",
|
|
57630
|
+
"Africa/Harare",
|
|
57631
|
+
"Africa/Johannesburg",
|
|
57632
|
+
"Africa/Juba",
|
|
57633
|
+
"Africa/Kampala",
|
|
57634
|
+
"Africa/Khartoum",
|
|
57635
|
+
"Africa/Kigali",
|
|
57636
|
+
"Africa/Kinshasa",
|
|
57637
|
+
"Africa/Lagos",
|
|
57638
|
+
"Africa/Libreville",
|
|
57639
|
+
"Africa/Lome",
|
|
57640
|
+
"Africa/Luanda",
|
|
57641
|
+
"Africa/Lubumbashi",
|
|
57642
|
+
"Africa/Lusaka",
|
|
57643
|
+
"Africa/Malabo",
|
|
57644
|
+
"Africa/Maputo",
|
|
57645
|
+
"Africa/Maseru",
|
|
57646
|
+
"Africa/Mbabane",
|
|
57647
|
+
"Africa/Mogadishu",
|
|
57648
|
+
"Africa/Monrovia",
|
|
57649
|
+
"Africa/Nairobi",
|
|
57650
|
+
"Africa/Ndjamena",
|
|
57651
|
+
"Africa/Niamey",
|
|
57652
|
+
"Africa/Nouakchott",
|
|
57653
|
+
"Africa/Ouagadougou",
|
|
57654
|
+
"Africa/Porto-Novo",
|
|
57655
|
+
"Africa/Sao_Tome",
|
|
57656
|
+
"Africa/Tripoli",
|
|
57657
|
+
"Africa/Tunis",
|
|
57658
|
+
"Africa/Windhoek",
|
|
57659
|
+
"America/Adak",
|
|
57660
|
+
"America/Anchorage",
|
|
57661
|
+
"America/Anguilla",
|
|
57662
|
+
"America/Antigua",
|
|
57663
|
+
"America/Araguaina",
|
|
57664
|
+
"America/Argentina/La_Rioja",
|
|
57665
|
+
"America/Argentina/Rio_Gallegos",
|
|
57666
|
+
"America/Argentina/Salta",
|
|
57667
|
+
"America/Argentina/San_Juan",
|
|
57668
|
+
"America/Argentina/San_Luis",
|
|
57669
|
+
"America/Argentina/Tucuman",
|
|
57670
|
+
"America/Argentina/Ushuaia",
|
|
57671
|
+
"America/Aruba",
|
|
57672
|
+
"America/Asuncion",
|
|
57673
|
+
"America/Bahia",
|
|
57674
|
+
"America/Bahia_Banderas",
|
|
57675
|
+
"America/Barbados",
|
|
57676
|
+
"America/Belem",
|
|
57677
|
+
"America/Belize",
|
|
57678
|
+
"America/Blanc-Sablon",
|
|
57679
|
+
"America/Boa_Vista",
|
|
57680
|
+
"America/Bogota",
|
|
57681
|
+
"America/Boise",
|
|
57682
|
+
"America/Buenos_Aires",
|
|
57683
|
+
"America/Cambridge_Bay",
|
|
57684
|
+
"America/Campo_Grande",
|
|
57685
|
+
"America/Cancun",
|
|
57686
|
+
"America/Caracas",
|
|
57687
|
+
"America/Catamarca",
|
|
57688
|
+
"America/Cayenne",
|
|
57689
|
+
"America/Cayman",
|
|
57690
|
+
"America/Chicago",
|
|
57691
|
+
"America/Chihuahua",
|
|
57692
|
+
"America/Ciudad_Juarez",
|
|
57693
|
+
"America/Coral_Harbour",
|
|
57694
|
+
"America/Cordoba",
|
|
57695
|
+
"America/Costa_Rica",
|
|
57696
|
+
"America/Creston",
|
|
57697
|
+
"America/Cuiaba",
|
|
57698
|
+
"America/Curacao",
|
|
57699
|
+
"America/Danmarkshavn",
|
|
57700
|
+
"America/Dawson",
|
|
57701
|
+
"America/Dawson_Creek",
|
|
57702
|
+
"America/Denver",
|
|
57703
|
+
"America/Detroit",
|
|
57704
|
+
"America/Dominica",
|
|
57705
|
+
"America/Edmonton",
|
|
57706
|
+
"America/Eirunepe",
|
|
57707
|
+
"America/El_Salvador",
|
|
57708
|
+
"America/Fort_Nelson",
|
|
57709
|
+
"America/Fortaleza",
|
|
57710
|
+
"America/Glace_Bay",
|
|
57711
|
+
"America/Godthab",
|
|
57712
|
+
"America/Goose_Bay",
|
|
57713
|
+
"America/Grand_Turk",
|
|
57714
|
+
"America/Grenada",
|
|
57715
|
+
"America/Guadeloupe",
|
|
57716
|
+
"America/Guatemala",
|
|
57717
|
+
"America/Guayaquil",
|
|
57718
|
+
"America/Guyana",
|
|
57719
|
+
"America/Halifax",
|
|
57720
|
+
"America/Havana",
|
|
57721
|
+
"America/Hermosillo",
|
|
57722
|
+
"America/Indiana/Knox",
|
|
57723
|
+
"America/Indiana/Marengo",
|
|
57724
|
+
"America/Indiana/Petersburg",
|
|
57725
|
+
"America/Indiana/Tell_City",
|
|
57726
|
+
"America/Indiana/Vevay",
|
|
57727
|
+
"America/Indiana/Vincennes",
|
|
57728
|
+
"America/Indiana/Winamac",
|
|
57729
|
+
"America/Indianapolis",
|
|
57730
|
+
"America/Inuvik",
|
|
57731
|
+
"America/Iqaluit",
|
|
57732
|
+
"America/Jamaica",
|
|
57733
|
+
"America/Jujuy",
|
|
57734
|
+
"America/Juneau",
|
|
57735
|
+
"America/Kentucky/Monticello",
|
|
57736
|
+
"America/Kralendijk",
|
|
57737
|
+
"America/La_Paz",
|
|
57738
|
+
"America/Lima",
|
|
57739
|
+
"America/Los_Angeles",
|
|
57740
|
+
"America/Louisville",
|
|
57741
|
+
"America/Lower_Princes",
|
|
57742
|
+
"America/Maceio",
|
|
57743
|
+
"America/Managua",
|
|
57744
|
+
"America/Manaus",
|
|
57745
|
+
"America/Marigot",
|
|
57746
|
+
"America/Martinique",
|
|
57747
|
+
"America/Matamoros",
|
|
57748
|
+
"America/Mazatlan",
|
|
57749
|
+
"America/Mendoza",
|
|
57750
|
+
"America/Menominee",
|
|
57751
|
+
"America/Merida",
|
|
57752
|
+
"America/Metlakatla",
|
|
57753
|
+
"America/Mexico_City",
|
|
57754
|
+
"America/Miquelon",
|
|
57755
|
+
"America/Moncton",
|
|
57756
|
+
"America/Monterrey",
|
|
57757
|
+
"America/Montevideo",
|
|
57758
|
+
"America/Montreal",
|
|
57759
|
+
"America/Montserrat",
|
|
57760
|
+
"America/Nassau",
|
|
57761
|
+
"America/New_York",
|
|
57762
|
+
"America/Nipigon",
|
|
57763
|
+
"America/Nome",
|
|
57764
|
+
"America/Noronha",
|
|
57765
|
+
"America/North_Dakota/Beulah",
|
|
57766
|
+
"America/North_Dakota/Center",
|
|
57767
|
+
"America/North_Dakota/New_Salem",
|
|
57768
|
+
"America/Ojinaga",
|
|
57769
|
+
"America/Panama",
|
|
57770
|
+
"America/Pangnirtung",
|
|
57771
|
+
"America/Paramaribo",
|
|
57772
|
+
"America/Phoenix",
|
|
57773
|
+
"America/Port-au-Prince",
|
|
57774
|
+
"America/Port_of_Spain",
|
|
57775
|
+
"America/Porto_Velho",
|
|
57776
|
+
"America/Puerto_Rico",
|
|
57777
|
+
"America/Punta_Arenas",
|
|
57778
|
+
"America/Rainy_River",
|
|
57779
|
+
"America/Rankin_Inlet",
|
|
57780
|
+
"America/Recife",
|
|
57781
|
+
"America/Regina",
|
|
57782
|
+
"America/Resolute",
|
|
57783
|
+
"America/Rio_Branco",
|
|
57784
|
+
"America/Santa_Isabel",
|
|
57785
|
+
"America/Santarem",
|
|
57786
|
+
"America/Santiago",
|
|
57787
|
+
"America/Santo_Domingo",
|
|
57788
|
+
"America/Sao_Paulo",
|
|
57789
|
+
"America/Scoresbysund",
|
|
57790
|
+
"America/Sitka",
|
|
57791
|
+
"America/St_Barthelemy",
|
|
57792
|
+
"America/St_Johns",
|
|
57793
|
+
"America/St_Kitts",
|
|
57794
|
+
"America/St_Lucia",
|
|
57795
|
+
"America/St_Thomas",
|
|
57796
|
+
"America/St_Vincent",
|
|
57797
|
+
"America/Swift_Current",
|
|
57798
|
+
"America/Tegucigalpa",
|
|
57799
|
+
"America/Thule",
|
|
57800
|
+
"America/Thunder_Bay",
|
|
57801
|
+
"America/Tijuana",
|
|
57802
|
+
"America/Toronto",
|
|
57803
|
+
"America/Tortola",
|
|
57804
|
+
"America/Vancouver",
|
|
57805
|
+
"America/Whitehorse",
|
|
57806
|
+
"America/Winnipeg",
|
|
57807
|
+
"America/Yakutat",
|
|
57808
|
+
"America/Yellowknife",
|
|
57809
|
+
"Antarctica/Casey",
|
|
57810
|
+
"Antarctica/Davis",
|
|
57811
|
+
"Antarctica/DumontDUrville",
|
|
57812
|
+
"Antarctica/Macquarie",
|
|
57813
|
+
"Antarctica/Mawson",
|
|
57814
|
+
"Antarctica/McMurdo",
|
|
57815
|
+
"Antarctica/Palmer",
|
|
57816
|
+
"Antarctica/Rothera",
|
|
57817
|
+
"Antarctica/Syowa",
|
|
57818
|
+
"Antarctica/Troll",
|
|
57819
|
+
"Antarctica/Vostok",
|
|
57820
|
+
"Arctic/Longyearbyen",
|
|
57821
|
+
"Asia/Aden",
|
|
57822
|
+
"Asia/Almaty",
|
|
57823
|
+
"Asia/Amman",
|
|
57824
|
+
"Asia/Anadyr",
|
|
57825
|
+
"Asia/Aqtau",
|
|
57826
|
+
"Asia/Aqtobe",
|
|
57827
|
+
"Asia/Ashgabat",
|
|
57828
|
+
"Asia/Atyrau",
|
|
57829
|
+
"Asia/Baghdad",
|
|
57830
|
+
"Asia/Bahrain",
|
|
57831
|
+
"Asia/Baku",
|
|
57832
|
+
"Asia/Bangkok",
|
|
57833
|
+
"Asia/Barnaul",
|
|
57834
|
+
"Asia/Beirut",
|
|
57835
|
+
"Asia/Bishkek",
|
|
57836
|
+
"Asia/Brunei",
|
|
57837
|
+
"Asia/Calcutta",
|
|
57838
|
+
"Asia/Chita",
|
|
57839
|
+
"Asia/Choibalsan",
|
|
57840
|
+
"Asia/Colombo",
|
|
57841
|
+
"Asia/Damascus",
|
|
57842
|
+
"Asia/Dhaka",
|
|
57843
|
+
"Asia/Dili",
|
|
57844
|
+
"Asia/Dubai",
|
|
57845
|
+
"Asia/Dushanbe",
|
|
57846
|
+
"Asia/Famagusta",
|
|
57847
|
+
"Asia/Gaza",
|
|
57848
|
+
"Asia/Hebron",
|
|
57849
|
+
"Asia/Hong_Kong",
|
|
57850
|
+
"Asia/Hovd",
|
|
57851
|
+
"Asia/Irkutsk",
|
|
57852
|
+
"Asia/Jakarta",
|
|
57853
|
+
"Asia/Jayapura",
|
|
57854
|
+
"Asia/Jerusalem",
|
|
57855
|
+
"Asia/Kabul",
|
|
57856
|
+
"Asia/Kamchatka",
|
|
57857
|
+
"Asia/Karachi",
|
|
57858
|
+
"Asia/Katmandu",
|
|
57859
|
+
"Asia/Khandyga",
|
|
57860
|
+
"Asia/Krasnoyarsk",
|
|
57861
|
+
"Asia/Kuala_Lumpur",
|
|
57862
|
+
"Asia/Kuching",
|
|
57863
|
+
"Asia/Kuwait",
|
|
57864
|
+
"Asia/Macau",
|
|
57865
|
+
"Asia/Magadan",
|
|
57866
|
+
"Asia/Makassar",
|
|
57867
|
+
"Asia/Manila",
|
|
57868
|
+
"Asia/Muscat",
|
|
57869
|
+
"Asia/Nicosia",
|
|
57870
|
+
"Asia/Novokuznetsk",
|
|
57871
|
+
"Asia/Novosibirsk",
|
|
57872
|
+
"Asia/Omsk",
|
|
57873
|
+
"Asia/Oral",
|
|
57874
|
+
"Asia/Phnom_Penh",
|
|
57875
|
+
"Asia/Pontianak",
|
|
57876
|
+
"Asia/Pyongyang",
|
|
57877
|
+
"Asia/Qatar",
|
|
57878
|
+
"Asia/Qostanay",
|
|
57879
|
+
"Asia/Qyzylorda",
|
|
57880
|
+
"Asia/Rangoon",
|
|
57881
|
+
"Asia/Riyadh",
|
|
57882
|
+
"Asia/Saigon",
|
|
57883
|
+
"Asia/Sakhalin",
|
|
57884
|
+
"Asia/Samarkand",
|
|
57885
|
+
"Asia/Seoul",
|
|
57886
|
+
"Asia/Shanghai",
|
|
57887
|
+
"Asia/Singapore",
|
|
57888
|
+
"Asia/Srednekolymsk",
|
|
57889
|
+
"Asia/Taipei",
|
|
57890
|
+
"Asia/Tashkent",
|
|
57891
|
+
"Asia/Tbilisi",
|
|
57892
|
+
"Asia/Tehran",
|
|
57893
|
+
"Asia/Thimphu",
|
|
57894
|
+
"Asia/Tokyo",
|
|
57895
|
+
"Asia/Tomsk",
|
|
57896
|
+
"Asia/Ulaanbaatar",
|
|
57897
|
+
"Asia/Urumqi",
|
|
57898
|
+
"Asia/Ust-Nera",
|
|
57899
|
+
"Asia/Vientiane",
|
|
57900
|
+
"Asia/Vladivostok",
|
|
57901
|
+
"Asia/Yakutsk",
|
|
57902
|
+
"Asia/Yekaterinburg",
|
|
57903
|
+
"Asia/Yerevan",
|
|
57904
|
+
"Atlantic/Azores",
|
|
57905
|
+
"Atlantic/Bermuda",
|
|
57906
|
+
"Atlantic/Canary",
|
|
57907
|
+
"Atlantic/Cape_Verde",
|
|
57908
|
+
"Atlantic/Faeroe",
|
|
57909
|
+
"Atlantic/Madeira",
|
|
57910
|
+
"Atlantic/Reykjavik",
|
|
57911
|
+
"Atlantic/South_Georgia",
|
|
57912
|
+
"Atlantic/St_Helena",
|
|
57913
|
+
"Atlantic/Stanley",
|
|
57914
|
+
"Australia/Adelaide",
|
|
57915
|
+
"Australia/Brisbane",
|
|
57916
|
+
"Australia/Broken_Hill",
|
|
57917
|
+
"Australia/Currie",
|
|
57918
|
+
"Australia/Darwin",
|
|
57919
|
+
"Australia/Eucla",
|
|
57920
|
+
"Australia/Hobart",
|
|
57921
|
+
"Australia/Lindeman",
|
|
57922
|
+
"Australia/Lord_Howe",
|
|
57923
|
+
"Australia/Melbourne",
|
|
57924
|
+
"Australia/Perth",
|
|
57925
|
+
"Australia/Sydney",
|
|
57926
|
+
"Europe/Amsterdam",
|
|
57927
|
+
"Europe/Andorra",
|
|
57928
|
+
"Europe/Astrakhan",
|
|
57929
|
+
"Europe/Athens",
|
|
57930
|
+
"Europe/Belgrade",
|
|
57931
|
+
"Europe/Berlin",
|
|
57932
|
+
"Europe/Bratislava",
|
|
57933
|
+
"Europe/Brussels",
|
|
57934
|
+
"Europe/Bucharest",
|
|
57935
|
+
"Europe/Budapest",
|
|
57936
|
+
"Europe/Busingen",
|
|
57937
|
+
"Europe/Chisinau",
|
|
57938
|
+
"Europe/Copenhagen",
|
|
57939
|
+
"Europe/Dublin",
|
|
57940
|
+
"Europe/Gibraltar",
|
|
57941
|
+
"Europe/Guernsey",
|
|
57942
|
+
"Europe/Helsinki",
|
|
57943
|
+
"Europe/Isle_of_Man",
|
|
57944
|
+
"Europe/Istanbul",
|
|
57945
|
+
"Europe/Jersey",
|
|
57946
|
+
"Europe/Kaliningrad",
|
|
57947
|
+
"Europe/Kiev",
|
|
57948
|
+
"Europe/Kirov",
|
|
57949
|
+
"Europe/Lisbon",
|
|
57950
|
+
"Europe/Ljubljana",
|
|
57951
|
+
"Europe/London",
|
|
57952
|
+
"Europe/Luxembourg",
|
|
57953
|
+
"Europe/Madrid",
|
|
57954
|
+
"Europe/Malta",
|
|
57955
|
+
"Europe/Mariehamn",
|
|
57956
|
+
"Europe/Minsk",
|
|
57957
|
+
"Europe/Monaco",
|
|
57958
|
+
"Europe/Moscow",
|
|
57959
|
+
"Europe/Oslo",
|
|
57960
|
+
"Europe/Paris",
|
|
57961
|
+
"Europe/Podgorica",
|
|
57962
|
+
"Europe/Prague",
|
|
57963
|
+
"Europe/Riga",
|
|
57964
|
+
"Europe/Rome",
|
|
57965
|
+
"Europe/Samara",
|
|
57966
|
+
"Europe/San_Marino",
|
|
57967
|
+
"Europe/Sarajevo",
|
|
57968
|
+
"Europe/Saratov",
|
|
57969
|
+
"Europe/Simferopol",
|
|
57970
|
+
"Europe/Skopje",
|
|
57971
|
+
"Europe/Sofia",
|
|
57972
|
+
"Europe/Stockholm",
|
|
57973
|
+
"Europe/Tallinn",
|
|
57974
|
+
"Europe/Tirane",
|
|
57975
|
+
"Europe/Ulyanovsk",
|
|
57976
|
+
"Europe/Uzhgorod",
|
|
57977
|
+
"Europe/Vaduz",
|
|
57978
|
+
"Europe/Vatican",
|
|
57979
|
+
"Europe/Vienna",
|
|
57980
|
+
"Europe/Vilnius",
|
|
57981
|
+
"Europe/Volgograd",
|
|
57982
|
+
"Europe/Warsaw",
|
|
57983
|
+
"Europe/Zagreb",
|
|
57984
|
+
"Europe/Zaporozhye",
|
|
57985
|
+
"Europe/Zurich",
|
|
57986
|
+
"Indian/Antananarivo",
|
|
57987
|
+
"Indian/Chagos",
|
|
57988
|
+
"Indian/Christmas",
|
|
57989
|
+
"Indian/Cocos",
|
|
57990
|
+
"Indian/Comoro",
|
|
57991
|
+
"Indian/Kerguelen",
|
|
57992
|
+
"Indian/Mahe",
|
|
57993
|
+
"Indian/Maldives",
|
|
57994
|
+
"Indian/Mauritius",
|
|
57995
|
+
"Indian/Mayotte",
|
|
57996
|
+
"Indian/Reunion",
|
|
57997
|
+
"Pacific/Apia",
|
|
57998
|
+
"Pacific/Auckland",
|
|
57999
|
+
"Pacific/Bougainville",
|
|
58000
|
+
"Pacific/Chatham",
|
|
58001
|
+
"Pacific/Easter",
|
|
58002
|
+
"Pacific/Efate",
|
|
58003
|
+
"Pacific/Enderbury",
|
|
58004
|
+
"Pacific/Fakaofo",
|
|
58005
|
+
"Pacific/Fiji",
|
|
58006
|
+
"Pacific/Funafuti",
|
|
58007
|
+
"Pacific/Galapagos",
|
|
58008
|
+
"Pacific/Gambier",
|
|
58009
|
+
"Pacific/Guadalcanal",
|
|
58010
|
+
"Pacific/Guam",
|
|
58011
|
+
"Pacific/Honolulu",
|
|
58012
|
+
"Pacific/Johnston",
|
|
58013
|
+
"Pacific/Kiritimati",
|
|
58014
|
+
"Pacific/Kosrae",
|
|
58015
|
+
"Pacific/Kwajalein",
|
|
58016
|
+
"Pacific/Majuro",
|
|
58017
|
+
"Pacific/Marquesas",
|
|
58018
|
+
"Pacific/Midway",
|
|
58019
|
+
"Pacific/Nauru",
|
|
58020
|
+
"Pacific/Niue",
|
|
58021
|
+
"Pacific/Norfolk",
|
|
58022
|
+
"Pacific/Noumea",
|
|
58023
|
+
"Pacific/Pago_Pago",
|
|
58024
|
+
"Pacific/Palau",
|
|
58025
|
+
"Pacific/Pitcairn",
|
|
58026
|
+
"Pacific/Ponape",
|
|
58027
|
+
"Pacific/Port_Moresby",
|
|
58028
|
+
"Pacific/Rarotonga",
|
|
58029
|
+
"Pacific/Saipan",
|
|
58030
|
+
"Pacific/Tahiti",
|
|
58031
|
+
"Pacific/Tarawa",
|
|
58032
|
+
"Pacific/Tongatapu",
|
|
58033
|
+
"Pacific/Truk",
|
|
58034
|
+
"Pacific/Wake",
|
|
58035
|
+
"Pacific/Wallis"
|
|
58036
|
+
],
|
|
58037
|
+
type: "string"
|
|
58038
|
+
}
|
|
58039
|
+
},
|
|
58040
|
+
required: ["time_zone"],
|
|
58041
|
+
type: "object"
|
|
58042
|
+
},
|
|
57712
58043
|
schlage_metadata: {
|
|
57713
58044
|
description: "Schlage-specific metadata to update",
|
|
57714
58045
|
properties: {
|