@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
|
@@ -2163,6 +2163,29 @@ export default {
|
|
|
2163
2163
|
format: 'date-time',
|
|
2164
2164
|
type: 'string',
|
|
2165
2165
|
},
|
|
2166
|
+
failed_devices: {
|
|
2167
|
+
description: '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).',
|
|
2168
|
+
items: {
|
|
2169
|
+
properties: {
|
|
2170
|
+
device_id: {
|
|
2171
|
+
description: 'Device whose access code could not be revoked.',
|
|
2172
|
+
format: 'uuid',
|
|
2173
|
+
type: 'string',
|
|
2174
|
+
},
|
|
2175
|
+
error_code: {
|
|
2176
|
+
description: 'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
2177
|
+
type: 'string',
|
|
2178
|
+
},
|
|
2179
|
+
message: {
|
|
2180
|
+
description: 'Human-readable description of why revocation failed.',
|
|
2181
|
+
type: 'string',
|
|
2182
|
+
},
|
|
2183
|
+
},
|
|
2184
|
+
required: ['device_id', 'error_code', 'message'],
|
|
2185
|
+
type: 'object',
|
|
2186
|
+
},
|
|
2187
|
+
type: 'array',
|
|
2188
|
+
},
|
|
2166
2189
|
message: {
|
|
2167
2190
|
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2168
2191
|
type: 'string',
|
|
@@ -32393,6 +32416,33 @@ export default {
|
|
|
32393
32416
|
format: 'date-time',
|
|
32394
32417
|
type: 'string',
|
|
32395
32418
|
},
|
|
32419
|
+
failed_devices: {
|
|
32420
|
+
description: '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).',
|
|
32421
|
+
items: {
|
|
32422
|
+
properties: {
|
|
32423
|
+
device_id: {
|
|
32424
|
+
description: 'Device whose access code could not be revoked.',
|
|
32425
|
+
format: 'uuid',
|
|
32426
|
+
type: 'string',
|
|
32427
|
+
},
|
|
32428
|
+
error_code: {
|
|
32429
|
+
description: 'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
32430
|
+
type: 'string',
|
|
32431
|
+
},
|
|
32432
|
+
message: {
|
|
32433
|
+
description: 'Human-readable description of why revocation failed.',
|
|
32434
|
+
type: 'string',
|
|
32435
|
+
},
|
|
32436
|
+
},
|
|
32437
|
+
required: [
|
|
32438
|
+
'device_id',
|
|
32439
|
+
'error_code',
|
|
32440
|
+
'message',
|
|
32441
|
+
],
|
|
32442
|
+
type: 'object',
|
|
32443
|
+
},
|
|
32444
|
+
type: 'array',
|
|
32445
|
+
},
|
|
32396
32446
|
message: {
|
|
32397
32447
|
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
32398
32448
|
type: 'string',
|
|
@@ -32948,6 +32998,33 @@ export default {
|
|
|
32948
32998
|
format: 'date-time',
|
|
32949
32999
|
type: 'string',
|
|
32950
33000
|
},
|
|
33001
|
+
failed_devices: {
|
|
33002
|
+
description: '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).',
|
|
33003
|
+
items: {
|
|
33004
|
+
properties: {
|
|
33005
|
+
device_id: {
|
|
33006
|
+
description: 'Device whose access code could not be revoked.',
|
|
33007
|
+
format: 'uuid',
|
|
33008
|
+
type: 'string',
|
|
33009
|
+
},
|
|
33010
|
+
error_code: {
|
|
33011
|
+
description: 'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
33012
|
+
type: 'string',
|
|
33013
|
+
},
|
|
33014
|
+
message: {
|
|
33015
|
+
description: 'Human-readable description of why revocation failed.',
|
|
33016
|
+
type: 'string',
|
|
33017
|
+
},
|
|
33018
|
+
},
|
|
33019
|
+
required: [
|
|
33020
|
+
'device_id',
|
|
33021
|
+
'error_code',
|
|
33022
|
+
'message',
|
|
33023
|
+
],
|
|
33024
|
+
type: 'object',
|
|
33025
|
+
},
|
|
33026
|
+
type: 'array',
|
|
33027
|
+
},
|
|
32951
33028
|
message: {
|
|
32952
33029
|
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
32953
33030
|
type: 'string',
|
|
@@ -33545,6 +33622,33 @@ export default {
|
|
|
33545
33622
|
format: 'date-time',
|
|
33546
33623
|
type: 'string',
|
|
33547
33624
|
},
|
|
33625
|
+
failed_devices: {
|
|
33626
|
+
description: '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).',
|
|
33627
|
+
items: {
|
|
33628
|
+
properties: {
|
|
33629
|
+
device_id: {
|
|
33630
|
+
description: 'Device whose access code could not be revoked.',
|
|
33631
|
+
format: 'uuid',
|
|
33632
|
+
type: 'string',
|
|
33633
|
+
},
|
|
33634
|
+
error_code: {
|
|
33635
|
+
description: 'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
33636
|
+
type: 'string',
|
|
33637
|
+
},
|
|
33638
|
+
message: {
|
|
33639
|
+
description: 'Human-readable description of why revocation failed.',
|
|
33640
|
+
type: 'string',
|
|
33641
|
+
},
|
|
33642
|
+
},
|
|
33643
|
+
required: [
|
|
33644
|
+
'device_id',
|
|
33645
|
+
'error_code',
|
|
33646
|
+
'message',
|
|
33647
|
+
],
|
|
33648
|
+
type: 'object',
|
|
33649
|
+
},
|
|
33650
|
+
type: 'array',
|
|
33651
|
+
},
|
|
33548
33652
|
message: {
|
|
33549
33653
|
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
33550
33654
|
type: 'string',
|
|
@@ -34128,6 +34232,33 @@ export default {
|
|
|
34128
34232
|
format: 'date-time',
|
|
34129
34233
|
type: 'string',
|
|
34130
34234
|
},
|
|
34235
|
+
failed_devices: {
|
|
34236
|
+
description: '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).',
|
|
34237
|
+
items: {
|
|
34238
|
+
properties: {
|
|
34239
|
+
device_id: {
|
|
34240
|
+
description: 'Device whose access code could not be revoked.',
|
|
34241
|
+
format: 'uuid',
|
|
34242
|
+
type: 'string',
|
|
34243
|
+
},
|
|
34244
|
+
error_code: {
|
|
34245
|
+
description: 'Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).',
|
|
34246
|
+
type: 'string',
|
|
34247
|
+
},
|
|
34248
|
+
message: {
|
|
34249
|
+
description: 'Human-readable description of why revocation failed.',
|
|
34250
|
+
type: 'string',
|
|
34251
|
+
},
|
|
34252
|
+
},
|
|
34253
|
+
required: [
|
|
34254
|
+
'device_id',
|
|
34255
|
+
'error_code',
|
|
34256
|
+
'message',
|
|
34257
|
+
],
|
|
34258
|
+
type: 'object',
|
|
34259
|
+
},
|
|
34260
|
+
type: 'array',
|
|
34261
|
+
},
|
|
34131
34262
|
message: {
|
|
34132
34263
|
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
34133
34264
|
type: 'string',
|
|
@@ -48995,6 +49126,448 @@ export default {
|
|
|
48995
49126
|
format: 'uuid',
|
|
48996
49127
|
type: 'string',
|
|
48997
49128
|
},
|
|
49129
|
+
schlage_metadata: {
|
|
49130
|
+
description: 'Schlage-specific metadata to update',
|
|
49131
|
+
properties: {
|
|
49132
|
+
time_zone: {
|
|
49133
|
+
description: 'IANA timezone for the Schlage device',
|
|
49134
|
+
enum: [
|
|
49135
|
+
'Africa/Abidjan',
|
|
49136
|
+
'Africa/Accra',
|
|
49137
|
+
'Africa/Addis_Ababa',
|
|
49138
|
+
'Africa/Algiers',
|
|
49139
|
+
'Africa/Asmera',
|
|
49140
|
+
'Africa/Bamako',
|
|
49141
|
+
'Africa/Bangui',
|
|
49142
|
+
'Africa/Banjul',
|
|
49143
|
+
'Africa/Bissau',
|
|
49144
|
+
'Africa/Blantyre',
|
|
49145
|
+
'Africa/Brazzaville',
|
|
49146
|
+
'Africa/Bujumbura',
|
|
49147
|
+
'Africa/Cairo',
|
|
49148
|
+
'Africa/Casablanca',
|
|
49149
|
+
'Africa/Ceuta',
|
|
49150
|
+
'Africa/Conakry',
|
|
49151
|
+
'Africa/Dakar',
|
|
49152
|
+
'Africa/Dar_es_Salaam',
|
|
49153
|
+
'Africa/Djibouti',
|
|
49154
|
+
'Africa/Douala',
|
|
49155
|
+
'Africa/El_Aaiun',
|
|
49156
|
+
'Africa/Freetown',
|
|
49157
|
+
'Africa/Gaborone',
|
|
49158
|
+
'Africa/Harare',
|
|
49159
|
+
'Africa/Johannesburg',
|
|
49160
|
+
'Africa/Juba',
|
|
49161
|
+
'Africa/Kampala',
|
|
49162
|
+
'Africa/Khartoum',
|
|
49163
|
+
'Africa/Kigali',
|
|
49164
|
+
'Africa/Kinshasa',
|
|
49165
|
+
'Africa/Lagos',
|
|
49166
|
+
'Africa/Libreville',
|
|
49167
|
+
'Africa/Lome',
|
|
49168
|
+
'Africa/Luanda',
|
|
49169
|
+
'Africa/Lubumbashi',
|
|
49170
|
+
'Africa/Lusaka',
|
|
49171
|
+
'Africa/Malabo',
|
|
49172
|
+
'Africa/Maputo',
|
|
49173
|
+
'Africa/Maseru',
|
|
49174
|
+
'Africa/Mbabane',
|
|
49175
|
+
'Africa/Mogadishu',
|
|
49176
|
+
'Africa/Monrovia',
|
|
49177
|
+
'Africa/Nairobi',
|
|
49178
|
+
'Africa/Ndjamena',
|
|
49179
|
+
'Africa/Niamey',
|
|
49180
|
+
'Africa/Nouakchott',
|
|
49181
|
+
'Africa/Ouagadougou',
|
|
49182
|
+
'Africa/Porto-Novo',
|
|
49183
|
+
'Africa/Sao_Tome',
|
|
49184
|
+
'Africa/Tripoli',
|
|
49185
|
+
'Africa/Tunis',
|
|
49186
|
+
'Africa/Windhoek',
|
|
49187
|
+
'America/Adak',
|
|
49188
|
+
'America/Anchorage',
|
|
49189
|
+
'America/Anguilla',
|
|
49190
|
+
'America/Antigua',
|
|
49191
|
+
'America/Araguaina',
|
|
49192
|
+
'America/Argentina/La_Rioja',
|
|
49193
|
+
'America/Argentina/Rio_Gallegos',
|
|
49194
|
+
'America/Argentina/Salta',
|
|
49195
|
+
'America/Argentina/San_Juan',
|
|
49196
|
+
'America/Argentina/San_Luis',
|
|
49197
|
+
'America/Argentina/Tucuman',
|
|
49198
|
+
'America/Argentina/Ushuaia',
|
|
49199
|
+
'America/Aruba',
|
|
49200
|
+
'America/Asuncion',
|
|
49201
|
+
'America/Bahia',
|
|
49202
|
+
'America/Bahia_Banderas',
|
|
49203
|
+
'America/Barbados',
|
|
49204
|
+
'America/Belem',
|
|
49205
|
+
'America/Belize',
|
|
49206
|
+
'America/Blanc-Sablon',
|
|
49207
|
+
'America/Boa_Vista',
|
|
49208
|
+
'America/Bogota',
|
|
49209
|
+
'America/Boise',
|
|
49210
|
+
'America/Buenos_Aires',
|
|
49211
|
+
'America/Cambridge_Bay',
|
|
49212
|
+
'America/Campo_Grande',
|
|
49213
|
+
'America/Cancun',
|
|
49214
|
+
'America/Caracas',
|
|
49215
|
+
'America/Catamarca',
|
|
49216
|
+
'America/Cayenne',
|
|
49217
|
+
'America/Cayman',
|
|
49218
|
+
'America/Chicago',
|
|
49219
|
+
'America/Chihuahua',
|
|
49220
|
+
'America/Ciudad_Juarez',
|
|
49221
|
+
'America/Coral_Harbour',
|
|
49222
|
+
'America/Cordoba',
|
|
49223
|
+
'America/Costa_Rica',
|
|
49224
|
+
'America/Creston',
|
|
49225
|
+
'America/Cuiaba',
|
|
49226
|
+
'America/Curacao',
|
|
49227
|
+
'America/Danmarkshavn',
|
|
49228
|
+
'America/Dawson',
|
|
49229
|
+
'America/Dawson_Creek',
|
|
49230
|
+
'America/Denver',
|
|
49231
|
+
'America/Detroit',
|
|
49232
|
+
'America/Dominica',
|
|
49233
|
+
'America/Edmonton',
|
|
49234
|
+
'America/Eirunepe',
|
|
49235
|
+
'America/El_Salvador',
|
|
49236
|
+
'America/Fort_Nelson',
|
|
49237
|
+
'America/Fortaleza',
|
|
49238
|
+
'America/Glace_Bay',
|
|
49239
|
+
'America/Godthab',
|
|
49240
|
+
'America/Goose_Bay',
|
|
49241
|
+
'America/Grand_Turk',
|
|
49242
|
+
'America/Grenada',
|
|
49243
|
+
'America/Guadeloupe',
|
|
49244
|
+
'America/Guatemala',
|
|
49245
|
+
'America/Guayaquil',
|
|
49246
|
+
'America/Guyana',
|
|
49247
|
+
'America/Halifax',
|
|
49248
|
+
'America/Havana',
|
|
49249
|
+
'America/Hermosillo',
|
|
49250
|
+
'America/Indiana/Knox',
|
|
49251
|
+
'America/Indiana/Marengo',
|
|
49252
|
+
'America/Indiana/Petersburg',
|
|
49253
|
+
'America/Indiana/Tell_City',
|
|
49254
|
+
'America/Indiana/Vevay',
|
|
49255
|
+
'America/Indiana/Vincennes',
|
|
49256
|
+
'America/Indiana/Winamac',
|
|
49257
|
+
'America/Indianapolis',
|
|
49258
|
+
'America/Inuvik',
|
|
49259
|
+
'America/Iqaluit',
|
|
49260
|
+
'America/Jamaica',
|
|
49261
|
+
'America/Jujuy',
|
|
49262
|
+
'America/Juneau',
|
|
49263
|
+
'America/Kentucky/Monticello',
|
|
49264
|
+
'America/Kralendijk',
|
|
49265
|
+
'America/La_Paz',
|
|
49266
|
+
'America/Lima',
|
|
49267
|
+
'America/Los_Angeles',
|
|
49268
|
+
'America/Louisville',
|
|
49269
|
+
'America/Lower_Princes',
|
|
49270
|
+
'America/Maceio',
|
|
49271
|
+
'America/Managua',
|
|
49272
|
+
'America/Manaus',
|
|
49273
|
+
'America/Marigot',
|
|
49274
|
+
'America/Martinique',
|
|
49275
|
+
'America/Matamoros',
|
|
49276
|
+
'America/Mazatlan',
|
|
49277
|
+
'America/Mendoza',
|
|
49278
|
+
'America/Menominee',
|
|
49279
|
+
'America/Merida',
|
|
49280
|
+
'America/Metlakatla',
|
|
49281
|
+
'America/Mexico_City',
|
|
49282
|
+
'America/Miquelon',
|
|
49283
|
+
'America/Moncton',
|
|
49284
|
+
'America/Monterrey',
|
|
49285
|
+
'America/Montevideo',
|
|
49286
|
+
'America/Montreal',
|
|
49287
|
+
'America/Montserrat',
|
|
49288
|
+
'America/Nassau',
|
|
49289
|
+
'America/New_York',
|
|
49290
|
+
'America/Nipigon',
|
|
49291
|
+
'America/Nome',
|
|
49292
|
+
'America/Noronha',
|
|
49293
|
+
'America/North_Dakota/Beulah',
|
|
49294
|
+
'America/North_Dakota/Center',
|
|
49295
|
+
'America/North_Dakota/New_Salem',
|
|
49296
|
+
'America/Ojinaga',
|
|
49297
|
+
'America/Panama',
|
|
49298
|
+
'America/Pangnirtung',
|
|
49299
|
+
'America/Paramaribo',
|
|
49300
|
+
'America/Phoenix',
|
|
49301
|
+
'America/Port-au-Prince',
|
|
49302
|
+
'America/Port_of_Spain',
|
|
49303
|
+
'America/Porto_Velho',
|
|
49304
|
+
'America/Puerto_Rico',
|
|
49305
|
+
'America/Punta_Arenas',
|
|
49306
|
+
'America/Rainy_River',
|
|
49307
|
+
'America/Rankin_Inlet',
|
|
49308
|
+
'America/Recife',
|
|
49309
|
+
'America/Regina',
|
|
49310
|
+
'America/Resolute',
|
|
49311
|
+
'America/Rio_Branco',
|
|
49312
|
+
'America/Santa_Isabel',
|
|
49313
|
+
'America/Santarem',
|
|
49314
|
+
'America/Santiago',
|
|
49315
|
+
'America/Santo_Domingo',
|
|
49316
|
+
'America/Sao_Paulo',
|
|
49317
|
+
'America/Scoresbysund',
|
|
49318
|
+
'America/Sitka',
|
|
49319
|
+
'America/St_Barthelemy',
|
|
49320
|
+
'America/St_Johns',
|
|
49321
|
+
'America/St_Kitts',
|
|
49322
|
+
'America/St_Lucia',
|
|
49323
|
+
'America/St_Thomas',
|
|
49324
|
+
'America/St_Vincent',
|
|
49325
|
+
'America/Swift_Current',
|
|
49326
|
+
'America/Tegucigalpa',
|
|
49327
|
+
'America/Thule',
|
|
49328
|
+
'America/Thunder_Bay',
|
|
49329
|
+
'America/Tijuana',
|
|
49330
|
+
'America/Toronto',
|
|
49331
|
+
'America/Tortola',
|
|
49332
|
+
'America/Vancouver',
|
|
49333
|
+
'America/Whitehorse',
|
|
49334
|
+
'America/Winnipeg',
|
|
49335
|
+
'America/Yakutat',
|
|
49336
|
+
'America/Yellowknife',
|
|
49337
|
+
'Antarctica/Casey',
|
|
49338
|
+
'Antarctica/Davis',
|
|
49339
|
+
'Antarctica/DumontDUrville',
|
|
49340
|
+
'Antarctica/Macquarie',
|
|
49341
|
+
'Antarctica/Mawson',
|
|
49342
|
+
'Antarctica/McMurdo',
|
|
49343
|
+
'Antarctica/Palmer',
|
|
49344
|
+
'Antarctica/Rothera',
|
|
49345
|
+
'Antarctica/Syowa',
|
|
49346
|
+
'Antarctica/Troll',
|
|
49347
|
+
'Antarctica/Vostok',
|
|
49348
|
+
'Arctic/Longyearbyen',
|
|
49349
|
+
'Asia/Aden',
|
|
49350
|
+
'Asia/Almaty',
|
|
49351
|
+
'Asia/Amman',
|
|
49352
|
+
'Asia/Anadyr',
|
|
49353
|
+
'Asia/Aqtau',
|
|
49354
|
+
'Asia/Aqtobe',
|
|
49355
|
+
'Asia/Ashgabat',
|
|
49356
|
+
'Asia/Atyrau',
|
|
49357
|
+
'Asia/Baghdad',
|
|
49358
|
+
'Asia/Bahrain',
|
|
49359
|
+
'Asia/Baku',
|
|
49360
|
+
'Asia/Bangkok',
|
|
49361
|
+
'Asia/Barnaul',
|
|
49362
|
+
'Asia/Beirut',
|
|
49363
|
+
'Asia/Bishkek',
|
|
49364
|
+
'Asia/Brunei',
|
|
49365
|
+
'Asia/Calcutta',
|
|
49366
|
+
'Asia/Chita',
|
|
49367
|
+
'Asia/Choibalsan',
|
|
49368
|
+
'Asia/Colombo',
|
|
49369
|
+
'Asia/Damascus',
|
|
49370
|
+
'Asia/Dhaka',
|
|
49371
|
+
'Asia/Dili',
|
|
49372
|
+
'Asia/Dubai',
|
|
49373
|
+
'Asia/Dushanbe',
|
|
49374
|
+
'Asia/Famagusta',
|
|
49375
|
+
'Asia/Gaza',
|
|
49376
|
+
'Asia/Hebron',
|
|
49377
|
+
'Asia/Hong_Kong',
|
|
49378
|
+
'Asia/Hovd',
|
|
49379
|
+
'Asia/Irkutsk',
|
|
49380
|
+
'Asia/Jakarta',
|
|
49381
|
+
'Asia/Jayapura',
|
|
49382
|
+
'Asia/Jerusalem',
|
|
49383
|
+
'Asia/Kabul',
|
|
49384
|
+
'Asia/Kamchatka',
|
|
49385
|
+
'Asia/Karachi',
|
|
49386
|
+
'Asia/Katmandu',
|
|
49387
|
+
'Asia/Khandyga',
|
|
49388
|
+
'Asia/Krasnoyarsk',
|
|
49389
|
+
'Asia/Kuala_Lumpur',
|
|
49390
|
+
'Asia/Kuching',
|
|
49391
|
+
'Asia/Kuwait',
|
|
49392
|
+
'Asia/Macau',
|
|
49393
|
+
'Asia/Magadan',
|
|
49394
|
+
'Asia/Makassar',
|
|
49395
|
+
'Asia/Manila',
|
|
49396
|
+
'Asia/Muscat',
|
|
49397
|
+
'Asia/Nicosia',
|
|
49398
|
+
'Asia/Novokuznetsk',
|
|
49399
|
+
'Asia/Novosibirsk',
|
|
49400
|
+
'Asia/Omsk',
|
|
49401
|
+
'Asia/Oral',
|
|
49402
|
+
'Asia/Phnom_Penh',
|
|
49403
|
+
'Asia/Pontianak',
|
|
49404
|
+
'Asia/Pyongyang',
|
|
49405
|
+
'Asia/Qatar',
|
|
49406
|
+
'Asia/Qostanay',
|
|
49407
|
+
'Asia/Qyzylorda',
|
|
49408
|
+
'Asia/Rangoon',
|
|
49409
|
+
'Asia/Riyadh',
|
|
49410
|
+
'Asia/Saigon',
|
|
49411
|
+
'Asia/Sakhalin',
|
|
49412
|
+
'Asia/Samarkand',
|
|
49413
|
+
'Asia/Seoul',
|
|
49414
|
+
'Asia/Shanghai',
|
|
49415
|
+
'Asia/Singapore',
|
|
49416
|
+
'Asia/Srednekolymsk',
|
|
49417
|
+
'Asia/Taipei',
|
|
49418
|
+
'Asia/Tashkent',
|
|
49419
|
+
'Asia/Tbilisi',
|
|
49420
|
+
'Asia/Tehran',
|
|
49421
|
+
'Asia/Thimphu',
|
|
49422
|
+
'Asia/Tokyo',
|
|
49423
|
+
'Asia/Tomsk',
|
|
49424
|
+
'Asia/Ulaanbaatar',
|
|
49425
|
+
'Asia/Urumqi',
|
|
49426
|
+
'Asia/Ust-Nera',
|
|
49427
|
+
'Asia/Vientiane',
|
|
49428
|
+
'Asia/Vladivostok',
|
|
49429
|
+
'Asia/Yakutsk',
|
|
49430
|
+
'Asia/Yekaterinburg',
|
|
49431
|
+
'Asia/Yerevan',
|
|
49432
|
+
'Atlantic/Azores',
|
|
49433
|
+
'Atlantic/Bermuda',
|
|
49434
|
+
'Atlantic/Canary',
|
|
49435
|
+
'Atlantic/Cape_Verde',
|
|
49436
|
+
'Atlantic/Faeroe',
|
|
49437
|
+
'Atlantic/Madeira',
|
|
49438
|
+
'Atlantic/Reykjavik',
|
|
49439
|
+
'Atlantic/South_Georgia',
|
|
49440
|
+
'Atlantic/St_Helena',
|
|
49441
|
+
'Atlantic/Stanley',
|
|
49442
|
+
'Australia/Adelaide',
|
|
49443
|
+
'Australia/Brisbane',
|
|
49444
|
+
'Australia/Broken_Hill',
|
|
49445
|
+
'Australia/Currie',
|
|
49446
|
+
'Australia/Darwin',
|
|
49447
|
+
'Australia/Eucla',
|
|
49448
|
+
'Australia/Hobart',
|
|
49449
|
+
'Australia/Lindeman',
|
|
49450
|
+
'Australia/Lord_Howe',
|
|
49451
|
+
'Australia/Melbourne',
|
|
49452
|
+
'Australia/Perth',
|
|
49453
|
+
'Australia/Sydney',
|
|
49454
|
+
'Europe/Amsterdam',
|
|
49455
|
+
'Europe/Andorra',
|
|
49456
|
+
'Europe/Astrakhan',
|
|
49457
|
+
'Europe/Athens',
|
|
49458
|
+
'Europe/Belgrade',
|
|
49459
|
+
'Europe/Berlin',
|
|
49460
|
+
'Europe/Bratislava',
|
|
49461
|
+
'Europe/Brussels',
|
|
49462
|
+
'Europe/Bucharest',
|
|
49463
|
+
'Europe/Budapest',
|
|
49464
|
+
'Europe/Busingen',
|
|
49465
|
+
'Europe/Chisinau',
|
|
49466
|
+
'Europe/Copenhagen',
|
|
49467
|
+
'Europe/Dublin',
|
|
49468
|
+
'Europe/Gibraltar',
|
|
49469
|
+
'Europe/Guernsey',
|
|
49470
|
+
'Europe/Helsinki',
|
|
49471
|
+
'Europe/Isle_of_Man',
|
|
49472
|
+
'Europe/Istanbul',
|
|
49473
|
+
'Europe/Jersey',
|
|
49474
|
+
'Europe/Kaliningrad',
|
|
49475
|
+
'Europe/Kiev',
|
|
49476
|
+
'Europe/Kirov',
|
|
49477
|
+
'Europe/Lisbon',
|
|
49478
|
+
'Europe/Ljubljana',
|
|
49479
|
+
'Europe/London',
|
|
49480
|
+
'Europe/Luxembourg',
|
|
49481
|
+
'Europe/Madrid',
|
|
49482
|
+
'Europe/Malta',
|
|
49483
|
+
'Europe/Mariehamn',
|
|
49484
|
+
'Europe/Minsk',
|
|
49485
|
+
'Europe/Monaco',
|
|
49486
|
+
'Europe/Moscow',
|
|
49487
|
+
'Europe/Oslo',
|
|
49488
|
+
'Europe/Paris',
|
|
49489
|
+
'Europe/Podgorica',
|
|
49490
|
+
'Europe/Prague',
|
|
49491
|
+
'Europe/Riga',
|
|
49492
|
+
'Europe/Rome',
|
|
49493
|
+
'Europe/Samara',
|
|
49494
|
+
'Europe/San_Marino',
|
|
49495
|
+
'Europe/Sarajevo',
|
|
49496
|
+
'Europe/Saratov',
|
|
49497
|
+
'Europe/Simferopol',
|
|
49498
|
+
'Europe/Skopje',
|
|
49499
|
+
'Europe/Sofia',
|
|
49500
|
+
'Europe/Stockholm',
|
|
49501
|
+
'Europe/Tallinn',
|
|
49502
|
+
'Europe/Tirane',
|
|
49503
|
+
'Europe/Ulyanovsk',
|
|
49504
|
+
'Europe/Uzhgorod',
|
|
49505
|
+
'Europe/Vaduz',
|
|
49506
|
+
'Europe/Vatican',
|
|
49507
|
+
'Europe/Vienna',
|
|
49508
|
+
'Europe/Vilnius',
|
|
49509
|
+
'Europe/Volgograd',
|
|
49510
|
+
'Europe/Warsaw',
|
|
49511
|
+
'Europe/Zagreb',
|
|
49512
|
+
'Europe/Zaporozhye',
|
|
49513
|
+
'Europe/Zurich',
|
|
49514
|
+
'Indian/Antananarivo',
|
|
49515
|
+
'Indian/Chagos',
|
|
49516
|
+
'Indian/Christmas',
|
|
49517
|
+
'Indian/Cocos',
|
|
49518
|
+
'Indian/Comoro',
|
|
49519
|
+
'Indian/Kerguelen',
|
|
49520
|
+
'Indian/Mahe',
|
|
49521
|
+
'Indian/Maldives',
|
|
49522
|
+
'Indian/Mauritius',
|
|
49523
|
+
'Indian/Mayotte',
|
|
49524
|
+
'Indian/Reunion',
|
|
49525
|
+
'Pacific/Apia',
|
|
49526
|
+
'Pacific/Auckland',
|
|
49527
|
+
'Pacific/Bougainville',
|
|
49528
|
+
'Pacific/Chatham',
|
|
49529
|
+
'Pacific/Easter',
|
|
49530
|
+
'Pacific/Efate',
|
|
49531
|
+
'Pacific/Enderbury',
|
|
49532
|
+
'Pacific/Fakaofo',
|
|
49533
|
+
'Pacific/Fiji',
|
|
49534
|
+
'Pacific/Funafuti',
|
|
49535
|
+
'Pacific/Galapagos',
|
|
49536
|
+
'Pacific/Gambier',
|
|
49537
|
+
'Pacific/Guadalcanal',
|
|
49538
|
+
'Pacific/Guam',
|
|
49539
|
+
'Pacific/Honolulu',
|
|
49540
|
+
'Pacific/Johnston',
|
|
49541
|
+
'Pacific/Kiritimati',
|
|
49542
|
+
'Pacific/Kosrae',
|
|
49543
|
+
'Pacific/Kwajalein',
|
|
49544
|
+
'Pacific/Majuro',
|
|
49545
|
+
'Pacific/Marquesas',
|
|
49546
|
+
'Pacific/Midway',
|
|
49547
|
+
'Pacific/Nauru',
|
|
49548
|
+
'Pacific/Niue',
|
|
49549
|
+
'Pacific/Norfolk',
|
|
49550
|
+
'Pacific/Noumea',
|
|
49551
|
+
'Pacific/Pago_Pago',
|
|
49552
|
+
'Pacific/Palau',
|
|
49553
|
+
'Pacific/Pitcairn',
|
|
49554
|
+
'Pacific/Ponape',
|
|
49555
|
+
'Pacific/Port_Moresby',
|
|
49556
|
+
'Pacific/Rarotonga',
|
|
49557
|
+
'Pacific/Saipan',
|
|
49558
|
+
'Pacific/Tahiti',
|
|
49559
|
+
'Pacific/Tarawa',
|
|
49560
|
+
'Pacific/Tongatapu',
|
|
49561
|
+
'Pacific/Truk',
|
|
49562
|
+
'Pacific/Wake',
|
|
49563
|
+
'Pacific/Wallis',
|
|
49564
|
+
],
|
|
49565
|
+
type: 'string',
|
|
49566
|
+
},
|
|
49567
|
+
},
|
|
49568
|
+
required: ['time_zone'],
|
|
49569
|
+
type: 'object',
|
|
49570
|
+
},
|
|
48998
49571
|
ultraloq_metadata: {
|
|
48999
49572
|
description: 'Ultraloq-specific metadata to update',
|
|
49000
49573
|
properties: {
|