@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 CHANGED
@@ -2719,8 +2719,18 @@ var underprovisioned_access = common_access_grant_warning.extend({
2719
2719
  }).describe(
2720
2720
  "Indicates that the access grant should have access to more locations than it currently does. Access methods are being created for the missing locations."
2721
2721
  );
2722
+ var overprovisioned_failed_device = zod.z.object({
2723
+ device_id: zod.z.string().uuid().describe("Device whose access code could not be revoked."),
2724
+ error_code: zod.z.string().describe(
2725
+ "Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`)."
2726
+ ),
2727
+ message: zod.z.string().describe("Human-readable description of why revocation failed.")
2728
+ });
2722
2729
  var overprovisioned_access = common_access_grant_warning.extend({
2723
- warning_code: zod.z.literal("overprovisioned_access").describe(warning_code_description4)
2730
+ warning_code: zod.z.literal("overprovisioned_access").describe(warning_code_description4),
2731
+ failed_devices: zod.z.array(overprovisioned_failed_device).optional().describe(
2732
+ "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)."
2733
+ )
2724
2734
  }).describe(
2725
2735
  "Indicates that the access grant has access to locations it should not have. Access methods are being removed from the extra locations."
2726
2736
  );
@@ -8967,6 +8977,29 @@ var openapi_default = {
8967
8977
  format: "date-time",
8968
8978
  type: "string"
8969
8979
  },
