@sentry/api 0.282.0 → 0.284.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +12 -0
- package/dist/pagination.gen.d.ts +31 -1
- package/dist/types.gen.d.ts +207 -18
- package/dist/valibot.gen.d.ts +72 -4
- package/dist/valibot.js +99 -8
- package/dist/zod.gen.d.ts +284 -26
- package/dist/zod.js +126 -8
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -2047,19 +2047,16 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2047
2047
|
y: z.ZodNumber;
|
|
2048
2048
|
w: z.ZodNumber;
|
|
2049
2049
|
h: z.ZodNumber;
|
|
2050
|
-
min_h: z.ZodNumber;
|
|
2051
2050
|
}, "strip", z.ZodTypeAny, {
|
|
2052
2051
|
x: number;
|
|
2053
2052
|
y: number;
|
|
2054
2053
|
w: number;
|
|
2055
2054
|
h: number;
|
|
2056
|
-
min_h: number;
|
|
2057
2055
|
}, {
|
|
2058
2056
|
x: number;
|
|
2059
2057
|
y: number;
|
|
2060
2058
|
w: number;
|
|
2061
2059
|
h: number;
|
|
2062
|
-
min_h: number;
|
|
2063
2060
|
}>, z.ZodNull]>>;
|
|
2064
2061
|
axis_range: z.ZodOptional<z.ZodNullable<z.ZodEnum<["auto", "dataMin"]>>>;
|
|
2065
2062
|
legend_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["default", "breakdown"]>>>;
|
|
@@ -2098,7 +2095,6 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2098
2095
|
y: number;
|
|
2099
2096
|
w: number;
|
|
2100
2097
|
h: number;
|
|
2101
|
-
min_h: number;
|
|
2102
2098
|
} | null | undefined;
|
|
2103
2099
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
2104
2100
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -2137,7 +2133,6 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2137
2133
|
y: number;
|
|
2138
2134
|
w: number;
|
|
2139
2135
|
h: number;
|
|
2140
|
-
min_h: number;
|
|
2141
2136
|
} | null | undefined;
|
|
2142
2137
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
2143
2138
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -2203,7 +2198,6 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2203
2198
|
y: number;
|
|
2204
2199
|
w: number;
|
|
2205
2200
|
h: number;
|
|
2206
|
-
min_h: number;
|
|
2207
2201
|
} | null | undefined;
|
|
2208
2202
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
2209
2203
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -2257,7 +2251,6 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2257
2251
|
y: number;
|
|
2258
2252
|
w: number;
|
|
2259
2253
|
h: number;
|
|
2260
|
-
min_h: number;
|
|
2261
2254
|
} | null | undefined;
|
|
2262
2255
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
2263
2256
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -2271,6 +2264,210 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2271
2264
|
} | null | undefined;
|
|
2272
2265
|
is_favorited?: boolean | undefined;
|
|
2273
2266
|
}>;
|
|
2267
|
+
/**
|
|
2268
|
+
* Allows parameters to be defined in snake case, but passed as camel case.
|
|
2269
|
+
*
|
|
2270
|
+
* Errors are output in camel case.
|
|
2271
|
+
*/
|
|
2272
|
+
export declare const zDashboardCreateWidget: z.ZodObject<{
|
|
2273
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2274
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2275
|
+
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2276
|
+
thresholds: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
|
|
2277
|
+
display_type: z.ZodOptional<z.ZodEnum<["line", "area", "bar", "table", "big_number", "details", "categorical_bar", "wheel", "rage_and_dead_clicks", "server_tree", "text", "agents_traces_table", "heatmap"]>>;
|
|
2278
|
+
interval: z.ZodOptional<z.ZodString>;
|
|
2279
|
+
queries: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2280
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2281
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2282
|
+
aggregates: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
2283
|
+
columns: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
2284
|
+
field_aliases: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
2285
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2286
|
+
conditions: z.ZodOptional<z.ZodString>;
|
|
2287
|
+
orderby: z.ZodOptional<z.ZodString>;
|
|
2288
|
+
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2289
|
+
on_demand_extraction: z.ZodOptional<z.ZodObject<{
|
|
2290
|
+
extraction_state: z.ZodOptional<z.ZodString>;
|
|
2291
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2292
|
+
}, "strip", z.ZodTypeAny, {
|
|
2293
|
+
enabled?: boolean | undefined;
|
|
2294
|
+
extraction_state?: string | undefined;
|
|
2295
|
+
}, {
|
|
2296
|
+
enabled?: boolean | undefined;
|
|
2297
|
+
extraction_state?: string | undefined;
|
|
2298
|
+
}>>;
|
|
2299
|
+
on_demand_extraction_disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2300
|
+
selected_aggregate: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
2301
|
+
linked_dashboards: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
2302
|
+
field: z.ZodString;
|
|
2303
|
+
dashboard_id: z.ZodString;
|
|
2304
|
+
}, "strip", z.ZodTypeAny, {
|
|
2305
|
+
dashboard_id: string;
|
|
2306
|
+
field: string;
|
|
2307
|
+
}, {
|
|
2308
|
+
dashboard_id: string;
|
|
2309
|
+
field: string;
|
|
2310
|
+
}>, "many">, z.ZodNull]>>;
|
|
2311
|
+
}, "strip", z.ZodTypeAny, {
|
|
2312
|
+
name?: string | undefined;
|
|
2313
|
+
fields?: string[] | undefined;
|
|
2314
|
+
id?: string | undefined;
|
|
2315
|
+
conditions?: string | undefined;
|
|
2316
|
+
aggregates?: string[] | null | undefined;
|
|
2317
|
+
columns?: string[] | null | undefined;
|
|
2318
|
+
field_aliases?: string[] | null | undefined;
|
|
2319
|
+
orderby?: string | undefined;
|
|
2320
|
+
is_hidden?: boolean | undefined;
|
|
2321
|
+
on_demand_extraction?: {
|
|
2322
|
+
enabled?: boolean | undefined;
|
|
2323
|
+
extraction_state?: string | undefined;
|
|
2324
|
+
} | undefined;
|
|
2325
|
+
on_demand_extraction_disabled?: boolean | undefined;
|
|
2326
|
+
selected_aggregate?: number | null | undefined;
|
|
2327
|
+
linked_dashboards?: {
|
|
2328
|
+
dashboard_id: string;
|
|
2329
|
+
field: string;
|
|
2330
|
+
}[] | null | undefined;
|
|
2331
|
+
}, {
|
|
2332
|
+
name?: string | undefined;
|
|
2333
|
+
fields?: string[] | undefined;
|
|
2334
|
+
id?: string | undefined;
|
|
2335
|
+
conditions?: string | undefined;
|
|
2336
|
+
aggregates?: string[] | null | undefined;
|
|
2337
|
+
columns?: string[] | null | undefined;
|
|
2338
|
+
field_aliases?: string[] | null | undefined;
|
|
2339
|
+
orderby?: string | undefined;
|
|
2340
|
+
is_hidden?: boolean | undefined;
|
|
2341
|
+
on_demand_extraction?: {
|
|
2342
|
+
enabled?: boolean | undefined;
|
|
2343
|
+
extraction_state?: string | undefined;
|
|
2344
|
+
} | undefined;
|
|
2345
|
+
on_demand_extraction_disabled?: boolean | undefined;
|
|
2346
|
+
selected_aggregate?: number | null | undefined;
|
|
2347
|
+
linked_dashboards?: {
|
|
2348
|
+
dashboard_id: string;
|
|
2349
|
+
field: string;
|
|
2350
|
+
}[] | null | undefined;
|
|
2351
|
+
}>, "many">>;
|
|
2352
|
+
widget_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["discover", "issue", "metrics", "error-events", "transaction-like", "spans", "logs", "tracemetrics", "preprod-app-size"]>>>;
|
|
2353
|
+
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
2354
|
+
layout: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2355
|
+
x: z.ZodNumber;
|
|
2356
|
+
y: z.ZodNumber;
|
|
2357
|
+
w: z.ZodNumber;
|
|
2358
|
+
h: z.ZodNumber;
|
|
2359
|
+
}, "strip", z.ZodTypeAny, {
|
|
2360
|
+
x: number;
|
|
2361
|
+
y: number;
|
|
2362
|
+
w: number;
|
|
2363
|
+
h: number;
|
|
2364
|
+
}, {
|
|
2365
|
+
x: number;
|
|
2366
|
+
y: number;
|
|
2367
|
+
w: number;
|
|
2368
|
+
h: number;
|
|
2369
|
+
}>, z.ZodNull]>>;
|
|
2370
|
+
axis_range: z.ZodOptional<z.ZodNullable<z.ZodEnum<["auto", "dataMin"]>>>;
|
|
2371
|
+
legend_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["default", "breakdown"]>>>;
|
|
2372
|
+
}, "strip", z.ZodTypeAny, {
|
|
2373
|
+
interval?: string | undefined;
|
|
2374
|
+
id?: string | undefined;
|
|
2375
|
+
limit?: number | null | undefined;
|
|
2376
|
+
description?: string | null | undefined;
|
|
2377
|
+
title?: string | undefined;
|
|
2378
|
+
thresholds?: Record<string, unknown> | null | undefined;
|
|
2379
|
+
display_type?: "text" | "line" | "area" | "bar" | "table" | "big_number" | "details" | "categorical_bar" | "wheel" | "rage_and_dead_clicks" | "server_tree" | "agents_traces_table" | "heatmap" | undefined;
|
|
2380
|
+
queries?: {
|
|
2381
|
+
name?: string | undefined;
|
|
2382
|
+
fields?: string[] | undefined;
|
|
2383
|
+
id?: string | undefined;
|
|
2384
|
+
conditions?: string | undefined;
|
|
2385
|
+
aggregates?: string[] | null | undefined;
|
|
2386
|
+
columns?: string[] | null | undefined;
|
|
2387
|
+
field_aliases?: string[] | null | undefined;
|
|
2388
|
+
orderby?: string | undefined;
|
|
2389
|
+
is_hidden?: boolean | undefined;
|
|
2390
|
+
on_demand_extraction?: {
|
|
2391
|
+
enabled?: boolean | undefined;
|
|
2392
|
+
extraction_state?: string | undefined;
|
|
2393
|
+
} | undefined;
|
|
2394
|
+
on_demand_extraction_disabled?: boolean | undefined;
|
|
2395
|
+
selected_aggregate?: number | null | undefined;
|
|
2396
|
+
linked_dashboards?: {
|
|
2397
|
+
dashboard_id: string;
|
|
2398
|
+
field: string;
|
|
2399
|
+
}[] | null | undefined;
|
|
2400
|
+
}[] | undefined;
|
|
2401
|
+
widget_type?: "discover" | "issue" | "metrics" | "error-events" | "transaction-like" | "spans" | "logs" | "tracemetrics" | "preprod-app-size" | null | undefined;
|
|
2402
|
+
layout?: {
|
|
2403
|
+
x: number;
|
|
2404
|
+
y: number;
|
|
2405
|
+
w: number;
|
|
2406
|
+
h: number;
|
|
2407
|
+
} | null | undefined;
|
|
2408
|
+
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
2409
|
+
legend_type?: "default" | "breakdown" | null | undefined;
|
|
2410
|
+
}, {
|
|
2411
|
+
interval?: string | undefined;
|
|
2412
|
+
id?: string | undefined;
|
|
2413
|
+
limit?: number | null | undefined;
|
|
2414
|
+
description?: string | null | undefined;
|
|
2415
|
+
title?: string | undefined;
|
|
2416
|
+
thresholds?: Record<string, unknown> | null | undefined;
|
|
2417
|
+
display_type?: "text" | "line" | "area" | "bar" | "table" | "big_number" | "details" | "categorical_bar" | "wheel" | "rage_and_dead_clicks" | "server_tree" | "agents_traces_table" | "heatmap" | undefined;
|
|
2418
|
+
queries?: {
|
|
2419
|
+
name?: string | undefined;
|
|
2420
|
+
fields?: string[] | undefined;
|
|
2421
|
+
id?: string | undefined;
|
|
2422
|
+
conditions?: string | undefined;
|
|
2423
|
+
aggregates?: string[] | null | undefined;
|
|
2424
|
+
columns?: string[] | null | undefined;
|
|
2425
|
+
field_aliases?: string[] | null | undefined;
|
|
2426
|
+
orderby?: string | undefined;
|
|
2427
|
+
is_hidden?: boolean | undefined;
|
|
2428
|
+
on_demand_extraction?: {
|
|
2429
|
+
enabled?: boolean | undefined;
|
|
2430
|
+
extraction_state?: string | undefined;
|
|
2431
|
+
} | undefined;
|
|
2432
|
+
on_demand_extraction_disabled?: boolean | undefined;
|
|
2433
|
+
selected_aggregate?: number | null | undefined;
|
|
2434
|
+
linked_dashboards?: {
|
|
2435
|
+
dashboard_id: string;
|
|
2436
|
+
field: string;
|
|
2437
|
+
}[] | null | undefined;
|
|
2438
|
+
}[] | undefined;
|
|
2439
|
+
widget_type?: "discover" | "issue" | "metrics" | "error-events" | "transaction-like" | "spans" | "logs" | "tracemetrics" | "preprod-app-size" | null | undefined;
|
|
2440
|
+
layout?: {
|
|
2441
|
+
x: number;
|
|
2442
|
+
y: number;
|
|
2443
|
+
w: number;
|
|
2444
|
+
h: number;
|
|
2445
|
+
} | null | undefined;
|
|
2446
|
+
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
2447
|
+
legend_type?: "default" | "breakdown" | null | undefined;
|
|
2448
|
+
}>;
|
|
2449
|
+
/**
|
|
2450
|
+
* Widget grid layout position and dimensions for dashboard creation.
|
|
2451
|
+
*
|
|
2452
|
+
* The dashboard uses a 6-column grid. Required keys: x, y, w, h.
|
|
2453
|
+
* Constraints: x (0-5), y (>= 0), w (1-6), h (>= 1), and x + w <= 6.
|
|
2454
|
+
*/
|
|
2455
|
+
export declare const zDashboardCreateWidgetLayout: z.ZodObject<{
|
|
2456
|
+
x: z.ZodNumber;
|
|
2457
|
+
y: z.ZodNumber;
|
|
2458
|
+
w: z.ZodNumber;
|
|
2459
|
+
h: z.ZodNumber;
|
|
2460
|
+
}, "strip", z.ZodTypeAny, {
|
|
2461
|
+
x: number;
|
|
2462
|
+
y: number;
|
|
2463
|
+
w: number;
|
|
2464
|
+
h: number;
|
|
2465
|
+
}, {
|
|
2466
|
+
x: number;
|
|
2467
|
+
y: number;
|
|
2468
|
+
w: number;
|
|
2469
|
+
h: number;
|
|
2470
|
+
}>;
|
|
2274
2471
|
/**
|
|
2275
2472
|
* Allows parameters to be defined in snake case, but passed as camel case.
|
|
2276
2473
|
*
|
|
@@ -33333,22 +33530,38 @@ export declare const zListOrganizationDashboardsData: z.ZodObject<{
|
|
|
33333
33530
|
organization_id_or_slug: string;
|
|
33334
33531
|
}>;
|
|
33335
33532
|
query: z.ZodOptional<z.ZodObject<{
|
|
33533
|
+
filter: z.ZodOptional<z.ZodArray<z.ZodEnum<["excludeFavorites", "excludePrebuilt", "onlyFavorites", "onlyPrebuilt", "owned", "shared", "showHidden"]>, "many">>;
|
|
33534
|
+
query: z.ZodOptional<z.ZodString>;
|
|
33535
|
+
sort: z.ZodOptional<z.ZodString>;
|
|
33536
|
+
pin: z.ZodOptional<z.ZodEnum<["favorites"]>>;
|
|
33336
33537
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
33337
33538
|
cursor: z.ZodOptional<z.ZodString>;
|
|
33338
33539
|
}, "strip", z.ZodTypeAny, {
|
|
33540
|
+
sort?: string | undefined;
|
|
33541
|
+
filter?: ("excludeFavorites" | "excludePrebuilt" | "onlyFavorites" | "onlyPrebuilt" | "owned" | "shared" | "showHidden")[] | undefined;
|
|
33542
|
+
query?: string | undefined;
|
|
33339
33543
|
cursor?: string | undefined;
|
|
33340
33544
|
per_page?: number | undefined;
|
|
33545
|
+
pin?: "favorites" | undefined;
|
|
33341
33546
|
}, {
|
|
33547
|
+
sort?: string | undefined;
|
|
33548
|
+
filter?: ("excludeFavorites" | "excludePrebuilt" | "onlyFavorites" | "onlyPrebuilt" | "owned" | "shared" | "showHidden")[] | undefined;
|
|
33549
|
+
query?: string | undefined;
|
|
33342
33550
|
cursor?: string | undefined;
|
|
33343
33551
|
per_page?: number | undefined;
|
|
33552
|
+
pin?: "favorites" | undefined;
|
|
33344
33553
|
}>>;
|
|
33345
33554
|
}, "strip", z.ZodTypeAny, {
|
|
33346
33555
|
path: {
|
|
33347
33556
|
organization_id_or_slug: string;
|
|
33348
33557
|
};
|
|
33349
33558
|
query?: {
|
|
33559
|
+
sort?: string | undefined;
|
|
33560
|
+
filter?: ("excludeFavorites" | "excludePrebuilt" | "onlyFavorites" | "onlyPrebuilt" | "owned" | "shared" | "showHidden")[] | undefined;
|
|
33561
|
+
query?: string | undefined;
|
|
33350
33562
|
cursor?: string | undefined;
|
|
33351
33563
|
per_page?: number | undefined;
|
|
33564
|
+
pin?: "favorites" | undefined;
|
|
33352
33565
|
} | undefined;
|
|
33353
33566
|
body?: undefined;
|
|
33354
33567
|
}, {
|
|
@@ -33356,8 +33569,12 @@ export declare const zListOrganizationDashboardsData: z.ZodObject<{
|
|
|
33356
33569
|
organization_id_or_slug: string;
|
|
33357
33570
|
};
|
|
33358
33571
|
query?: {
|
|
33572
|
+
sort?: string | undefined;
|
|
33573
|
+
filter?: ("excludeFavorites" | "excludePrebuilt" | "onlyFavorites" | "onlyPrebuilt" | "owned" | "shared" | "showHidden")[] | undefined;
|
|
33574
|
+
query?: string | undefined;
|
|
33359
33575
|
cursor?: string | undefined;
|
|
33360
33576
|
per_page?: number | undefined;
|
|
33577
|
+
pin?: "favorites" | undefined;
|
|
33361
33578
|
} | undefined;
|
|
33362
33579
|
body?: undefined;
|
|
33363
33580
|
}>;
|
|
@@ -33799,19 +34016,16 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
33799
34016
|
y: z.ZodNumber;
|
|
33800
34017
|
w: z.ZodNumber;
|
|
33801
34018
|
h: z.ZodNumber;
|
|
33802
|
-
min_h: z.ZodNumber;
|
|
33803
34019
|
}, "strip", z.ZodTypeAny, {
|
|
33804
34020
|
x: number;
|
|
33805
34021
|
y: number;
|
|
33806
34022
|
w: number;
|
|
33807
34023
|
h: number;
|
|
33808
|
-
min_h: number;
|
|
33809
34024
|
}, {
|
|
33810
34025
|
x: number;
|
|
33811
34026
|
y: number;
|
|
33812
34027
|
w: number;
|
|
33813
34028
|
h: number;
|
|
33814
|
-
min_h: number;
|
|
33815
34029
|
}>, z.ZodNull]>>;
|
|
33816
34030
|
axis_range: z.ZodOptional<z.ZodNullable<z.ZodEnum<["auto", "dataMin"]>>>;
|
|
33817
34031
|
legend_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["default", "breakdown"]>>>;
|
|
@@ -33850,7 +34064,6 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
33850
34064
|
y: number;
|
|
33851
34065
|
w: number;
|
|
33852
34066
|
h: number;
|
|
33853
|
-
min_h: number;
|
|
33854
34067
|
} | null | undefined;
|
|
33855
34068
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
33856
34069
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -33889,7 +34102,6 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
33889
34102
|
y: number;
|
|
33890
34103
|
w: number;
|
|
33891
34104
|
h: number;
|
|
33892
|
-
min_h: number;
|
|
33893
34105
|
} | null | undefined;
|
|
33894
34106
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
33895
34107
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -33955,7 +34167,6 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
33955
34167
|
y: number;
|
|
33956
34168
|
w: number;
|
|
33957
34169
|
h: number;
|
|
33958
|
-
min_h: number;
|
|
33959
34170
|
} | null | undefined;
|
|
33960
34171
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
33961
34172
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -34009,7 +34220,6 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
34009
34220
|
y: number;
|
|
34010
34221
|
w: number;
|
|
34011
34222
|
h: number;
|
|
34012
|
-
min_h: number;
|
|
34013
34223
|
} | null | undefined;
|
|
34014
34224
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
34015
34225
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -34075,7 +34285,6 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
34075
34285
|
y: number;
|
|
34076
34286
|
w: number;
|
|
34077
34287
|
h: number;
|
|
34078
|
-
min_h: number;
|
|
34079
34288
|
} | null | undefined;
|
|
34080
34289
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
34081
34290
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -34135,7 +34344,6 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
34135
34344
|
y: number;
|
|
34136
34345
|
w: number;
|
|
34137
34346
|
h: number;
|
|
34138
|
-
min_h: number;
|
|
34139
34347
|
} | null | undefined;
|
|
34140
34348
|
axis_range?: "auto" | "dataMin" | null | undefined;
|
|
34141
34349
|
legend_type?: "default" | "breakdown" | null | undefined;
|
|
@@ -36712,16 +36920,22 @@ export declare const zListOrganizationDetectorsData: z.ZodObject<{
|
|
|
36712
36920
|
query: z.ZodOptional<z.ZodString>;
|
|
36713
36921
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
36714
36922
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
36923
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
36924
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
36715
36925
|
}, "strip", z.ZodTypeAny, {
|
|
36716
36926
|
query?: string | undefined;
|
|
36717
36927
|
id?: number[] | undefined;
|
|
36718
36928
|
project?: (string | number)[] | undefined;
|
|
36929
|
+
cursor?: string | undefined;
|
|
36719
36930
|
sortBy?: string | undefined;
|
|
36931
|
+
per_page?: number | undefined;
|
|
36720
36932
|
}, {
|
|
36721
36933
|
query?: string | undefined;
|
|
36722
36934
|
id?: number[] | undefined;
|
|
36723
36935
|
project?: (string | number)[] | undefined;
|
|
36936
|
+
cursor?: string | undefined;
|
|
36724
36937
|
sortBy?: string | undefined;
|
|
36938
|
+
per_page?: number | undefined;
|
|
36725
36939
|
}>>;
|
|
36726
36940
|
}, "strip", z.ZodTypeAny, {
|
|
36727
36941
|
path: {
|
|
@@ -36731,7 +36945,9 @@ export declare const zListOrganizationDetectorsData: z.ZodObject<{
|
|
|
36731
36945
|
query?: string | undefined;
|
|
36732
36946
|
id?: number[] | undefined;
|
|
36733
36947
|
project?: (string | number)[] | undefined;
|
|
36948
|
+
cursor?: string | undefined;
|
|
36734
36949
|
sortBy?: string | undefined;
|
|
36950
|
+
per_page?: number | undefined;
|
|
36735
36951
|
} | undefined;
|
|
36736
36952
|
body?: undefined;
|
|
36737
36953
|
}, {
|
|
@@ -36742,7 +36958,9 @@ export declare const zListOrganizationDetectorsData: z.ZodObject<{
|
|
|
36742
36958
|
query?: string | undefined;
|
|
36743
36959
|
id?: number[] | undefined;
|
|
36744
36960
|
project?: (string | number)[] | undefined;
|
|
36961
|
+
cursor?: string | undefined;
|
|
36745
36962
|
sortBy?: string | undefined;
|
|
36963
|
+
per_page?: number | undefined;
|
|
36746
36964
|
} | undefined;
|
|
36747
36965
|
body?: undefined;
|
|
36748
36966
|
}>;
|
|
@@ -39587,6 +39805,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
39587
39805
|
dataset: z.ZodEnum<["errors", "logs", "profile_functions", "spans", "tracemetrics", "uptime_results"]>;
|
|
39588
39806
|
end: z.ZodOptional<z.ZodString>;
|
|
39589
39807
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39808
|
+
referrer: z.ZodOptional<z.ZodString>;
|
|
39590
39809
|
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
39591
39810
|
start: z.ZodOptional<z.ZodString>;
|
|
39592
39811
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
@@ -39600,6 +39819,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
39600
39819
|
dataset: "spans" | "logs" | "tracemetrics" | "errors" | "profile_functions" | "uptime_results";
|
|
39601
39820
|
sort?: string | undefined;
|
|
39602
39821
|
query?: string | undefined;
|
|
39822
|
+
referrer?: string | undefined;
|
|
39603
39823
|
environment?: string[] | undefined;
|
|
39604
39824
|
project?: (string | number)[] | undefined;
|
|
39605
39825
|
cursor?: string | undefined;
|
|
@@ -39613,6 +39833,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
39613
39833
|
dataset: "spans" | "logs" | "tracemetrics" | "errors" | "profile_functions" | "uptime_results";
|
|
39614
39834
|
sort?: string | undefined;
|
|
39615
39835
|
query?: string | undefined;
|
|
39836
|
+
referrer?: string | undefined;
|
|
39616
39837
|
environment?: string[] | undefined;
|
|
39617
39838
|
project?: (string | number)[] | undefined;
|
|
39618
39839
|
cursor?: string | undefined;
|
|
@@ -39628,6 +39849,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
39628
39849
|
dataset: "spans" | "logs" | "tracemetrics" | "errors" | "profile_functions" | "uptime_results";
|
|
39629
39850
|
sort?: string | undefined;
|
|
39630
39851
|
query?: string | undefined;
|
|
39852
|
+
referrer?: string | undefined;
|
|
39631
39853
|
environment?: string[] | undefined;
|
|
39632
39854
|
project?: (string | number)[] | undefined;
|
|
39633
39855
|
cursor?: string | undefined;
|
|
@@ -39647,6 +39869,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
39647
39869
|
dataset: "spans" | "logs" | "tracemetrics" | "errors" | "profile_functions" | "uptime_results";
|
|
39648
39870
|
sort?: string | undefined;
|
|
39649
39871
|
query?: string | undefined;
|
|
39872
|
+
referrer?: string | undefined;
|
|
39650
39873
|
environment?: string[] | undefined;
|
|
39651
39874
|
project?: (string | number)[] | undefined;
|
|
39652
39875
|
cursor?: string | undefined;
|
|
@@ -55194,17 +55417,18 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
55194
55417
|
field: z.ZodOptional<z.ZodArray<z.ZodEnum<["activity", "browser", "count_dead_clicks", "count_errors", "count_rage_clicks", "count_segments", "count_urls", "device", "dist", "duration", "environment", "error_ids", "finished_at", "id", "is_archived", "os", "platform", "project_id", "releases", "sdk", "started_at", "tags", "trace_ids", "segment_names", "urls", "user", "clicks", "info_ids", "warning_ids", "count_warnings", "count_infos", "has_viewed"]>, "many">>;
|
|
55195
55418
|
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
55196
55419
|
projectSlug: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55197
|
-
environment: z.ZodOptional<z.ZodString
|
|
55420
|
+
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55198
55421
|
sort: z.ZodOptional<z.ZodString>;
|
|
55199
55422
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
55200
55423
|
orderBy: z.ZodOptional<z.ZodString>;
|
|
55201
55424
|
query: z.ZodOptional<z.ZodString>;
|
|
55425
|
+
queryReferrer: z.ZodOptional<z.ZodString>;
|
|
55202
55426
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
55203
55427
|
cursor: z.ZodOptional<z.ZodString>;
|
|
55204
55428
|
}, "strip", z.ZodTypeAny, {
|
|
55205
55429
|
sort?: string | undefined;
|
|
55206
55430
|
query?: string | undefined;
|
|
55207
|
-
environment?: string | undefined;
|
|
55431
|
+
environment?: string[] | undefined;
|
|
55208
55432
|
project?: (string | number)[] | undefined;
|
|
55209
55433
|
cursor?: string | undefined;
|
|
55210
55434
|
sortBy?: string | undefined;
|
|
@@ -55215,10 +55439,11 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
55215
55439
|
statsPeriod?: string | undefined;
|
|
55216
55440
|
projectSlug?: string[] | undefined;
|
|
55217
55441
|
orderBy?: string | undefined;
|
|
55442
|
+
queryReferrer?: string | undefined;
|
|
55218
55443
|
}, {
|
|
55219
55444
|
sort?: string | undefined;
|
|
55220
55445
|
query?: string | undefined;
|
|
55221
|
-
environment?: string | undefined;
|
|
55446
|
+
environment?: string[] | undefined;
|
|
55222
55447
|
project?: (string | number)[] | undefined;
|
|
55223
55448
|
cursor?: string | undefined;
|
|
55224
55449
|
sortBy?: string | undefined;
|
|
@@ -55229,6 +55454,7 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
55229
55454
|
statsPeriod?: string | undefined;
|
|
55230
55455
|
projectSlug?: string[] | undefined;
|
|
55231
55456
|
orderBy?: string | undefined;
|
|
55457
|
+
queryReferrer?: string | undefined;
|
|
55232
55458
|
}>>;
|
|
55233
55459
|
}, "strip", z.ZodTypeAny, {
|
|
55234
55460
|
path: {
|
|
@@ -55237,7 +55463,7 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
55237
55463
|
query?: {
|
|
55238
55464
|
sort?: string | undefined;
|
|
55239
55465
|
query?: string | undefined;
|
|
55240
|
-
environment?: string | undefined;
|
|
55466
|
+
environment?: string[] | undefined;
|
|
55241
55467
|
project?: (string | number)[] | undefined;
|
|
55242
55468
|
cursor?: string | undefined;
|
|
55243
55469
|
sortBy?: string | undefined;
|
|
@@ -55248,6 +55474,7 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
55248
55474
|
statsPeriod?: string | undefined;
|
|
55249
55475
|
projectSlug?: string[] | undefined;
|
|
55250
55476
|
orderBy?: string | undefined;
|
|
55477
|
+
queryReferrer?: string | undefined;
|
|
55251
55478
|
} | undefined;
|
|
55252
55479
|
body?: undefined;
|
|
55253
55480
|
}, {
|
|
@@ -55257,7 +55484,7 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
55257
55484
|
query?: {
|
|
55258
55485
|
sort?: string | undefined;
|
|
55259
55486
|
query?: string | undefined;
|
|
55260
|
-
environment?: string | undefined;
|
|
55487
|
+
environment?: string[] | undefined;
|
|
55261
55488
|
project?: (string | number)[] | undefined;
|
|
55262
55489
|
cursor?: string | undefined;
|
|
55263
55490
|
sortBy?: string | undefined;
|
|
@@ -55268,6 +55495,7 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
55268
55495
|
statsPeriod?: string | undefined;
|
|
55269
55496
|
projectSlug?: string[] | undefined;
|
|
55270
55497
|
orderBy?: string | undefined;
|
|
55498
|
+
queryReferrer?: string | undefined;
|
|
55271
55499
|
} | undefined;
|
|
55272
55500
|
body?: undefined;
|
|
55273
55501
|
}>;
|
|
@@ -55682,17 +55910,18 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
55682
55910
|
field: z.ZodOptional<z.ZodArray<z.ZodEnum<["activity", "browser", "count_dead_clicks", "count_errors", "count_rage_clicks", "count_segments", "count_urls", "device", "dist", "duration", "environment", "error_ids", "finished_at", "id", "is_archived", "os", "platform", "project_id", "releases", "sdk", "started_at", "tags", "trace_ids", "segment_names", "urls", "user", "clicks", "info_ids", "warning_ids", "count_warnings", "count_infos", "has_viewed"]>, "many">>;
|
|
55683
55911
|
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
55684
55912
|
projectSlug: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55685
|
-
environment: z.ZodOptional<z.ZodString
|
|
55913
|
+
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55686
55914
|
sort: z.ZodOptional<z.ZodString>;
|
|
55687
55915
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
55688
55916
|
orderBy: z.ZodOptional<z.ZodString>;
|
|
55689
55917
|
query: z.ZodOptional<z.ZodString>;
|
|
55918
|
+
queryReferrer: z.ZodOptional<z.ZodString>;
|
|
55690
55919
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
55691
55920
|
cursor: z.ZodOptional<z.ZodString>;
|
|
55692
55921
|
}, "strip", z.ZodTypeAny, {
|
|
55693
55922
|
sort?: string | undefined;
|
|
55694
55923
|
query?: string | undefined;
|
|
55695
|
-
environment?: string | undefined;
|
|
55924
|
+
environment?: string[] | undefined;
|
|
55696
55925
|
project?: (string | number)[] | undefined;
|
|
55697
55926
|
cursor?: string | undefined;
|
|
55698
55927
|
sortBy?: string | undefined;
|
|
@@ -55703,10 +55932,11 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
55703
55932
|
statsPeriod?: string | undefined;
|
|
55704
55933
|
projectSlug?: string[] | undefined;
|
|
55705
55934
|
orderBy?: string | undefined;
|
|
55935
|
+
queryReferrer?: string | undefined;
|
|
55706
55936
|
}, {
|
|
55707
55937
|
sort?: string | undefined;
|
|
55708
55938
|
query?: string | undefined;
|
|
55709
|
-
environment?: string | undefined;
|
|
55939
|
+
environment?: string[] | undefined;
|
|
55710
55940
|
project?: (string | number)[] | undefined;
|
|
55711
55941
|
cursor?: string | undefined;
|
|
55712
55942
|
sortBy?: string | undefined;
|
|
@@ -55717,6 +55947,7 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
55717
55947
|
statsPeriod?: string | undefined;
|
|
55718
55948
|
projectSlug?: string[] | undefined;
|
|
55719
55949
|
orderBy?: string | undefined;
|
|
55950
|
+
queryReferrer?: string | undefined;
|
|
55720
55951
|
}>>;
|
|
55721
55952
|
}, "strip", z.ZodTypeAny, {
|
|
55722
55953
|
path: {
|
|
@@ -55726,7 +55957,7 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
55726
55957
|
query?: {
|
|
55727
55958
|
sort?: string | undefined;
|
|
55728
55959
|
query?: string | undefined;
|
|
55729
|
-
environment?: string | undefined;
|
|
55960
|
+
environment?: string[] | undefined;
|
|
55730
55961
|
project?: (string | number)[] | undefined;
|
|
55731
55962
|
cursor?: string | undefined;
|
|
55732
55963
|
sortBy?: string | undefined;
|
|
@@ -55737,6 +55968,7 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
55737
55968
|
statsPeriod?: string | undefined;
|
|
55738
55969
|
projectSlug?: string[] | undefined;
|
|
55739
55970
|
orderBy?: string | undefined;
|
|
55971
|
+
queryReferrer?: string | undefined;
|
|
55740
55972
|
} | undefined;
|
|
55741
55973
|
body?: undefined;
|
|
55742
55974
|
}, {
|
|
@@ -55747,7 +55979,7 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
55747
55979
|
query?: {
|
|
55748
55980
|
sort?: string | undefined;
|
|
55749
55981
|
query?: string | undefined;
|
|
55750
|
-
environment?: string | undefined;
|
|
55982
|
+
environment?: string[] | undefined;
|
|
55751
55983
|
project?: (string | number)[] | undefined;
|
|
55752
55984
|
cursor?: string | undefined;
|
|
55753
55985
|
sortBy?: string | undefined;
|
|
@@ -55758,6 +55990,7 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
55758
55990
|
statsPeriod?: string | undefined;
|
|
55759
55991
|
projectSlug?: string[] | undefined;
|
|
55760
55992
|
orderBy?: string | undefined;
|
|
55993
|
+
queryReferrer?: string | undefined;
|
|
55761
55994
|
} | undefined;
|
|
55762
55995
|
body?: undefined;
|
|
55763
55996
|
}>;
|
|
@@ -60926,6 +61159,8 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
60926
61159
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
60927
61160
|
start: z.ZodOptional<z.ZodString>;
|
|
60928
61161
|
end: z.ZodOptional<z.ZodString>;
|
|
61162
|
+
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
61163
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
60929
61164
|
dataset: z.ZodOptional<z.ZodEnum<["logs", "preprod", "processing_errors", "spans", "tracemetrics"]>>;
|
|
60930
61165
|
itemType: z.ZodOptional<z.ZodEnum<["logs", "preprod", "processing_errors", "spans", "tracemetrics"]>>;
|
|
60931
61166
|
attributeType: z.ZodOptional<z.ZodArray<z.ZodEnum<["array", "boolean", "number", "string"]>, "many">>;
|
|
@@ -60934,6 +61169,8 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
60934
61169
|
cursor: z.ZodOptional<z.ZodString>;
|
|
60935
61170
|
}, "strip", z.ZodTypeAny, {
|
|
60936
61171
|
query?: string | undefined;
|
|
61172
|
+
environment?: string[] | undefined;
|
|
61173
|
+
project?: (string | number)[] | undefined;
|
|
60937
61174
|
cursor?: string | undefined;
|
|
60938
61175
|
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
60939
61176
|
end?: string | undefined;
|
|
@@ -60944,6 +61181,8 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
60944
61181
|
substringMatch?: string | undefined;
|
|
60945
61182
|
}, {
|
|
60946
61183
|
query?: string | undefined;
|
|
61184
|
+
environment?: string[] | undefined;
|
|
61185
|
+
project?: (string | number)[] | undefined;
|
|
60947
61186
|
cursor?: string | undefined;
|
|
60948
61187
|
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
60949
61188
|
end?: string | undefined;
|
|
@@ -60959,6 +61198,8 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
60959
61198
|
};
|
|
60960
61199
|
query?: {
|
|
60961
61200
|
query?: string | undefined;
|
|
61201
|
+
environment?: string[] | undefined;
|
|
61202
|
+
project?: (string | number)[] | undefined;
|
|
60962
61203
|
cursor?: string | undefined;
|
|
60963
61204
|
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
60964
61205
|
end?: string | undefined;
|
|
@@ -60975,6 +61216,8 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
60975
61216
|
};
|
|
60976
61217
|
query?: {
|
|
60977
61218
|
query?: string | undefined;
|
|
61219
|
+
environment?: string[] | undefined;
|
|
61220
|
+
project?: (string | number)[] | undefined;
|
|
60978
61221
|
cursor?: string | undefined;
|
|
60979
61222
|
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
60980
61223
|
end?: string | undefined;
|
|
@@ -62446,17 +62689,26 @@ export declare const zListOrganizationWorkflowsData: z.ZodObject<{
|
|
|
62446
62689
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
62447
62690
|
query: z.ZodOptional<z.ZodString>;
|
|
62448
62691
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
62692
|
+
detector: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
62449
62693
|
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
62694
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
62695
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
62450
62696
|
}, "strip", z.ZodTypeAny, {
|
|
62451
62697
|
query?: string | undefined;
|
|
62452
62698
|
id?: number[] | undefined;
|
|
62453
62699
|
project?: (string | number)[] | undefined;
|
|
62700
|
+
cursor?: string | undefined;
|
|
62454
62701
|
sortBy?: string | undefined;
|
|
62702
|
+
per_page?: number | undefined;
|
|
62703
|
+
detector?: number[] | undefined;
|
|
62455
62704
|
}, {
|
|
62456
62705
|
query?: string | undefined;
|
|
62457
62706
|
id?: number[] | undefined;
|
|
62458
62707
|
project?: (string | number)[] | undefined;
|
|
62708
|
+
cursor?: string | undefined;
|
|
62459
62709
|
sortBy?: string | undefined;
|
|
62710
|
+
per_page?: number | undefined;
|
|
62711
|
+
detector?: number[] | undefined;
|
|
62460
62712
|
}>>;
|
|
62461
62713
|
}, "strip", z.ZodTypeAny, {
|
|
62462
62714
|
path: {
|
|
@@ -62466,7 +62718,10 @@ export declare const zListOrganizationWorkflowsData: z.ZodObject<{
|
|
|
62466
62718
|
query?: string | undefined;
|
|
62467
62719
|
id?: number[] | undefined;
|
|
62468
62720
|
project?: (string | number)[] | undefined;
|
|
62721
|
+
cursor?: string | undefined;
|
|
62469
62722
|
sortBy?: string | undefined;
|
|
62723
|
+
per_page?: number | undefined;
|
|
62724
|
+
detector?: number[] | undefined;
|
|
62470
62725
|
} | undefined;
|
|
62471
62726
|
body?: undefined;
|
|
62472
62727
|
}, {
|
|
@@ -62477,7 +62732,10 @@ export declare const zListOrganizationWorkflowsData: z.ZodObject<{
|
|
|
62477
62732
|
query?: string | undefined;
|
|
62478
62733
|
id?: number[] | undefined;
|
|
62479
62734
|
project?: (string | number)[] | undefined;
|
|
62735
|
+
cursor?: string | undefined;
|
|
62480
62736
|
sortBy?: string | undefined;
|
|
62737
|
+
per_page?: number | undefined;
|
|
62738
|
+
detector?: number[] | undefined;
|
|
62481
62739
|
} | undefined;
|
|
62482
62740
|
body?: undefined;
|
|
62483
62741
|
}>;
|