Skip to content

Commit 90fb920

Browse files
chore(cli): regenerate v2 API for the staging sweep
Additive only, both picked up automatically by the derived command surface: - cancelWorkflowRun `reason` gains already_cancelled / already_completed / already_failed (#6702) - getFile gains `scope` (active | archived), so `sim files describe` grows a --scope flag defaulting to active Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JNFjchn6dcM7xevh34PKHE
1 parent f5b8994 commit 90fb920

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

packages/sim-cli/src/generated/v2-api.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,9 @@ type CancelWorkflowRunResponseRef0 = {
468468
pausedCancelled: boolean
469469
reason?:
470470
| 'recorded'
471+
| 'already_cancelled'
472+
| 'already_completed'
473+
| 'already_failed'
471474
| 'redis_unavailable'
472475
| 'redis_write_failed'
473476
| 'paused_event_publish_failed'
@@ -2451,6 +2454,7 @@ export type GetFileParams = {
24512454

24522455
export type GetFileQuery = {
24532456
workspaceId: string
2457+
scope?: 'active' | 'archived'
24542458
}
24552459

24562460
type GetFileResponseRef0 = {
@@ -6367,6 +6371,7 @@ export const V2_OPERATIONS = {
63676371
summary: 'Get File Metadata',
63686372
query: {
63696373
workspaceId: { kind: 'string', required: true },
6374+
scope: { kind: 'enum', values: ['active', 'archived'] as const, default: 'active' },
63706375
},
63716376
},
63726377
getFileShare: {

0 commit comments

Comments
 (0)