cyberdesk 2.2.51 → 2.2.56

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.
@@ -2060,6 +2060,10 @@ export type RunPostRunCheckSnapshot = {
2060
2060
  * Loop Item Filename Template
2061
2061
  */
2062
2062
  loop_item_filename_template?: string | null;
2063
+ /**
2064
+ * Allow Missing Loop Attachments
2065
+ */
2066
+ allow_missing_loop_attachments?: boolean;
2063
2067
  /**
2064
2068
  * Check Prompt
2065
2069
  */
@@ -2560,6 +2564,10 @@ export type TrajectoryResponse = {
2560
2564
  * Is Approved
2561
2565
  */
2562
2566
  is_approved: boolean;
2567
+ /**
2568
+ * Has Been Approved
2569
+ */
2570
+ has_been_approved: boolean;
2563
2571
  /**
2564
2572
  * Is Generated
2565
2573
  */
@@ -2627,6 +2635,10 @@ export type TrajectoryResponseWithIncludes = {
2627
2635
  * Is Approved
2628
2636
  */
2629
2637
  is_approved: boolean;
2638
+ /**
2639
+ * Has Been Approved
2640
+ */
2641
+ has_been_approved: boolean;
2630
2642
  /**
2631
2643
  * Is Generated
2632
2644
  */
@@ -2876,6 +2888,12 @@ export type WorkflowCreate = {
2876
2888
  * Optional workflow-level model configuration metadata (main agent, cache detection, and fallbacks).
2877
2889
  */
2878
2890
  model_metadata?: WorkflowModelMetadata | null;
2891
+ /**
2892
+ * Post Run Check Failure Cleanup Prompt
2893
+ *
2894
+ * Optional workflow-level cleanup prompt that runs when any post-run check fails during a session or chain.
2895
+ */
2896
+ post_run_check_failure_cleanup_prompt?: string | null;
2879
2897
  /**
2880
2898
  * Post Run Checks
2881
2899
  *
@@ -3039,6 +3057,10 @@ export type WorkflowPostRunCheckResponse = {
3039
3057
  * Loop Item Filename Template
3040
3058
  */
3041
3059
  loop_item_filename_template?: string | null;
3060
+ /**
3061
+ * Allow Missing Loop Attachments
3062
+ */
3063
+ allow_missing_loop_attachments?: boolean;
3042
3064
  /**
3043
3065
  * Check Prompt
3044
3066
  */
@@ -3114,6 +3136,10 @@ export type WorkflowPostRunCheckUpsert = {
3114
3136
  * Loop Item Filename Template
3115
3137
  */
3116
3138
  loop_item_filename_template?: string | null;
3139
+ /**
3140
+ * Allow Missing Loop Attachments
3141
+ */
3142
+ allow_missing_loop_attachments?: boolean;
3117
3143
  /**
3118
3144
  * Check Prompt
3119
3145
  */
@@ -3276,6 +3302,12 @@ export type WorkflowResponse = {
3276
3302
  * Optional workflow-level model configuration metadata (main agent, cache detection, and fallbacks).
3277
3303
  */
3278
3304
  model_metadata?: WorkflowModelMetadata | null;
3305
+ /**
3306
+ * Post Run Check Failure Cleanup Prompt
3307
+ *
3308
+ * Optional workflow-level cleanup prompt that runs when any post-run check fails during a session or chain.
3309
+ */
3310
+ post_run_check_failure_cleanup_prompt?: string | null;
3279
3311
  /**
3280
3312
  * Id
3281
3313
  */
@@ -3371,6 +3403,12 @@ export type WorkflowResponseWithIncludes = {
3371
3403
  * Optional workflow-level model configuration metadata (main agent, cache detection, and fallbacks).
3372
3404
  */
3373
3405
  model_metadata?: WorkflowModelMetadata | null;
3406
+ /**
3407
+ * Post Run Check Failure Cleanup Prompt
3408
+ *
3409
+ * Optional workflow-level cleanup prompt that runs when any post-run check fails during a session or chain.
3410
+ */
3411
+ post_run_check_failure_cleanup_prompt?: string | null;
3374
3412
  /**
3375
3413
  * Id
3376
3414
  */
@@ -3688,6 +3726,12 @@ export type WorkflowUpdate = {
3688
3726
  * Optional workflow-level model configuration metadata (main agent, cache detection, and fallbacks).
3689
3727
  */
3690
3728
  model_metadata?: WorkflowModelMetadata | null;
3729
+ /**
3730
+ * Post Run Check Failure Cleanup Prompt
3731
+ *
3732
+ * Optional workflow-level cleanup prompt that runs when any post-run check fails during a session or chain. Set null to clear it.
3733
+ */
3734
+ post_run_check_failure_cleanup_prompt?: string | null;
3691
3735
  /**
3692
3736
  * Optional internal workflow metadata patch. Top-level null clears all workflow metadata. Omit this field to leave existing metadata unchanged. Set individual keys to null to remove only those keys.
3693
3737
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "2.2.51",
3
+ "version": "2.2.56",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",