vercel-api-js 1.16.1 → 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(),
@@ -8181,7 +8196,11 @@ const userEventSchema = z__namespace.object({
8181
8196
  "preview",
8182
8197
  "prod_deployment_urls_and_all_previews"
8183
8198
  ])
8184
- ]).nullable()
8199
+ ]).nullable(),
8200
+ passwordChanged: z__namespace.union([
8201
+ z__namespace.literal(false),
8202
+ z__namespace.literal(true)
8203
+ ]).optional()
8185
8204
  }).strict(),
8186
8205
  z__namespace.object({
8187
8206
  projectId: z__namespace.string()
@@ -17155,6 +17174,25 @@ const getDomainPriceErrorSchema = z__namespace.union([
17155
17174
  getDomainPriceStatus429Schema,
17156
17175
  getDomainPriceStatus500Schema
17157
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
+ ]);
17158
17196
  const getBulkAvailabilityQueryTeamIdSchema = z__namespace.string().optional().meta({
17159
17197
  examples: [
17160
17198
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -17174,6 +17212,45 @@ const getBulkAvailabilityErrorSchema = z__namespace.union([
17174
17212
  getBulkAvailabilityStatus429Schema,
17175
17213
  getBulkAvailabilityStatus500Schema
17176
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
+ ]);
17177
17254
  const getDomainAuthCodePathDomainSchema = z__namespace.unknown();
17178
17255
  const getDomainAuthCodeQueryTeamIdSchema = z__namespace.string().optional().meta({
17179
17256
  examples: [
@@ -17367,26 +17444,6 @@ const getDomainContactVerificationErrorSchema = z__namespace.union([
17367
17444
  getDomainContactVerificationStatus429Schema,
17368
17445
  getDomainContactVerificationStatus500Schema
17369
17446
  ]);
17370
- const getContactInfoSchemaPathDomainSchema = z__namespace.unknown();
17371
- const getContactInfoSchemaQueryTeamIdSchema = z__namespace.string().optional().meta({
17372
- examples: [
17373
- "team_1a2b3c4d5e6f7g8h9i0j1k2l"
17374
- ]
17375
- });
17376
- const getContactInfoSchemaStatus200Schema = z__namespace.unknown();
17377
- const getContactInfoSchemaStatus400Schema = z__namespace.unknown();
17378
- const getContactInfoSchemaStatus401Schema = z__namespace.unknown();
17379
- const getContactInfoSchemaStatus403Schema = z__namespace.unknown();
17380
- const getContactInfoSchemaStatus429Schema = z__namespace.unknown();
17381
- const getContactInfoSchemaStatus500Schema = z__namespace.unknown();
17382
- const getContactInfoSchemaResponseSchema = getContactInfoSchemaStatus200Schema;
17383
- const getContactInfoSchemaErrorSchema = z__namespace.union([
17384
- getContactInfoSchemaStatus400Schema,
17385
- getContactInfoSchemaStatus401Schema,
17386
- getContactInfoSchemaStatus403Schema,
17387
- getContactInfoSchemaStatus429Schema,
17388
- getContactInfoSchemaStatus500Schema
17389
- ]);
17390
17447
  const getOrderPathOrderIdSchema = z__namespace.unknown();
17391
17448
  const getOrderQueryTeamIdSchema = z__namespace.string().optional().meta({
17392
17449
  examples: [
@@ -28024,6 +28081,7 @@ exports.editRouteStatus409Schema = editRouteStatus409Schema;
28024
28081
  exports.editRouteStatus410Schema = editRouteStatus410Schema;
28025
28082
  exports.editRouteStatus500Schema = editRouteStatus500Schema;
28026
28083
  exports.emailAddressSchema = emailAddressSchema;
28084
+ exports.emojiTldNotSupportedSchema = emojiTldNotSupportedSchema;
28027
28085
  exports.exchangeSsoTokenErrorSchema = exchangeSsoTokenErrorSchema;
28028
28086
  exports.exchangeSsoTokenResponseSchema = exchangeSsoTokenResponseSchema;
28029
28087
  exports.exchangeSsoTokenStatus200Schema = exchangeSsoTokenStatus200Schema;
@@ -28229,6 +28287,15 @@ exports.getBulkAvailabilityStatus401Schema = getBulkAvailabilityStatus401Schema;
28229
28287
  exports.getBulkAvailabilityStatus403Schema = getBulkAvailabilityStatus403Schema;
28230
28288
  exports.getBulkAvailabilityStatus429Schema = getBulkAvailabilityStatus429Schema;
28231
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;
28232
28299
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema;
28233
28300
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema;
28234
28301
  exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema;
@@ -30705,6 +30772,15 @@ exports.runSessionCommandStatus500Schema = runSessionCommandStatus500Schema;
30705
30772
  exports.sandboxInjectionRuleSchema = sandboxInjectionRuleSchema;
30706
30773
  exports.sandboxNetworkPolicySchema = sandboxNetworkPolicySchema;
30707
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;
30708
30784
  exports.searchRepoErrorSchema = searchRepoErrorSchema;
30709
30785
  exports.searchRepoQueryHostSchema = searchRepoQueryHostSchema;
30710
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-ftf6cy1n.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;