8980
+ failed_devices: {
8981
+ 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).",
8982
+ items: {
8983
+ properties: {
8984
+ device_id: {
8985
+ description: "Device whose access code could not be revoked.",
8986
+ format: "uuid",
8987
+ type: "string"
8988
+ },
8989
+ error_code: {
8990
+ description: "Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).",
8991
+ type: "string"
8992
+ },
8993
+ message: {
8994
+ description: "Human-readable description of why revocation failed.",
8995
+ type: "string"
8996
+ }
8997
+ },
8998
+ required: ["device_id", "error_code", "message"],
8999
+ type: "object"
9000
+ },
9001
+ type: "array"
9002
+ },
8970
9003
  message: {
8971
9004
  description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
8972
9005
  type: "string"
@@ -39197,6 +39230,33 @@ var openapi_default = {
39197
39230
  format: "date-time",
39198
39231
  type: "string"
39199
39232
  },
39233
+ failed_devices: {
39234
+ 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).",
39235
+ items: {
39236
+ properties: {
39237
+ device_id: {
39238
+ description: "Device whose access code could not be revoked.",
39239
+ format: "uuid",
39240
+ type: "string"
39241
+ },
39242
+ error_code: {
39243
+ description: "Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).",
39244
+ type: "string"
39245
+ },
39246
+ message: {
39247
+ description: "Human-readable description of why revocation failed.",
39248
+ type: "string"
39249
+ }
39250
+ },
39251
+ required: [
39252
+ "device_id",
39253
+ "error_code",
39254
+ "message"
39255
+ ],
39256
+ type: "object"
39257
+ },
39258
+ type: "array"
39259
+ },
39200
39260
  message: {
39201
39261
  description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
39202
39262
  type: "string"
@@ -39752,6 +39812,33 @@ var openapi_default = {
39752
39812
  format: "date-time",
39753
39813
  type: "string"
39754
39814
  },
39815
+ failed_devices: {
39816
+ 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).",
39817
+ items: {
39818
+ properties: {
39819
+ device_id: {
39820
+ description: "Device whose access code could not be revoked.",
39821
+ format: "uuid",
39822
+ type: "string"
39823
+ },
39824
+ error_code: {
39825
+ description: "Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).",
39826
+ type: "string"
39827
+ },
39828
+ message: {
39829
+ description: "Human-readable description of why revocation failed.",
39830
+ type: "string"
39831
+ }
39832
+ },
39833
+ required: [
39834
+ "device_id",
39835
+ "error_code",
39836
+ "message"
39837
+ ],
39838
+ type: "object"
39839
+ },
39840
+ type: "array"
39841
+ },
39755
39842
  message: {
39756
39843
  description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
39757
39844
  type: "string"
@@ -40349,6 +40436,33 @@ var openapi_default = {
40349
40436
  format: "date-time",
40350
40437
  type: "string"
40351
40438
  },
40439
+ failed_devices: {
40440
+ 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).",
40441
+ items: {
40442
+ properties: {
40443
+ device_id: {
40444
+ description: "Device whose access code could not be revoked.",
40445
+ format: "uuid",
40446
+ type: "string"
40447
+ },
40448
+ error_code: {
40449
+ description: "Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).",
40450
+ type: "string"
40451
+ },
40452
+ message: {
40453
+ description: "Human-readable description of why revocation failed.",
40454
+ type: "string"
40455
+ }
40456
+ },
40457
+ required: [
40458
+ "device_id",
40459
+ "error_code",
40460
+ "message"
40461
+ ],
40462
+ type: "object"
40463
+ },
40464
+ type: "array"
40465
+ },
40352
40466
  message: {
40353
40467
  description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
40354
40468
  type: "string"
@@ -40932,6 +41046,33 @@ var openapi_default = {
40932
41046
  format: "date-time",
40933
41047
  type: "string"
40934
41048
  },
41049
+ failed_devices: {
41050
+ 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).",
41051
+ items: {
41052
+ properties: {
41053
+ device_id: {
41054
+ description: "Device whose access code could not be revoked.",
41055
+ format: "uuid",
41056
+ type: "string"
41057
+ },
41058
+ error_code: {
41059
+ description: "Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`).",
41060
+ type: "string"
41061
+ },
41062
+ message: {
41063
+ description: "Human-readable description of why revocation failed.",
41064
+ type: "string"
41065
+ }
41066
+ },
41067
+ required: [
41068
+ "device_id",
41069
+ "error_code",
41070
+ "message"
41071
+ ],
41072
+ type: "object"
41073
+ },
41074
+ type: "array"
41075
+ },
40935
41076
  message: {
40936
41077
  description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
40937
41078
  type: "string"
@@ -55799,6 +55940,448 @@ var openapi_default = {
55799
55940
  format: "uuid",
55800
55941
  type: "string"
55801
55942
  },
55943
+ schlage_metadata: {
55944
+ description: "Schlage-specific metadata to update",
55945
+ properties: {
55946
+ time_zone: {
55947
+ description: "IANA timezone for the Schlage device",
55948
+ enum: [
55949
+ "Africa/Abidjan",
55950
+ "Africa/Accra",
55951
+ "Africa/Addis_Ababa",
55952
+ "Africa/Algiers",
55953
+ "Africa/Asmera",
55954
+ "Africa/Bamako",
55955
+ "Africa/Bangui",
55956
+ "Africa/Banjul",
55957
+ "Africa/Bissau",
55958
+ "Africa/Blantyre",
55959
+ "Africa/Brazzaville",
55960
+ "Africa/Bujumbura",
55961
+ "Africa/Cairo",
55962
+ "Africa/Casablanca",
55963
+ "Africa/Ceuta",
55964
+ "Africa/Conakry",
55965
+ "Africa/Dakar",
55966
+ "Africa/Dar_es_Salaam",
55967
+ "Africa/Djibouti",
55968
+ "Africa/Douala",
55969
+ "Africa/El_Aaiun",
55970
+ "Africa/Freetown",
55971
+ "Africa/Gaborone",
55972
+ "Africa/Harare",
55973
+ "Africa/Johannesburg",
55974
+ "Africa/Juba",
55975
+ "Africa/Kampala",
55976
+ "Africa/Khartoum",
55977
+ "Africa/Kigali",
55978
+ "Africa/Kinshasa",
55979
+ "Africa/Lagos",
55980
+ "Africa/Libreville",
55981
+ "Africa/Lome",
55982
+ "Africa/Luanda",
55983
+ "Africa/Lubumbashi",
55984
+ "Africa/Lusaka",
55985
+ "Africa/Malabo",
55986
+ "Africa/Maputo",
55987
+ "Africa/Maseru",
55988
+ "Africa/Mbabane",
55989
+ "Africa/Mogadishu",
55990
+ "Africa/Monrovia",
55991
+ "Africa/Nairobi",
55992
+ "Africa/Ndjamena",
55993
+ "Africa/Niamey",
55994
+ "Africa/Nouakchott",
55995
+ "Africa/Ouagadougou",
55996
+ "Africa/Porto-Novo",
55997
+ "Africa/Sao_Tome",
55998
+ "Africa/Tripoli",
55999
+ "Africa/Tunis",
56000
+ "Africa/Windhoek",
56001
+ "America/Adak",
56002
+ "America/Anchorage",
56003
+ "America/Anguilla",
56004
+ "America/Antigua",
56005
+ "America/Araguaina",
56006
+ "America/Argentina/La_Rioja",
56007
+ "America/Argentina/Rio_Gallegos",
56008
+ "America/Argentina/Salta",
56009
+ "America/Argentina/San_Juan",
56010
+ "America/Argentina/San_Luis",
56011
+ "America/Argentina/Tucuman",
56012
+ "America/Argentina/Ushuaia",
56013
+ "America/Aruba",
56014
+ "America/Asuncion",
56015
+ "America/Bahia",
56016
+ "America/Bahia_Banderas",
56017
+ "America/Barbados",
56018
+ "America/Belem",
56019
+ "America/Belize",
56020
+ "America/Blanc-Sablon",
56021
+ "America/Boa_Vista",
56022
+ "America/Bogota",
56023
+ "America/Boise",
56024
+ "America/Buenos_Aires",
56025
+ "America/Cambridge_Bay",
56026
+ "America/Campo_Grande",
56027
+ "America/Cancun",
56028
+ "America/Caracas",
56029
+ "America/Catamarca",
56030
+ "America/Cayenne",
56031
+ "America/Cayman",
56032
+ "America/Chicago",
56033
+ "America/Chihuahua",
56034
+ "America/Ciudad_Juarez",
56035
+ "America/Coral_Harbour",
56036
+ "America/Cordoba",
56037
+ "America/Costa_Rica",
56038
+ "America/Creston",
56039
+ "America/Cuiaba",
56040
+ "America/Curacao",
56041
+ "America/Danmarkshavn",
56042
+ "America/Dawson",
56043
+ "America/Dawson_Creek",
56044
+ "America/Denver",
56045
+ "America/Detroit",
56046
+ "America/Dominica",
56047
+ "America/Edmonton",
56048
+ "America/Eirunepe",
56049
+ "America/El_Salvador",
56050
+ "America/Fort_Nelson",
56051
+ "America/Fortaleza",
56052
+ "America/Glace_Bay",
56053
+ "America/Godthab",
56054
+ "America/Goose_Bay",
56055
+ "America/Grand_Turk",
56056
+ "America/Grenada",
56057
+ "America/Guadeloupe",
56058
+ "America/Guatemala",
56059
+ "America/Guayaquil",
56060
+ "America/Guyana",
56061
+ "America/Halifax",
56062
+ "America/Havana",
56063
+ "America/Hermosillo",
56064
+ "America/Indiana/Knox",
56065
+ "America/Indiana/Marengo",
56066
+ "America/Indiana/Petersburg",
56067
+ "America/Indiana/Tell_City",
56068
+ "America/Indiana/Vevay",
56069
+ "America/Indiana/Vincennes",
56070
+ "America/Indiana/Winamac",
56071
+ "America/Indianapolis",
56072
+ "America/Inuvik",
56073
+ "America/Iqaluit",
56074
+ "America/Jamaica",
56075
+ "America/Jujuy",
56076
+ "America/Juneau",
56077
+ "America/Kentucky/Monticello",
56078
+ "America/Kralendijk",
56079
+ "America/La_Paz",
56080
+ "America/Lima",
56081
+ "America/Los_Angeles",
56082
+ "America/Louisville",
56083
+ "America/Lower_Princes",
56084
+ "America/Maceio",
56085
+ "America/Managua",
56086
+ "America/Manaus",
56087
+ "America/Marigot",
56088
+ "America/Martinique",
56089
+ "America/Matamoros",
56090
+ "America/Mazatlan",
56091
+ "America/Mendoza",
56092
+ "America/Menominee",
56093
+ "America/Merida",
56094
+ "America/Metlakatla",
56095
+ "America/Mexico_City",
56096
+ "America/Miquelon",
56097
+ "America/Moncton",
56098
+ "America/Monterrey",
56099
+ "America/Montevideo",
56100
+ "America/Montreal",
56101
+ "America/Montserrat",
56102
+ "America/Nassau",
56103
+ "America/New_York",
56104
+ "America/Nipigon",
56105
+ "America/Nome",
56106
+ "America/Noronha",
56107
+ "America/North_Dakota/Beulah",
56108
+ "America/North_Dakota/Center",
56109
+ "America/North_Dakota/New_Salem",
56110
+ "America/Ojinaga",
56111
+ "America/Panama",
56112
+ "America/Pangnirtung",
56113
+ "America/Paramaribo",
56114
+ "America/Phoenix",
56115
+ "America/Port-au-Prince",
56116
+ "America/Port_of_Spain",
56117
+ "America/Porto_Velho",
56118
+ "America/Puerto_Rico",
56119
+ "America/Punta_Arenas",
56120
+ "America/Rainy_River",
56121
+ "America/Rankin_Inlet",
56122
+ "America/Recife",
56123
+ "America/Regina",
56124
+ "America/Resolute",
56125
+ "America/Rio_Branco",
56126
+ "America/Santa_Isabel",
56127
+ "America/Santarem",
56128
+ "America/Santiago",
56129
+ "America/Santo_Domingo",
56130
+ "America/Sao_Paulo",
56131
+ "America/Scoresbysund",
56132
+ "America/Sitka",
56133
+ "America/St_Barthelemy",
56134
+ "America/St_Johns",
56135
+ "America/St_Kitts",
56136
+ "America/St_Lucia",
56137
+ "America/St_Thomas",
56138
+ "America/St_Vincent",
56139
+ "America/Swift_Current",
56140
+ "America/Tegucigalpa",
56141
+ "America/Thule",
56142
+ "America/Thunder_Bay",
56143
+ "America/Tijuana",
56144
+ "America/Toronto",
56145
+ "America/Tortola",
56146
+ "America/Vancouver",
56147
+ "America/Whitehorse",
56148
+ "America/Winnipeg",
56149
+ "America/Yakutat",
56150
+ "America/Yellowknife",
56151
+ "Antarctica/Casey",
56152
+ "Antarctica/Davis",
56153
+ "Antarctica/DumontDUrville",
56154
+ "Antarctica/Macquarie",
56155
+ "Antarctica/Mawson",
56156
+ "Antarctica/McMurdo",
56157
+ "Antarctica/Palmer",
56158
+ "Antarctica/Rothera",
56159
+ "Antarctica/Syowa",
56160
+ "Antarctica/Troll",
56161
+ "Antarctica/Vostok",
56162
+ "Arctic/Longyearbyen",
56163
+ "Asia/Aden",
56164
+ "Asia/Almaty",
56165
+ "Asia/Amman",
56166
+ "Asia/Anadyr",
56167
+ "Asia/Aqtau",
56168
+ "Asia/Aqtobe",
56169
+ "Asia/Ashgabat",
56170
+ "Asia/Atyrau",
56171
+ "Asia/Baghdad",
56172
+ "Asia/Bahrain",
56173
+ "Asia/Baku",
56174
+ "Asia/Bangkok",
56175
+ "Asia/Barnaul",
56176
+ "Asia/Beirut",
56177
+ "Asia/Bishkek",
56178
+ "Asia/Brunei",
56179
+ "Asia/Calcutta",
56180
+ "Asia/Chita",
56181
+ "Asia/Choibalsan",
56182
+ "Asia/Colombo",
56183
+ "Asia/Damascus",
56184
+ "Asia/Dhaka",
56185
+ "Asia/Dili",
56186
+ "Asia/Dubai",
56187
+ "Asia/Dushanbe",
56188
+ "Asia/Famagusta",
56189
+ "Asia/Gaza",
56190
+ "Asia/Hebron",
56191
+ "Asia/Hong_Kong",
56192
+ "Asia/Hovd",
56193
+ "Asia/Irkutsk",
56194
+ "Asia/Jakarta",
56195
+ "Asia/Jayapura",
56196
+ "Asia/Jerusalem",
56197
+ "Asia/Kabul",
56198
+ "Asia/Kamchatka",
56199
+ "Asia/Karachi",
56200
+ "Asia/Katmandu",
56201
+ "Asia/Khandyga",
56202
+ "Asia/Krasnoyarsk",
56203
+ "Asia/Kuala_Lumpur",
56204
+ "Asia/Kuching",
56205
+ "Asia/Kuwait",
56206
+ "Asia/Macau",
56207
+ "Asia/Magadan",
56208
+ "Asia/Makassar",
56209
+ "Asia/Manila",
56210
+ "Asia/Muscat",
56211
+ "Asia/Nicosia",
56212
+ "Asia/Novokuznetsk",
56213
+ "Asia/Novosibirsk",
56214
+ "Asia/Omsk",
56215
+ "Asia/Oral",
56216
+ "Asia/Phnom_Penh",
56217
+ "Asia/Pontianak",
56218
+ "Asia/Pyongyang",
56219
+ "Asia/Qatar",
56220
+ "Asia/Qostanay",
56221
+ "Asia/Qyzylorda",
56222
+ "Asia/Rangoon",
56223
+ "Asia/Riyadh",
56224
+ "Asia/Saigon",
56225
+ "Asia/Sakhalin",
56226
+ "Asia/Samarkand",
56227
+ "Asia/Seoul",
56228
+ "Asia/Shanghai",
56229
+ "Asia/Singapore",
56230
+ "Asia/Srednekolymsk",
56231
+ "Asia/Taipei",
56232
+ "Asia/Tashkent",
56233
+ "Asia/Tbilisi",
56234
+ "Asia/Tehran",
56235
+ "Asia/Thimphu",
56236
+ "Asia/Tokyo",
56237
+ "Asia/Tomsk",
56238
+ "Asia/Ulaanbaatar",
56239
+ "Asia/Urumqi",
56240
+ "Asia/Ust-Nera",
56241
+ "Asia/Vientiane",
56242
+ "Asia/Vladivostok",
56243
+ "Asia/Yakutsk",
56244
+ "Asia/Yekaterinburg",
56245
+ "Asia/Yerevan",
56246
+ "Atlantic/Azores",
56247
+ "Atlantic/Bermuda",
56248
+ "Atlantic/Canary",
56249
+ "Atlantic/Cape_Verde",
56250
+ "Atlantic/Faeroe",
56251
+ "Atlantic/Madeira",
56252
+ "Atlantic/Reykjavik",
56253
+ "Atlantic/South_Georgia",
56254
+ "Atlantic/St_Helena",
56255
+ "Atlantic/Stanley",
56256
+ "Australia/Adelaide",
56257
+ "Australia/Brisbane",
56258
+ "Australia/Broken_Hill",
56259
+ "Australia/Currie",
56260
+ "Australia/Darwin",
56261
+ "Australia/Eucla",
56262
+ "Australia/Hobart",
56263
+ "Australia/Lindeman",
56264
+ "Australia/Lord_Howe",
56265
+ "Australia/Melbourne",
56266
+ "Australia/Perth",
56267
+ "Australia/Sydney",
56268
+ "Europe/Amsterdam",
56269
+ "Europe/Andorra",
56270
+ "Europe/Astrakhan",
56271
+ "Europe/Athens",
56272
+ "Europe/Belgrade",
56273
+ "Europe/Berlin",
56274
+ "Europe/Bratislava",
56275
+ "Europe/Brussels",
56276
+ "Europe/Bucharest",
56277
+ "Europe/Budapest",
56278
+ "Europe/Busingen",
56279
+ "Europe/Chisinau",
56280
+ "Europe/Copenhagen",
56281
+ "Europe/Dublin",
56282
+ "Europe/Gibraltar",
56283
+ "Europe/Guernsey",
56284
+ "Europe/Helsinki",
56285
+ "Europe/Isle_of_Man",
56286
+ "Europe/Istanbul",
56287
+ "Europe/Jersey",
56288
+ "Europe/Kaliningrad",
56289
+ "Europe/Kiev",
56290
+ "Europe/Kirov",
56291
+ "Europe/Lisbon",
56292
+ "Europe/Ljubljana",
56293
+ "Europe/London",
56294
+ "Europe/Luxembourg",
56295
+ "Europe/Madrid",
56296
+ "Europe/Malta",
56297
+ "Europe/Mariehamn",
56298
+ "Europe/Minsk",
56299
+ "Europe/Monaco",
56300
+ "Europe/Moscow",
56301
+ "Europe/Oslo",
56302
+ "Europe/Paris",
56303
+ "Europe/Podgorica",
56304
+ "Europe/Prague",
56305
+ "Europe/Riga",
56306
+ "Europe/Rome",
56307
+ "Europe/Samara",
56308
+ "Europe/San_Marino",
56309
+ "Europe/Sarajevo",
56310
+ "Europe/Saratov",
56311
+ "Europe/Simferopol",
56312
+ "Europe/Skopje",
56313
+ "Europe/Sofia",
56314
+ "Europe/Stockholm",
56315
+ "Europe/Tallinn",
56316
+ "Europe/Tirane",
56317
+ "Europe/Ulyanovsk",
56318
+ "Europe/Uzhgorod",
56319
+ "Europe/Vaduz",
56320
+ "Europe/Vatican",
56321
+ "Europe/Vienna",
56322
+ "Europe/Vilnius",
56323
+ "Europe/Volgograd",
56324
+ "Europe/Warsaw",
56325
+ "Europe/Zagreb",
56326
+ "Europe/Zaporozhye",
56327
+ "Europe/Zurich",
56328
+ "Indian/Antananarivo",
56329
+ "Indian/Chagos",
56330
+ "Indian/Christmas",
56331
+ "Indian/Cocos",
56332
+ "Indian/Comoro",
56333
+ "Indian/Kerguelen",
56334
+ "Indian/Mahe",
56335
+ "Indian/Maldives",
56336
+ "Indian/Mauritius",
56337
+ "Indian/Mayotte",
56338
+ "Indian/Reunion",
56339
+ "Pacific/Apia",
56340
+ "Pacific/Auckland",
56341
+ "Pacific/Bougainville",
56342
+ "Pacific/Chatham",
56343
+ "Pacific/Easter",
56344
+ "Pacific/Efate",
56345
+ "Pacific/Enderbury",
56346
+ "Pacific/Fakaofo",
56347
+ "Pacific/Fiji",
56348
+ "Pacific/Funafuti",
56349
+ "Pacific/Galapagos",
56350
+ "Pacific/Gambier",
56351
+ "Pacific/Guadalcanal",
56352
+ "Pacific/Guam",
56353
+ "Pacific/Honolulu",
56354
+ "Pacific/Johnston",
56355
+ "Pacific/Kiritimati",
56356
+ "Pacific/Kosrae",
56357
+ "Pacific/Kwajalein",
56358
+ "Pacific/Majuro",
56359
+ "Pacific/Marquesas",
56360
+ "Pacific/Midway",
56361
+ "Pacific/Nauru",
56362
+ "Pacific/Niue",
56363
+ "Pacific/Norfolk",
56364
+ "Pacific/Noumea",
56365
+ "Pacific/Pago_Pago",
56366
+ "Pacific/Palau",
56367
+ "Pacific/Pitcairn",
56368
+ "Pacific/Ponape",
56369
+ "Pacific/Port_Moresby",
56370
+ "Pacific/Rarotonga",
56371
+ "Pacific/Saipan",
56372
+ "Pacific/Tahiti",
56373
+ "Pacific/Tarawa",
56374
+ "Pacific/Tongatapu",
56375
+ "Pacific/Truk",
56376
+ "Pacific/Wake",
56377
+ "Pacific/Wallis"
56378
+ ],
56379
+ type: "string"
56380
+ }
56381
+ },
56382
+ required: ["time_zone"],
56383
+ type: "object"
56384
+ },
55802
56385
  ultraloq_metadata: {
55803
56386
  description: "Ultraloq-specific metadata to update",
55804
56387
  properties: {