@seamapi/types 1.797.0 → 1.799.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 +584 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +447 -0
- package/dist/index.cjs +584 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +99 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +16 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +43 -0
- package/lib/seam/connect/openapi.d.ts +267 -0
- package/lib/seam/connect/openapi.js +573 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +104 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +21 -0
- package/src/lib/seam/connect/openapi.ts +594 -0
- package/src/lib/seam/connect/route-types.ts +557 -0
|
@@ -2474,6 +2474,33 @@ export default {
|
|
|
2474
2474
|
format: 'date-time',
|
|
2475
2475
|
type: 'string',
|
|
2476
2476
|
},
|
|
2477
|
+
failed_devices: {
|
|
2478
|
+
description:
|
|
2479
|
+
'Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget).',
|
|
2480
|
+
items: {
|
|
2481
|
+
properties: {
|
|
2482
|
+
device_id: {
|
|
2483
|
+
description:
|
|
2484
|
+
'Device whose access code could not be revoked.',
|
|
2485
|
+
format: 'uuid',
|
|
2486
|
+
type: 'string',
|
|
2487
|
+
},
|
|
2488
|
+
error_code: {
|
|
2489
|
+
description:
|
|
2490
|
+
'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
2491
|
+
type: 'string',
|
|
2492
|
+
},
|
|
2493
|
+
message: {
|
|
2494
|
+
description:
|
|
2495
|
+
'Human-readable description of why revocation failed.',
|
|
2496
|
+
type: 'string',
|
|
2497
|
+
},
|
|
2498
|
+
},
|
|
2499
|
+
required: ['device_id', 'error_code', 'message'],
|
|
2500
|
+
type: 'object',
|
|
2501
|
+
},
|
|
2502
|
+
type: 'array',
|
|
2503
|
+
},
|
|
2477
2504
|
message: {
|
|
2478
2505
|
description:
|
|
2479
2506
|
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
@@ -36004,6 +36031,37 @@ export default {
|
|
|
36004
36031
|
format: 'date-time',
|
|
36005
36032
|
type: 'string',
|
|
36006
36033
|
},
|
|
36034
|
+
failed_devices: {
|
|
36035
|
+
description:
|
|
36036
|
+
'Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget).',
|
|
36037
|
+
items: {
|
|
36038
|
+
properties: {
|
|
36039
|
+
device_id: {
|
|
36040
|
+
description:
|
|
36041
|
+
'Device whose access code could not be revoked.',
|
|
36042
|
+
format: 'uuid',
|
|
36043
|
+
type: 'string',
|
|
36044
|
+
},
|
|
36045
|
+
error_code: {
|
|
36046
|
+
description:
|
|
36047
|
+
'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
36048
|
+
type: 'string',
|
|
36049
|
+
},
|
|
36050
|
+
message: {
|
|
36051
|
+
description:
|
|
36052
|
+
'Human-readable description of why revocation failed.',
|
|
36053
|
+
type: 'string',
|
|
36054
|
+
},
|
|
36055
|
+
},
|
|
36056
|
+
required: [
|
|
36057
|
+
'device_id',
|
|
36058
|
+
'error_code',
|
|
36059
|
+
'message',
|
|
36060
|
+
],
|
|
36061
|
+
type: 'object',
|
|
36062
|
+
},
|
|
36063
|
+
type: 'array',
|
|
36064
|
+
},
|
|
36007
36065
|
message: {
|
|
36008
36066
|
description:
|
|
36009
36067
|
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
@@ -36630,6 +36688,37 @@ export default {
|
|
|
36630
36688
|
format: 'date-time',
|
|
36631
36689
|
type: 'string',
|
|
36632
36690
|
},
|
|
36691
|
+
failed_devices: {
|
|
36692
|
+
description:
|
|
36693
|
+
'Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget).',
|
|
36694
|
+
items: {
|
|
36695
|
+
properties: {
|
|
36696
|
+
device_id: {
|
|
36697
|
+
description:
|
|
36698
|
+
'Device whose access code could not be revoked.',
|
|
36699
|
+
format: 'uuid',
|
|
36700
|
+
type: 'string',
|
|
36701
|
+
},
|
|
36702
|
+
error_code: {
|
|
36703
|
+
description:
|
|
36704
|
+
'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
36705
|
+
type: 'string',
|
|
36706
|
+
},
|
|
36707
|
+
message: {
|
|
36708
|
+
description:
|
|
36709
|
+
'Human-readable description of why revocation failed.',
|
|
36710
|
+
type: 'string',
|
|
36711
|
+
},
|
|
36712
|
+
},
|
|
36713
|
+
required: [
|
|
36714
|
+
'device_id',
|
|
36715
|
+
'error_code',
|
|
36716
|
+
'message',
|
|
36717
|
+
],
|
|
36718
|
+
type: 'object',
|
|
36719
|
+
},
|
|
36720
|
+
type: 'array',
|
|
36721
|
+
},
|
|
36633
36722
|
message: {
|
|
36634
36723
|
description:
|
|
36635
36724
|
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
@@ -37305,6 +37394,37 @@ export default {
|
|
|
37305
37394
|
format: 'date-time',
|
|
37306
37395
|
type: 'string',
|
|
37307
37396
|
},
|
|
37397
|
+
failed_devices: {
|
|
37398
|
+
description:
|
|
37399
|
+
'Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget).',
|
|
37400
|
+
items: {
|
|
37401
|
+
properties: {
|
|
37402
|
+
device_id: {
|
|
37403
|
+
description:
|
|
37404
|
+
'Device whose access code could not be revoked.',
|
|
37405
|
+
format: 'uuid',
|
|
37406
|
+
type: 'string',
|
|
37407
|
+
},
|
|
37408
|
+
error_code: {
|
|
37409
|
+
description:
|
|
37410
|
+
'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
37411
|
+
type: 'string',
|
|
37412
|
+
},
|
|
37413
|
+
message: {
|
|
37414
|
+
description:
|
|
37415
|
+
'Human-readable description of why revocation failed.',
|
|
37416
|
+
type: 'string',
|
|
37417
|
+
},
|
|
37418
|
+
},
|
|
37419
|
+
required: [
|
|
37420
|
+
'device_id',
|
|
37421
|
+
'error_code',
|
|
37422
|
+
'message',
|
|
37423
|
+
],
|
|
37424
|
+
type: 'object',
|
|
37425
|
+
},
|
|
37426
|
+
type: 'array',
|
|
37427
|
+
},
|
|
37308
37428
|
message: {
|
|
37309
37429
|
description:
|
|
37310
37430
|
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
@@ -37967,6 +38087,37 @@ export default {
|
|
|
37967
38087
|
format: 'date-time',
|
|
37968
38088
|
type: 'string',
|
|
37969
38089
|
},
|
|
38090
|
+
failed_devices: {
|
|
38091
|
+
description:
|
|
38092
|
+
'Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget).',
|
|
38093
|
+
items: {
|
|
38094
|
+
properties: {
|
|
38095
|
+
device_id: {
|
|
38096
|
+
description:
|
|
38097
|
+
'Device whose access code could not be revoked.',
|
|
38098
|
+
format: 'uuid',
|
|
38099
|
+
type: 'string',
|
|
38100
|
+
},
|
|
38101
|
+
error_code: {
|
|
38102
|
+
description:
|
|
38103
|
+
'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
38104
|
+
type: 'string',
|
|
38105
|
+
},
|
|
38106
|
+
message: {
|
|
38107
|
+
description:
|
|
38108
|
+
'Human-readable description of why revocation failed.',
|
|
38109
|
+
type: 'string',
|
|
38110
|
+
},
|
|
38111
|
+
},
|
|
38112
|
+
required: [
|
|
38113
|
+
'device_id',
|
|
38114
|
+
'error_code',
|
|
38115
|
+
'message',
|
|
38116
|
+
],
|
|
38117
|
+
type: 'object',
|
|
38118
|
+
},
|
|
38119
|
+
type: 'array',
|
|
38120
|
+
},
|
|
37970
38121
|
message: {
|
|
37971
38122
|
description:
|
|
37972
38123
|
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
@@ -53901,6 +54052,449 @@ export default {
|
|
|
53901
54052
|
format: 'uuid',
|
|
53902
54053
|
type: 'string',
|
|
53903
54054
|
},
|
|
54055
|
+
schlage_metadata: {
|
|
54056
|
+
description: 'Schlage-specific metadata to update',
|
|
54057
|
+
properties: {
|
|
54058
|
+
time_zone: {
|
|
54059
|
+
description:
|
|
54060
|
+
'IANA timezone for the Schlage device',
|
|
54061
|
+
enum: [
|
|
54062
|
+
'Africa/Abidjan',
|
|
54063
|
+
'Africa/Accra',
|
|
54064
|
+
'Africa/Addis_Ababa',
|
|
54065
|
+
'Africa/Algiers',
|
|
54066
|
+
'Africa/Asmera',
|
|
54067
|
+
'Africa/Bamako',
|
|
54068
|
+
'Africa/Bangui',
|
|
54069
|
+
'Africa/Banjul',
|
|
54070
|
+
'Africa/Bissau',
|
|
54071
|
+
'Africa/Blantyre',
|
|
54072
|
+
'Africa/Brazzaville',
|
|
54073
|
+
'Africa/Bujumbura',
|
|
54074
|
+
'Africa/Cairo',
|
|
54075
|
+
'Africa/Casablanca',
|
|
54076
|
+
'Africa/Ceuta',
|
|
54077
|
+
'Africa/Conakry',
|
|
54078
|
+
'Africa/Dakar',
|
|
54079
|
+
'Africa/Dar_es_Salaam',
|
|
54080
|
+
'Africa/Djibouti',
|
|
54081
|
+
'Africa/Douala',
|
|
54082
|
+
'Africa/El_Aaiun',
|
|
54083
|
+
'Africa/Freetown',
|
|
54084
|
+
'Africa/Gaborone',
|
|
54085
|
+
'Africa/Harare',
|
|
54086
|
+
'Africa/Johannesburg',
|
|
54087
|
+
'Africa/Juba',
|
|
54088
|
+
'Africa/Kampala',
|
|
54089
|
+
'Africa/Khartoum',
|
|
54090
|
+
'Africa/Kigali',
|
|
54091
|
+
'Africa/Kinshasa',
|
|
54092
|
+
'Africa/Lagos',
|
|
54093
|
+
'Africa/Libreville',
|
|
54094
|
+
'Africa/Lome',
|
|
54095
|
+
'Africa/Luanda',
|
|
54096
|
+
'Africa/Lubumbashi',
|
|
54097
|
+
'Africa/Lusaka',
|
|
54098
|
+
'Africa/Malabo',
|
|
54099
|
+
'Africa/Maputo',
|
|
54100
|
+
'Africa/Maseru',
|
|
54101
|
+
'Africa/Mbabane',
|
|
54102
|
+
'Africa/Mogadishu',
|
|
54103
|
+
'Africa/Monrovia',
|
|
54104
|
+
'Africa/Nairobi',
|
|
54105
|
+
'Africa/Ndjamena',
|
|
54106
|
+
'Africa/Niamey',
|
|
54107
|
+
'Africa/Nouakchott',
|
|
54108
|
+
'Africa/Ouagadougou',
|
|
54109
|
+
'Africa/Porto-Novo',
|
|
54110
|
+
'Africa/Sao_Tome',
|
|
54111
|
+
'Africa/Tripoli',
|
|
54112
|
+
'Africa/Tunis',
|
|
54113
|
+
'Africa/Windhoek',
|
|
54114
|
+
'America/Adak',
|
|
54115
|
+
'America/Anchorage',
|
|
54116
|
+
'America/Anguilla',
|
|
54117
|
+
'America/Antigua',
|
|
54118
|
+
'America/Araguaina',
|
|
54119
|
+
'America/Argentina/La_Rioja',
|
|
54120
|
+
'America/Argentina/Rio_Gallegos',
|
|
54121
|
+
'America/Argentina/Salta',
|
|
54122
|
+
'America/Argentina/San_Juan',
|
|
54123
|
+
'America/Argentina/San_Luis',
|
|
54124
|
+
'America/Argentina/Tucuman',
|
|
54125
|
+
'America/Argentina/Ushuaia',
|
|
54126
|
+
'America/Aruba',
|
|
54127
|
+
'America/Asuncion',
|
|
54128
|
+
'America/Bahia',
|
|
54129
|
+
'America/Bahia_Banderas',
|
|
54130
|
+
'America/Barbados',
|
|
54131
|
+
'America/Belem',
|
|
54132
|
+
'America/Belize',
|
|
54133
|
+
'America/Blanc-Sablon',
|
|
54134
|
+
'America/Boa_Vista',
|
|
54135
|
+
'America/Bogota',
|
|
54136
|
+
'America/Boise',
|
|
54137
|
+
'America/Buenos_Aires',
|
|
54138
|
+
'America/Cambridge_Bay',
|
|
54139
|
+
'America/Campo_Grande',
|
|
54140
|
+
'America/Cancun',
|
|
54141
|
+
'America/Caracas',
|
|
54142
|
+
'America/Catamarca',
|
|
54143
|
+
'America/Cayenne',
|
|
54144
|
+
'America/Cayman',
|
|
54145
|
+
'America/Chicago',
|
|
54146
|
+
'America/Chihuahua',
|
|
54147
|
+
'America/Ciudad_Juarez',
|
|
54148
|
+
'America/Coral_Harbour',
|
|
54149
|
+
'America/Cordoba',
|
|
54150
|
+
'America/Costa_Rica',
|
|
54151
|
+
'America/Creston',
|
|
54152
|
+
'America/Cuiaba',
|
|
54153
|
+
'America/Curacao',
|
|
54154
|
+
'America/Danmarkshavn',
|
|
54155
|
+
'America/Dawson',
|
|
54156
|
+
'America/Dawson_Creek',
|
|
54157
|
+
'America/Denver',
|
|
54158
|
+
'America/Detroit',
|
|
54159
|
+
'America/Dominica',
|
|
54160
|
+
'America/Edmonton',
|
|
54161
|
+
'America/Eirunepe',
|
|
54162
|
+
'America/El_Salvador',
|
|
54163
|
+
'America/Fort_Nelson',
|
|
54164
|
+
'America/Fortaleza',
|
|
54165
|
+
'America/Glace_Bay',
|
|
54166
|
+
'America/Godthab',
|
|
54167
|
+
'America/Goose_Bay',
|
|
54168
|
+
'America/Grand_Turk',
|
|
54169
|
+
'America/Grenada',
|
|
54170
|
+
'America/Guadeloupe',
|
|
54171
|
+
'America/Guatemala',
|
|
54172
|
+
'America/Guayaquil',
|
|
54173
|
+
'America/Guyana',
|
|
54174
|
+
'America/Halifax',
|
|
54175
|
+
'America/Havana',
|
|
54176
|
+
'America/Hermosillo',
|
|
54177
|
+
'America/Indiana/Knox',
|
|
54178
|
+
'America/Indiana/Marengo',
|
|
54179
|
+
'America/Indiana/Petersburg',
|
|
54180
|
+
'America/Indiana/Tell_City',
|
|
54181
|
+
'America/Indiana/Vevay',
|
|
54182
|
+
'America/Indiana/Vincennes',
|
|
54183
|
+
'America/Indiana/Winamac',
|
|
54184
|
+
'America/Indianapolis',
|
|
54185
|
+
'America/Inuvik',
|
|
54186
|
+
'America/Iqaluit',
|
|
54187
|
+
'America/Jamaica',
|
|
54188
|
+
'America/Jujuy',
|
|
54189
|
+
'America/Juneau',
|
|
54190
|
+
'America/Kentucky/Monticello',
|
|
54191
|
+
'America/Kralendijk',
|
|
54192
|
+
'America/La_Paz',
|
|
54193
|
+
'America/Lima',
|
|
54194
|
+
'America/Los_Angeles',
|
|
54195
|
+
'America/Louisville',
|
|
54196
|
+
'America/Lower_Princes',
|
|
54197
|
+
'America/Maceio',
|
|
54198
|
+
'America/Managua',
|
|
54199
|
+
'America/Manaus',
|
|
54200
|
+
'America/Marigot',
|
|
54201
|
+
'America/Martinique',
|
|
54202
|
+
'America/Matamoros',
|
|
54203
|
+
'America/Mazatlan',
|
|
54204
|
+
'America/Mendoza',
|
|
54205
|
+
'America/Menominee',
|
|
54206
|
+
'America/Merida',
|
|
54207
|
+
'America/Metlakatla',
|
|
54208
|
+
'America/Mexico_City',
|
|
54209
|
+
'America/Miquelon',
|
|
54210
|
+
'America/Moncton',
|
|
54211
|
+
'America/Monterrey',
|
|
54212
|
+
'America/Montevideo',
|
|
54213
|
+
'America/Montreal',
|
|
54214
|
+
'America/Montserrat',
|
|
54215
|
+
'America/Nassau',
|
|
54216
|
+
'America/New_York',
|
|
54217
|
+
'America/Nipigon',
|
|
54218
|
+
'America/Nome',
|
|
54219
|
+
'America/Noronha',
|
|
54220
|
+
'America/North_Dakota/Beulah',
|
|
54221
|
+
'America/North_Dakota/Center',
|
|
54222
|
+
'America/North_Dakota/New_Salem',
|
|
54223
|
+
'America/Ojinaga',
|
|
54224
|
+
'America/Panama',
|
|
54225
|
+
'America/Pangnirtung',
|
|
54226
|
+
'America/Paramaribo',
|
|
54227
|
+
'America/Phoenix',
|
|
54228
|
+
'America/Port-au-Prince',
|
|
54229
|
+
'America/Port_of_Spain',
|
|
54230
|
+
'America/Porto_Velho',
|
|
54231
|
+
'America/Puerto_Rico',
|
|
54232
|
+
'America/Punta_Arenas',
|
|
54233
|
+
'America/Rainy_River',
|
|
54234
|
+
'America/Rankin_Inlet',
|
|
54235
|
+
'America/Recife',
|
|
54236
|
+
'America/Regina',
|
|
54237
|
+
'America/Resolute',
|
|
54238
|
+
'America/Rio_Branco',
|
|
54239
|
+
'America/Santa_Isabel',
|
|
54240
|
+
'America/Santarem',
|
|
54241
|
+
'America/Santiago',
|
|
54242
|
+
'America/Santo_Domingo',
|
|
54243
|
+
'America/Sao_Paulo',
|
|
54244
|
+
'America/Scoresbysund',
|
|
54245
|
+
'America/Sitka',
|
|
54246
|
+
'America/St_Barthelemy',
|
|
54247
|
+
'America/St_Johns',
|
|
54248
|
+
'America/St_Kitts',
|
|
54249
|
+
'America/St_Lucia',
|
|
54250
|
+
'America/St_Thomas',
|
|
54251
|
+
'America/St_Vincent',
|
|
54252
|
+
'America/Swift_Current',
|
|
54253
|
+
'America/Tegucigalpa',
|
|
54254
|
+
'America/Thule',
|
|
54255
|
+
'America/Thunder_Bay',
|
|
54256
|
+
'America/Tijuana',
|
|
54257
|
+
'America/Toronto',
|
|
54258
|
+
'America/Tortola',
|
|
54259
|
+
'America/Vancouver',
|
|
54260
|
+
'America/Whitehorse',
|
|
54261
|
+
'America/Winnipeg',
|
|
54262
|
+
'America/Yakutat',
|
|
54263
|
+
'America/Yellowknife',
|
|
54264
|
+
'Antarctica/Casey',
|
|
54265
|
+
'Antarctica/Davis',
|
|
54266
|
+
'Antarctica/DumontDUrville',
|
|
54267
|
+
'Antarctica/Macquarie',
|
|
54268
|
+
'Antarctica/Mawson',
|
|
54269
|
+
'Antarctica/McMurdo',
|
|
54270
|
+
'Antarctica/Palmer',
|
|
54271
|
+
'Antarctica/Rothera',
|
|
54272
|
+
'Antarctica/Syowa',
|
|
54273
|
+
'Antarctica/Troll',
|
|
54274
|
+
'Antarctica/Vostok',
|
|
54275
|
+
'Arctic/Longyearbyen',
|
|
54276
|
+
'Asia/Aden',
|
|
54277
|
+
'Asia/Almaty',
|
|
54278
|
+
'Asia/Amman',
|
|
54279
|
+
'Asia/Anadyr',
|
|
54280
|
+
'Asia/Aqtau',
|
|
54281
|
+
'Asia/Aqtobe',
|
|
54282
|
+
'Asia/Ashgabat',
|
|
54283
|
+
'Asia/Atyrau',
|
|
54284
|
+
'Asia/Baghdad',
|
|
54285
|
+
'Asia/Bahrain',
|
|
54286
|
+
'Asia/Baku',
|
|
54287
|
+
'Asia/Bangkok',
|
|
54288
|
+
'Asia/Barnaul',
|
|
54289
|
+
'Asia/Beirut',
|
|
54290
|
+
'Asia/Bishkek',
|
|
54291
|
+
'Asia/Brunei',
|
|
54292
|
+
'Asia/Calcutta',
|
|
54293
|
+
'Asia/Chita',
|
|
54294
|
+
'Asia/Choibalsan',
|
|
54295
|
+
'Asia/Colombo',
|
|
54296
|
+
'Asia/Damascus',
|
|
54297
|
+
'Asia/Dhaka',
|
|
54298
|
+
'Asia/Dili',
|
|
54299
|
+
'Asia/Dubai',
|
|
54300
|
+
'Asia/Dushanbe',
|
|
54301
|
+
'Asia/Famagusta',
|
|
54302
|
+
'Asia/Gaza',
|
|
54303
|
+
'Asia/Hebron',
|
|
54304
|
+
'Asia/Hong_Kong',
|
|
54305
|
+
'Asia/Hovd',
|
|
54306
|
+
'Asia/Irkutsk',
|
|
54307
|
+
'Asia/Jakarta',
|
|
54308
|
+
'Asia/Jayapura',
|
|
54309
|
+
'Asia/Jerusalem',
|
|
54310
|
+
'Asia/Kabul',
|
|
54311
|
+
'Asia/Kamchatka',
|
|
54312
|
+
'Asia/Karachi',
|
|
54313
|
+
'Asia/Katmandu',
|
|
54314
|
+
'Asia/Khandyga',
|
|
54315
|
+
'Asia/Krasnoyarsk',
|
|
54316
|
+
'Asia/Kuala_Lumpur',
|
|
54317
|
+
'Asia/Kuching',
|
|
54318
|
+
'Asia/Kuwait',
|
|
54319
|
+
'Asia/Macau',
|
|
54320
|
+
'Asia/Magadan',
|
|
54321
|
+
'Asia/Makassar',
|
|
54322
|
+
'Asia/Manila',
|
|
54323
|
+
'Asia/Muscat',
|
|
54324
|
+
'Asia/Nicosia',
|
|
54325
|
+
'Asia/Novokuznetsk',
|
|
54326
|
+
'Asia/Novosibirsk',
|
|
54327
|
+
'Asia/Omsk',
|
|
54328
|
+
'Asia/Oral',
|
|
54329
|
+
'Asia/Phnom_Penh',
|
|
54330
|
+
'Asia/Pontianak',
|
|
54331
|
+
'Asia/Pyongyang',
|
|
54332
|
+
'Asia/Qatar',
|
|
54333
|
+
'Asia/Qostanay',
|
|
54334
|
+
'Asia/Qyzylorda',
|
|
54335
|
+
'Asia/Rangoon',
|
|
54336
|
+
'Asia/Riyadh',
|
|
54337
|
+
'Asia/Saigon',
|
|
54338
|
+
'Asia/Sakhalin',
|
|
54339
|
+
'Asia/Samarkand',
|
|
54340
|
+
'Asia/Seoul',
|
|
54341
|
+
'Asia/Shanghai',
|
|
54342
|
+
'Asia/Singapore',
|
|
54343
|
+
'Asia/Srednekolymsk',
|
|
54344
|
+
'Asia/Taipei',
|
|
54345
|
+
'Asia/Tashkent',
|
|
54346
|
+
'Asia/Tbilisi',
|
|
54347
|
+
'Asia/Tehran',
|
|
54348
|
+
'Asia/Thimphu',
|
|
54349
|
+
'Asia/Tokyo',
|
|
54350
|
+
'Asia/Tomsk',
|
|
54351
|
+
'Asia/Ulaanbaatar',
|
|
54352
|
+
'Asia/Urumqi',
|
|
54353
|
+
'Asia/Ust-Nera',
|
|
54354
|
+
'Asia/Vientiane',
|
|
54355
|
+
'Asia/Vladivostok',
|
|
54356
|
+
'Asia/Yakutsk',
|
|
54357
|
+
'Asia/Yekaterinburg',
|
|
54358
|
+
'Asia/Yerevan',
|
|
54359
|
+
'Atlantic/Azores',
|
|
54360
|
+
'Atlantic/Bermuda',
|
|
54361
|
+
'Atlantic/Canary',
|
|
54362
|
+
'Atlantic/Cape_Verde',
|
|
54363
|
+
'Atlantic/Faeroe',
|
|
54364
|
+
'Atlantic/Madeira',
|
|
54365
|
+
'Atlantic/Reykjavik',
|
|
54366
|
+
'Atlantic/South_Georgia',
|
|
54367
|
+
'Atlantic/St_Helena',
|
|
54368
|
+
'Atlantic/Stanley',
|
|
54369
|
+
'Australia/Adelaide',
|
|
54370
|
+
'Australia/Brisbane',
|
|
54371
|
+
'Australia/Broken_Hill',
|
|
54372
|
+
'Australia/Currie',
|
|
54373
|
+
'Australia/Darwin',
|
|
54374
|
+
'Australia/Eucla',
|
|
54375
|
+
'Australia/Hobart',
|
|
54376
|
+
'Australia/Lindeman',
|
|
54377
|
+
'Australia/Lord_Howe',
|
|
54378
|
+
'Australia/Melbourne',
|
|
54379
|
+
'Australia/Perth',
|
|
54380
|
+
'Australia/Sydney',
|
|
54381
|
+
'Europe/Amsterdam',
|
|
54382
|
+
'Europe/Andorra',
|
|
54383
|
+
'Europe/Astrakhan',
|
|
54384
|
+
'Europe/Athens',
|
|
54385
|
+
'Europe/Belgrade',
|
|
54386
|
+
'Europe/Berlin',
|
|
54387
|
+
'Europe/Bratislava',
|
|
54388
|
+
'Europe/Brussels',
|
|
54389
|
+
'Europe/Bucharest',
|
|
54390
|
+
'Europe/Budapest',
|
|
54391
|
+
'Europe/Busingen',
|
|
54392
|
+
'Europe/Chisinau',
|
|
54393
|
+
'Europe/Copenhagen',
|
|
54394
|
+
'Europe/Dublin',
|
|
54395
|
+
'Europe/Gibraltar',
|
|
54396
|
+
'Europe/Guernsey',
|
|
54397
|
+
'Europe/Helsinki',
|
|
54398
|
+
'Europe/Isle_of_Man',
|
|
54399
|
+
'Europe/Istanbul',
|
|
54400
|
+
'Europe/Jersey',
|
|
54401
|
+
'Europe/Kaliningrad',
|
|
54402
|
+
'Europe/Kiev',
|
|
54403
|
+
'Europe/Kirov',
|
|
54404
|
+
'Europe/Lisbon',
|
|
54405
|
+
'Europe/Ljubljana',
|
|
54406
|
+
'Europe/London',
|
|
54407
|
+
'Europe/Luxembourg',
|
|
54408
|
+
'Europe/Madrid',
|
|
54409
|
+
'Europe/Malta',
|
|
54410
|
+
'Europe/Mariehamn',
|
|
54411
|
+
'Europe/Minsk',
|
|
54412
|
+
'Europe/Monaco',
|
|
54413
|
+
'Europe/Moscow',
|
|
54414
|
+
'Europe/Oslo',
|
|
54415
|
+
'Europe/Paris',
|
|
54416
|
+
'Europe/Podgorica',
|
|
54417
|
+
'Europe/Prague',
|
|
54418
|
+
'Europe/Riga',
|
|
54419
|
+
'Europe/Rome',
|
|
54420
|
+
'Europe/Samara',
|
|
54421
|
+
'Europe/San_Marino',
|
|
54422
|
+
'Europe/Sarajevo',
|
|
54423
|
+
'Europe/Saratov',
|
|
54424
|
+
'Europe/Simferopol',
|
|
54425
|
+
'Europe/Skopje',
|
|
54426
|
+
'Europe/Sofia',
|
|
54427
|
+
'Europe/Stockholm',
|
|
54428
|
+
'Europe/Tallinn',
|
|
54429
|
+
'Europe/Tirane',
|
|
54430
|
+
'Europe/Ulyanovsk',
|
|
54431
|
+
'Europe/Uzhgorod',
|
|
54432
|
+
'Europe/Vaduz',
|
|
54433
|
+
'Europe/Vatican',
|
|
54434
|
+
'Europe/Vienna',
|
|
54435
|
+
'Europe/Vilnius',
|
|
54436
|
+
'Europe/Volgograd',
|
|
54437
|
+
'Europe/Warsaw',
|
|
54438
|
+
'Europe/Zagreb',
|
|
54439
|
+
'Europe/Zaporozhye',
|
|
54440
|
+
'Europe/Zurich',
|
|
54441
|
+
'Indian/Antananarivo',
|
|
54442
|
+
'Indian/Chagos',
|
|
54443
|
+
'Indian/Christmas',
|
|
54444
|
+
'Indian/Cocos',
|
|
54445
|
+
'Indian/Comoro',
|
|
54446
|
+
'Indian/Kerguelen',
|
|
54447
|
+
'Indian/Mahe',
|
|
54448
|
+
'Indian/Maldives',
|
|
54449
|
+
'Indian/Mauritius',
|
|
54450
|
+
'Indian/Mayotte',
|
|
54451
|
+
'Indian/Reunion',
|
|
54452
|
+
'Pacific/Apia',
|
|
54453
|
+
'Pacific/Auckland',
|
|
54454
|
+
'Pacific/Bougainville',
|
|
54455
|
+
'Pacific/Chatham',
|
|
54456
|
+
'Pacific/Easter',
|
|
54457
|
+
'Pacific/Efate',
|
|
54458
|
+
'Pacific/Enderbury',
|
|
54459
|
+
'Pacific/Fakaofo',
|
|
54460
|
+
'Pacific/Fiji',
|
|
54461
|
+
'Pacific/Funafuti',
|
|
54462
|
+
'Pacific/Galapagos',
|
|
54463
|
+
'Pacific/Gambier',
|
|
54464
|
+
'Pacific/Guadalcanal',
|
|
54465
|
+
'Pacific/Guam',
|
|
54466
|
+
'Pacific/Honolulu',
|
|
54467
|
+
'Pacific/Johnston',
|
|
54468
|
+
'Pacific/Kiritimati',
|
|
54469
|
+
'Pacific/Kosrae',
|
|
54470
|
+
'Pacific/Kwajalein',
|
|
54471
|
+
'Pacific/Majuro',
|
|
54472
|
+
'Pacific/Marquesas',
|
|
54473
|
+
'Pacific/Midway',
|
|
54474
|
+
'Pacific/Nauru',
|
|
54475
|
+
'Pacific/Niue',
|
|
54476
|
+
'Pacific/Norfolk',
|
|
54477
|
+
'Pacific/Noumea',
|
|
54478
|
+
'Pacific/Pago_Pago',
|
|
54479
|
+
'Pacific/Palau',
|
|
54480
|
+
'Pacific/Pitcairn',
|
|
54481
|
+
'Pacific/Ponape',
|
|
54482
|
+
'Pacific/Port_Moresby',
|
|
54483
|
+
'Pacific/Rarotonga',
|
|
54484
|
+
'Pacific/Saipan',
|
|
54485
|
+
'Pacific/Tahiti',
|
|
54486
|
+
'Pacific/Tarawa',
|
|
54487
|
+
'Pacific/Tongatapu',
|
|
54488
|
+
'Pacific/Truk',
|
|
54489
|
+
'Pacific/Wake',
|
|
54490
|
+
'Pacific/Wallis',
|
|
54491
|
+
],
|
|
54492
|
+
type: 'string',
|
|
54493
|
+
},
|
|
54494
|
+
},
|
|
54495
|
+
required: ['time_zone'],
|
|
54496
|
+
type: 'object',
|
|
54497
|
+
},
|
|
53904
54498
|
ultraloq_metadata: {
|
|
53905
54499
|
description: 'Ultraloq-specific metadata to update',
|
|
53906
54500
|
properties: {
|