cyberdesk 2.2.39 → 2.2.41
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/client/types.gen.d.ts +17 -0
- package/package.json +1 -1
|
@@ -2460,6 +2460,9 @@ export type RunUpdate = {
|
|
|
2460
2460
|
* Note: `is_generated` is intentionally omitted here. New trajectories always
|
|
2461
2461
|
* start as non-generated and must be promoted via
|
|
2462
2462
|
* POST /runs/{run_id}/generate-trajectory.
|
|
2463
|
+
*
|
|
2464
|
+
* Note: `is_main` is intentionally omitted here. Main-trajectory designation is
|
|
2465
|
+
* managed after creation via trajectory updates.
|
|
2463
2466
|
*/
|
|
2464
2467
|
export type TrajectoryCreate = {
|
|
2465
2468
|
/**
|
|
@@ -2563,6 +2566,10 @@ export type TrajectoryResponse = {
|
|
|
2563
2566
|
* Is Generated
|
|
2564
2567
|
*/
|
|
2565
2568
|
is_generated: boolean;
|
|
2569
|
+
/**
|
|
2570
|
+
* Is Main
|
|
2571
|
+
*/
|
|
2572
|
+
is_main: boolean;
|
|
2566
2573
|
/**
|
|
2567
2574
|
* Id
|
|
2568
2575
|
*/
|
|
@@ -2626,6 +2633,10 @@ export type TrajectoryResponseWithIncludes = {
|
|
|
2626
2633
|
* Is Generated
|
|
2627
2634
|
*/
|
|
2628
2635
|
is_generated: boolean;
|
|
2636
|
+
/**
|
|
2637
|
+
* Is Main
|
|
2638
|
+
*/
|
|
2639
|
+
is_main: boolean;
|
|
2629
2640
|
/**
|
|
2630
2641
|
* Trajectory Data
|
|
2631
2642
|
*/
|
|
@@ -2689,6 +2700,12 @@ export type TrajectoryUpdate = {
|
|
|
2689
2700
|
* Whether this trajectory is approved for use
|
|
2690
2701
|
*/
|
|
2691
2702
|
is_approved?: boolean | null;
|
|
2703
|
+
/**
|
|
2704
|
+
* Is Main
|
|
2705
|
+
*
|
|
2706
|
+
* Whether this trajectory is the optional main tie-break trajectory for its workflow
|
|
2707
|
+
*/
|
|
2708
|
+
is_main?: boolean | null;
|
|
2692
2709
|
};
|
|
2693
2710
|
/**
|
|
2694
2711
|
* UsageAggregateResponse
|