vercel-api-js 1.7.2 → 1.8.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/index.cjs CHANGED
@@ -2156,14 +2156,14 @@ const resolveUrl = (url, queryParams = {})=>{
2156
2156
  return data;
2157
2157
  }
2158
2158
  /**
2159
- * @summary Get Edge Configs
2160
- * @description Returns all Edge Configs.
2161
- * @link /v1/edge-config
2159
+ * @summary Get Global Configs
2160
+ * @description Returns all Global Configs.
2161
+ * @link /v1/global-config
2162
2162
  */ async function getEdgeConfigs({ queryParams, config } = {}) {
2163
2163
  const { client: request = client, ...requestConfig } = config ?? {};
2164
2164
  const data = await request({
2165
2165
  method: "GET",
2166
- url: `/v1/edge-config`,
2166
+ url: `/v1/global-config`,
2167
2167
  queryParams,
2168
2168
  ...requestConfig,
2169
2169
  headers: {
@@ -2173,14 +2173,14 @@ const resolveUrl = (url, queryParams = {})=>{
2173
2173
  return data;
2174
2174
  }
2175
2175
  /**
2176
- * @summary Create an Edge Config
2177
- * @description Creates an Edge Config.
2178
- * @link /v1/edge-config
2176
+ * @summary Create a Global Config
2177
+ * @description Creates a Global Config.
2178
+ * @link /v1/global-config
2179
2179
  */ async function createEdgeConfig({ queryParams, config } = {}) {
2180
2180
  const { client: request = client, ...requestConfig } = config ?? {};
2181
2181
  const data = await request({
2182
2182
  method: "POST",
2183
- url: `/v1/edge-config`,
2183
+ url: `/v1/global-config`,
2184
2184
  queryParams,
2185
2185
  ...requestConfig,
2186
2186
  headers: {
@@ -2190,9 +2190,9 @@ const resolveUrl = (url, queryParams = {})=>{
2190
2190
  return data;
2191
2191
  }
2192
2192
  /**
2193
- * @summary Get an Edge Config
2194
- * @description Returns an Edge Config.
2195
- * @link /v1/edge-config/{edgeConfigId}
2193
+ * @summary Get a Global Config
2194
+ * @description Returns a Global Config.
2195
+ * @link /v1/global-config/{edgeConfigId}
2196
2196
  */ async function getEdgeConfig({ pathParams, queryParams, config } = {}) {
2197
2197
  const { client: request = client, ...requestConfig } = config ?? {};
2198
2198
  if (!pathParams.edgeConfigId) {
@@ -2200,7 +2200,7 @@ const resolveUrl = (url, queryParams = {})=>{
2200
2200
  }
2201
2201
  const data = await request({
2202
2202
  method: "GET",
2203
- url: `/v1/edge-config/${pathParams.edgeConfigId}`,
2203
+ url: `/v1/global-config/${pathParams.edgeConfigId}`,
2204
2204
  queryParams,
2205
2205
  ...requestConfig,
2206
2206
  headers: {
@@ -2210,9 +2210,9 @@ const resolveUrl = (url, queryParams = {})=>{
2210
2210
  return data;
2211
2211
  }
2212
2212
  /**
2213
- * @summary Update an Edge Config
2214
- * @description Updates an Edge Config.
2215
- * @link /v1/edge-config/{edgeConfigId}
2213
+ * @summary Update a Global Config
2214
+ * @description Updates a Global Config.
2215
+ * @link /v1/global-config/{edgeConfigId}
2216
2216
  */ async function updateEdgeConfig({ pathParams, queryParams, config } = {}) {
2217
2217
  const { client: request = client, ...requestConfig } = config ?? {};
2218
2218
  if (!pathParams.edgeConfigId) {
@@ -2220,7 +2220,7 @@ const resolveUrl = (url, queryParams = {})=>{
2220
2220
  }
2221
2221
  const data = await request({
2222
2222
  method: "PUT",
2223
- url: `/v1/edge-config/${pathParams.edgeConfigId}`,
2223
+ url: `/v1/global-config/${pathParams.edgeConfigId}`,
2224
2224
  queryParams,
2225
2225
  ...requestConfig,
2226
2226
  headers: {
@@ -2230,9 +2230,9 @@ const resolveUrl = (url, queryParams = {})=>{
2230
2230
  return data;
2231
2231
  }
2232
2232
  /**
2233
- * @summary Delete an Edge Config
2234
- * @description Delete an Edge Config by id.
2235
- * @link /v1/edge-config/{edgeConfigId}
2233
+ * @summary Delete a Global Config
2234
+ * @description Delete a Global Config by id.
2235
+ * @link /v1/global-config/{edgeConfigId}
2236
2236
  */ async function deleteEdgeConfig({ pathParams, queryParams, config } = {}) {
2237
2237
  const { client: request = client, ...requestConfig } = config ?? {};
2238
2238
  if (!pathParams.edgeConfigId) {
@@ -2240,7 +2240,7 @@ const resolveUrl = (url, queryParams = {})=>{
2240
2240
  }
2241
2241
  const data = await request({
2242
2242
  method: "DELETE",
2243
- url: `/v1/edge-config/${pathParams.edgeConfigId}`,
2243
+ url: `/v1/global-config/${pathParams.edgeConfigId}`,
2244
2244
  queryParams,
2245
2245
  ...requestConfig,
2246
2246
  headers: {
@@ -2250,9 +2250,9 @@ const resolveUrl = (url, queryParams = {})=>{
2250
2250
  return data;
2251
2251
  }
2252
2252
  /**
2253
- * @summary Get Edge Config items
2254
- * @description Returns all items of an Edge Config.
2255
- * @link /v1/edge-config/{edgeConfigId}/items
2253
+ * @summary Get Global Config items
2254
+ * @description Returns all items of a Global Config.
2255
+ * @link /v1/global-config/{edgeConfigId}/items
2256
2256
  */ async function getEdgeConfigItems({ pathParams, queryParams, config } = {}) {
2257
2257
  const { client: request = client, ...requestConfig } = config ?? {};
2258
2258
  if (!pathParams.edgeConfigId) {
@@ -2260,7 +2260,7 @@ const resolveUrl = (url, queryParams = {})=>{
2260
2260
  }
2261
2261
  const data = await request({
2262
2262
  method: "GET",
2263
- url: `/v1/edge-config/${pathParams.edgeConfigId}/items`,
2263
+ url: `/v1/global-config/${pathParams.edgeConfigId}/items`,
2264
2264
  queryParams,
2265
2265
  ...requestConfig,
2266
2266
  headers: {
@@ -2270,9 +2270,9 @@ const resolveUrl = (url, queryParams = {})=>{
2270
2270
  return data;
2271
2271
  }
2272
2272
  /**
2273
- * @summary Update Edge Config items in batch
2274
- * @description Update multiple Edge Config Items in batch.
2275
- * @link /v1/edge-config/{edgeConfigId}/items
2273
+ * @summary Update Global Config items in batch
2274
+ * @description Update multiple Global Config Items in batch.
2275
+ * @link /v1/global-config/{edgeConfigId}/items
2276
2276
  */ async function patchEdgeConfigItems({ pathParams, queryParams, config } = {}) {
2277
2277
  const { client: request = client, ...requestConfig } = config ?? {};
2278
2278
  if (!pathParams.edgeConfigId) {
@@ -2280,7 +2280,7 @@ const resolveUrl = (url, queryParams = {})=>{
2280
2280
  }
2281
2281
  const data = await request({
2282
2282
  method: "PATCH",
2283
- url: `/v1/edge-config/${pathParams.edgeConfigId}/items`,
2283
+ url: `/v1/global-config/${pathParams.edgeConfigId}/items`,
2284
2284
  queryParams,
2285
2285
  ...requestConfig,
2286
2286
  headers: {
@@ -2290,9 +2290,9 @@ const resolveUrl = (url, queryParams = {})=>{
2290
2290
  return data;
2291
2291
  }
2292
2292
  /**
2293
- * @summary Get Edge Config schema
2294
- * @description Returns the schema of an Edge Config.
2295
- * @link /v1/edge-config/{edgeConfigId}/schema
2293
+ * @summary Get Global Config schema
2294
+ * @description Returns the schema of a Global Config.
2295
+ * @link /v1/global-config/{edgeConfigId}/schema
2296
2296
  */ async function getEdgeConfigSchema({ pathParams, queryParams, config } = {}) {
2297
2297
  const { client: request = client, ...requestConfig } = config ?? {};
2298
2298
  if (!pathParams.edgeConfigId) {
@@ -2300,7 +2300,7 @@ const resolveUrl = (url, queryParams = {})=>{
2300
2300
  }
2301
2301
  const data = await request({
2302
2302
  method: "GET",
2303
- url: `/v1/edge-config/${pathParams.edgeConfigId}/schema`,
2303
+ url: `/v1/global-config/${pathParams.edgeConfigId}/schema`,
2304
2304
  queryParams,
2305
2305
  ...requestConfig,
2306
2306
  headers: {
@@ -2310,9 +2310,9 @@ const resolveUrl = (url, queryParams = {})=>{
2310
2310
  return data;
2311
2311
  }
2312
2312
  /**
2313
- * @summary Update Edge Config schema
2314
- * @description Update an Edge Config's schema.
2315
- * @link /v1/edge-config/{edgeConfigId}/schema
2313
+ * @summary Update Global Config schema
2314
+ * @description Update a Global Config's schema.
2315
+ * @link /v1/global-config/{edgeConfigId}/schema
2316
2316
  */ async function patchEdgeConfigSchema({ pathParams, queryParams, config } = {}) {
2317
2317
  const { client: request = client, ...requestConfig } = config ?? {};
2318
2318
  if (!pathParams.edgeConfigId) {
@@ -2320,7 +2320,7 @@ const resolveUrl = (url, queryParams = {})=>{
2320
2320
  }
2321
2321
  const data = await request({
2322
2322
  method: "POST",
2323
- url: `/v1/edge-config/${pathParams.edgeConfigId}/schema`,
2323
+ url: `/v1/global-config/${pathParams.edgeConfigId}/schema`,
2324
2324
  queryParams,
2325
2325
  ...requestConfig,
2326
2326
  headers: {
@@ -2330,9 +2330,9 @@ const resolveUrl = (url, queryParams = {})=>{
2330
2330
  return data;
2331
2331
  }
2332
2332
  /**
2333
- * @summary Delete an Edge Config's schema
2334
- * @description Deletes the schema of existing Edge Config.
2335
- * @link /v1/edge-config/{edgeConfigId}/schema
2333
+ * @summary Delete a Global Config's schema
2334
+ * @description Deletes the schema of existing Global Config.
2335
+ * @link /v1/global-config/{edgeConfigId}/schema
2336
2336
  */ async function deleteEdgeConfigSchema({ pathParams, queryParams, config } = {}) {
2337
2337
  const { client: request = client, ...requestConfig } = config ?? {};
2338
2338
  if (!pathParams.edgeConfigId) {
@@ -2340,7 +2340,7 @@ const resolveUrl = (url, queryParams = {})=>{
2340
2340
  }
2341
2341
  const data = await request({
2342
2342
  method: "DELETE",
2343
- url: `/v1/edge-config/${pathParams.edgeConfigId}/schema`,
2343
+ url: `/v1/global-config/${pathParams.edgeConfigId}/schema`,
2344
2344
  queryParams,
2345
2345
  ...requestConfig,
2346
2346
  headers: {
@@ -2350,9 +2350,9 @@ const resolveUrl = (url, queryParams = {})=>{
2350
2350
  return data;
2351
2351
  }
2352
2352
  /**
2353
- * @summary Get an Edge Config item
2354
- * @description Returns a specific Edge Config Item.
2355
- * @link /v1/edge-config/{edgeConfigId}/item/{edgeConfigItemKey}
2353
+ * @summary Get a Global Config item
2354
+ * @description Returns a specific Global Config Item.
2355
+ * @link /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}
2356
2356
  */ async function getEdgeConfigItem({ pathParams, queryParams, config } = {}) {
2357
2357
  const { client: request = client, ...requestConfig } = config ?? {};
2358
2358
  if (!pathParams.edgeConfigId) {
@@ -2363,7 +2363,7 @@ const resolveUrl = (url, queryParams = {})=>{
2363
2363
  }
2364
2364
  const data = await request({
2365
2365
  method: "GET",
2366
- url: `/v1/edge-config/${pathParams.edgeConfigId}/item/${pathParams.edgeConfigItemKey}`,
2366
+ url: `/v1/global-config/${pathParams.edgeConfigId}/item/${pathParams.edgeConfigItemKey}`,
2367
2367
  queryParams,
2368
2368
  ...requestConfig,
2369
2369
  headers: {
@@ -2373,9 +2373,9 @@ const resolveUrl = (url, queryParams = {})=>{
2373
2373
  return data;
2374
2374
  }
2375
2375
  /**
2376
- * @summary Get all tokens of an Edge Config
2377
- * @description Returns all tokens of an Edge Config.
2378
- * @link /v1/edge-config/{edgeConfigId}/tokens
2376
+ * @summary Get all tokens of a Global Config
2377
+ * @description Returns all tokens of a Global Config.
2378
+ * @link /v1/global-config/{edgeConfigId}/tokens
2379
2379
  */ async function getEdgeConfigTokens({ pathParams, queryParams, config } = {}) {
2380
2380
  const { client: request = client, ...requestConfig } = config ?? {};
2381
2381
  if (!pathParams.edgeConfigId) {
@@ -2383,7 +2383,7 @@ const resolveUrl = (url, queryParams = {})=>{
2383
2383
  }
2384
2384
  const data = await request({
2385
2385
  method: "GET",
2386
- url: `/v1/edge-config/${pathParams.edgeConfigId}/tokens`,
2386
+ url: `/v1/global-config/${pathParams.edgeConfigId}/tokens`,
2387
2387
  queryParams,
2388
2388
  ...requestConfig,
2389
2389
  headers: {
@@ -2393,9 +2393,9 @@ const resolveUrl = (url, queryParams = {})=>{
2393
2393
  return data;
2394
2394
  }
2395
2395
  /**
2396
- * @summary Delete one or more Edge Config tokens
2397
- * @description Deletes one or more tokens of an existing Edge Config.
2398
- * @link /v1/edge-config/{edgeConfigId}/tokens
2396
+ * @summary Delete one or more Global Config tokens
2397
+ * @description Deletes one or more tokens of an existing Global Config.
2398
+ * @link /v1/global-config/{edgeConfigId}/tokens
2399
2399
  */ async function deleteEdgeConfigTokens({ pathParams, queryParams, config } = {}) {
2400
2400
  const { client: request = client, ...requestConfig } = config ?? {};
2401
2401
  if (!pathParams.edgeConfigId) {
@@ -2403,7 +2403,7 @@ const resolveUrl = (url, queryParams = {})=>{
2403
2403
  }
2404
2404
  const data = await request({
2405
2405
  method: "DELETE",
2406
- url: `/v1/edge-config/${pathParams.edgeConfigId}/tokens`,
2406
+ url: `/v1/global-config/${pathParams.edgeConfigId}/tokens`,
2407
2407
  queryParams,
2408
2408
  ...requestConfig,
2409
2409
  headers: {
@@ -2413,9 +2413,9 @@ const resolveUrl = (url, queryParams = {})=>{
2413
2413
  return data;
2414
2414
  }
2415
2415
  /**
2416
- * @summary Get Edge Config token meta data
2417
- * @description Return meta data about an Edge Config token.
2418
- * @link /v1/edge-config/{edgeConfigId}/token/{token}
2416
+ * @summary Get Global Config token meta data
2417
+ * @description Return meta data about a Global Config token.
2418
+ * @link /v1/global-config/{edgeConfigId}/token/{token}
2419
2419
  */ async function getEdgeConfigToken({ pathParams, queryParams, config } = {}) {
2420
2420
  const { client: request = client, ...requestConfig } = config ?? {};
2421
2421
  if (!pathParams.edgeConfigId) {
@@ -2426,7 +2426,7 @@ const resolveUrl = (url, queryParams = {})=>{
2426
2426
  }
2427
2427
  const data = await request({
2428
2428
  method: "GET",
2429
- url: `/v1/edge-config/${pathParams.edgeConfigId}/token/${pathParams.token}`,
2429
+ url: `/v1/global-config/${pathParams.edgeConfigId}/token/${pathParams.token}`,
2430
2430
  queryParams,
2431
2431
  ...requestConfig,
2432
2432
  headers: {
@@ -2436,9 +2436,9 @@ const resolveUrl = (url, queryParams = {})=>{
2436
2436
  return data;
2437
2437
  }
2438
2438
  /**
2439
- * @summary Create an Edge Config token
2440
- * @description Adds a token to an existing Edge Config.
2441
- * @link /v1/edge-config/{edgeConfigId}/token
2439
+ * @summary Create a Global Config token
2440
+ * @description Adds a token to an existing Global Config.
2441
+ * @link /v1/global-config/{edgeConfigId}/token
2442
2442
  */ async function createEdgeConfigToken({ pathParams, queryParams, config } = {}) {
2443
2443
  const { client: request = client, ...requestConfig } = config ?? {};
2444
2444
  if (!pathParams.edgeConfigId) {
@@ -2446,7 +2446,7 @@ const resolveUrl = (url, queryParams = {})=>{
2446
2446
  }
2447
2447
  const data = await request({
2448
2448
  method: "POST",
2449
- url: `/v1/edge-config/${pathParams.edgeConfigId}/token`,
2449
+ url: `/v1/global-config/${pathParams.edgeConfigId}/token`,
2450
2450
  queryParams,
2451
2451
  ...requestConfig,
2452
2452
  headers: {
@@ -2456,9 +2456,9 @@ const resolveUrl = (url, queryParams = {})=>{
2456
2456
  return data;
2457
2457
  }
2458
2458
  /**
2459
- * @summary Get Edge Config backup
2460
- * @description Retrieves a specific version of an Edge Config from backup storage.
2461
- * @link /v1/edge-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}
2459
+ * @summary Get Global Config backup
2460
+ * @description Retrieves a specific version of a Global Config from backup storage.
2461
+ * @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}
2462
2462
  */ async function getEdgeConfigBackup({ pathParams, queryParams, config } = {}) {
2463
2463
  const { client: request = client, ...requestConfig } = config ?? {};
2464
2464
  if (!pathParams.edgeConfigId) {
@@ -2469,7 +2469,7 @@ const resolveUrl = (url, queryParams = {})=>{
2469
2469
  }
2470
2470
  const data = await request({
2471
2471
  method: "GET",
2472
- url: `/v1/edge-config/${pathParams.edgeConfigId}/backups/${pathParams.edgeConfigBackupVersionId}`,
2472
+ url: `/v1/global-config/${pathParams.edgeConfigId}/backups/${pathParams.edgeConfigBackupVersionId}`,
2473
2473
  queryParams,
2474
2474
  ...requestConfig,
2475
2475
  headers: {
@@ -2479,9 +2479,9 @@ const resolveUrl = (url, queryParams = {})=>{
2479
2479
  return data;
2480
2480
  }
2481
2481
  /**
2482
- * @summary Restore Edge Config backup
2483
- * @description Restores an Edge Config backup.
2484
- * @link /v1/edge-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore
2482
+ * @summary Restore Global Config backup
2483
+ * @description Restores a Global Config backup.
2484
+ * @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore
2485
2485
  */ async function restoreEdgeConfigBackup({ pathParams, queryParams, config } = {}) {
2486
2486
  const { client: request = client, ...requestConfig } = config ?? {};
2487
2487
  if (!pathParams.edgeConfigId) {
@@ -2492,7 +2492,7 @@ const resolveUrl = (url, queryParams = {})=>{
2492
2492
  }
2493
2493
  const data = await request({
2494
2494
  method: "POST",
2495
- url: `/v1/edge-config/${pathParams.edgeConfigId}/backups/${pathParams.edgeConfigBackupVersionId}/restore`,
2495
+ url: `/v1/global-config/${pathParams.edgeConfigId}/backups/${pathParams.edgeConfigBackupVersionId}/restore`,
2496
2496
  queryParams,
2497
2497
  ...requestConfig,
2498
2498
  headers: {
@@ -2502,9 +2502,9 @@ const resolveUrl = (url, queryParams = {})=>{
2502
2502
  return data;
2503
2503
  }
2504
2504
  /**
2505
- * @summary Get Edge Config backups
2506
- * @description Returns backups of an Edge Config.
2507
- * @link /v1/edge-config/{edgeConfigId}/backups
2505
+ * @summary Get Global Config backups
2506
+ * @description Returns backups of a Global Config.
2507
+ * @link /v1/global-config/{edgeConfigId}/backups
2508
2508
  */ async function getEdgeConfigBackups({ pathParams, queryParams, config } = {}) {
2509
2509
  const { client: request = client, ...requestConfig } = config ?? {};
2510
2510
  if (!pathParams.edgeConfigId) {
@@ -2512,7 +2512,7 @@ const resolveUrl = (url, queryParams = {})=>{
2512
2512
  }
2513
2513
  const data = await request({
2514
2514
  method: "GET",
2515
- url: `/v1/edge-config/${pathParams.edgeConfigId}/backups`,
2515
+ url: `/v1/global-config/${pathParams.edgeConfigId}/backups`,
2516
2516
  queryParams,
2517
2517
  ...requestConfig,
2518
2518
  headers: {
@@ -3801,10 +3801,10 @@ const resolveUrl = (url, queryParams = {})=>{
3801
3801
  return data;
3802
3802
  }
3803
3803
  /**
3804
- * @summary Get the data of a user-provided Edge Config
3805
- * @description When the user enabled Edge Config syncing, then this endpoint can be used by the partner to fetch the contents of the Edge Config.
3806
- * @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/edge-config
3807
- */ async function getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig({ pathParams, config } = {}) {
3804
+ * @summary Get the data of a user-provided Global Config
3805
+ * @description When the user enabled Global Config syncing, then this endpoint can be used by the partner to fetch the contents of the Global Config.
3806
+ * @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
3807
+ */ async function getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config } = {}) {
3808
3808
  const { client: request = client, ...requestConfig } = config ?? {};
3809
3809
  if (!pathParams.integrationConfigurationId) {
3810
3810
  throw new Error(`Missing required path parameter: integrationConfigurationId`);
@@ -3814,7 +3814,7 @@ const resolveUrl = (url, queryParams = {})=>{
3814
3814
  }
3815
3815
  const data = await request({
3816
3816
  method: "GET",
3817
- url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/edge-config`,
3817
+ url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/global-config`,
3818
3818
  ...requestConfig,
3819
3819
  headers: {
3820
3820
  ...requestConfig.headers
@@ -3823,10 +3823,10 @@ const resolveUrl = (url, queryParams = {})=>{
3823
3823
  return data;
3824
3824
  }
3825
3825
  /**
3826
- * @summary Push data into a user-provided Edge Config
3827
- * @description When the user enabled Edge Config syncing, then this endpoint can be used by the partner to push their configuration data into the relevant Edge Config.
3828
- * @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/edge-config
3829
- */ async function replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig({ pathParams, config } = {}) {
3826
+ * @summary Push data into a user-provided Global Config
3827
+ * @description When the user enabled Global Config syncing, then this endpoint can be used by the partner to push their configuration data into the relevant Global Config.
3828
+ * @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
3829
+ */ async function replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config } = {}) {
3830
3830
  const { client: request = client, ...requestConfig } = config ?? {};
3831
3831
  if (!pathParams.integrationConfigurationId) {
3832
3832
  throw new Error(`Missing required path parameter: integrationConfigurationId`);
@@ -3836,7 +3836,7 @@ const resolveUrl = (url, queryParams = {})=>{
3836
3836
  }
3837
3837
  const data = await request({
3838
3838
  method: "PUT",
3839
- url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/edge-config`,
3839
+ url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/global-config`,
3840
3840
  ...requestConfig,
3841
3841
  headers: {
3842
3842
  ...requestConfig.headers
@@ -7201,24 +7201,24 @@ const operationsByPath = {
7201
7201
  "POST /v1/edge-cache/dangerously-delete-by-tags": dangerouslyDeleteByTags,
7202
7202
  "POST /v1/edge-cache/invalidate-by-src-images": invalidateBySrcImages,
7203
7203
  "POST /v1/edge-cache/dangerously-delete-by-src-images": dangerouslyDeleteBySrcImages,
7204
- "GET /v1/edge-config": getEdgeConfigs,
7205
- "POST /v1/edge-config": createEdgeConfig,
7206
- "GET /v1/edge-config/{edgeConfigId}": getEdgeConfig,
7207
- "PUT /v1/edge-config/{edgeConfigId}": updateEdgeConfig,
7208
- "DELETE /v1/edge-config/{edgeConfigId}": deleteEdgeConfig,
7209
- "GET /v1/edge-config/{edgeConfigId}/items": getEdgeConfigItems,
7210
- "PATCH /v1/edge-config/{edgeConfigId}/items": patchEdgeConfigItems,
7211
- "GET /v1/edge-config/{edgeConfigId}/schema": getEdgeConfigSchema,
7212
- "POST /v1/edge-config/{edgeConfigId}/schema": patchEdgeConfigSchema,
7213
- "DELETE /v1/edge-config/{edgeConfigId}/schema": deleteEdgeConfigSchema,
7214
- "GET /v1/edge-config/{edgeConfigId}/item/{edgeConfigItemKey}": getEdgeConfigItem,
7215
- "GET /v1/edge-config/{edgeConfigId}/tokens": getEdgeConfigTokens,
7216
- "DELETE /v1/edge-config/{edgeConfigId}/tokens": deleteEdgeConfigTokens,
7217
- "GET /v1/edge-config/{edgeConfigId}/token/{token}": getEdgeConfigToken,
7218
- "POST /v1/edge-config/{edgeConfigId}/token": createEdgeConfigToken,
7219
- "GET /v1/edge-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}": getEdgeConfigBackup,
7220
- "POST /v1/edge-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore": restoreEdgeConfigBackup,
7221
- "GET /v1/edge-config/{edgeConfigId}/backups": getEdgeConfigBackups,
7204
+ "GET /v1/global-config": getEdgeConfigs,
7205
+ "POST /v1/global-config": createEdgeConfig,
7206
+ "GET /v1/global-config/{edgeConfigId}": getEdgeConfig,
7207
+ "PUT /v1/global-config/{edgeConfigId}": updateEdgeConfig,
7208
+ "DELETE /v1/global-config/{edgeConfigId}": deleteEdgeConfig,
7209
+ "GET /v1/global-config/{edgeConfigId}/items": getEdgeConfigItems,
7210
+ "PATCH /v1/global-config/{edgeConfigId}/items": patchEdgeConfigItems,
7211
+ "GET /v1/global-config/{edgeConfigId}/schema": getEdgeConfigSchema,
7212
+ "POST /v1/global-config/{edgeConfigId}/schema": patchEdgeConfigSchema,
7213
+ "DELETE /v1/global-config/{edgeConfigId}/schema": deleteEdgeConfigSchema,
7214
+ "GET /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}": getEdgeConfigItem,
7215
+ "GET /v1/global-config/{edgeConfigId}/tokens": getEdgeConfigTokens,
7216
+ "DELETE /v1/global-config/{edgeConfigId}/tokens": deleteEdgeConfigTokens,
7217
+ "GET /v1/global-config/{edgeConfigId}/token/{token}": getEdgeConfigToken,
7218
+ "POST /v1/global-config/{edgeConfigId}/token": createEdgeConfigToken,
7219
+ "GET /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}": getEdgeConfigBackup,
7220
+ "POST /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore": restoreEdgeConfigBackup,
7221
+ "GET /v1/global-config/{edgeConfigId}/backups": getEdgeConfigBackups,
7222
7222
  "POST /v1/env": createSharedEnvVariable,
7223
7223
  "GET /v1/env": listSharedEnvVariable,
7224
7224
  "PATCH /v1/env": updateSharedEnvVariable,
@@ -7282,8 +7282,8 @@ const operationsByPath = {
7282
7282
  "POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items": createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems,
7283
7283
  "PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
7284
7284
  "DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
7285
- "GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/edge-config": getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig,
7286
- "PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/edge-config": replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig,
7285
+ "GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig,
7286
+ "PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig,
7287
7287
  "GET /v1/microfrontends/groups": getMicrofrontendsGroups,
7288
7288
  "GET /v1/microfrontends/groups/{groupId}/projects": getMicrofrontendsInGroup,
7289
7289
  "GET /v1/microfrontends/{deploymentId}/config": getMicrofrontendsConfig,
@@ -7466,7 +7466,7 @@ const operationsByTag = {
7466
7466
  updateAccessGroupProject,
7467
7467
  deleteAccessGroupProject
7468
7468
  },
7469
- apiAiGateway: {
7469
+ aiGateway: {
7470
7470
  createAiGatewayRule,
7471
7471
  listAiGatewayRules,
7472
7472
  updateAiGatewayRule,
@@ -7611,7 +7611,7 @@ const operationsByTag = {
7611
7611
  invalidateBySrcImages,
7612
7612
  dangerouslyDeleteBySrcImages
7613
7613
  },
7614
- edgeConfig: {
7614
+ globalConfig: {
7615
7615
  getEdgeConfigs,
7616
7616
  createEdgeConfig,
7617
7617
  getEdgeConfig,
@@ -7695,8 +7695,8 @@ const operationsByTag = {
7695
7695
  createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems,
7696
7696
  updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
7697
7697
  deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
7698
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig,
7699
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig
7698
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig,
7699
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig
7700
7700
  },
7701
7701
  authentication: {
7702
7702
  exchangeSsoToken,
@@ -7715,7 +7715,7 @@ const operationsByTag = {
7715
7715
  getMicrofrontendsConfigForProject,
7716
7716
  createMicrofrontendsGroupWithApplications
7717
7717
  },
7718
- apiObservability: {
7718
+ observability: {
7719
7719
  getObservabilityConfigurationProjects,
7720
7720
  updateObservabilityConfigurationProject
7721
7721
  },
@@ -7811,21 +7811,17 @@ const operationsByTag = {
7811
7811
  },
7812
7812
  security: {
7813
7813
  updateAttackChallengeMode,
7814
+ getSecurityFirewallConfig,
7814
7815
  putFirewallConfig,
7815
7816
  updateFirewallConfig,
7816
7817
  getFirewallConfig,
7818
+ deleteSecurityFirewallConfigByConfigVersion,
7819
+ createSecurityFirewallConfigByConfigVersionActivate,
7817
7820
  getActiveAttackStatus,
7818
7821
  getBypassIp,
7819
7822
  addBypassIp,
7820
7823
  removeBypassIp,
7821
- getSecurityFirewallEvents
7822
- },
7823
- apiSecurity: {
7824
- getSecurityFirewallConfig,
7825
- deleteSecurityFirewallConfigByConfigVersion,
7826
- createSecurityFirewallConfigByConfigVersionActivate
7827
- },
7828
- firewall: {
7824
+ getSecurityFirewallEvents,
7829
7825
  generateFirewallRule
7830
7826
  },
7831
7827
  teams: {
@@ -7907,7 +7903,7 @@ const tagDictionary = {
7907
7903
  "updateAccessGroupProject"
7908
7904
  ]
7909
7905
  },
7910
- apiAiGateway: {
7906
+ aiGateway: {
7911
7907
  POST: [
7912
7908
  "createAiGatewayRule"
7913
7909
  ],
@@ -8160,7 +8156,7 @@ const tagDictionary = {
8160
8156
  "dangerouslyDeleteBySrcImages"
8161
8157
  ]
8162
8158
  },
8163
- edgeConfig: {
8159
+ globalConfig: {
8164
8160
  GET: [
8165
8161
  "getEdgeConfigs",
8166
8162
  "getEdgeConfig",
@@ -8264,7 +8260,7 @@ const tagDictionary = {
8264
8260
  "getIntegrationResources",
8265
8261
  "getIntegrationResource",
8266
8262
  "getInvoice",
8267
- "getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig"
8263
+ "getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"
8268
8264
  ],
8269
8265
  POST: [
8270
8266
  "createEvent",
@@ -8284,7 +8280,7 @@ const tagDictionary = {
8284
8280
  "importResource",
8285
8281
  "updateResourceSecrets",
8286
8282
  "updateResourceSecretsById",
8287
- "replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfig"
8283
+ "replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"
8288
8284
  ]
8289
8285
  },
8290
8286
  authentication: {
@@ -8316,7 +8312,7 @@ const tagDictionary = {
8316
8312
  "createMicrofrontendsGroupWithApplications"
8317
8313
  ]
8318
8314
  },
8319
- apiObservability: {
8315
+ observability: {
8320
8316
  GET: [
8321
8317
  "getObservabilityConfigurationProjects"
8322
8318
  ],
@@ -8461,38 +8457,26 @@ const tagDictionary = {
8461
8457
  security: {
8462
8458
  POST: [
8463
8459
  "updateAttackChallengeMode",
8464
- "addBypassIp"
8465
- ],
8466
- PUT: [
8467
- "putFirewallConfig"
8468
- ],
8469
- PATCH: [
8470
- "updateFirewallConfig"
8460
+ "createSecurityFirewallConfigByConfigVersionActivate",
8461
+ "addBypassIp",
8462
+ "generateFirewallRule"
8471
8463
  ],
8472
8464
  GET: [
8465
+ "getSecurityFirewallConfig",
8473
8466
  "getFirewallConfig",
8474
8467
  "getActiveAttackStatus",
8475
8468
  "getBypassIp",
8476
8469
  "getSecurityFirewallEvents"
8477
8470
  ],
8478
- DELETE: [
8479
- "removeBypassIp"
8480
- ]
8481
- },
8482
- apiSecurity: {
8483
- GET: [
8484
- "getSecurityFirewallConfig"
8471
+ PUT: [
8472
+ "putFirewallConfig"
8485
8473
  ],
8486
- DELETE: [
8487
- "deleteSecurityFirewallConfigByConfigVersion"
8474
+ PATCH: [
8475
+ "updateFirewallConfig"
8488
8476
  ],
8489
- POST: [
8490
- "createSecurityFirewallConfigByConfigVersionActivate"
8491
- ]
8492
- },
8493
- firewall: {
8494
- POST: [
8495
- "generateFirewallRule"
8477
+ DELETE: [
8478
+ "deleteSecurityFirewallConfigByConfigVersion",
8479
+ "removeBypassIp"
8496
8480
  ]
8497
8481
  },
8498
8482
  teams: {
@@ -9059,7 +9043,7 @@ const edgeConfigItemSchema = z__namespace.object({
9059
9043
  edgeConfigId: z__namespace.string(),
9060
9044
  createdAt: z__namespace.number(),
9061
9045
  updatedAt: z__namespace.number()
9062
- }).describe("The EdgeConfig.");
9046
+ }).describe("The Global Config.");
9063
9047
  const edgeConfigTokenSchema = z__namespace.object({
9064
9048
  partialToken: z__namespace.string().describe("A partially-masked representation of the token, safe to display in UIs. The format is the first 3 characters of the token followed by a fixed 8-character `*` mask (e.g. `550e8400-e29b-41d4-a716-446655440000` → `550********`). The mask length is intentionally fixed (not proportional to the original token length) to avoid leaking the token length. Prefer this field for display/reference in UIs and logs. The full, plaintext token is only disclosed once at creation time via `POST /v1/edge-config/:edgeConfigId/token`; use `id` to reference a token in subsequent calls (e.g. when deleting)."),
9065
9049
  label: z__namespace.string(),
@@ -9067,7 +9051,7 @@ const edgeConfigTokenSchema = z__namespace.object({
9067
9051
  edgeConfigId: z__namespace.string(),
9068
9052
  createdAt: z__namespace.number(),
9069
9053
  token: z__namespace.string().optional().describe("Deprecated: the full, plaintext token. - Returned once by `POST /v1/edge-config/:edgeConfigId/token` (create). - Still returned by `GET /v1/edge-config/:edgeConfigId/token/:token` (detail) for backwards compatibility, but scheduled for removal. - **Not** returned by `GET /v1/edge-config/:edgeConfigId/tokens` (list); use `partialToken` for display and `id` to reference tokens. Do not rely on this field being present on read operations. Prefer `partialToken` for display and `id` for references.")
9070
- }).describe("The EdgeConfig.");
9054
+ }).describe("The Global Config.");
9071
9055
  const userEventSchema = z__namespace.object({
9072
9056
  id: z__namespace.string().describe("The unique identifier of the Event."),
9073
9057
  text: z__namespace.string().describe("The human-readable text of the Event."),
@@ -9119,6 +9103,7 @@ const userEventSchema = z__namespace.object({
9119
9103
  "ai-gateway-api-key-created",
9120
9104
  "ai-gateway-api-key-deleted",
9121
9105
  "ai-gateway-api-key-quota-updated",
9106
+ "ai-gateway-budget-default-updated",
9122
9107
  "ai-gateway-byok-credential-created",
9123
9108
  "ai-gateway-byok-credential-deleted",
9124
9109
  "ai-gateway-byok-credential-updated",
@@ -9136,6 +9121,7 @@ const userEventSchema = z__namespace.object({
9136
9121
  "ai-gateway-rule-created",
9137
9122
  "ai-gateway-rule-deleted",
9138
9123
  "ai-gateway-rule-updated",
9124
+ "ai-gateway-scope-budget-updated",
9139
9125
  "ai-gateway-virtual-model-config-archived",
9140
9126
  "ai-gateway-virtual-model-config-created",
9141
9127
  "ai-gateway-virtual-model-config-restored",
@@ -9181,6 +9167,7 @@ const userEventSchema = z__namespace.object({
9181
9167
  "cert-system-create",
9182
9168
  "code-owners-config-updated",
9183
9169
  "compliance-document-downloaded",
9170
+ "compliance-documents-bulk-downloaded",
9184
9171
  "concurrent-builds-update",
9185
9172
  "connect-attach-project",
9186
9173
  "connect-bitbucket",
@@ -9579,6 +9566,7 @@ const userEventSchema = z__namespace.object({
9579
9566
  "subscription-product-removed",
9580
9567
  "subscription-updated",
9581
9568
  "team",
9569
+ "team-agent-billing-migration-decision-changed",
9582
9570
  "team-avatar-update",
9583
9571
  "team-collaboration-settings-updated",
9584
9572
  "team-default-build-machine-updated",
@@ -9922,6 +9910,51 @@ const userEventSchema = z__namespace.object({
9922
9910
  "set"
9923
9911
  ])
9924
9912
  }).strict(),
9913
+ z__namespace.object({
9914
+ scopeType: z__namespace.enum([
9915
+ "api-key",
9916
+ "project",
9917
+ "team"
9918
+ ]),
9919
+ budget: z__namespace.object({
9920
+ limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
9921
+ refreshPeriod: z__namespace.enum([
9922
+ "daily",
9923
+ "monthly",
9924
+ "none",
9925
+ "weekly"
9926
+ ])
9927
+ }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
9928
+ change: z__namespace.enum([
9929
+ "disable",
9930
+ "enable",
9931
+ "remove",
9932
+ "set"
9933
+ ])
9934
+ }).strict(),
9935
+ z__namespace.object({
9936
+ scopeType: z__namespace.enum([
9937
+ "project",
9938
+ "team"
9939
+ ]),
9940
+ projectId: z__namespace.string().optional().describe("Associates the event with a project for filtering; not rendered."),
9941
+ projectName: z__namespace.string().optional(),
9942
+ budget: z__namespace.object({
9943
+ limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
9944
+ refreshPeriod: z__namespace.enum([
9945
+ "daily",
9946
+ "monthly",
9947
+ "none",
9948
+ "weekly"
9949
+ ])
9950
+ }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
9951
+ change: z__namespace.enum([
9952
+ "disable",
9953
+ "enable",
9954
+ "remove",
9955
+ "set"
9956
+ ])
9957
+ }).strict(),
9925
9958
  z__namespace.object({
9926
9959
  credential: z__namespace.object({
9927
9960
  id: z__namespace.string(),
@@ -10721,6 +10754,15 @@ const userEventSchema = z__namespace.object({
10721
10754
  title: z__namespace.string(),
10722
10755
  fingerprint: z__namespace.string()
10723
10756
  }).strict(),
10757
+ z__namespace.object({
10758
+ count: z__namespace.number(),
10759
+ documents: z__namespace.array(z__namespace.object({
10760
+ slug: z__namespace.string(),
10761
+ documentId: z__namespace.string(),
10762
+ title: z__namespace.string(),
10763
+ fingerprint: z__namespace.string()
10764
+ }))
10765
+ }).strict(),
10724
10766
  z__namespace.object({
10725
10767
  configuration: z__namespace.object({
10726
10768
  id: z__namespace.string(),
@@ -12420,6 +12462,7 @@ const userEventSchema = z__namespace.object({
12420
12462
  "ENTERPRISE_UNPAID_INVOICE",
12421
12463
  "EXPOSURE_CAP_EXCEEDED",
12422
12464
  "FAIR_USE_LIMITS_EXCEEDED",
12465
+ "HOBBY_ALLOCATION_PAUSED",
12423
12466
  "SUBSCRIPTION_CANCELED",
12424
12467
  "SUBSCRIPTION_EXPIRED",
12425
12468
  "UNPAID_INVOICE"
@@ -12464,7 +12507,56 @@ const userEventSchema = z__namespace.object({
12464
12507
  "wafOwaspRequests",
12465
12508
  "wafRateLimitRequest",
12466
12509
  "webAnalyticsEvent"
12467
- ]).optional()
12510
+ ]).optional(),
12511
+ hobbyAllocationPause: z__namespace.object({
12512
+ pausedUntil: z__namespace.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
12513
+ pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
12514
+ triggers: z__namespace.array(z__namespace.object({
12515
+ allocation: z__namespace.enum([
12516
+ "analyticsUsage",
12517
+ "artifacts",
12518
+ "bandwidth",
12519
+ "blobDataTransfer",
12520
+ "blobTotalAdvancedRequests",
12521
+ "blobTotalAvgSizeInBytes",
12522
+ "blobTotalGetResponseObjectSizeInBytes",
12523
+ "blobTotalSimpleRequests",
12524
+ "connectDataTransfer",
12525
+ "dataCacheRead",
12526
+ "dataCacheWrite",
12527
+ "edgeConfigRead",
12528
+ "edgeConfigWrite",
12529
+ "edgeFunctionExecutionUnits",
12530
+ "edgeMiddlewareInvocations",
12531
+ "edgeRequest",
12532
+ "edgeRequestAdditionalCpuDuration",
12533
+ "elasticConcurrencyBuildSlots",
12534
+ "fastDataTransfer",
12535
+ "fastOriginTransfer",
12536
+ "fluidCpuDuration",
12537
+ "fluidDuration",
12538
+ "functionDuration",
12539
+ "functionInvocation",
12540
+ "imageOptimizationCacheRead",
12541
+ "imageOptimizationCacheWrite",
12542
+ "imageOptimizationTransformation",
12543
+ "logDrainsVolume",
12544
+ "monitoringMetric",
12545
+ "observabilityEvent",
12546
+ "onDemandConcurrencyMinutes",
12547
+ "runtimeCacheRead",
12548
+ "runtimeCacheWrite",
12549
+ "serverlessFunctionExecution",
12550
+ "sourceImages",
12551
+ "wafOwaspExcessBytes",
12552
+ "wafOwaspRequests",
12553
+ "wafRateLimitRequest",
12554
+ "webAnalyticsEvent"
12555
+ ]).describe("Metered allocation whose included amount was fully consumed."),
12556
+ usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
12557
+ })).describe("Allocations that were at or over 100% when the pause was applied."),
12558
+ cohort: z__namespace.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
12559
+ }).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
12468
12560
  }).nullish(),
12469
12561
  stagingPrefix: z__namespace.string(),
12470
12562
  sysToken: z__namespace.string(),
@@ -15721,6 +15813,13 @@ const userEventSchema = z__namespace.object({
15721
15813
  z__namespace.object({
15722
15814
  name: z__namespace.string().optional()
15723
15815
  }).strict(),
15816
+ z__namespace.object({
15817
+ decision: z__namespace.enum([
15818
+ "keep_on",
15819
+ "turn_off"
15820
+ ]),
15821
+ version: z__namespace.string()
15822
+ }).strict(),
15724
15823
  z__namespace.object({
15725
15824
  consent: z__namespace.enum([
15726
15825
  "granted",
@@ -16308,6 +16407,7 @@ const listEventTypeSchema = z__namespace.object({
16308
16407
  "ai-gateway-api-key-created",
16309
16408
  "ai-gateway-api-key-deleted",
16310
16409
  "ai-gateway-api-key-quota-updated",
16410
+ "ai-gateway-budget-default-updated",
16311
16411
  "ai-gateway-byok-credential-created",
16312
16412
  "ai-gateway-byok-credential-deleted",
16313
16413
  "ai-gateway-byok-credential-updated",
@@ -16325,6 +16425,7 @@ const listEventTypeSchema = z__namespace.object({
16325
16425
  "ai-gateway-rule-created",
16326
16426
  "ai-gateway-rule-deleted",
16327
16427
  "ai-gateway-rule-updated",
16428
+ "ai-gateway-scope-budget-updated",
16328
16429
  "ai-gateway-virtual-model-config-archived",
16329
16430
  "ai-gateway-virtual-model-config-created",
16330
16431
  "ai-gateway-virtual-model-config-restored",
@@ -16370,6 +16471,7 @@ const listEventTypeSchema = z__namespace.object({
16370
16471
  "cert-system-create",
16371
16472
  "code-owners-config-updated",
16372
16473
  "compliance-document-downloaded",
16474
+ "compliance-documents-bulk-downloaded",
16373
16475
  "concurrent-builds-update",
16374
16476
  "connect-attach-project",
16375
16477
  "connect-bitbucket",
@@ -16768,6 +16870,7 @@ const listEventTypeSchema = z__namespace.object({
16768
16870
  "subscription-product-removed",
16769
16871
  "subscription-updated",
16770
16872
  "team",
16873
+ "team-agent-billing-migration-decision-changed",
16771
16874
  "team-avatar-update",
16772
16875
  "team-collaboration-settings-updated",
16773
16876
  "team-default-build-machine-updated",
@@ -16912,6 +17015,7 @@ const listEventTypeSchema = z__namespace.object({
16912
17015
  "ai-gateway-api-key-created",
16913
17016
  "ai-gateway-api-key-deleted",
16914
17017
  "ai-gateway-api-key-quota-updated",
17018
+ "ai-gateway-budget-default-updated",
16915
17019
  "ai-gateway-byok-credential-created",
16916
17020
  "ai-gateway-byok-credential-deleted",
16917
17021
  "ai-gateway-byok-credential-updated",
@@ -16929,6 +17033,7 @@ const listEventTypeSchema = z__namespace.object({
16929
17033
  "ai-gateway-rule-created",
16930
17034
  "ai-gateway-rule-deleted",
16931
17035
  "ai-gateway-rule-updated",
17036
+ "ai-gateway-scope-budget-updated",
16932
17037
  "ai-gateway-virtual-model-config-archived",
16933
17038
  "ai-gateway-virtual-model-config-created",
16934
17039
  "ai-gateway-virtual-model-config-restored",
@@ -16974,6 +17079,7 @@ const listEventTypeSchema = z__namespace.object({
16974
17079
  "cert-system-create",
16975
17080
  "code-owners-config-updated",
16976
17081
  "compliance-document-downloaded",
17082
+ "compliance-documents-bulk-downloaded",
16977
17083
  "concurrent-builds-update",
16978
17084
  "connect-attach-project",
16979
17085
  "connect-bitbucket",
@@ -17372,6 +17478,7 @@ const listEventTypeSchema = z__namespace.object({
17372
17478
  "subscription-product-removed",
17373
17479
  "subscription-updated",
17374
17480
  "team",
17481
+ "team-agent-billing-migration-decision-changed",
17375
17482
  "team-avatar-update",
17376
17483
  "team-collaboration-settings-updated",
17377
17484
  "team-default-build-machine-updated",
@@ -18846,6 +18953,7 @@ const authUserSchema = z__namespace.object({
18846
18953
  "ENTERPRISE_UNPAID_INVOICE",
18847
18954
  "EXPOSURE_CAP_EXCEEDED",
18848
18955
  "FAIR_USE_LIMITS_EXCEEDED",
18956
+ "HOBBY_ALLOCATION_PAUSED",
18849
18957
  "SUBSCRIPTION_CANCELED",
18850
18958
  "SUBSCRIPTION_EXPIRED",
18851
18959
  "UNPAID_INVOICE"
@@ -18890,7 +18998,56 @@ const authUserSchema = z__namespace.object({
18890
18998
  "wafOwaspRequests",
18891
18999
  "wafRateLimitRequest",
18892
19000
  "webAnalyticsEvent"
18893
- ]).optional()
19001
+ ]).optional(),
19002
+ hobbyAllocationPause: z__namespace.object({
19003
+ pausedUntil: z__namespace.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
19004
+ pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
19005
+ triggers: z__namespace.array(z__namespace.object({
19006
+ allocation: z__namespace.enum([
19007
+ "analyticsUsage",
19008
+ "artifacts",
19009
+ "bandwidth",
19010
+ "blobDataTransfer",
19011
+ "blobTotalAdvancedRequests",
19012
+ "blobTotalAvgSizeInBytes",
19013
+ "blobTotalGetResponseObjectSizeInBytes",
19014
+ "blobTotalSimpleRequests",
19015
+ "connectDataTransfer",
19016
+ "dataCacheRead",
19017
+ "dataCacheWrite",
19018
+ "edgeConfigRead",
19019
+ "edgeConfigWrite",
19020
+ "edgeFunctionExecutionUnits",
19021
+ "edgeMiddlewareInvocations",
19022
+ "edgeRequest",
19023
+ "edgeRequestAdditionalCpuDuration",
19024
+ "elasticConcurrencyBuildSlots",
19025
+ "fastDataTransfer",
19026
+ "fastOriginTransfer",
19027
+ "fluidCpuDuration",
19028
+ "fluidDuration",
19029
+ "functionDuration",
19030
+ "functionInvocation",
19031
+ "imageOptimizationCacheRead",
19032
+ "imageOptimizationCacheWrite",
19033
+ "imageOptimizationTransformation",
19034
+ "logDrainsVolume",
19035
+ "monitoringMetric",
19036
+ "observabilityEvent",
19037
+ "onDemandConcurrencyMinutes",
19038
+ "runtimeCacheRead",
19039
+ "runtimeCacheWrite",
19040
+ "serverlessFunctionExecution",
19041
+ "sourceImages",
19042
+ "wafOwaspExcessBytes",
19043
+ "wafOwaspRequests",
19044
+ "wafRateLimitRequest",
19045
+ "webAnalyticsEvent"
19046
+ ]).describe("Metered allocation whose included amount was fully consumed."),
19047
+ usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
19048
+ })).describe("Allocations that were at or over 100% when the pause was applied."),
19049
+ cohort: z__namespace.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
19050
+ }).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
18894
19051
  }).nullable().describe('When the User account has been "soft blocked", this property will contain the date when the restriction was enacted, and the identifier for why.'),
18895
19052
  billing: z__namespace.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
18896
19053
  resourceConfig: z__namespace.object({
@@ -22882,43 +23039,43 @@ const deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperi
22882
23039
  deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema,
22883
23040
  deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema
22884
23041
  ]);
22885
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
22886
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = z__namespace.string();
22887
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = z__namespace.unknown();
22888
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema = z__namespace.unknown();
22889
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = z__namespace.unknown();
22890
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = z__namespace.unknown();
22891
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = z__namespace.unknown();
22892
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = z__namespace.unknown();
22893
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = z__namespace.unknown();
22894
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = z__namespace.union([
22895
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema,
22896
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema,
22897
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema,
22898
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema,
22899
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema,
22900
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema,
22901
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema
22902
- ]);
22903
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
22904
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = z__namespace.string();
22905
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = z__namespace.unknown();
22906
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = z__namespace.unknown();
22907
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = z__namespace.unknown();
22908
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = z__namespace.unknown();
22909
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = z__namespace.unknown();
22910
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema = z__namespace.unknown();
22911
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = z__namespace.unknown();
22912
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema = z__namespace.unknown();
22913
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = z__namespace.union([
22914
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema,
22915
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema,
22916
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema,
22917
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema,
22918
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema,
22919
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema,
22920
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema,
22921
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema
23042
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
23043
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
23044
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
23045
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = z__namespace.unknown();
23046
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
23047
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
23048
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
23049
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
23050
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
23051
+ const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
23052
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
23053
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema,
23054
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
23055
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
23056
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
23057
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
23058
+ getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema
23059
+ ]);
23060
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
23061
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
23062
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
23063
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
23064
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
23065
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
23066
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
23067
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = z__namespace.unknown();
23068
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
23069
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = z__namespace.unknown();
23070
+ const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
23071
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
23072
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
23073
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
23074
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
23075
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
23076
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema,
23077
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema,
23078
+ replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema
22922
23079
  ]);
22923
23080
  const getMicrofrontendsGroupsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
22924
23081
  const getMicrofrontendsGroupsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
@@ -25076,7 +25233,7 @@ const getSecurityFirewallEventsResponseSchema = z__namespace.union([
25076
25233
  getSecurityFirewallEventsStatus410Schema,
25077
25234
  getSecurityFirewallEventsStatus500Schema
25078
25235
  ]);
25079
- const generateFirewallRuleQueryProjectIdSchema = z__namespace.string();
25236
+ const generateFirewallRuleQueryProjectIdSchema = z__namespace.string().optional();
25080
25237
  const generateFirewallRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
25081
25238
  const generateFirewallRuleQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
25082
25239
  const generateFirewallRuleStatus200Schema = z__namespace.unknown();
@@ -26440,6 +26597,7 @@ const userEventTypeEnum = {
26440
26597
  "ai-gateway-api-key-created": "ai-gateway-api-key-created",
26441
26598
  "ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
26442
26599
  "ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
26600
+ "ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
26443
26601
  "ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
26444
26602
  "ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
26445
26603
  "ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
@@ -26457,6 +26615,7 @@ const userEventTypeEnum = {
26457
26615
  "ai-gateway-rule-created": "ai-gateway-rule-created",
26458
26616
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
26459
26617
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
26618
+ "ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
26460
26619
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
26461
26620
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
26462
26621
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -26502,6 +26661,7 @@ const userEventTypeEnum = {
26502
26661
  "cert-system-create": "cert-system-create",
26503
26662
  "code-owners-config-updated": "code-owners-config-updated",
26504
26663
  "compliance-document-downloaded": "compliance-document-downloaded",
26664
+ "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
26505
26665
  "concurrent-builds-update": "concurrent-builds-update",
26506
26666
  "connect-attach-project": "connect-attach-project",
26507
26667
  "connect-bitbucket": "connect-bitbucket",
@@ -26900,6 +27060,7 @@ const userEventTypeEnum = {
26900
27060
  "subscription-product-removed": "subscription-product-removed",
26901
27061
  "subscription-updated": "subscription-updated",
26902
27062
  team: "team",
27063
+ "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
26903
27064
  "team-avatar-update": "team-avatar-update",
26904
27065
  "team-collaboration-settings-updated": "team-collaboration-settings-updated",
26905
27066
  "team-default-build-machine-updated": "team-default-build-machine-updated",
@@ -27054,6 +27215,10 @@ const changeEnum = {
27054
27215
  remove: "remove",
27055
27216
  set: "set"
27056
27217
  };
27218
+ const scopeTypeEnum = {
27219
+ project: "project",
27220
+ team: "team"
27221
+ };
27057
27222
  const nextRoleEnum = {
27058
27223
  ADMIN: "ADMIN",
27059
27224
  PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
@@ -27090,6 +27255,7 @@ const reasonEnum = {
27090
27255
  ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
27091
27256
  EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
27092
27257
  FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
27258
+ HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
27093
27259
  SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
27094
27260
  SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
27095
27261
  UNPAID_INVOICE: "UNPAID_INVOICE"
@@ -27195,6 +27361,47 @@ const blockedDueToOverageTypeEnum = {
27195
27361
  wafRateLimitRequest: "wafRateLimitRequest",
27196
27362
  webAnalyticsEvent: "webAnalyticsEvent"
27197
27363
  };
27364
+ const allocationEnum = {
27365
+ analyticsUsage: "analyticsUsage",
27366
+ artifacts: "artifacts",
27367
+ bandwidth: "bandwidth",
27368
+ blobDataTransfer: "blobDataTransfer",
27369
+ blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
27370
+ blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
27371
+ blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
27372
+ blobTotalSimpleRequests: "blobTotalSimpleRequests",
27373
+ connectDataTransfer: "connectDataTransfer",
27374
+ dataCacheRead: "dataCacheRead",
27375
+ dataCacheWrite: "dataCacheWrite",
27376
+ edgeConfigRead: "edgeConfigRead",
27377
+ edgeConfigWrite: "edgeConfigWrite",
27378
+ edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
27379
+ edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
27380
+ edgeRequest: "edgeRequest",
27381
+ edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
27382
+ elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
27383
+ fastDataTransfer: "fastDataTransfer",
27384
+ fastOriginTransfer: "fastOriginTransfer",
27385
+ fluidCpuDuration: "fluidCpuDuration",
27386
+ fluidDuration: "fluidDuration",
27387
+ functionDuration: "functionDuration",
27388
+ functionInvocation: "functionInvocation",
27389
+ imageOptimizationCacheRead: "imageOptimizationCacheRead",
27390
+ imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
27391
+ imageOptimizationTransformation: "imageOptimizationTransformation",
27392
+ logDrainsVolume: "logDrainsVolume",
27393
+ monitoringMetric: "monitoringMetric",
27394
+ observabilityEvent: "observabilityEvent",
27395
+ onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
27396
+ runtimeCacheRead: "runtimeCacheRead",
27397
+ runtimeCacheWrite: "runtimeCacheWrite",
27398
+ serverlessFunctionExecution: "serverlessFunctionExecution",
27399
+ sourceImages: "sourceImages",
27400
+ wafOwaspExcessBytes: "wafOwaspExcessBytes",
27401
+ wafOwaspRequests: "wafOwaspRequests",
27402
+ wafRateLimitRequest: "wafRateLimitRequest",
27403
+ webAnalyticsEvent: "webAnalyticsEvent"
27404
+ };
27198
27405
  const roleEnum = {
27199
27406
  BILLING: "BILLING",
27200
27407
  CONTRIBUTOR: "CONTRIBUTOR",
@@ -27461,6 +27668,10 @@ const sourceEnum = {
27461
27668
  saml: "saml",
27462
27669
  teams: "teams"
27463
27670
  };
27671
+ const decisionEnum = {
27672
+ keep_on: "keep_on",
27673
+ turn_off: "turn_off"
27674
+ };
27464
27675
  const envEnum = {
27465
27676
  preview: "preview",
27466
27677
  production: "production"
@@ -27522,6 +27733,7 @@ const listEventTypeNameEnum = {
27522
27733
  "ai-gateway-api-key-created": "ai-gateway-api-key-created",
27523
27734
  "ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
27524
27735
  "ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
27736
+ "ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
27525
27737
  "ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
27526
27738
  "ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
27527
27739
  "ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
@@ -27539,6 +27751,7 @@ const listEventTypeNameEnum = {
27539
27751
  "ai-gateway-rule-created": "ai-gateway-rule-created",
27540
27752
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
27541
27753
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
27754
+ "ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
27542
27755
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
27543
27756
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
27544
27757
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -27584,6 +27797,7 @@ const listEventTypeNameEnum = {
27584
27797
  "cert-system-create": "cert-system-create",
27585
27798
  "code-owners-config-updated": "code-owners-config-updated",
27586
27799
  "compliance-document-downloaded": "compliance-document-downloaded",
27800
+ "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
27587
27801
  "concurrent-builds-update": "concurrent-builds-update",
27588
27802
  "connect-attach-project": "connect-attach-project",
27589
27803
  "connect-bitbucket": "connect-bitbucket",
@@ -27982,6 +28196,7 @@ const listEventTypeNameEnum = {
27982
28196
  "subscription-product-removed": "subscription-product-removed",
27983
28197
  "subscription-updated": "subscription-updated",
27984
28198
  team: "team",
28199
+ "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
27985
28200
  "team-avatar-update": "team-avatar-update",
27986
28201
  "team-collaboration-settings-updated": "team-collaboration-settings-updated",
27987
28202
  "team-default-build-machine-updated": "team-default-build-machine-updated",
@@ -28121,6 +28336,7 @@ const listEventTypeReplacedByEnum = {
28121
28336
  "ai-gateway-api-key-created": "ai-gateway-api-key-created",
28122
28337
  "ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
28123
28338
  "ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
28339
+ "ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
28124
28340
  "ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
28125
28341
  "ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
28126
28342
  "ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
@@ -28138,6 +28354,7 @@ const listEventTypeReplacedByEnum = {
28138
28354
  "ai-gateway-rule-created": "ai-gateway-rule-created",
28139
28355
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
28140
28356
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
28357
+ "ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
28141
28358
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
28142
28359
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
28143
28360
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -28183,6 +28400,7 @@ const listEventTypeReplacedByEnum = {
28183
28400
  "cert-system-create": "cert-system-create",
28184
28401
  "code-owners-config-updated": "code-owners-config-updated",
28185
28402
  "compliance-document-downloaded": "compliance-document-downloaded",
28403
+ "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
28186
28404
  "concurrent-builds-update": "concurrent-builds-update",
28187
28405
  "connect-attach-project": "connect-attach-project",
28188
28406
  "connect-bitbucket": "connect-bitbucket",
@@ -28581,6 +28799,7 @@ const listEventTypeReplacedByEnum = {
28581
28799
  "subscription-product-removed": "subscription-product-removed",
28582
28800
  "subscription-updated": "subscription-updated",
28583
28801
  team: "team",
28802
+ "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
28584
28803
  "team-avatar-update": "team-avatar-update",
28585
28804
  "team-collaboration-settings-updated": "team-collaboration-settings-updated",
28586
28805
  "team-default-build-machine-updated": "team-default-build-machine-updated",
@@ -29068,6 +29287,7 @@ const authUserSoftBlockReasonEnum = {
29068
29287
  ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
29069
29288
  EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
29070
29289
  FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
29290
+ HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
29071
29291
  SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
29072
29292
  SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
29073
29293
  UNPAID_INVOICE: "UNPAID_INVOICE"
@@ -29284,6 +29504,7 @@ exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
29284
29504
  exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
29285
29505
  exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
29286
29506
  exports.aiGatewayRuleTypeEnum = aiGatewayRuleTypeEnum;
29507
+ exports.allocationEnum = allocationEnum;
29287
29508
  exports.allowListedReadyStateReasonInternalEnum = allowListedReadyStateReasonInternalEnum;
29288
29509
  exports.approvalScopeEnum = approvalScopeEnum;
29289
29510
  exports.approveRollingReleaseStagePathIdOrNameSchema = approveRollingReleaseStagePathIdOrNameSchema;
@@ -29946,6 +30167,7 @@ exports.dangerouslyDeleteByTagsStatus403Schema = dangerouslyDeleteByTagsStatus40
29946
30167
  exports.dangerouslyDeleteByTagsStatus404Schema = dangerouslyDeleteByTagsStatus404Schema;
29947
30168
  exports.dangerouslyDeleteByTagsStatus410Schema = dangerouslyDeleteByTagsStatus410Schema;
29948
30169
  exports.dateFromStringSchema = dateFromStringSchema;
30170
+ exports.decisionEnum = decisionEnum;
29949
30171
  exports.defaultEnum = defaultEnum;
29950
30172
  exports.deleteAccessGroupPathIdOrNameSchema = deleteAccessGroupPathIdOrNameSchema;
29951
30173
  exports.deleteAccessGroupProjectPathAccessGroupIdOrNameSchema = deleteAccessGroupProjectPathAccessGroupIdOrNameSchema;
@@ -31106,16 +31328,16 @@ exports.getFlagStatus402Schema = getFlagStatus402Schema;
31106
31328
  exports.getFlagStatus403Schema = getFlagStatus403Schema;
31107
31329
  exports.getFlagStatus404Schema = getFlagStatus404Schema;
31108
31330
  exports.getFlagStatus410Schema = getFlagStatus410Schema;
31109
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema;
31110
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema;
31111
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema;
31112
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema;
31113
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema;
31114
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema;
31115
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema;
31116
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema;
31117
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema;
31118
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema;
31331
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
31332
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
31333
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
31334
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
31335
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema;
31336
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
31337
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
31338
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
31339
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
31340
+ exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
31119
31341
  exports.getIntegrationLogDrainsQuerySlugSchema = getIntegrationLogDrainsQuerySlugSchema;
31120
31342
  exports.getIntegrationLogDrainsQueryTeamIdSchema = getIntegrationLogDrainsQueryTeamIdSchema;
31121
31343
  exports.getIntegrationLogDrainsResponseSchema = getIntegrationLogDrainsResponseSchema;
@@ -32590,17 +32812,17 @@ exports.replaceDomainsByDomainRecordsStatus404Schema = replaceDomainsByDomainRec
32590
32812
  exports.replaceDomainsByDomainRecordsStatus409Schema = replaceDomainsByDomainRecordsStatus409Schema;
32591
32813
  exports.replaceDomainsByDomainRecordsStatus410Schema = replaceDomainsByDomainRecordsStatus410Schema;
32592
32814
  exports.replaceDomainsByDomainRecordsStatus415Schema = replaceDomainsByDomainRecordsStatus415Schema;
32593
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema;
32594
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema;
32595
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema;
32596
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema;
32597
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema;
32598
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema;
32599
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema;
32600
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema;
32601
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema;
32602
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema;
32603
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema;
32815
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
32816
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
32817
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
32818
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
32819
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
32820
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
32821
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
32822
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
32823
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema;
32824
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
32825
+ exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema;
32604
32826
  exports.requestAccessToTeamPathTeamIdSchema = requestAccessToTeamPathTeamIdSchema;
32605
32827
  exports.requestAccessToTeamResponseSchema = requestAccessToTeamResponseSchema;
32606
32828
  exports.requestAccessToTeamStatus200Schema = requestAccessToTeamStatus200Schema;
@@ -32704,6 +32926,7 @@ exports.sandboxNetworkPolicyModeEnum = sandboxNetworkPolicyModeEnum;
32704
32926
  exports.sandboxNetworkPolicySchema = sandboxNetworkPolicySchema;
32705
32927
  exports.sandboxPublicRouteSchema = sandboxPublicRouteSchema;
32706
32928
  exports.scopeEnum = scopeEnum;
32929
+ exports.scopeTypeEnum = scopeTypeEnum;
32707
32930
  exports.searchRepoQueryHostSchema = searchRepoQueryHostSchema;
32708
32931
  exports.searchRepoQueryInstallationIdSchema = searchRepoQueryInstallationIdSchema;
32709
32932
  exports.searchRepoQueryNamespaceIdSchema = searchRepoQueryNamespaceIdSchema;