vercel-api-js 1.7.2 → 1.8.1
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/components.cjs +129 -145
- package/dist/components.d.mts +99 -111
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +128 -144
- package/dist/effect.cjs +111 -115
- package/dist/effect.d.mts +90 -94
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +111 -115
- package/dist/index.cjs +611 -208
- package/dist/index.d.ts +1065 -231
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +587 -188
- package/dist/schemas.cjs +378 -63
- package/dist/schemas.d.mts +326 -29
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +358 -43
- package/dist/types.cjs +106 -2
- package/dist/types.d.mts +622 -73
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +103 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2156,14 +2156,14 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2156
2156
|
return data;
|
|
2157
2157
|
}
|
|
2158
2158
|
/**
|
|
2159
|
-
* @summary Get
|
|
2160
|
-
* @description Returns all
|
|
2161
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2177
|
-
* @description Creates
|
|
2178
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2194
|
-
* @description Returns
|
|
2195
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2214
|
-
* @description Updates
|
|
2215
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2234
|
-
* @description Delete
|
|
2235
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2254
|
-
* @description Returns all items of
|
|
2255
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2274
|
-
* @description Update multiple
|
|
2275
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2294
|
-
* @description Returns the schema of
|
|
2295
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2314
|
-
* @description Update
|
|
2315
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2334
|
-
* @description Deletes the schema of existing
|
|
2335
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2354
|
-
* @description Returns a specific
|
|
2355
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2377
|
-
* @description Returns all tokens of
|
|
2378
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2397
|
-
* @description Deletes one or more tokens of an existing
|
|
2398
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2417
|
-
* @description Return meta data about
|
|
2418
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2440
|
-
* @description Adds a token to an existing
|
|
2441
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2460
|
-
* @description Retrieves a specific version of
|
|
2461
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2483
|
-
* @description Restores
|
|
2484
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
2506
|
-
* @description Returns backups of
|
|
2507
|
-
* @link /v1/
|
|
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/
|
|
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
|
|
3805
|
-
* @description When the user enabled
|
|
3806
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3807
|
-
*/ async function
|
|
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/
|
|
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
|
|
3827
|
-
* @description When the user enabled
|
|
3828
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3829
|
-
*/ async function
|
|
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/
|
|
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/
|
|
7205
|
-
"POST /v1/
|
|
7206
|
-
"GET /v1/
|
|
7207
|
-
"PUT /v1/
|
|
7208
|
-
"DELETE /v1/
|
|
7209
|
-
"GET /v1/
|
|
7210
|
-
"PATCH /v1/
|
|
7211
|
-
"GET /v1/
|
|
7212
|
-
"POST /v1/
|
|
7213
|
-
"DELETE /v1/
|
|
7214
|
-
"GET /v1/
|
|
7215
|
-
"GET /v1/
|
|
7216
|
-
"DELETE /v1/
|
|
7217
|
-
"GET /v1/
|
|
7218
|
-
"POST /v1/
|
|
7219
|
-
"GET /v1/
|
|
7220
|
-
"POST /v1/
|
|
7221
|
-
"GET /v1/
|
|
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/
|
|
7286
|
-
"PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
7699
|
-
|
|
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
|
-
|
|
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
|
-
|
|
7906
|
+
aiGateway: {
|
|
7911
7907
|
POST: [
|
|
7912
7908
|
"createAiGatewayRule"
|
|
7913
7909
|
],
|
|
@@ -8160,7 +8156,7 @@ const tagDictionary = {
|
|
|
8160
8156
|
"dangerouslyDeleteBySrcImages"
|
|
8161
8157
|
]
|
|
8162
8158
|
},
|
|
8163
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
8283
|
+
"replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"
|
|
8288
8284
|
]
|
|
8289
8285
|
},
|
|
8290
8286
|
authentication: {
|
|
@@ -8316,7 +8312,7 @@ const tagDictionary = {
|
|
|
8316
8312
|
"createMicrofrontendsGroupWithApplications"
|
|
8317
8313
|
]
|
|
8318
8314
|
},
|
|
8319
|
-
|
|
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
|
-
"
|
|
8465
|
-
|
|
8466
|
-
|
|
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
|
-
|
|
8479
|
-
"
|
|
8480
|
-
]
|
|
8481
|
-
},
|
|
8482
|
-
apiSecurity: {
|
|
8483
|
-
GET: [
|
|
8484
|
-
"getSecurityFirewallConfig"
|
|
8471
|
+
PUT: [
|
|
8472
|
+
"putFirewallConfig"
|
|
8485
8473
|
],
|
|
8486
|
-
|
|
8487
|
-
"
|
|
8474
|
+
PATCH: [
|
|
8475
|
+
"updateFirewallConfig"
|
|
8488
8476
|
],
|
|
8489
|
-
|
|
8490
|
-
"
|
|
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
|
|
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
|
|
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",
|
|
@@ -9372,6 +9359,10 @@ const userEventSchema = z__namespace.object({
|
|
|
9372
9359
|
"observability-enabled",
|
|
9373
9360
|
"observability-plus-project-disabled",
|
|
9374
9361
|
"observability-plus-project-enabled",
|
|
9362
|
+
"oidc-policy-created",
|
|
9363
|
+
"oidc-policy-deleted",
|
|
9364
|
+
"oidc-policy-updated",
|
|
9365
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
9375
9366
|
"organization-create",
|
|
9376
9367
|
"organization-delete",
|
|
9377
9368
|
"organization-slug-update",
|
|
@@ -9420,6 +9411,7 @@ const userEventSchema = z__namespace.object({
|
|
|
9420
9411
|
"project-build-command-updated",
|
|
9421
9412
|
"project-build-logs-and-source-protection-updated",
|
|
9422
9413
|
"project-build-machine-updated",
|
|
9414
|
+
"project-card-widget-preference-updated",
|
|
9423
9415
|
"project-client-cert-delete",
|
|
9424
9416
|
"project-client-cert-upload",
|
|
9425
9417
|
"project-connect-configurations",
|
|
@@ -9579,6 +9571,7 @@ const userEventSchema = z__namespace.object({
|
|
|
9579
9571
|
"subscription-product-removed",
|
|
9580
9572
|
"subscription-updated",
|
|
9581
9573
|
"team",
|
|
9574
|
+
"team-agent-billing-migration-decision-changed",
|
|
9582
9575
|
"team-avatar-update",
|
|
9583
9576
|
"team-collaboration-settings-updated",
|
|
9584
9577
|
"team-default-build-machine-updated",
|
|
@@ -9631,7 +9624,9 @@ const userEventSchema = z__namespace.object({
|
|
|
9631
9624
|
"user-emu-account-archived",
|
|
9632
9625
|
"user-emu-account-deleted",
|
|
9633
9626
|
"user-emu-account-recovered",
|
|
9627
|
+
"user-mfa-challenge-failed",
|
|
9634
9628
|
"user-mfa-challenge-verified",
|
|
9629
|
+
"user-mfa-change-failed",
|
|
9635
9630
|
"user-mfa-configuration-updated",
|
|
9636
9631
|
"user-mfa-recovery-codes-regenerated",
|
|
9637
9632
|
"user-mfa-removed",
|
|
@@ -9922,6 +9917,51 @@ const userEventSchema = z__namespace.object({
|
|
|
9922
9917
|
"set"
|
|
9923
9918
|
])
|
|
9924
9919
|
}).strict(),
|
|
9920
|
+
z__namespace.object({
|
|
9921
|
+
scopeType: z__namespace.enum([
|
|
9922
|
+
"api-key",
|
|
9923
|
+
"project",
|
|
9924
|
+
"team"
|
|
9925
|
+
]),
|
|
9926
|
+
budget: z__namespace.object({
|
|
9927
|
+
limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
|
|
9928
|
+
refreshPeriod: z__namespace.enum([
|
|
9929
|
+
"daily",
|
|
9930
|
+
"monthly",
|
|
9931
|
+
"none",
|
|
9932
|
+
"weekly"
|
|
9933
|
+
])
|
|
9934
|
+
}).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`."),
|
|
9935
|
+
change: z__namespace.enum([
|
|
9936
|
+
"disable",
|
|
9937
|
+
"enable",
|
|
9938
|
+
"remove",
|
|
9939
|
+
"set"
|
|
9940
|
+
])
|
|
9941
|
+
}).strict(),
|
|
9942
|
+
z__namespace.object({
|
|
9943
|
+
scopeType: z__namespace.enum([
|
|
9944
|
+
"project",
|
|
9945
|
+
"team"
|
|
9946
|
+
]),
|
|
9947
|
+
projectId: z__namespace.string().optional().describe("Associates the event with a project for filtering; not rendered."),
|
|
9948
|
+
projectName: z__namespace.string().optional(),
|
|
9949
|
+
budget: z__namespace.object({
|
|
9950
|
+
limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
|
|
9951
|
+
refreshPeriod: z__namespace.enum([
|
|
9952
|
+
"daily",
|
|
9953
|
+
"monthly",
|
|
9954
|
+
"none",
|
|
9955
|
+
"weekly"
|
|
9956
|
+
])
|
|
9957
|
+
}).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`."),
|
|
9958
|
+
change: z__namespace.enum([
|
|
9959
|
+
"disable",
|
|
9960
|
+
"enable",
|
|
9961
|
+
"remove",
|
|
9962
|
+
"set"
|
|
9963
|
+
])
|
|
9964
|
+
}).strict(),
|
|
9925
9965
|
z__namespace.object({
|
|
9926
9966
|
credential: z__namespace.object({
|
|
9927
9967
|
id: z__namespace.string(),
|
|
@@ -10721,6 +10761,15 @@ const userEventSchema = z__namespace.object({
|
|
|
10721
10761
|
title: z__namespace.string(),
|
|
10722
10762
|
fingerprint: z__namespace.string()
|
|
10723
10763
|
}).strict(),
|
|
10764
|
+
z__namespace.object({
|
|
10765
|
+
count: z__namespace.number(),
|
|
10766
|
+
documents: z__namespace.array(z__namespace.object({
|
|
10767
|
+
slug: z__namespace.string(),
|
|
10768
|
+
documentId: z__namespace.string(),
|
|
10769
|
+
title: z__namespace.string(),
|
|
10770
|
+
fingerprint: z__namespace.string()
|
|
10771
|
+
}))
|
|
10772
|
+
}).strict(),
|
|
10724
10773
|
z__namespace.object({
|
|
10725
10774
|
configuration: z__namespace.object({
|
|
10726
10775
|
id: z__namespace.string(),
|
|
@@ -12285,6 +12334,16 @@ const userEventSchema = z__namespace.object({
|
|
|
12285
12334
|
])
|
|
12286
12335
|
]).optional(),
|
|
12287
12336
|
projectDomainsLimit: z__namespace.number().optional().describe("Overrides our DEFAULT project domains limit per account or per project."),
|
|
12337
|
+
projectCardWidgetPreferences: z__namespace.array(z__namespace.object({
|
|
12338
|
+
projectId: z__namespace.string(),
|
|
12339
|
+
widget: z__namespace.enum([
|
|
12340
|
+
"alert",
|
|
12341
|
+
"firewall-allowed",
|
|
12342
|
+
"firewall-denied",
|
|
12343
|
+
"online",
|
|
12344
|
+
"res"
|
|
12345
|
+
])
|
|
12346
|
+
})).optional(),
|
|
12288
12347
|
remoteCaching: z__namespace.object({
|
|
12289
12348
|
enabled: z__namespace.union([
|
|
12290
12349
|
z__namespace.literal(false),
|
|
@@ -12351,6 +12410,7 @@ const userEventSchema = z__namespace.object({
|
|
|
12351
12410
|
bulkRedirectsFreeLimitOverride: z__namespace.number().optional(),
|
|
12352
12411
|
buildMachine: z__namespace.object({
|
|
12353
12412
|
default: z__namespace.enum([
|
|
12413
|
+
"basic",
|
|
12354
12414
|
"elastic",
|
|
12355
12415
|
"enhanced",
|
|
12356
12416
|
"standard",
|
|
@@ -12420,6 +12480,7 @@ const userEventSchema = z__namespace.object({
|
|
|
12420
12480
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
12421
12481
|
"EXPOSURE_CAP_EXCEEDED",
|
|
12422
12482
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
12483
|
+
"HOBBY_ALLOCATION_PAUSED",
|
|
12423
12484
|
"SUBSCRIPTION_CANCELED",
|
|
12424
12485
|
"SUBSCRIPTION_EXPIRED",
|
|
12425
12486
|
"UNPAID_INVOICE"
|
|
@@ -12464,7 +12525,56 @@ const userEventSchema = z__namespace.object({
|
|
|
12464
12525
|
"wafOwaspRequests",
|
|
12465
12526
|
"wafRateLimitRequest",
|
|
12466
12527
|
"webAnalyticsEvent"
|
|
12467
|
-
]).optional()
|
|
12528
|
+
]).optional(),
|
|
12529
|
+
hobbyAllocationPause: z__namespace.object({
|
|
12530
|
+
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."),
|
|
12531
|
+
pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
12532
|
+
triggers: z__namespace.array(z__namespace.object({
|
|
12533
|
+
allocation: z__namespace.enum([
|
|
12534
|
+
"analyticsUsage",
|
|
12535
|
+
"artifacts",
|
|
12536
|
+
"bandwidth",
|
|
12537
|
+
"blobDataTransfer",
|
|
12538
|
+
"blobTotalAdvancedRequests",
|
|
12539
|
+
"blobTotalAvgSizeInBytes",
|
|
12540
|
+
"blobTotalGetResponseObjectSizeInBytes",
|
|
12541
|
+
"blobTotalSimpleRequests",
|
|
12542
|
+
"connectDataTransfer",
|
|
12543
|
+
"dataCacheRead",
|
|
12544
|
+
"dataCacheWrite",
|
|
12545
|
+
"edgeConfigRead",
|
|
12546
|
+
"edgeConfigWrite",
|
|
12547
|
+
"edgeFunctionExecutionUnits",
|
|
12548
|
+
"edgeMiddlewareInvocations",
|
|
12549
|
+
"edgeRequest",
|
|
12550
|
+
"edgeRequestAdditionalCpuDuration",
|
|
12551
|
+
"elasticConcurrencyBuildSlots",
|
|
12552
|
+
"fastDataTransfer",
|
|
12553
|
+
"fastOriginTransfer",
|
|
12554
|
+
"fluidCpuDuration",
|
|
12555
|
+
"fluidDuration",
|
|
12556
|
+
"functionDuration",
|
|
12557
|
+
"functionInvocation",
|
|
12558
|
+
"imageOptimizationCacheRead",
|
|
12559
|
+
"imageOptimizationCacheWrite",
|
|
12560
|
+
"imageOptimizationTransformation",
|
|
12561
|
+
"logDrainsVolume",
|
|
12562
|
+
"monitoringMetric",
|
|
12563
|
+
"observabilityEvent",
|
|
12564
|
+
"onDemandConcurrencyMinutes",
|
|
12565
|
+
"runtimeCacheRead",
|
|
12566
|
+
"runtimeCacheWrite",
|
|
12567
|
+
"serverlessFunctionExecution",
|
|
12568
|
+
"sourceImages",
|
|
12569
|
+
"wafOwaspExcessBytes",
|
|
12570
|
+
"wafOwaspRequests",
|
|
12571
|
+
"wafRateLimitRequest",
|
|
12572
|
+
"webAnalyticsEvent"
|
|
12573
|
+
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
12574
|
+
usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
12575
|
+
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
12576
|
+
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.")
|
|
12577
|
+
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
12468
12578
|
}).nullish(),
|
|
12469
12579
|
stagingPrefix: z__namespace.string(),
|
|
12470
12580
|
sysToken: z__namespace.string(),
|
|
@@ -14094,6 +14204,17 @@ const userEventSchema = z__namespace.object({
|
|
|
14094
14204
|
]).optional(),
|
|
14095
14205
|
reason: z__namespace.string().optional().describe("For system-initiated (elastic) changes, why the build machine was upgraded/downgraded. Stored as the raw reason code (see `ElasticChangeReason` in `@api/build-machines-types`) and rendered as a human-readable clause in the activity/audit log.")
|
|
14096
14206
|
}).strict(),
|
|
14207
|
+
z__namespace.object({
|
|
14208
|
+
projectId: z__namespace.string(),
|
|
14209
|
+
projectName: z__namespace.string(),
|
|
14210
|
+
widget: z__namespace.enum([
|
|
14211
|
+
"alert",
|
|
14212
|
+
"firewall-allowed",
|
|
14213
|
+
"firewall-denied",
|
|
14214
|
+
"online",
|
|
14215
|
+
"res"
|
|
14216
|
+
]).nullable()
|
|
14217
|
+
}).strict(),
|
|
14097
14218
|
z__namespace.object({
|
|
14098
14219
|
projectId: z__namespace.string().optional(),
|
|
14099
14220
|
projectName: z__namespace.string().optional(),
|
|
@@ -15433,12 +15554,14 @@ const userEventSchema = z__namespace.object({
|
|
|
15433
15554
|
}).strict(),
|
|
15434
15555
|
z__namespace.object({
|
|
15435
15556
|
previous: z__namespace.enum([
|
|
15557
|
+
"basic",
|
|
15436
15558
|
"elastic",
|
|
15437
15559
|
"enhanced",
|
|
15438
15560
|
"standard",
|
|
15439
15561
|
"turbo"
|
|
15440
15562
|
]).optional(),
|
|
15441
15563
|
next: z__namespace.enum([
|
|
15564
|
+
"basic",
|
|
15442
15565
|
"elastic",
|
|
15443
15566
|
"enhanced",
|
|
15444
15567
|
"standard",
|
|
@@ -15721,6 +15844,13 @@ const userEventSchema = z__namespace.object({
|
|
|
15721
15844
|
z__namespace.object({
|
|
15722
15845
|
name: z__namespace.string().optional()
|
|
15723
15846
|
}).strict(),
|
|
15847
|
+
z__namespace.object({
|
|
15848
|
+
decision: z__namespace.enum([
|
|
15849
|
+
"keep_on",
|
|
15850
|
+
"turn_off"
|
|
15851
|
+
]),
|
|
15852
|
+
version: z__namespace.string()
|
|
15853
|
+
}).strict(),
|
|
15724
15854
|
z__namespace.object({
|
|
15725
15855
|
consent: z__namespace.enum([
|
|
15726
15856
|
"granted",
|
|
@@ -15854,6 +15984,27 @@ const userEventSchema = z__namespace.object({
|
|
|
15854
15984
|
z__namespace.object({
|
|
15855
15985
|
username: z__namespace.string()
|
|
15856
15986
|
}).strict(),
|
|
15987
|
+
z__namespace.object({
|
|
15988
|
+
method: z__namespace.enum([
|
|
15989
|
+
"email-otp",
|
|
15990
|
+
"recovery-code",
|
|
15991
|
+
"totp",
|
|
15992
|
+
"webauthn"
|
|
15993
|
+
]),
|
|
15994
|
+
reason: z__namespace.string()
|
|
15995
|
+
}).strict(),
|
|
15996
|
+
z__namespace.object({
|
|
15997
|
+
action: z__namespace.enum([
|
|
15998
|
+
"add-passkey",
|
|
15999
|
+
"add-totp",
|
|
16000
|
+
"admin-remove",
|
|
16001
|
+
"disable",
|
|
16002
|
+
"enable",
|
|
16003
|
+
"regenerate-recovery-codes",
|
|
16004
|
+
"remove-passkey"
|
|
16005
|
+
]),
|
|
16006
|
+
reason: z__namespace.string()
|
|
16007
|
+
}).strict(),
|
|
15857
16008
|
z__namespace.object({
|
|
15858
16009
|
previous: z__namespace.object({
|
|
15859
16010
|
enabled: z__namespace.union([
|
|
@@ -16134,6 +16285,81 @@ const userEventSchema = z__namespace.object({
|
|
|
16134
16285
|
policyId: z__namespace.string().optional().describe("ID of the OIDC-exchange policy that authorized a token-exchange grant. Absent for the `client_credentials` + `oidc_token` flow, which matches an app `oidcProviders` entry rather than a policy."),
|
|
16135
16286
|
oidcSubject: z__namespace.string().optional().describe("`sub` claim of the OIDC token. Present for OIDC-authenticated flows (see {@link issuerUrl}).")
|
|
16136
16287
|
}).strict(),
|
|
16288
|
+
z__namespace.object({
|
|
16289
|
+
policy: z__namespace.object({
|
|
16290
|
+
policyId: z__namespace.string(),
|
|
16291
|
+
clientId: z__namespace.string(),
|
|
16292
|
+
issuerUrl: z__namespace.string(),
|
|
16293
|
+
teamId: z__namespace.string(),
|
|
16294
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
16295
|
+
claims: z__namespace.array(z__namespace.object({
|
|
16296
|
+
name: z__namespace.string(),
|
|
16297
|
+
values: z__namespace.array(z__namespace.object({
|
|
16298
|
+
value: z__namespace.string(),
|
|
16299
|
+
wildcards: z__namespace.union([
|
|
16300
|
+
z__namespace.literal(false),
|
|
16301
|
+
z__namespace.literal(true)
|
|
16302
|
+
])
|
|
16303
|
+
}))
|
|
16304
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
16305
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
16306
|
+
resources: z__namespace.object({
|
|
16307
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
16308
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
16309
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
16310
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
16311
|
+
}).describe("A full point-in-time snapshot of an OIDC exchange policy, captured on every lifecycle event so the audit trail records exactly what the policy looked like. Mirrors the management endpoints' public response shape."),
|
|
16312
|
+
appName: z__namespace.string().optional()
|
|
16313
|
+
}).strict(),
|
|
16314
|
+
z__namespace.object({
|
|
16315
|
+
before: z__namespace.object({
|
|
16316
|
+
policyId: z__namespace.string(),
|
|
16317
|
+
clientId: z__namespace.string(),
|
|
16318
|
+
issuerUrl: z__namespace.string(),
|
|
16319
|
+
teamId: z__namespace.string(),
|
|
16320
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
16321
|
+
claims: z__namespace.array(z__namespace.object({
|
|
16322
|
+
name: z__namespace.string(),
|
|
16323
|
+
values: z__namespace.array(z__namespace.object({
|
|
16324
|
+
value: z__namespace.string(),
|
|
16325
|
+
wildcards: z__namespace.union([
|
|
16326
|
+
z__namespace.literal(false),
|
|
16327
|
+
z__namespace.literal(true)
|
|
16328
|
+
])
|
|
16329
|
+
}))
|
|
16330
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
16331
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
16332
|
+
resources: z__namespace.object({
|
|
16333
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
16334
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
16335
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
16336
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
16337
|
+
}).describe("A full point-in-time snapshot of an OIDC exchange policy, captured on every lifecycle event so the audit trail records exactly what the policy looked like. Mirrors the management endpoints' public response shape."),
|
|
16338
|
+
after: z__namespace.object({
|
|
16339
|
+
policyId: z__namespace.string(),
|
|
16340
|
+
clientId: z__namespace.string(),
|
|
16341
|
+
issuerUrl: z__namespace.string(),
|
|
16342
|
+
teamId: z__namespace.string(),
|
|
16343
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
16344
|
+
claims: z__namespace.array(z__namespace.object({
|
|
16345
|
+
name: z__namespace.string(),
|
|
16346
|
+
values: z__namespace.array(z__namespace.object({
|
|
16347
|
+
value: z__namespace.string(),
|
|
16348
|
+
wildcards: z__namespace.union([
|
|
16349
|
+
z__namespace.literal(false),
|
|
16350
|
+
z__namespace.literal(true)
|
|
16351
|
+
])
|
|
16352
|
+
}))
|
|
16353
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
16354
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
16355
|
+
resources: z__namespace.object({
|
|
16356
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
16357
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
16358
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
16359
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
16360
|
+
}).describe("A full point-in-time snapshot of an OIDC exchange policy, captured on every lifecycle event so the audit trail records exactly what the policy looked like. Mirrors the management endpoints' public response shape."),
|
|
16361
|
+
appName: z__namespace.string().optional()
|
|
16362
|
+
}).strict(),
|
|
16137
16363
|
z__namespace.object({
|
|
16138
16364
|
tokenId: z__namespace.string().describe("The token's public ID."),
|
|
16139
16365
|
tokenPrefix: z__namespace.enum([
|
|
@@ -16308,6 +16534,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16308
16534
|
"ai-gateway-api-key-created",
|
|
16309
16535
|
"ai-gateway-api-key-deleted",
|
|
16310
16536
|
"ai-gateway-api-key-quota-updated",
|
|
16537
|
+
"ai-gateway-budget-default-updated",
|
|
16311
16538
|
"ai-gateway-byok-credential-created",
|
|
16312
16539
|
"ai-gateway-byok-credential-deleted",
|
|
16313
16540
|
"ai-gateway-byok-credential-updated",
|
|
@@ -16325,6 +16552,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16325
16552
|
"ai-gateway-rule-created",
|
|
16326
16553
|
"ai-gateway-rule-deleted",
|
|
16327
16554
|
"ai-gateway-rule-updated",
|
|
16555
|
+
"ai-gateway-scope-budget-updated",
|
|
16328
16556
|
"ai-gateway-virtual-model-config-archived",
|
|
16329
16557
|
"ai-gateway-virtual-model-config-created",
|
|
16330
16558
|
"ai-gateway-virtual-model-config-restored",
|
|
@@ -16370,6 +16598,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16370
16598
|
"cert-system-create",
|
|
16371
16599
|
"code-owners-config-updated",
|
|
16372
16600
|
"compliance-document-downloaded",
|
|
16601
|
+
"compliance-documents-bulk-downloaded",
|
|
16373
16602
|
"concurrent-builds-update",
|
|
16374
16603
|
"connect-attach-project",
|
|
16375
16604
|
"connect-bitbucket",
|
|
@@ -16561,6 +16790,10 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16561
16790
|
"observability-enabled",
|
|
16562
16791
|
"observability-plus-project-disabled",
|
|
16563
16792
|
"observability-plus-project-enabled",
|
|
16793
|
+
"oidc-policy-created",
|
|
16794
|
+
"oidc-policy-deleted",
|
|
16795
|
+
"oidc-policy-updated",
|
|
16796
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
16564
16797
|
"organization-create",
|
|
16565
16798
|
"organization-delete",
|
|
16566
16799
|
"organization-slug-update",
|
|
@@ -16609,6 +16842,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16609
16842
|
"project-build-command-updated",
|
|
16610
16843
|
"project-build-logs-and-source-protection-updated",
|
|
16611
16844
|
"project-build-machine-updated",
|
|
16845
|
+
"project-card-widget-preference-updated",
|
|
16612
16846
|
"project-client-cert-delete",
|
|
16613
16847
|
"project-client-cert-upload",
|
|
16614
16848
|
"project-connect-configurations",
|
|
@@ -16768,6 +17002,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16768
17002
|
"subscription-product-removed",
|
|
16769
17003
|
"subscription-updated",
|
|
16770
17004
|
"team",
|
|
17005
|
+
"team-agent-billing-migration-decision-changed",
|
|
16771
17006
|
"team-avatar-update",
|
|
16772
17007
|
"team-collaboration-settings-updated",
|
|
16773
17008
|
"team-default-build-machine-updated",
|
|
@@ -16820,7 +17055,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16820
17055
|
"user-emu-account-archived",
|
|
16821
17056
|
"user-emu-account-deleted",
|
|
16822
17057
|
"user-emu-account-recovered",
|
|
17058
|
+
"user-mfa-challenge-failed",
|
|
16823
17059
|
"user-mfa-challenge-verified",
|
|
17060
|
+
"user-mfa-change-failed",
|
|
16824
17061
|
"user-mfa-configuration-updated",
|
|
16825
17062
|
"user-mfa-recovery-codes-regenerated",
|
|
16826
17063
|
"user-mfa-removed",
|
|
@@ -16912,6 +17149,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16912
17149
|
"ai-gateway-api-key-created",
|
|
16913
17150
|
"ai-gateway-api-key-deleted",
|
|
16914
17151
|
"ai-gateway-api-key-quota-updated",
|
|
17152
|
+
"ai-gateway-budget-default-updated",
|
|
16915
17153
|
"ai-gateway-byok-credential-created",
|
|
16916
17154
|
"ai-gateway-byok-credential-deleted",
|
|
16917
17155
|
"ai-gateway-byok-credential-updated",
|
|
@@ -16929,6 +17167,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16929
17167
|
"ai-gateway-rule-created",
|
|
16930
17168
|
"ai-gateway-rule-deleted",
|
|
16931
17169
|
"ai-gateway-rule-updated",
|
|
17170
|
+
"ai-gateway-scope-budget-updated",
|
|
16932
17171
|
"ai-gateway-virtual-model-config-archived",
|
|
16933
17172
|
"ai-gateway-virtual-model-config-created",
|
|
16934
17173
|
"ai-gateway-virtual-model-config-restored",
|
|
@@ -16974,6 +17213,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16974
17213
|
"cert-system-create",
|
|
16975
17214
|
"code-owners-config-updated",
|
|
16976
17215
|
"compliance-document-downloaded",
|
|
17216
|
+
"compliance-documents-bulk-downloaded",
|
|
16977
17217
|
"concurrent-builds-update",
|
|
16978
17218
|
"connect-attach-project",
|
|
16979
17219
|
"connect-bitbucket",
|
|
@@ -17165,6 +17405,10 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
17165
17405
|
"observability-enabled",
|
|
17166
17406
|
"observability-plus-project-disabled",
|
|
17167
17407
|
"observability-plus-project-enabled",
|
|
17408
|
+
"oidc-policy-created",
|
|
17409
|
+
"oidc-policy-deleted",
|
|
17410
|
+
"oidc-policy-updated",
|
|
17411
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
17168
17412
|
"organization-create",
|
|
17169
17413
|
"organization-delete",
|
|
17170
17414
|
"organization-slug-update",
|
|
@@ -17213,6 +17457,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
17213
17457
|
"project-build-command-updated",
|
|
17214
17458
|
"project-build-logs-and-source-protection-updated",
|
|
17215
17459
|
"project-build-machine-updated",
|
|
17460
|
+
"project-card-widget-preference-updated",
|
|
17216
17461
|
"project-client-cert-delete",
|
|
17217
17462
|
"project-client-cert-upload",
|
|
17218
17463
|
"project-connect-configurations",
|
|
@@ -17372,6 +17617,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
17372
17617
|
"subscription-product-removed",
|
|
17373
17618
|
"subscription-updated",
|
|
17374
17619
|
"team",
|
|
17620
|
+
"team-agent-billing-migration-decision-changed",
|
|
17375
17621
|
"team-avatar-update",
|
|
17376
17622
|
"team-collaboration-settings-updated",
|
|
17377
17623
|
"team-default-build-machine-updated",
|
|
@@ -17424,7 +17670,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
17424
17670
|
"user-emu-account-archived",
|
|
17425
17671
|
"user-emu-account-deleted",
|
|
17426
17672
|
"user-emu-account-recovered",
|
|
17673
|
+
"user-mfa-challenge-failed",
|
|
17427
17674
|
"user-mfa-challenge-verified",
|
|
17675
|
+
"user-mfa-change-failed",
|
|
17428
17676
|
"user-mfa-configuration-updated",
|
|
17429
17677
|
"user-mfa-recovery-codes-regenerated",
|
|
17430
17678
|
"user-mfa-removed",
|
|
@@ -18320,6 +18568,7 @@ const teamSchema = z__namespace.object({
|
|
|
18320
18568
|
}).optional(),
|
|
18321
18569
|
buildMachine: z__namespace.object({
|
|
18322
18570
|
default: z__namespace.enum([
|
|
18571
|
+
"basic",
|
|
18323
18572
|
"elastic",
|
|
18324
18573
|
"enhanced",
|
|
18325
18574
|
"standard",
|
|
@@ -18846,6 +19095,7 @@ const authUserSchema = z__namespace.object({
|
|
|
18846
19095
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
18847
19096
|
"EXPOSURE_CAP_EXCEEDED",
|
|
18848
19097
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
19098
|
+
"HOBBY_ALLOCATION_PAUSED",
|
|
18849
19099
|
"SUBSCRIPTION_CANCELED",
|
|
18850
19100
|
"SUBSCRIPTION_EXPIRED",
|
|
18851
19101
|
"UNPAID_INVOICE"
|
|
@@ -18890,7 +19140,56 @@ const authUserSchema = z__namespace.object({
|
|
|
18890
19140
|
"wafOwaspRequests",
|
|
18891
19141
|
"wafRateLimitRequest",
|
|
18892
19142
|
"webAnalyticsEvent"
|
|
18893
|
-
]).optional()
|
|
19143
|
+
]).optional(),
|
|
19144
|
+
hobbyAllocationPause: z__namespace.object({
|
|
19145
|
+
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."),
|
|
19146
|
+
pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
19147
|
+
triggers: z__namespace.array(z__namespace.object({
|
|
19148
|
+
allocation: z__namespace.enum([
|
|
19149
|
+
"analyticsUsage",
|
|
19150
|
+
"artifacts",
|
|
19151
|
+
"bandwidth",
|
|
19152
|
+
"blobDataTransfer",
|
|
19153
|
+
"blobTotalAdvancedRequests",
|
|
19154
|
+
"blobTotalAvgSizeInBytes",
|
|
19155
|
+
"blobTotalGetResponseObjectSizeInBytes",
|
|
19156
|
+
"blobTotalSimpleRequests",
|
|
19157
|
+
"connectDataTransfer",
|
|
19158
|
+
"dataCacheRead",
|
|
19159
|
+
"dataCacheWrite",
|
|
19160
|
+
"edgeConfigRead",
|
|
19161
|
+
"edgeConfigWrite",
|
|
19162
|
+
"edgeFunctionExecutionUnits",
|
|
19163
|
+
"edgeMiddlewareInvocations",
|
|
19164
|
+
"edgeRequest",
|
|
19165
|
+
"edgeRequestAdditionalCpuDuration",
|
|
19166
|
+
"elasticConcurrencyBuildSlots",
|
|
19167
|
+
"fastDataTransfer",
|
|
19168
|
+
"fastOriginTransfer",
|
|
19169
|
+
"fluidCpuDuration",
|
|
19170
|
+
"fluidDuration",
|
|
19171
|
+
"functionDuration",
|
|
19172
|
+
"functionInvocation",
|
|
19173
|
+
"imageOptimizationCacheRead",
|
|
19174
|
+
"imageOptimizationCacheWrite",
|
|
19175
|
+
"imageOptimizationTransformation",
|
|
19176
|
+
"logDrainsVolume",
|
|
19177
|
+
"monitoringMetric",
|
|
19178
|
+
"observabilityEvent",
|
|
19179
|
+
"onDemandConcurrencyMinutes",
|
|
19180
|
+
"runtimeCacheRead",
|
|
19181
|
+
"runtimeCacheWrite",
|
|
19182
|
+
"serverlessFunctionExecution",
|
|
19183
|
+
"sourceImages",
|
|
19184
|
+
"wafOwaspExcessBytes",
|
|
19185
|
+
"wafOwaspRequests",
|
|
19186
|
+
"wafRateLimitRequest",
|
|
19187
|
+
"webAnalyticsEvent"
|
|
19188
|
+
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
19189
|
+
usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
19190
|
+
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
19191
|
+
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.")
|
|
19192
|
+
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
18894
19193
|
}).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
19194
|
billing: z__namespace.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
|
|
18896
19195
|
resourceConfig: z__namespace.object({
|
|
@@ -22882,43 +23181,43 @@ const deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperi
|
|
|
22882
23181
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema,
|
|
22883
23182
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema
|
|
22884
23183
|
]);
|
|
22885
|
-
const
|
|
22886
|
-
const
|
|
22887
|
-
const
|
|
22888
|
-
const
|
|
22889
|
-
const
|
|
22890
|
-
const
|
|
22891
|
-
const
|
|
22892
|
-
const
|
|
22893
|
-
const
|
|
22894
|
-
const
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
|
|
22899
|
-
|
|
22900
|
-
|
|
22901
|
-
|
|
22902
|
-
]);
|
|
22903
|
-
const
|
|
22904
|
-
const
|
|
22905
|
-
const
|
|
22906
|
-
const
|
|
22907
|
-
const
|
|
22908
|
-
const
|
|
22909
|
-
const
|
|
22910
|
-
const
|
|
22911
|
-
const
|
|
22912
|
-
const
|
|
22913
|
-
const
|
|
22914
|
-
|
|
22915
|
-
|
|
22916
|
-
|
|
22917
|
-
|
|
22918
|
-
|
|
22919
|
-
|
|
22920
|
-
|
|
22921
|
-
|
|
23184
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
23185
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
|
|
23186
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
|
|
23187
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = z__namespace.unknown();
|
|
23188
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
|
|
23189
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
|
|
23190
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
|
|
23191
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
|
|
23192
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
|
|
23193
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
|
|
23194
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
|
|
23195
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema,
|
|
23196
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
|
|
23197
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
|
|
23198
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
|
|
23199
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
|
|
23200
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema
|
|
23201
|
+
]);
|
|
23202
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
23203
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
|
|
23204
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
|
|
23205
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
|
|
23206
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
|
|
23207
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
|
|
23208
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
|
|
23209
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = z__namespace.unknown();
|
|
23210
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
|
|
23211
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = z__namespace.unknown();
|
|
23212
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
|
|
23213
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
|
|
23214
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
|
|
23215
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
|
|
23216
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
|
|
23217
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
|
|
23218
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema,
|
|
23219
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema,
|
|
23220
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema
|
|
22922
23221
|
]);
|
|
22923
23222
|
const getMicrofrontendsGroupsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
22924
23223
|
const getMicrofrontendsGroupsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
@@ -25076,7 +25375,7 @@ const getSecurityFirewallEventsResponseSchema = z__namespace.union([
|
|
|
25076
25375
|
getSecurityFirewallEventsStatus410Schema,
|
|
25077
25376
|
getSecurityFirewallEventsStatus500Schema
|
|
25078
25377
|
]);
|
|
25079
|
-
const generateFirewallRuleQueryProjectIdSchema = z__namespace.string();
|
|
25378
|
+
const generateFirewallRuleQueryProjectIdSchema = z__namespace.string().optional();
|
|
25080
25379
|
const generateFirewallRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
25081
25380
|
const generateFirewallRuleQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
25082
25381
|
const generateFirewallRuleStatus200Schema = z__namespace.unknown();
|
|
@@ -26440,6 +26739,7 @@ const userEventTypeEnum = {
|
|
|
26440
26739
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
26441
26740
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
26442
26741
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
26742
|
+
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
26443
26743
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
26444
26744
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
26445
26745
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
@@ -26457,6 +26757,7 @@ const userEventTypeEnum = {
|
|
|
26457
26757
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
26458
26758
|
"ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
|
|
26459
26759
|
"ai-gateway-rule-updated": "ai-gateway-rule-updated",
|
|
26760
|
+
"ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
|
|
26460
26761
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
26461
26762
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
26462
26763
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
@@ -26502,6 +26803,7 @@ const userEventTypeEnum = {
|
|
|
26502
26803
|
"cert-system-create": "cert-system-create",
|
|
26503
26804
|
"code-owners-config-updated": "code-owners-config-updated",
|
|
26504
26805
|
"compliance-document-downloaded": "compliance-document-downloaded",
|
|
26806
|
+
"compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
|
|
26505
26807
|
"concurrent-builds-update": "concurrent-builds-update",
|
|
26506
26808
|
"connect-attach-project": "connect-attach-project",
|
|
26507
26809
|
"connect-bitbucket": "connect-bitbucket",
|
|
@@ -26693,6 +26995,10 @@ const userEventTypeEnum = {
|
|
|
26693
26995
|
"observability-enabled": "observability-enabled",
|
|
26694
26996
|
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
26695
26997
|
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
26998
|
+
"oidc-policy-created": "oidc-policy-created",
|
|
26999
|
+
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
27000
|
+
"oidc-policy-updated": "oidc-policy-updated",
|
|
27001
|
+
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
26696
27002
|
"organization-create": "organization-create",
|
|
26697
27003
|
"organization-delete": "organization-delete",
|
|
26698
27004
|
"organization-slug-update": "organization-slug-update",
|
|
@@ -26741,6 +27047,7 @@ const userEventTypeEnum = {
|
|
|
26741
27047
|
"project-build-command-updated": "project-build-command-updated",
|
|
26742
27048
|
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
26743
27049
|
"project-build-machine-updated": "project-build-machine-updated",
|
|
27050
|
+
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
26744
27051
|
"project-client-cert-delete": "project-client-cert-delete",
|
|
26745
27052
|
"project-client-cert-upload": "project-client-cert-upload",
|
|
26746
27053
|
"project-connect-configurations": "project-connect-configurations",
|
|
@@ -26900,6 +27207,7 @@ const userEventTypeEnum = {
|
|
|
26900
27207
|
"subscription-product-removed": "subscription-product-removed",
|
|
26901
27208
|
"subscription-updated": "subscription-updated",
|
|
26902
27209
|
team: "team",
|
|
27210
|
+
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
26903
27211
|
"team-avatar-update": "team-avatar-update",
|
|
26904
27212
|
"team-collaboration-settings-updated": "team-collaboration-settings-updated",
|
|
26905
27213
|
"team-default-build-machine-updated": "team-default-build-machine-updated",
|
|
@@ -26952,7 +27260,9 @@ const userEventTypeEnum = {
|
|
|
26952
27260
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
26953
27261
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
26954
27262
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
27263
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
26955
27264
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
27265
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
26956
27266
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
26957
27267
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
26958
27268
|
"user-mfa-removed": "user-mfa-removed",
|
|
@@ -27021,8 +27331,13 @@ const userEventCategoriesEnum = {
|
|
|
27021
27331
|
workflow: "workflow"
|
|
27022
27332
|
};
|
|
27023
27333
|
const actionEnum = {
|
|
27024
|
-
|
|
27025
|
-
|
|
27334
|
+
"add-passkey": "add-passkey",
|
|
27335
|
+
"add-totp": "add-totp",
|
|
27336
|
+
"admin-remove": "admin-remove",
|
|
27337
|
+
disable: "disable",
|
|
27338
|
+
enable: "enable",
|
|
27339
|
+
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
27340
|
+
"remove-passkey": "remove-passkey"
|
|
27026
27341
|
};
|
|
27027
27342
|
const providerEnum = {
|
|
27028
27343
|
apple: "apple",
|
|
@@ -27054,6 +27369,10 @@ const changeEnum = {
|
|
|
27054
27369
|
remove: "remove",
|
|
27055
27370
|
set: "set"
|
|
27056
27371
|
};
|
|
27372
|
+
const scopeTypeEnum = {
|
|
27373
|
+
project: "project",
|
|
27374
|
+
team: "team"
|
|
27375
|
+
};
|
|
27057
27376
|
const nextRoleEnum = {
|
|
27058
27377
|
ADMIN: "ADMIN",
|
|
27059
27378
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
@@ -27090,6 +27409,7 @@ const reasonEnum = {
|
|
|
27090
27409
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
27091
27410
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
27092
27411
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
27412
|
+
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
27093
27413
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
27094
27414
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
27095
27415
|
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
@@ -27129,11 +27449,19 @@ const importFlowGitProviderEnum = {
|
|
|
27129
27449
|
gitlab: "gitlab",
|
|
27130
27450
|
vercel: "vercel"
|
|
27131
27451
|
};
|
|
27452
|
+
const widgetEnum = {
|
|
27453
|
+
alert: "alert",
|
|
27454
|
+
"firewall-allowed": "firewall-allowed",
|
|
27455
|
+
"firewall-denied": "firewall-denied",
|
|
27456
|
+
online: "online",
|
|
27457
|
+
res: "res"
|
|
27458
|
+
};
|
|
27132
27459
|
const configurationEnum = {
|
|
27133
27460
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
27134
27461
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
27135
27462
|
};
|
|
27136
27463
|
const defaultEnum = {
|
|
27464
|
+
basic: "basic",
|
|
27137
27465
|
elastic: "elastic",
|
|
27138
27466
|
enhanced: "enhanced",
|
|
27139
27467
|
standard: "standard",
|
|
@@ -27195,6 +27523,47 @@ const blockedDueToOverageTypeEnum = {
|
|
|
27195
27523
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
27196
27524
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
27197
27525
|
};
|
|
27526
|
+
const allocationEnum = {
|
|
27527
|
+
analyticsUsage: "analyticsUsage",
|
|
27528
|
+
artifacts: "artifacts",
|
|
27529
|
+
bandwidth: "bandwidth",
|
|
27530
|
+
blobDataTransfer: "blobDataTransfer",
|
|
27531
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
27532
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
27533
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
27534
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
27535
|
+
connectDataTransfer: "connectDataTransfer",
|
|
27536
|
+
dataCacheRead: "dataCacheRead",
|
|
27537
|
+
dataCacheWrite: "dataCacheWrite",
|
|
27538
|
+
edgeConfigRead: "edgeConfigRead",
|
|
27539
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
27540
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
27541
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
27542
|
+
edgeRequest: "edgeRequest",
|
|
27543
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
27544
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
27545
|
+
fastDataTransfer: "fastDataTransfer",
|
|
27546
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
27547
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
27548
|
+
fluidDuration: "fluidDuration",
|
|
27549
|
+
functionDuration: "functionDuration",
|
|
27550
|
+
functionInvocation: "functionInvocation",
|
|
27551
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
27552
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
27553
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
27554
|
+
logDrainsVolume: "logDrainsVolume",
|
|
27555
|
+
monitoringMetric: "monitoringMetric",
|
|
27556
|
+
observabilityEvent: "observabilityEvent",
|
|
27557
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
27558
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
27559
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
27560
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
27561
|
+
sourceImages: "sourceImages",
|
|
27562
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
27563
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
27564
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
27565
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
27566
|
+
};
|
|
27198
27567
|
const roleEnum = {
|
|
27199
27568
|
BILLING: "BILLING",
|
|
27200
27569
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -27410,12 +27779,14 @@ const scopeEnum = {
|
|
|
27410
27779
|
user: "user"
|
|
27411
27780
|
};
|
|
27412
27781
|
const previousEnum = {
|
|
27782
|
+
basic: "basic",
|
|
27413
27783
|
elastic: "elastic",
|
|
27414
27784
|
enhanced: "enhanced",
|
|
27415
27785
|
standard: "standard",
|
|
27416
27786
|
turbo: "turbo"
|
|
27417
27787
|
};
|
|
27418
27788
|
const nextEnum = {
|
|
27789
|
+
basic: "basic",
|
|
27419
27790
|
elastic: "elastic",
|
|
27420
27791
|
enhanced: "enhanced",
|
|
27421
27792
|
standard: "standard",
|
|
@@ -27461,6 +27832,10 @@ const sourceEnum = {
|
|
|
27461
27832
|
saml: "saml",
|
|
27462
27833
|
teams: "teams"
|
|
27463
27834
|
};
|
|
27835
|
+
const decisionEnum = {
|
|
27836
|
+
keep_on: "keep_on",
|
|
27837
|
+
turn_off: "turn_off"
|
|
27838
|
+
};
|
|
27464
27839
|
const envEnum = {
|
|
27465
27840
|
preview: "preview",
|
|
27466
27841
|
production: "production"
|
|
@@ -27522,6 +27897,7 @@ const listEventTypeNameEnum = {
|
|
|
27522
27897
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
27523
27898
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
27524
27899
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
27900
|
+
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
27525
27901
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
27526
27902
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
27527
27903
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
@@ -27539,6 +27915,7 @@ const listEventTypeNameEnum = {
|
|
|
27539
27915
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
27540
27916
|
"ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
|
|
27541
27917
|
"ai-gateway-rule-updated": "ai-gateway-rule-updated",
|
|
27918
|
+
"ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
|
|
27542
27919
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
27543
27920
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
27544
27921
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
@@ -27584,6 +27961,7 @@ const listEventTypeNameEnum = {
|
|
|
27584
27961
|
"cert-system-create": "cert-system-create",
|
|
27585
27962
|
"code-owners-config-updated": "code-owners-config-updated",
|
|
27586
27963
|
"compliance-document-downloaded": "compliance-document-downloaded",
|
|
27964
|
+
"compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
|
|
27587
27965
|
"concurrent-builds-update": "concurrent-builds-update",
|
|
27588
27966
|
"connect-attach-project": "connect-attach-project",
|
|
27589
27967
|
"connect-bitbucket": "connect-bitbucket",
|
|
@@ -27775,6 +28153,10 @@ const listEventTypeNameEnum = {
|
|
|
27775
28153
|
"observability-enabled": "observability-enabled",
|
|
27776
28154
|
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
27777
28155
|
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
28156
|
+
"oidc-policy-created": "oidc-policy-created",
|
|
28157
|
+
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
28158
|
+
"oidc-policy-updated": "oidc-policy-updated",
|
|
28159
|
+
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
27778
28160
|
"organization-create": "organization-create",
|
|
27779
28161
|
"organization-delete": "organization-delete",
|
|
27780
28162
|
"organization-slug-update": "organization-slug-update",
|
|
@@ -27823,6 +28205,7 @@ const listEventTypeNameEnum = {
|
|
|
27823
28205
|
"project-build-command-updated": "project-build-command-updated",
|
|
27824
28206
|
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
27825
28207
|
"project-build-machine-updated": "project-build-machine-updated",
|
|
28208
|
+
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
27826
28209
|
"project-client-cert-delete": "project-client-cert-delete",
|
|
27827
28210
|
"project-client-cert-upload": "project-client-cert-upload",
|
|
27828
28211
|
"project-connect-configurations": "project-connect-configurations",
|
|
@@ -27982,6 +28365,7 @@ const listEventTypeNameEnum = {
|
|
|
27982
28365
|
"subscription-product-removed": "subscription-product-removed",
|
|
27983
28366
|
"subscription-updated": "subscription-updated",
|
|
27984
28367
|
team: "team",
|
|
28368
|
+
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
27985
28369
|
"team-avatar-update": "team-avatar-update",
|
|
27986
28370
|
"team-collaboration-settings-updated": "team-collaboration-settings-updated",
|
|
27987
28371
|
"team-default-build-machine-updated": "team-default-build-machine-updated",
|
|
@@ -28034,7 +28418,9 @@ const listEventTypeNameEnum = {
|
|
|
28034
28418
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
28035
28419
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
28036
28420
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
28421
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
28037
28422
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
28423
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
28038
28424
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
28039
28425
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
28040
28426
|
"user-mfa-removed": "user-mfa-removed",
|
|
@@ -28121,6 +28507,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
28121
28507
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
28122
28508
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
28123
28509
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
28510
|
+
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
28124
28511
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
28125
28512
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
28126
28513
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
@@ -28138,6 +28525,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
28138
28525
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
28139
28526
|
"ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
|
|
28140
28527
|
"ai-gateway-rule-updated": "ai-gateway-rule-updated",
|
|
28528
|
+
"ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
|
|
28141
28529
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
28142
28530
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
28143
28531
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
@@ -28183,6 +28571,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
28183
28571
|
"cert-system-create": "cert-system-create",
|
|
28184
28572
|
"code-owners-config-updated": "code-owners-config-updated",
|
|
28185
28573
|
"compliance-document-downloaded": "compliance-document-downloaded",
|
|
28574
|
+
"compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
|
|
28186
28575
|
"concurrent-builds-update": "concurrent-builds-update",
|
|
28187
28576
|
"connect-attach-project": "connect-attach-project",
|
|
28188
28577
|
"connect-bitbucket": "connect-bitbucket",
|
|
@@ -28374,6 +28763,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
28374
28763
|
"observability-enabled": "observability-enabled",
|
|
28375
28764
|
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
28376
28765
|
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
28766
|
+
"oidc-policy-created": "oidc-policy-created",
|
|
28767
|
+
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
28768
|
+
"oidc-policy-updated": "oidc-policy-updated",
|
|
28769
|
+
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
28377
28770
|
"organization-create": "organization-create",
|
|
28378
28771
|
"organization-delete": "organization-delete",
|
|
28379
28772
|
"organization-slug-update": "organization-slug-update",
|
|
@@ -28422,6 +28815,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
28422
28815
|
"project-build-command-updated": "project-build-command-updated",
|
|
28423
28816
|
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
28424
28817
|
"project-build-machine-updated": "project-build-machine-updated",
|
|
28818
|
+
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
28425
28819
|
"project-client-cert-delete": "project-client-cert-delete",
|
|
28426
28820
|
"project-client-cert-upload": "project-client-cert-upload",
|
|
28427
28821
|
"project-connect-configurations": "project-connect-configurations",
|
|
@@ -28581,6 +28975,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
28581
28975
|
"subscription-product-removed": "subscription-product-removed",
|
|
28582
28976
|
"subscription-updated": "subscription-updated",
|
|
28583
28977
|
team: "team",
|
|
28978
|
+
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
28584
28979
|
"team-avatar-update": "team-avatar-update",
|
|
28585
28980
|
"team-collaboration-settings-updated": "team-collaboration-settings-updated",
|
|
28586
28981
|
"team-default-build-machine-updated": "team-default-build-machine-updated",
|
|
@@ -28633,7 +29028,9 @@ const listEventTypeReplacedByEnum = {
|
|
|
28633
29028
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
28634
29029
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
28635
29030
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
29031
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
28636
29032
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
29033
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
28637
29034
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
28638
29035
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
28639
29036
|
"user-mfa-removed": "user-mfa-removed",
|
|
@@ -28886,6 +29283,7 @@ const teamDefaultRolesTeamPermissionsEnum = {
|
|
|
28886
29283
|
V0Viewer: "V0Viewer"
|
|
28887
29284
|
};
|
|
28888
29285
|
const teamResourceConfigBuildMachineDefaultEnum = {
|
|
29286
|
+
basic: "basic",
|
|
28889
29287
|
elastic: "elastic",
|
|
28890
29288
|
enhanced: "enhanced",
|
|
28891
29289
|
standard: "standard",
|
|
@@ -29068,6 +29466,7 @@ const authUserSoftBlockReasonEnum = {
|
|
|
29068
29466
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
29069
29467
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
29070
29468
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
29469
|
+
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
29071
29470
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
29072
29471
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
29073
29472
|
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
@@ -29284,6 +29683,7 @@ exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
|
|
|
29284
29683
|
exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
|
|
29285
29684
|
exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
|
|
29286
29685
|
exports.aiGatewayRuleTypeEnum = aiGatewayRuleTypeEnum;
|
|
29686
|
+
exports.allocationEnum = allocationEnum;
|
|
29287
29687
|
exports.allowListedReadyStateReasonInternalEnum = allowListedReadyStateReasonInternalEnum;
|
|
29288
29688
|
exports.approvalScopeEnum = approvalScopeEnum;
|
|
29289
29689
|
exports.approveRollingReleaseStagePathIdOrNameSchema = approveRollingReleaseStagePathIdOrNameSchema;
|
|
@@ -29946,6 +30346,7 @@ exports.dangerouslyDeleteByTagsStatus403Schema = dangerouslyDeleteByTagsStatus40
|
|
|
29946
30346
|
exports.dangerouslyDeleteByTagsStatus404Schema = dangerouslyDeleteByTagsStatus404Schema;
|
|
29947
30347
|
exports.dangerouslyDeleteByTagsStatus410Schema = dangerouslyDeleteByTagsStatus410Schema;
|
|
29948
30348
|
exports.dateFromStringSchema = dateFromStringSchema;
|
|
30349
|
+
exports.decisionEnum = decisionEnum;
|
|
29949
30350
|
exports.defaultEnum = defaultEnum;
|
|
29950
30351
|
exports.deleteAccessGroupPathIdOrNameSchema = deleteAccessGroupPathIdOrNameSchema;
|
|
29951
30352
|
exports.deleteAccessGroupProjectPathAccessGroupIdOrNameSchema = deleteAccessGroupProjectPathAccessGroupIdOrNameSchema;
|
|
@@ -31106,16 +31507,16 @@ exports.getFlagStatus402Schema = getFlagStatus402Schema;
|
|
|
31106
31507
|
exports.getFlagStatus403Schema = getFlagStatus403Schema;
|
|
31107
31508
|
exports.getFlagStatus404Schema = getFlagStatus404Schema;
|
|
31108
31509
|
exports.getFlagStatus410Schema = getFlagStatus410Schema;
|
|
31109
|
-
exports.
|
|
31110
|
-
exports.
|
|
31111
|
-
exports.
|
|
31112
|
-
exports.
|
|
31113
|
-
exports.
|
|
31114
|
-
exports.
|
|
31115
|
-
exports.
|
|
31116
|
-
exports.
|
|
31117
|
-
exports.
|
|
31118
|
-
exports.
|
|
31510
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
|
|
31511
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
|
|
31512
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
|
|
31513
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
|
|
31514
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema;
|
|
31515
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
|
|
31516
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
|
|
31517
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
|
|
31518
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
|
|
31519
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
|
|
31119
31520
|
exports.getIntegrationLogDrainsQuerySlugSchema = getIntegrationLogDrainsQuerySlugSchema;
|
|
31120
31521
|
exports.getIntegrationLogDrainsQueryTeamIdSchema = getIntegrationLogDrainsQueryTeamIdSchema;
|
|
31121
31522
|
exports.getIntegrationLogDrainsResponseSchema = getIntegrationLogDrainsResponseSchema;
|
|
@@ -32590,17 +32991,17 @@ exports.replaceDomainsByDomainRecordsStatus404Schema = replaceDomainsByDomainRec
|
|
|
32590
32991
|
exports.replaceDomainsByDomainRecordsStatus409Schema = replaceDomainsByDomainRecordsStatus409Schema;
|
|
32591
32992
|
exports.replaceDomainsByDomainRecordsStatus410Schema = replaceDomainsByDomainRecordsStatus410Schema;
|
|
32592
32993
|
exports.replaceDomainsByDomainRecordsStatus415Schema = replaceDomainsByDomainRecordsStatus415Schema;
|
|
32593
|
-
exports.
|
|
32594
|
-
exports.
|
|
32595
|
-
exports.
|
|
32596
|
-
exports.
|
|
32597
|
-
exports.
|
|
32598
|
-
exports.
|
|
32599
|
-
exports.
|
|
32600
|
-
exports.
|
|
32601
|
-
exports.
|
|
32602
|
-
exports.
|
|
32603
|
-
exports.
|
|
32994
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
|
|
32995
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
|
|
32996
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
|
|
32997
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
|
|
32998
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
|
|
32999
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
|
|
33000
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
|
|
33001
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
|
|
33002
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema;
|
|
33003
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
|
|
33004
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema;
|
|
32604
33005
|
exports.requestAccessToTeamPathTeamIdSchema = requestAccessToTeamPathTeamIdSchema;
|
|
32605
33006
|
exports.requestAccessToTeamResponseSchema = requestAccessToTeamResponseSchema;
|
|
32606
33007
|
exports.requestAccessToTeamStatus200Schema = requestAccessToTeamStatus200Schema;
|
|
@@ -32704,6 +33105,7 @@ exports.sandboxNetworkPolicyModeEnum = sandboxNetworkPolicyModeEnum;
|
|
|
32704
33105
|
exports.sandboxNetworkPolicySchema = sandboxNetworkPolicySchema;
|
|
32705
33106
|
exports.sandboxPublicRouteSchema = sandboxPublicRouteSchema;
|
|
32706
33107
|
exports.scopeEnum = scopeEnum;
|
|
33108
|
+
exports.scopeTypeEnum = scopeTypeEnum;
|
|
32707
33109
|
exports.searchRepoQueryHostSchema = searchRepoQueryHostSchema;
|
|
32708
33110
|
exports.searchRepoQueryInstallationIdSchema = searchRepoQueryInstallationIdSchema;
|
|
32709
33111
|
exports.searchRepoQueryNamespaceIdSchema = searchRepoQueryNamespaceIdSchema;
|
|
@@ -33431,6 +33833,7 @@ exports.verifyProjectDomainStatus403Schema = verifyProjectDomainStatus403Schema;
|
|
|
33431
33833
|
exports.verifyProjectDomainStatus410Schema = verifyProjectDomainStatus410Schema;
|
|
33432
33834
|
exports.versionEnum = versionEnum;
|
|
33433
33835
|
exports.viewPreferenceEnum = viewPreferenceEnum;
|
|
33836
|
+
exports.widgetEnum = widgetEnum;
|
|
33434
33837
|
exports.writeSessionFilesHeaderxCwdSchema = writeSessionFilesHeaderxCwdSchema;
|
|
33435
33838
|
exports.writeSessionFilesPathSessionIdSchema = writeSessionFilesPathSessionIdSchema;
|
|
33436
33839
|
exports.writeSessionFilesQuerySlugSchema = writeSessionFilesQuerySlugSchema;
|