vercel-api-js 1.16.0 → 1.17.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.
@@ -276,6 +276,10 @@ const connectConnectorSchema = z__namespace.object({
276
276
  createdAt: z__namespace.number().describe("Creation time in epoch milliseconds."),
277
277
  updatedAt: z__namespace.number().describe("Last update time in epoch milliseconds."),
278
278
  reinstallAt: z__namespace.number().optional().describe("Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed."),
279
+ knownStale: z__namespace.union([
280
+ z__namespace.literal(false),
281
+ z__namespace.literal(true)
282
+ ]).optional().describe("Whether the connector is known to have been edited since the app package it publishes to the provider was last built, so that package no longer matches it. Absent when it was not computed, or when the connector type publishes no such package. Derived on every read rather than marked at edit time, so reverting an edit clears it. Only reported by connector types that publish a package a user has to re-publish by hand — Microsoft Teams today."),
279
283
  createdBy: z__namespace.discriminatedUnion("type", [
280
284
  z__namespace.object({
281
285
  type: z__namespace.enum([
@@ -426,6 +430,10 @@ const connectConnectorCreateResultSchema = z__namespace.object({
426
430
  createdAt: z__namespace.number().describe("Creation time in epoch milliseconds."),
427
431
  updatedAt: z__namespace.number().describe("Last update time in epoch milliseconds."),
428
432
  reinstallAt: z__namespace.number().optional().describe("Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed."),
433
+ knownStale: z__namespace.union([
434
+ z__namespace.literal(false),
435
+ z__namespace.literal(true)
436
+ ]).optional().describe("Whether the connector is known to have been edited since the app package it publishes to the provider was last built, so that package no longer matches it. Absent when it was not computed, or when the connector type publishes no such package. Derived on every read rather than marked at edit time, so reverting an edit clears it. Only reported by connector types that publish a package a user has to re-publish by hand — Microsoft Teams today."),
429
437
  createdBy: z__namespace.discriminatedUnion("type", [
430
438
  z__namespace.object({
431
439
  type: z__namespace.enum([
@@ -1248,6 +1256,82 @@ const badRequestSchema = z__namespace.object({
1248
1256
  ]),
1249
1257
  message: z__namespace.string()
1250
1258
  }).strict();
1259
+ const registrantFieldSchema = z__namespace.discriminatedUnion("type", [
1260
+ z__namespace.object({
1261
+ description: z__namespace.string(),
1262
+ required: z__namespace.boolean(),
1263
+ label: z__namespace.string().optional(),
1264
+ validation: z__namespace.string().optional(),
1265
+ requiredWhen: z__namespace.union([
1266
+ z__namespace.string(),
1267
+ z__namespace.object({
1268
+ valueIn: z__namespace.array(z__namespace.string()).optional()
1269
+ }).strict()
1270
+ ]).optional(),
1271
+ type: z__namespace.enum([
1272
+ "string"
1273
+ ]),
1274
+ options: z__namespace.array(z__namespace.object({
1275
+ value: z__namespace.string(),
1276
+ label: z__namespace.string(),
1277
+ fields: z__namespace.object({}).optional()
1278
+ }).strict()).optional(),
1279
+ fields: z__namespace.object({}).optional()
1280
+ }).strict(),
1281
+ z__namespace.object({
1282
+ description: z__namespace.string(),
1283
+ required: z__namespace.boolean(),
1284
+ label: z__namespace.string().optional(),
1285
+ validation: z__namespace.string().optional(),
1286
+ requiredWhen: z__namespace.union([
1287
+ z__namespace.string(),
1288
+ z__namespace.object({
1289
+ valueIn: z__namespace.array(z__namespace.string()).optional()
1290
+ }).strict()
1291
+ ]).optional(),
1292
+ type: z__namespace.enum([
1293
+ "enum"
1294
+ ]),
1295
+ options: z__namespace.array(z__namespace.object({
1296
+ value: z__namespace.string(),
1297
+ label: z__namespace.string(),
1298
+ fields: z__namespace.object({}).optional()
1299
+ }).strict()),
1300
+ fields: z__namespace.object({}).optional()
1301
+ }).strict(),
1302
+ z__namespace.object({
1303
+ description: z__namespace.string(),
1304
+ required: z__namespace.boolean(),
1305
+ label: z__namespace.string().optional(),
1306
+ validation: z__namespace.string().optional(),
1307
+ requiredWhen: z__namespace.union([
1308
+ z__namespace.string(),
1309
+ z__namespace.object({
1310
+ valueIn: z__namespace.array(z__namespace.string()).optional()
1311
+ }).strict()
1312
+ ]).optional(),
1313
+ type: z__namespace.enum([
1314
+ "acknowledgement"
1315
+ ]),
1316
+ value: z__namespace.string().optional()
1317
+ }).strict(),
1318
+ z__namespace.object({
1319
+ description: z__namespace.string(),
1320
+ required: z__namespace.boolean(),
1321
+ label: z__namespace.string().optional(),
1322
+ validation: z__namespace.string().optional(),
1323
+ requiredWhen: z__namespace.union([
1324
+ z__namespace.string(),
1325
+ z__namespace.object({
1326
+ valueIn: z__namespace.array(z__namespace.string()).optional()
1327
+ }).strict()
1328
+ ]).optional(),
1329
+ type: z__namespace.enum([
1330
+ "notice"
1331
+ ])
1332
+ }).strict()
1333
+ ]).describe("Schema definition for registrant fields.");
1334
+ const nonEmptyTrimmedStringSchema = z__namespace.string().min(1).regex(/^\S[\s\S]*\S$|^\S$|^$/).describe("a non empty string");
1251
1335
  const domainNotRegisteredSchema = z__namespace.object({
1252
1336
  status: z__namespace.literal(400),
1253
1337
  code: z__namespace.enum([
@@ -1255,13 +1339,6 @@ const domainNotRegisteredSchema = z__namespace.object({
1255
1339
  ]),
1256
1340
  message: z__namespace.string()
1257
1341
  }).strict().describe("The domain is not registered with Vercel.");
1258
- const forbiddenSchema = z__namespace.object({
1259
- status: z__namespace.literal(403),
1260
- code: z__namespace.enum([
1261
- "forbidden"
1262
- ]),
1263
- message: z__namespace.string()
1264
- }).strict();
1265
1342
  const domainNotFoundSchema = z__namespace.object({
1266
1343
  status: z__namespace.literal(404),
1267
1344
  code: z__namespace.enum([
@@ -1276,7 +1353,13 @@ const domainCannotBeTransferedOutUntilSchema = z__namespace.object({
1276
1353
  ]),
1277
1354
  message: z__namespace.string()
1278
1355
  }).strict().describe("The domain cannot be transfered out until the specified date.");
1279
- const nonEmptyTrimmedStringSchema = z__namespace.string().min(1).regex(/^\S[\s\S]*\S$|^\S$|^$/).describe("a non empty string");
1356
+ const forbiddenSchema = z__namespace.object({
1357
+ status: z__namespace.literal(403),
1358
+ code: z__namespace.enum([
1359
+ "forbidden"
1360
+ ]),
1361
+ message: z__namespace.string()
1362
+ }).strict();
1280
1363
  const emailAddressSchema = z__namespace.string().min(1).describe("A valid RFC 5322 email address");
1281
1364
  const e164PhoneNumberSchema = z__namespace.string().min(1).regex(/^(?=(?:\D*\d){8,15}$)\+[1-9]\d{0,2}\.?\d+$/).describe("A valid E.164 phone number");
1282
1365
  const countryCodeSchema = z__namespace.string().describe("A valid ISO 3166-1 alpha-2 country code");
@@ -1288,6 +1371,13 @@ const languageCodeRequiredSchema = z__namespace.object({
1288
1371
  ]),
1289
1372
  message: z__namespace.string()
1290
1373
  }).strict().describe("A language code is required for punycode domains.");
1374
+ const emojiTldNotSupportedSchema = z__namespace.object({
1375
+ status: z__namespace.literal(400),
1376
+ code: z__namespace.enum([
1377
+ "emoji_tld_not_supported"
1378
+ ]),
1379
+ message: z__namespace.string()
1380
+ }).strict().describe("The TLD does not support emoji domain names.");
1291
1381
  const domainNotAvailableSchema = z__namespace.object({
1292
1382
  status: z__namespace.literal(400),
1293
1383
  code: z__namespace.enum([
@@ -1382,81 +1472,6 @@ const boughtTooRecentlySchema = z__namespace.object({
1382
1472
  ]),
1383
1473
  message: z__namespace.string()
1384
1474
  }).strict().describe("The domain was bought too recently to determine verification status.");
1385
- const registrantFieldSchema = z__namespace.discriminatedUnion("type", [
1386
- z__namespace.object({
1387
- description: z__namespace.string(),
1388
- required: z__namespace.boolean(),
1389
- label: z__namespace.string().optional(),
1390
- validation: z__namespace.string().optional(),
1391
- requiredWhen: z__namespace.union([
1392
- z__namespace.string(),
1393
- z__namespace.object({
1394
- valueIn: z__namespace.array(z__namespace.string()).optional()
1395
- }).strict()
1396
- ]).optional(),
1397
- type: z__namespace.enum([
1398
- "string"
1399
- ]),
1400
- options: z__namespace.array(z__namespace.object({
1401
- value: z__namespace.string(),
1402
- label: z__namespace.string(),
1403
- fields: z__namespace.object({}).optional()
1404
- }).strict()).optional(),
1405
- fields: z__namespace.object({}).optional()
1406
- }).strict(),
1407
- z__namespace.object({
1408
- description: z__namespace.string(),
1409
- required: z__namespace.boolean(),
1410
- label: z__namespace.string().optional(),
1411
- validation: z__namespace.string().optional(),
1412
- requiredWhen: z__namespace.union([
1413
- z__namespace.string(),
1414
- z__namespace.object({
1415
- valueIn: z__namespace.array(z__namespace.string()).optional()
1416
- }).strict()
1417
- ]).optional(),
1418
- type: z__namespace.enum([
1419
- "enum"
1420
- ]),
1421
- options: z__namespace.array(z__namespace.object({
1422
- value: z__namespace.string(),
1423
- label: z__namespace.string(),
1424
- fields: z__namespace.object({}).optional()
1425
- }).strict()),
1426
- fields: z__namespace.object({}).optional()
1427
- }).strict(),
1428
- z__namespace.object({
1429
- description: z__namespace.string(),
1430
- required: z__namespace.boolean(),
1431
- label: z__namespace.string().optional(),
1432
- validation: z__namespace.string().optional(),
1433
- requiredWhen: z__namespace.union([
1434
- z__namespace.string(),
1435
- z__namespace.object({
1436
- valueIn: z__namespace.array(z__namespace.string()).optional()
1437
- }).strict()
1438
- ]).optional(),
1439
- type: z__namespace.enum([
1440
- "acknowledgement"
1441
- ]),
1442
- value: z__namespace.string().optional()
1443
- }).strict(),
1444
- z__namespace.object({
1445
- description: z__namespace.string(),
1446
- required: z__namespace.boolean(),
1447
- label: z__namespace.string().optional(),
1448
- validation: z__namespace.string().optional(),
1449
- requiredWhen: z__namespace.union([
1450
- z__namespace.string(),
1451
- z__namespace.object({
1452
- valueIn: z__namespace.array(z__namespace.string()).optional()
1453
- }).strict()
1454
- ]).optional(),
1455
- type: z__namespace.enum([
1456
- "notice"
1457
- ])
1458
- }).strict()
1459
- ]).describe("Schema definition for registrant fields.");
1460
1475
  const globalConfigItemValueSchema = z__namespace.union([
1461
1476
  z__namespace.string(),
1462
1477
  z__namespace.number(),
@@ -1869,6 +1884,7 @@ const userEventSchema = z__namespace.object({
1869
1884
  "organization-delete",
1870
1885
  "organization-dsync-group-delete",
1871
1886
  "organization-dsync-group-upsert",
1887
+ "organization-emu-updated",
1872
1888
  "organization-slug-update",
1873
1889
  "organization-team-add",
1874
1890
  "organization-team-create",
@@ -6968,6 +6984,28 @@ const userEventSchema = z__namespace.object({
6968
6984
  directoryId: z__namespace.string(),
6969
6985
  organizationId: z__namespace.string()
6970
6986
  }).strict(),
6987
+ z__namespace.object({
6988
+ organizationId: z__namespace.string(),
6989
+ previousEnabled: z__namespace.union([
6990
+ z__namespace.literal(false),
6991
+ z__namespace.literal(true)
6992
+ ]),
6993
+ enabled: z__namespace.union([
6994
+ z__namespace.literal(false),
6995
+ z__namespace.literal(true)
6996
+ ]),
6997
+ enforcedTeamIds: z__namespace.array(z__namespace.string()),
6998
+ unenforcedTeamIds: z__namespace.array(z__namespace.string()),
6999
+ trigger: z__namespace.enum([
7000
+ "directory_sync_updated",
7001
+ "domain_deleted",
7002
+ "domain_verified",
7003
+ "saml_updated",
7004
+ "team_attached",
7005
+ "team_participation_updated",
7006
+ "toggle"
7007
+ ])
7008
+ }).strict(),
6971
7009
  z__namespace.object({
6972
7010
  organizationId: z__namespace.string(),
6973
7011
  slug: z__namespace.string()
@@ -8158,7 +8196,11 @@ const userEventSchema = z__namespace.object({
8158
8196
  "preview",
8159
8197
  "prod_deployment_urls_and_all_previews"
8160
8198
  ])
8161
- ]).nullable()
8199
+ ]).nullable(),
8200
+ passwordChanged: z__namespace.union([
8201
+ z__namespace.literal(false),
8202
+ z__namespace.literal(true)
8203
+ ]).optional()
8162
8204
  }).strict(),
8163
8205
  z__namespace.object({
8164
8206
  projectId: z__namespace.string()
@@ -10647,6 +10689,7 @@ const listEventTypeSchema = z__namespace.object({
10647
10689
  "organization-delete",
10648
10690
  "organization-dsync-group-delete",
10649
10691
  "organization-dsync-group-upsert",
10692
+ "organization-emu-updated",
10650
10693
  "organization-slug-update",
10651
10694
  "organization-team-add",
10652
10695
  "organization-team-create",
@@ -11367,6 +11410,7 @@ const listEventTypeSchema = z__namespace.object({
11367
11410
  "organization-delete",
11368
11411
  "organization-dsync-group-delete",
11369
11412
  "organization-dsync-group-upsert",
11413
+ "organization-emu-updated",
11370
11414
  "organization-slug-update",
11371
11415
  "organization-team-add",
11372
11416
  "organization-team-create",
@@ -17130,6 +17174,25 @@ const getDomainPriceErrorSchema = z__namespace.union([
17130
17174
  getDomainPriceStatus429Schema,
17131
17175
  getDomainPriceStatus500Schema
17132
17176
  ]);
17177
+ const getBulkPriceQueryTeamIdSchema = z__namespace.string().optional().meta({
17178
+ examples: [
17179
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
17180
+ ]
17181
+ });
17182
+ const getBulkPriceStatus200Schema = z__namespace.unknown();
17183
+ const getBulkPriceStatus400Schema = z__namespace.unknown();
17184
+ const getBulkPriceStatus401Schema = z__namespace.unknown();
17185
+ const getBulkPriceStatus403Schema = z__namespace.unknown();
17186
+ const getBulkPriceStatus429Schema = z__namespace.unknown();
17187
+ const getBulkPriceStatus500Schema = z__namespace.unknown();
17188
+ const getBulkPriceResponseSchema = getBulkPriceStatus200Schema;
17189
+ const getBulkPriceErrorSchema = z__namespace.union([
17190
+ getBulkPriceStatus400Schema,
17191
+ getBulkPriceStatus401Schema,
17192
+ getBulkPriceStatus403Schema,
17193
+ getBulkPriceStatus429Schema,
17194
+ getBulkPriceStatus500Schema
17195
+ ]);
17133
17196
  const getBulkAvailabilityQueryTeamIdSchema = z__namespace.string().optional().meta({
17134
17197
  examples: [
17135
17198
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -17149,6 +17212,45 @@ const getBulkAvailabilityErrorSchema = z__namespace.union([
17149
17212
  getBulkAvailabilityStatus429Schema,
17150
17213
  getBulkAvailabilityStatus500Schema
17151
17214
  ]);
17215
+ const searchDomainsQueryTeamIdSchema = z__namespace.string().optional().meta({
17216
+ examples: [
17217
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
17218
+ ]
17219
+ });
17220
+ const searchDomainsStatus200Schema = z__namespace.unknown();
17221
+ const searchDomainsStatus400Schema = z__namespace.unknown();
17222
+ const searchDomainsStatus401Schema = z__namespace.unknown();
17223
+ const searchDomainsStatus403Schema = z__namespace.unknown();
17224
+ const searchDomainsStatus429Schema = z__namespace.unknown();
17225
+ const searchDomainsStatus500Schema = z__namespace.unknown();
17226
+ const searchDomainsResponseSchema = searchDomainsStatus200Schema;
17227
+ const searchDomainsErrorSchema = z__namespace.union([
17228
+ searchDomainsStatus400Schema,
17229
+ searchDomainsStatus401Schema,
17230
+ searchDomainsStatus403Schema,
17231
+ searchDomainsStatus429Schema,
17232
+ searchDomainsStatus500Schema
17233
+ ]);
17234
+ const getContactInfoSchemaPathDomainSchema = z__namespace.unknown();
17235
+ const getContactInfoSchemaQueryTeamIdSchema = z__namespace.string().optional().meta({
17236
+ examples: [
17237
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
17238
+ ]
17239
+ });
17240
+ const getContactInfoSchemaStatus200Schema = z__namespace.unknown();
17241
+ const getContactInfoSchemaStatus400Schema = z__namespace.unknown();
17242
+ const getContactInfoSchemaStatus401Schema = z__namespace.unknown();
17243
+ const getContactInfoSchemaStatus403Schema = z__namespace.unknown();
17244
+ const getContactInfoSchemaStatus429Schema = z__namespace.unknown();
17245
+ const getContactInfoSchemaStatus500Schema = z__namespace.unknown();
17246
+ const getContactInfoSchemaResponseSchema = getContactInfoSchemaStatus200Schema;
17247
+ const getContactInfoSchemaErrorSchema = z__namespace.union([
17248
+ getContactInfoSchemaStatus400Schema,
17249
+ getContactInfoSchemaStatus401Schema,
17250
+ getContactInfoSchemaStatus403Schema,
17251
+ getContactInfoSchemaStatus429Schema,
17252
+ getContactInfoSchemaStatus500Schema
17253
+ ]);
17152
17254
  const getDomainAuthCodePathDomainSchema = z__namespace.unknown();
17153
17255
  const getDomainAuthCodeQueryTeamIdSchema = z__namespace.string().optional().meta({
17154
17256
  examples: [
@@ -17342,26 +17444,6 @@ const getDomainContactVerificationErrorSchema = z__namespace.union([
17342
17444
  getDomainContactVerificationStatus429Schema,
17343
17445
  getDomainContactVerificationStatus500Schema
17344
17446
  ]);
17345
- const getContactInfoSchemaPathDomainSchema = z__namespace.unknown();
17346
- const getContactInfoSchemaQueryTeamIdSchema = z__namespace.string().optional().meta({
17347
- examples: [
17348
- "team_1a2b3c4d5e6f7g8h9i0j1k2l"
17349
- ]
17350
- });
17351
- const getContactInfoSchemaStatus200Schema = z__namespace.unknown();
17352
- const getContactInfoSchemaStatus400Schema = z__namespace.unknown();
17353
- const getContactInfoSchemaStatus401Schema = z__namespace.unknown();
17354
- const getContactInfoSchemaStatus403Schema = z__namespace.unknown();
17355
- const getContactInfoSchemaStatus429Schema = z__namespace.unknown();
17356
- const getContactInfoSchemaStatus500Schema = z__namespace.unknown();
17357
- const getContactInfoSchemaResponseSchema = getContactInfoSchemaStatus200Schema;
17358
- const getContactInfoSchemaErrorSchema = z__namespace.union([
17359
- getContactInfoSchemaStatus400Schema,
17360
- getContactInfoSchemaStatus401Schema,
17361
- getContactInfoSchemaStatus403Schema,
17362
- getContactInfoSchemaStatus429Schema,
17363
- getContactInfoSchemaStatus500Schema
17364
- ]);
17365
17447
  const getOrderPathOrderIdSchema = z__namespace.unknown();
17366
17448
  const getOrderQueryTeamIdSchema = z__namespace.string().optional().meta({
17367
17449
  examples: [
@@ -27999,6 +28081,7 @@ exports.editRouteStatus409Schema = editRouteStatus409Schema;
27999
28081
  exports.editRouteStatus410Schema = editRouteStatus410Schema;
28000
28082
  exports.editRouteStatus500Schema = editRouteStatus500Schema;
28001
28083
  exports.emailAddressSchema = emailAddressSchema;
28084
+ exports.emojiTldNotSupportedSchema = emojiTldNotSupportedSchema;
28002
28085
  exports.exchangeSsoTokenErrorSchema = exchangeSsoTokenErrorSchema;
28003
28086
  exports.exchangeSsoTokenResponseSchema = exchangeSsoTokenResponseSchema;
28004
28087
  exports.exchangeSsoTokenStatus200Schema = exchangeSsoTokenStatus200Schema;
@@ -28204,6 +28287,15 @@ exports.getBulkAvailabilityStatus401Schema = getBulkAvailabilityStatus401Schema;
28204
28287
  exports.getBulkAvailabilityStatus403Schema = getBulkAvailabilityStatus403Schema;
28205
28288
  exports.getBulkAvailabilityStatus429Schema = getBulkAvailabilityStatus429Schema;
28206
28289
  exports.getBulkAvailabilityStatus500Schema = getBulkAvailabilityStatus500Schema;
28290
+ exports.getBulkPriceErrorSchema = getBulkPriceErrorSchema;
28291
+ exports.getBulkPriceQueryTeamIdSchema = getBulkPriceQueryTeamIdSchema;
28292
+ exports.getBulkPriceResponseSchema = getBulkPriceResponseSchema;
28293
+ exports.getBulkPriceStatus200Schema = getBulkPriceStatus200Schema;
28294
+ exports.getBulkPriceStatus400Schema = getBulkPriceStatus400Schema;
28295
+ exports.getBulkPriceStatus401Schema = getBulkPriceStatus401Schema;
28296
+ exports.getBulkPriceStatus403Schema = getBulkPriceStatus403Schema;
28297
+ exports.getBulkPriceStatus429Schema = getBulkPriceStatus429Schema;
28298
+ exports.getBulkPriceStatus500Schema = getBulkPriceStatus500Schema;
28207
28299
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema;
28208
28300
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema;
28209
28301
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema;
@@ -30680,6 +30772,15 @@ exports.runSessionCommandStatus500Schema = runSessionCommandStatus500Schema;
30680
30772
  exports.sandboxInjectionRuleSchema = sandboxInjectionRuleSchema;
30681
30773
  exports.sandboxNetworkPolicySchema = sandboxNetworkPolicySchema;
30682
30774
  exports.sandboxPublicRouteSchema = sandboxPublicRouteSchema;
30775
+ exports.searchDomainsErrorSchema = searchDomainsErrorSchema;
30776
+ exports.searchDomainsQueryTeamIdSchema = searchDomainsQueryTeamIdSchema;
30777
+ exports.searchDomainsResponseSchema = searchDomainsResponseSchema;
30778
+ exports.searchDomainsStatus200Schema = searchDomainsStatus200Schema;
30779
+ exports.searchDomainsStatus400Schema = searchDomainsStatus400Schema;
30780
+ exports.searchDomainsStatus401Schema = searchDomainsStatus401Schema;
30781
+ exports.searchDomainsStatus403Schema = searchDomainsStatus403Schema;
30782
+ exports.searchDomainsStatus429Schema = searchDomainsStatus429Schema;
30783
+ exports.searchDomainsStatus500Schema = searchDomainsStatus500Schema;
30683
30784
  exports.searchRepoErrorSchema = searchRepoErrorSchema;
30684
30785
  exports.searchRepoQueryHostSchema = searchRepoQueryHostSchema;
30685
30786
  exports.searchRepoQueryInstallationIdSchema = searchRepoQueryInstallationIdSchema;
package/dist/schemas.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
- var schemas = require('./schemas-tv2viiu8.cjs');
3
+ var schemas = require('./schemas-k0m5cdq9.cjs');
4
4
 
5
5
 
6
6
 
@@ -1650,6 +1650,7 @@ exports.editRouteStatus409Schema = schemas.editRouteStatus409Schema;
1650
1650
  exports.editRouteStatus410Schema = schemas.editRouteStatus410Schema;
1651
1651
  exports.editRouteStatus500Schema = schemas.editRouteStatus500Schema;
1652
1652
  exports.emailAddressSchema = schemas.emailAddressSchema;
1653
+ exports.emojiTldNotSupportedSchema = schemas.emojiTldNotSupportedSchema;
1653
1654
  exports.exchangeSsoTokenErrorSchema = schemas.exchangeSsoTokenErrorSchema;
1654
1655
  exports.exchangeSsoTokenResponseSchema = schemas.exchangeSsoTokenResponseSchema;
1655
1656
  exports.exchangeSsoTokenStatus200Schema = schemas.exchangeSsoTokenStatus200Schema;
@@ -1855,6 +1856,15 @@ exports.getBulkAvailabilityStatus401Schema = schemas.getBulkAvailabilityStatus40
1855
1856
  exports.getBulkAvailabilityStatus403Schema = schemas.getBulkAvailabilityStatus403Schema;
1856
1857
  exports.getBulkAvailabilityStatus429Schema = schemas.getBulkAvailabilityStatus429Schema;
1857
1858
  exports.getBulkAvailabilityStatus500Schema = schemas.getBulkAvailabilityStatus500Schema;
1859
+ exports.getBulkPriceErrorSchema = schemas.getBulkPriceErrorSchema;
1860
+ exports.getBulkPriceQueryTeamIdSchema = schemas.getBulkPriceQueryTeamIdSchema;
1861
+ exports.getBulkPriceResponseSchema = schemas.getBulkPriceResponseSchema;
1862
+ exports.getBulkPriceStatus200Schema = schemas.getBulkPriceStatus200Schema;
1863
+ exports.getBulkPriceStatus400Schema = schemas.getBulkPriceStatus400Schema;
1864
+ exports.getBulkPriceStatus401Schema = schemas.getBulkPriceStatus401Schema;
1865
+ exports.getBulkPriceStatus403Schema = schemas.getBulkPriceStatus403Schema;
1866
+ exports.getBulkPriceStatus429Schema = schemas.getBulkPriceStatus429Schema;
1867
+ exports.getBulkPriceStatus500Schema = schemas.getBulkPriceStatus500Schema;
1858
1868
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema = schemas.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema;
1859
1869
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = schemas.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema;
1860
1870
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = schemas.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema;
@@ -4331,6 +4341,15 @@ exports.runSessionCommandStatus500Schema = schemas.runSessionCommandStatus500Sch
4331
4341
  exports.sandboxInjectionRuleSchema = schemas.sandboxInjectionRuleSchema;
4332
4342
  exports.sandboxNetworkPolicySchema = schemas.sandboxNetworkPolicySchema;
4333
4343
  exports.sandboxPublicRouteSchema = schemas.sandboxPublicRouteSchema;
4344
+ exports.searchDomainsErrorSchema = schemas.searchDomainsErrorSchema;
4345
+ exports.searchDomainsQueryTeamIdSchema = schemas.searchDomainsQueryTeamIdSchema;
4346
+ exports.searchDomainsResponseSchema = schemas.searchDomainsResponseSchema;
4347
+ exports.searchDomainsStatus200Schema = schemas.searchDomainsStatus200Schema;
4348
+ exports.searchDomainsStatus400Schema = schemas.searchDomainsStatus400Schema;
4349
+ exports.searchDomainsStatus401Schema = schemas.searchDomainsStatus401Schema;
4350
+ exports.searchDomainsStatus403Schema = schemas.searchDomainsStatus403Schema;
4351
+ exports.searchDomainsStatus429Schema = schemas.searchDomainsStatus429Schema;
4352
+ exports.searchDomainsStatus500Schema = schemas.searchDomainsStatus500Schema;
4334
4353
  exports.searchRepoErrorSchema = schemas.searchRepoErrorSchema;
4335
4354
  exports.searchRepoQueryHostSchema = schemas.searchRepoQueryHostSchema;
4336
4355
  exports.searchRepoQueryInstallationIdSchema = schemas.searchRepoQueryInstallationIdSchema;