@rudderhq/shared 0.4.6-canary.9 → 0.5.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/agent-run.d.ts +3 -0
- package/dist/agent-run.d.ts.map +1 -1
- package/dist/agent-run.js +60 -8
- package/dist/agent-run.js.map +1 -1
- package/dist/agent-run.test.js +74 -1
- package/dist/agent-run.test.js.map +1 -1
- package/dist/browser-shortcuts.d.ts +16 -0
- package/dist/browser-shortcuts.d.ts.map +1 -0
- package/dist/browser-shortcuts.js +49 -0
- package/dist/browser-shortcuts.js.map +1 -0
- package/dist/browser-shortcuts.test.d.ts +2 -0
- package/dist/browser-shortcuts.test.d.ts.map +1 -0
- package/dist/browser-shortcuts.test.js +37 -0
- package/dist/browser-shortcuts.test.js.map +1 -0
- package/dist/chat-inline-visuals.d.ts +35 -0
- package/dist/chat-inline-visuals.d.ts.map +1 -0
- package/dist/chat-inline-visuals.js +167 -0
- package/dist/chat-inline-visuals.js.map +1 -0
- package/dist/chat-inline-visuals.test.d.ts +2 -0
- package/dist/chat-inline-visuals.test.d.ts.map +1 -0
- package/dist/chat-inline-visuals.test.js +112 -0
- package/dist/chat-inline-visuals.test.js.map +1 -0
- package/dist/chat-work-manifest.d.ts +1 -1
- package/dist/chat-work-manifest.d.ts.map +1 -1
- package/dist/chat-work-manifest.js +110 -2
- package/dist/chat-work-manifest.js.map +1 -1
- package/dist/chat-work-manifest.test.js +54 -0
- package/dist/chat-work-manifest.test.js.map +1 -1
- package/dist/constants.d.ts +4 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +2 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +8 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.d.ts +4 -1
- package/dist/organization-skill-reference.d.ts.map +1 -1
- package/dist/organization-skill-reference.js +29 -7
- package/dist/organization-skill-reference.js.map +1 -1
- package/dist/organization-skill-reference.test.js +17 -2
- package/dist/organization-skill-reference.test.js.map +1 -1
- package/dist/types/chat.d.ts +158 -5
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/cost.d.ts +2 -0
- package/dist/types/cost.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +10 -0
- package/dist/types/heartbeat.d.ts.map +1 -1
- package/dist/types/index.d.ts +4 -4
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/organization.d.ts +12 -1
- package/dist/types/organization.d.ts.map +1 -1
- package/dist/types/run-intelligence.d.ts +28 -0
- package/dist/types/run-intelligence.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +6 -6
- package/dist/validators/agent.d.ts +12 -12
- package/dist/validators/approval.d.ts +2 -2
- package/dist/validators/automation.d.ts +60 -60
- package/dist/validators/budget.d.ts +4 -4
- package/dist/validators/calendar.d.ts +16 -16
- package/dist/validators/chat.d.ts +213 -72
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +170 -0
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/chat.test.js +71 -1
- package/dist/validators/chat.test.js.map +1 -1
- package/dist/validators/cost.d.ts +4 -4
- package/dist/validators/finance.d.ts +8 -8
- package/dist/validators/goal.d.ts +3 -3
- package/dist/validators/index.d.ts +2 -2
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +2 -2
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/issue.d.ts +20 -20
- package/dist/validators/organization-portability.d.ts +96 -96
- package/dist/validators/organization-skill.d.ts +48 -48
- package/dist/validators/organization.d.ts +15 -0
- package/dist/validators/organization.d.ts.map +1 -1
- package/dist/validators/organization.js +6 -0
- package/dist/validators/organization.js.map +1 -1
- package/dist/validators/plugin.d.ts +2 -2
- package/dist/validators/project.d.ts +19 -19
- package/dist/validators/resource.d.ts +12 -12
- package/dist/validators/work-product.d.ts +12 -12
- package/package.json +1 -1
|
@@ -5,6 +5,15 @@ export declare const chatMessageRoleSchema: z.ZodEnum<["user", "assistant", "sys
|
|
|
5
5
|
export declare const chatMessageKindSchema: z.ZodEnum<["message", "ask_user", "issue_proposal", "operation_proposal", "system_event"]>;
|
|
6
6
|
export declare const chatMessageStatusSchema: z.ZodEnum<["streaming", "completed", "stopped", "failed", "interrupted"]>;
|
|
7
7
|
export declare const chatContextEntityTypeSchema: z.ZodEnum<["issue", "project", "agent"]>;
|
|
8
|
+
export declare const chatGenerationStatusSchema: z.ZodEnum<["starting", "active", "running", "tool_busy", "closing", "stop_requested", "stopping", "completed", "failed", "stopped", "aborted", "interrupted_unverified", "control_lost"]>;
|
|
9
|
+
export declare const chatGenerationControlStateSchema: z.ZodEnum<["unregistered", "ready", "stopping", "terminal", "control_lost"]>;
|
|
10
|
+
export declare const chatQueueDeliveryIntentSchema: z.ZodEnum<["queue", "steer"]>;
|
|
11
|
+
export declare const chatControlDispositionSchema: z.ZodEnum<["pending", "accepted_current", "acceptance_unknown", "reconciled_current", "continuation_pending", "waiting_safe_boundary", "running_next", "delivered", "stop_requested", "stopping", "stopped", "interrupted_unverified", "cancellation_unverified", "control_lost", "failed_actionable", "cancelled"]>;
|
|
12
|
+
export declare const chatProviderControlDispositionSchema: z.ZodEnum<["not_sent", "sent", "acknowledged", "rejected", "timed_out", "connection_lost", "waiting_safe_boundary", "unverified"]>;
|
|
13
|
+
export declare const chatControlActionKindSchema: z.ZodEnum<["stop", "steer"]>;
|
|
14
|
+
export declare const chatGenerationEventKindSchema: z.ZodEnum<["generation_started", "runtime_output", "assistant_delta", "transcript", "client_checkpoint", "steer_requested", "steer_provider_sent", "steer_acknowledged", "continuation_scheduled", "stop_requested", "output_cutoff", "runtime_terminal", "late_output_dropped", "terminal_projection_requested", "terminal_projected"]>;
|
|
15
|
+
export declare const chatTerminalOutboxStatusSchema: z.ZodEnum<["pending", "claimed", "retry_wait", "projected", "failed_actionable"]>;
|
|
16
|
+
export declare const chatQueuedMessageStatusSchema: z.ZodEnum<["queued", "steer_pending", "accepted_current", "acceptance_unknown", "reconciled_current", "continuation_pending", "running_next", "delivered", "failed_actionable", "steered", "dequeue_claimed", "running", "completed", "cancelled", "failed"]>;
|
|
8
17
|
export declare const createChatContextLinkSchema: z.ZodObject<{
|
|
9
18
|
entityType: z.ZodEnum<["issue", "project", "agent"]>;
|
|
10
19
|
entityId: z.ZodString;
|
|
@@ -92,8 +101,8 @@ export declare const updateChatConversationSchema: z.ZodObject<{
|
|
|
92
101
|
primaryIssueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
93
102
|
resolvedAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
94
103
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
title?: string | undefined;
|
|
96
104
|
status?: "active" | "archived" | "resolved" | undefined;
|
|
105
|
+
title?: string | undefined;
|
|
97
106
|
summary?: string | null | undefined;
|
|
98
107
|
preferredAgentId?: string | null | undefined;
|
|
99
108
|
issueCreationMode?: "manual_approval" | "auto_create" | undefined;
|
|
@@ -107,8 +116,8 @@ export declare const updateChatConversationSchema: z.ZodObject<{
|
|
|
107
116
|
primaryIssueId?: string | null | undefined;
|
|
108
117
|
resolvedAt?: string | null | undefined;
|
|
109
118
|
}, {
|
|
110
|
-
title?: string | undefined;
|
|
111
119
|
status?: "active" | "archived" | "resolved" | undefined;
|
|
120
|
+
title?: string | undefined;
|
|
112
121
|
summary?: string | null | undefined;
|
|
113
122
|
preferredAgentId?: string | null | undefined;
|
|
114
123
|
issueCreationMode?: "manual_approval" | "auto_create" | undefined;
|
|
@@ -132,6 +141,16 @@ export declare const forkChatConversationSchema: z.ZodObject<{
|
|
|
132
141
|
title?: string | undefined;
|
|
133
142
|
sourceMessageId?: string | null | undefined;
|
|
134
143
|
}>;
|
|
144
|
+
export declare const createSideChatSchema: z.ZodObject<{
|
|
145
|
+
sourceMessageId: z.ZodString;
|
|
146
|
+
clientMutationId: z.ZodString;
|
|
147
|
+
}, "strip", z.ZodTypeAny, {
|
|
148
|
+
sourceMessageId: string;
|
|
149
|
+
clientMutationId: string;
|
|
150
|
+
}, {
|
|
151
|
+
sourceMessageId: string;
|
|
152
|
+
clientMutationId: string;
|
|
153
|
+
}>;
|
|
135
154
|
export declare const addChatMessageSchema: z.ZodObject<{
|
|
136
155
|
body: z.ZodString;
|
|
137
156
|
editUserMessageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -293,12 +312,130 @@ export declare const cancelChatQueuedMessageSchema: z.ZodObject<{
|
|
|
293
312
|
}, {
|
|
294
313
|
version?: number | undefined;
|
|
295
314
|
}>;
|
|
296
|
-
export declare const steerChatQueuedMessageSchema: z.ZodObject<{
|
|
315
|
+
export declare const steerChatQueuedMessageSchema: z.ZodEffects<z.ZodObject<{
|
|
297
316
|
expectedActiveGenerationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
317
|
+
controlActionId: z.ZodOptional<z.ZodString>;
|
|
318
|
+
expectedAttemptEpoch: z.ZodOptional<z.ZodNumber>;
|
|
319
|
+
expectedControlVersion: z.ZodOptional<z.ZodNumber>;
|
|
320
|
+
lastCommittedRenderSeq: z.ZodOptional<z.ZodNumber>;
|
|
321
|
+
renderedBodyHash: z.ZodOptional<z.ZodString>;
|
|
298
322
|
}, "strip", z.ZodTypeAny, {
|
|
299
323
|
expectedActiveGenerationId?: string | null | undefined;
|
|
324
|
+
controlActionId?: string | undefined;
|
|
325
|
+
expectedAttemptEpoch?: number | undefined;
|
|
326
|
+
expectedControlVersion?: number | undefined;
|
|
327
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
328
|
+
renderedBodyHash?: string | undefined;
|
|
300
329
|
}, {
|
|
301
330
|
expectedActiveGenerationId?: string | null | undefined;
|
|
331
|
+
controlActionId?: string | undefined;
|
|
332
|
+
expectedAttemptEpoch?: number | undefined;
|
|
333
|
+
expectedControlVersion?: number | undefined;
|
|
334
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
335
|
+
renderedBodyHash?: string | undefined;
|
|
336
|
+
}>, {
|
|
337
|
+
expectedActiveGenerationId?: string | null | undefined;
|
|
338
|
+
controlActionId?: string | undefined;
|
|
339
|
+
expectedAttemptEpoch?: number | undefined;
|
|
340
|
+
expectedControlVersion?: number | undefined;
|
|
341
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
342
|
+
renderedBodyHash?: string | undefined;
|
|
343
|
+
}, {
|
|
344
|
+
expectedActiveGenerationId?: string | null | undefined;
|
|
345
|
+
controlActionId?: string | undefined;
|
|
346
|
+
expectedAttemptEpoch?: number | undefined;
|
|
347
|
+
expectedControlVersion?: number | undefined;
|
|
348
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
349
|
+
renderedBodyHash?: string | undefined;
|
|
350
|
+
}>;
|
|
351
|
+
export declare const stopChatGenerationSchema: z.ZodEffects<z.ZodObject<{
|
|
352
|
+
controlActionId: z.ZodOptional<z.ZodString>;
|
|
353
|
+
expectedGenerationId: z.ZodOptional<z.ZodString>;
|
|
354
|
+
expectedAttemptEpoch: z.ZodOptional<z.ZodNumber>;
|
|
355
|
+
expectedControlVersion: z.ZodOptional<z.ZodNumber>;
|
|
356
|
+
lastCommittedRenderSeq: z.ZodOptional<z.ZodNumber>;
|
|
357
|
+
renderedBodyHash: z.ZodOptional<z.ZodString>;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
expectedGenerationId?: string | undefined;
|
|
360
|
+
controlActionId?: string | undefined;
|
|
361
|
+
expectedAttemptEpoch?: number | undefined;
|
|
362
|
+
expectedControlVersion?: number | undefined;
|
|
363
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
364
|
+
renderedBodyHash?: string | undefined;
|
|
365
|
+
}, {
|
|
366
|
+
expectedGenerationId?: string | undefined;
|
|
367
|
+
controlActionId?: string | undefined;
|
|
368
|
+
expectedAttemptEpoch?: number | undefined;
|
|
369
|
+
expectedControlVersion?: number | undefined;
|
|
370
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
371
|
+
renderedBodyHash?: string | undefined;
|
|
372
|
+
}>, {
|
|
373
|
+
expectedGenerationId?: string | undefined;
|
|
374
|
+
controlActionId?: string | undefined;
|
|
375
|
+
expectedAttemptEpoch?: number | undefined;
|
|
376
|
+
expectedControlVersion?: number | undefined;
|
|
377
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
378
|
+
renderedBodyHash?: string | undefined;
|
|
379
|
+
}, {
|
|
380
|
+
expectedGenerationId?: string | undefined;
|
|
381
|
+
controlActionId?: string | undefined;
|
|
382
|
+
expectedAttemptEpoch?: number | undefined;
|
|
383
|
+
expectedControlVersion?: number | undefined;
|
|
384
|
+
lastCommittedRenderSeq?: number | undefined;
|
|
385
|
+
renderedBodyHash?: string | undefined;
|
|
386
|
+
}>;
|
|
387
|
+
export declare const chatClientCheckpointSchema: z.ZodObject<{
|
|
388
|
+
generationId: z.ZodString;
|
|
389
|
+
attemptEpoch: z.ZodNumber;
|
|
390
|
+
generationSeq: z.ZodNumber;
|
|
391
|
+
renderedBodyHash: z.ZodString;
|
|
392
|
+
}, "strip", z.ZodTypeAny, {
|
|
393
|
+
renderedBodyHash: string;
|
|
394
|
+
generationId: string;
|
|
395
|
+
attemptEpoch: number;
|
|
396
|
+
generationSeq: number;
|
|
397
|
+
}, {
|
|
398
|
+
renderedBodyHash: string;
|
|
399
|
+
generationId: string;
|
|
400
|
+
attemptEpoch: number;
|
|
401
|
+
generationSeq: number;
|
|
402
|
+
}>;
|
|
403
|
+
export declare const appendChatGenerationEventSchema: z.ZodObject<{
|
|
404
|
+
generationId: z.ZodString;
|
|
405
|
+
generationSeq: z.ZodNumber;
|
|
406
|
+
attemptEpoch: z.ZodNumber;
|
|
407
|
+
eventKind: z.ZodEnum<["generation_started", "runtime_output", "assistant_delta", "transcript", "client_checkpoint", "steer_requested", "steer_provider_sent", "steer_acknowledged", "continuation_scheduled", "stop_requested", "output_cutoff", "runtime_terminal", "late_output_dropped", "terminal_projection_requested", "terminal_projected"]>;
|
|
408
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
409
|
+
bodyOffset: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
410
|
+
bodyLength: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
411
|
+
assistantMessageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
412
|
+
runId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
413
|
+
controlActionId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
414
|
+
queueItemId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
415
|
+
}, "strip", z.ZodTypeAny, {
|
|
416
|
+
payload: Record<string, unknown>;
|
|
417
|
+
generationId: string;
|
|
418
|
+
attemptEpoch: number;
|
|
419
|
+
generationSeq: number;
|
|
420
|
+
eventKind: "stop_requested" | "generation_started" | "runtime_output" | "assistant_delta" | "transcript" | "client_checkpoint" | "steer_requested" | "steer_provider_sent" | "steer_acknowledged" | "continuation_scheduled" | "output_cutoff" | "runtime_terminal" | "late_output_dropped" | "terminal_projection_requested" | "terminal_projected";
|
|
421
|
+
assistantMessageId?: string | null | undefined;
|
|
422
|
+
runId?: string | null | undefined;
|
|
423
|
+
controlActionId?: string | null | undefined;
|
|
424
|
+
bodyOffset?: number | null | undefined;
|
|
425
|
+
bodyLength?: number | null | undefined;
|
|
426
|
+
queueItemId?: string | null | undefined;
|
|
427
|
+
}, {
|
|
428
|
+
generationId: string;
|
|
429
|
+
attemptEpoch: number;
|
|
430
|
+
generationSeq: number;
|
|
431
|
+
eventKind: "stop_requested" | "generation_started" | "runtime_output" | "assistant_delta" | "transcript" | "client_checkpoint" | "steer_requested" | "steer_provider_sent" | "steer_acknowledged" | "continuation_scheduled" | "output_cutoff" | "runtime_terminal" | "late_output_dropped" | "terminal_projection_requested" | "terminal_projected";
|
|
432
|
+
assistantMessageId?: string | null | undefined;
|
|
433
|
+
runId?: string | null | undefined;
|
|
434
|
+
payload?: Record<string, unknown> | undefined;
|
|
435
|
+
controlActionId?: string | null | undefined;
|
|
436
|
+
bodyOffset?: number | null | undefined;
|
|
437
|
+
bodyLength?: number | null | undefined;
|
|
438
|
+
queueItemId?: string | null | undefined;
|
|
302
439
|
}>;
|
|
303
440
|
export declare const chatAskUserOptionSchema: z.ZodObject<{
|
|
304
441
|
id: z.ZodString;
|
|
@@ -673,9 +810,9 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
673
810
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
674
811
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
675
812
|
}, "strip", z.ZodTypeAny, {
|
|
676
|
-
enabled: boolean;
|
|
677
813
|
cronExpression: string;
|
|
678
814
|
timezone: string;
|
|
815
|
+
enabled: boolean;
|
|
679
816
|
label?: string | null | undefined;
|
|
680
817
|
}, {
|
|
681
818
|
cronExpression: string;
|
|
@@ -684,12 +821,12 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
684
821
|
enabled?: boolean | undefined;
|
|
685
822
|
}>;
|
|
686
823
|
}, "strip", z.ZodTypeAny, {
|
|
687
|
-
title: string;
|
|
688
824
|
status: "active" | "paused";
|
|
825
|
+
title: string;
|
|
689
826
|
schedule: {
|
|
690
|
-
enabled: boolean;
|
|
691
827
|
cronExpression: string;
|
|
692
828
|
timezone: string;
|
|
829
|
+
enabled: boolean;
|
|
693
830
|
label?: string | null | undefined;
|
|
694
831
|
};
|
|
695
832
|
priority: "critical" | "high" | "medium" | "low";
|
|
@@ -698,8 +835,8 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
698
835
|
outputMode: "track_issue" | "chat_output";
|
|
699
836
|
projectId?: string | null | undefined;
|
|
700
837
|
description?: string | null | undefined;
|
|
701
|
-
goalId?: string | null | undefined;
|
|
702
838
|
instructions?: string | null | undefined;
|
|
839
|
+
goalId?: string | null | undefined;
|
|
703
840
|
parentIssueId?: string | null | undefined;
|
|
704
841
|
}, {
|
|
705
842
|
title: string;
|
|
@@ -709,24 +846,24 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
709
846
|
label?: string | null | undefined;
|
|
710
847
|
enabled?: boolean | undefined;
|
|
711
848
|
};
|
|
712
|
-
projectId?: string | null | undefined;
|
|
713
849
|
status?: "active" | "paused" | undefined;
|
|
850
|
+
projectId?: string | null | undefined;
|
|
714
851
|
description?: string | null | undefined;
|
|
715
|
-
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
716
|
-
goalId?: string | null | undefined;
|
|
717
852
|
instructions?: string | null | undefined;
|
|
853
|
+
goalId?: string | null | undefined;
|
|
718
854
|
parentIssueId?: string | null | undefined;
|
|
855
|
+
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
719
856
|
concurrencyPolicy?: "coalesce_if_active" | "always_enqueue" | "skip_if_active" | undefined;
|
|
720
857
|
catchUpPolicy?: "skip_missed" | "enqueue_missed_with_cap" | undefined;
|
|
721
858
|
outputMode?: "track_issue" | "chat_output" | undefined;
|
|
722
859
|
}>, {
|
|
723
860
|
instructions: string | null | undefined;
|
|
724
|
-
title: string;
|
|
725
861
|
status: "active" | "paused";
|
|
862
|
+
title: string;
|
|
726
863
|
schedule: {
|
|
727
|
-
enabled: boolean;
|
|
728
864
|
cronExpression: string;
|
|
729
865
|
timezone: string;
|
|
866
|
+
enabled: boolean;
|
|
730
867
|
label?: string | null | undefined;
|
|
731
868
|
};
|
|
732
869
|
priority: "critical" | "high" | "medium" | "low";
|
|
@@ -744,25 +881,25 @@ export declare const chatAutomationCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
744
881
|
label?: string | null | undefined;
|
|
745
882
|
enabled?: boolean | undefined;
|
|
746
883
|
};
|
|
747
|
-
projectId?: string | null | undefined;
|
|
748
884
|
status?: "active" | "paused" | undefined;
|
|
885
|
+
projectId?: string | null | undefined;
|
|
749
886
|
description?: string | null | undefined;
|
|
750
|
-
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
751
|
-
goalId?: string | null | undefined;
|
|
752
887
|
instructions?: string | null | undefined;
|
|
888
|
+
goalId?: string | null | undefined;
|
|
753
889
|
parentIssueId?: string | null | undefined;
|
|
890
|
+
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
754
891
|
concurrencyPolicy?: "coalesce_if_active" | "always_enqueue" | "skip_if_active" | undefined;
|
|
755
892
|
catchUpPolicy?: "skip_missed" | "enqueue_missed_with_cap" | undefined;
|
|
756
893
|
outputMode?: "track_issue" | "chat_output" | undefined;
|
|
757
894
|
}>;
|
|
758
895
|
export declare function chatAutomationCreateFromStructuredPayload(payload: unknown): {
|
|
759
896
|
instructions: string | null | undefined;
|
|
760
|
-
title: string;
|
|
761
897
|
status: "active" | "paused";
|
|
898
|
+
title: string;
|
|
762
899
|
schedule: {
|
|
763
|
-
enabled: boolean;
|
|
764
900
|
cronExpression: string;
|
|
765
901
|
timezone: string;
|
|
902
|
+
enabled: boolean;
|
|
766
903
|
label?: string | null | undefined;
|
|
767
904
|
};
|
|
768
905
|
priority: "critical" | "high" | "medium" | "low";
|
|
@@ -798,61 +935,61 @@ export declare const chatIssueProposalSchema: z.ZodEffects<z.ZodObject<{
|
|
|
798
935
|
reviewerUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
799
936
|
labelIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
800
937
|
}, "strip", z.ZodTypeAny, {
|
|
801
|
-
title: string;
|
|
802
938
|
status: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled";
|
|
939
|
+
title: string;
|
|
803
940
|
description: string;
|
|
804
941
|
priority: "critical" | "high" | "medium" | "low";
|
|
805
942
|
projectId?: string | null | undefined;
|
|
806
|
-
assigneeAgentId?: string | null | undefined;
|
|
807
|
-
assigneeUserId?: string | null | undefined;
|
|
808
|
-
reviewerUserId?: string | null | undefined;
|
|
809
943
|
goalId?: string | null | undefined;
|
|
810
944
|
parentId?: string | null | undefined;
|
|
945
|
+
assigneeAgentId?: string | null | undefined;
|
|
946
|
+
assigneeUserId?: string | null | undefined;
|
|
947
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
811
948
|
reviewerAgentId?: string | null | undefined;
|
|
949
|
+
reviewerUserId?: string | null | undefined;
|
|
812
950
|
labelIds?: string[] | undefined;
|
|
813
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
814
951
|
}, {
|
|
815
952
|
title: string;
|
|
816
953
|
description: string;
|
|
817
|
-
projectId?: string | null | undefined;
|
|
818
954
|
status?: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled" | undefined;
|
|
955
|
+
projectId?: string | null | undefined;
|
|
956
|
+
goalId?: string | null | undefined;
|
|
819
957
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
958
|
+
parentId?: string | null | undefined;
|
|
820
959
|
assigneeAgentId?: string | null | undefined;
|
|
821
960
|
assigneeUserId?: string | null | undefined;
|
|
822
|
-
|
|
823
|
-
goalId?: string | null | undefined;
|
|
824
|
-
parentId?: string | null | undefined;
|
|
961
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
825
962
|
reviewerAgentId?: string | null | undefined;
|
|
963
|
+
reviewerUserId?: string | null | undefined;
|
|
826
964
|
labelIds?: string[] | undefined;
|
|
827
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
828
965
|
}>, {
|
|
829
|
-
title: string;
|
|
830
966
|
status: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled";
|
|
967
|
+
title: string;
|
|
831
968
|
description: string;
|
|
832
969
|
priority: "critical" | "high" | "medium" | "low";
|
|
833
970
|
projectId?: string | null | undefined;
|
|
834
|
-
assigneeAgentId?: string | null | undefined;
|
|
835
|
-
assigneeUserId?: string | null | undefined;
|
|
836
|
-
reviewerUserId?: string | null | undefined;
|
|
837
971
|
goalId?: string | null | undefined;
|
|
838
972
|
parentId?: string | null | undefined;
|
|
973
|
+
assigneeAgentId?: string | null | undefined;
|
|
974
|
+
assigneeUserId?: string | null | undefined;
|
|
975
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
839
976
|
reviewerAgentId?: string | null | undefined;
|
|
977
|
+
reviewerUserId?: string | null | undefined;
|
|
840
978
|
labelIds?: string[] | undefined;
|
|
841
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
842
979
|
}, {
|
|
843
980
|
title: string;
|
|
844
981
|
description: string;
|
|
845
|
-
projectId?: string | null | undefined;
|
|
846
982
|
status?: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled" | undefined;
|
|
983
|
+
projectId?: string | null | undefined;
|
|
984
|
+
goalId?: string | null | undefined;
|
|
847
985
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
986
|
+
parentId?: string | null | undefined;
|
|
848
987
|
assigneeAgentId?: string | null | undefined;
|
|
849
988
|
assigneeUserId?: string | null | undefined;
|
|
850
|
-
|
|
851
|
-
goalId?: string | null | undefined;
|
|
852
|
-
parentId?: string | null | undefined;
|
|
989
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
853
990
|
reviewerAgentId?: string | null | undefined;
|
|
991
|
+
reviewerUserId?: string | null | undefined;
|
|
854
992
|
labelIds?: string[] | undefined;
|
|
855
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
856
993
|
}>;
|
|
857
994
|
export declare const convertChatToIssueSchema: z.ZodObject<{
|
|
858
995
|
messageId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -871,111 +1008,111 @@ export declare const convertChatToIssueSchema: z.ZodObject<{
|
|
|
871
1008
|
reviewerUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
872
1009
|
labelIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
873
1010
|
}, "strip", z.ZodTypeAny, {
|
|
874
|
-
title: string;
|
|
875
1011
|
status: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled";
|
|
1012
|
+
title: string;
|
|
876
1013
|
description: string;
|
|
877
1014
|
priority: "critical" | "high" | "medium" | "low";
|
|
878
1015
|
projectId?: string | null | undefined;
|
|
879
|
-
assigneeAgentId?: string | null | undefined;
|
|
880
|
-
assigneeUserId?: string | null | undefined;
|
|
881
|
-
reviewerUserId?: string | null | undefined;
|
|
882
1016
|
goalId?: string | null | undefined;
|
|
883
1017
|
parentId?: string | null | undefined;
|
|
1018
|
+
assigneeAgentId?: string | null | undefined;
|
|
1019
|
+
assigneeUserId?: string | null | undefined;
|
|
1020
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
884
1021
|
reviewerAgentId?: string | null | undefined;
|
|
1022
|
+
reviewerUserId?: string | null | undefined;
|
|
885
1023
|
labelIds?: string[] | undefined;
|
|
886
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
887
1024
|
}, {
|
|
888
1025
|
title: string;
|
|
889
1026
|
description: string;
|
|
890
|
-
projectId?: string | null | undefined;
|
|
891
1027
|
status?: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled" | undefined;
|
|
1028
|
+
projectId?: string | null | undefined;
|
|
1029
|
+
goalId?: string | null | undefined;
|
|
892
1030
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
1031
|
+
parentId?: string | null | undefined;
|
|
893
1032
|
assigneeAgentId?: string | null | undefined;
|
|
894
1033
|
assigneeUserId?: string | null | undefined;
|
|
895
|
-
|
|
896
|
-
goalId?: string | null | undefined;
|
|
897
|
-
parentId?: string | null | undefined;
|
|
1034
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
898
1035
|
reviewerAgentId?: string | null | undefined;
|
|
1036
|
+
reviewerUserId?: string | null | undefined;
|
|
899
1037
|
labelIds?: string[] | undefined;
|
|
900
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
901
1038
|
}>, {
|
|
902
|
-
title: string;
|
|
903
1039
|
status: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled";
|
|
1040
|
+
title: string;
|
|
904
1041
|
description: string;
|
|
905
1042
|
priority: "critical" | "high" | "medium" | "low";
|
|
906
1043
|
projectId?: string | null | undefined;
|
|
907
|
-
assigneeAgentId?: string | null | undefined;
|
|
908
|
-
assigneeUserId?: string | null | undefined;
|
|
909
|
-
reviewerUserId?: string | null | undefined;
|
|
910
1044
|
goalId?: string | null | undefined;
|
|
911
1045
|
parentId?: string | null | undefined;
|
|
1046
|
+
assigneeAgentId?: string | null | undefined;
|
|
1047
|
+
assigneeUserId?: string | null | undefined;
|
|
1048
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
912
1049
|
reviewerAgentId?: string | null | undefined;
|
|
1050
|
+
reviewerUserId?: string | null | undefined;
|
|
913
1051
|
labelIds?: string[] | undefined;
|
|
914
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
915
1052
|
}, {
|
|
916
1053
|
title: string;
|
|
917
1054
|
description: string;
|
|
918
|
-
projectId?: string | null | undefined;
|
|
919
1055
|
status?: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled" | undefined;
|
|
1056
|
+
projectId?: string | null | undefined;
|
|
1057
|
+
goalId?: string | null | undefined;
|
|
920
1058
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
1059
|
+
parentId?: string | null | undefined;
|
|
921
1060
|
assigneeAgentId?: string | null | undefined;
|
|
922
1061
|
assigneeUserId?: string | null | undefined;
|
|
923
|
-
|
|
924
|
-
goalId?: string | null | undefined;
|
|
925
|
-
parentId?: string | null | undefined;
|
|
1062
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
926
1063
|
reviewerAgentId?: string | null | undefined;
|
|
1064
|
+
reviewerUserId?: string | null | undefined;
|
|
927
1065
|
labelIds?: string[] | undefined;
|
|
928
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
929
1066
|
}>>;
|
|
930
1067
|
}, "strip", z.ZodTypeAny, {
|
|
931
1068
|
messageId?: string | null | undefined;
|
|
932
1069
|
proposal?: {
|
|
933
|
-
title: string;
|
|
934
1070
|
status: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled";
|
|
1071
|
+
title: string;
|
|
935
1072
|
description: string;
|
|
936
1073
|
priority: "critical" | "high" | "medium" | "low";
|
|
937
1074
|
projectId?: string | null | undefined;
|
|
938
|
-
assigneeAgentId?: string | null | undefined;
|
|
939
|
-
assigneeUserId?: string | null | undefined;
|
|
940
|
-
reviewerUserId?: string | null | undefined;
|
|
941
1075
|
goalId?: string | null | undefined;
|
|
942
1076
|
parentId?: string | null | undefined;
|
|
1077
|
+
assigneeAgentId?: string | null | undefined;
|
|
1078
|
+
assigneeUserId?: string | null | undefined;
|
|
1079
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
943
1080
|
reviewerAgentId?: string | null | undefined;
|
|
1081
|
+
reviewerUserId?: string | null | undefined;
|
|
944
1082
|
labelIds?: string[] | undefined;
|
|
945
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
946
1083
|
} | undefined;
|
|
947
1084
|
}, {
|
|
948
1085
|
messageId?: string | null | undefined;
|
|
949
1086
|
proposal?: {
|
|
950
1087
|
title: string;
|
|
951
1088
|
description: string;
|
|
952
|
-
projectId?: string | null | undefined;
|
|
953
1089
|
status?: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled" | undefined;
|
|
1090
|
+
projectId?: string | null | undefined;
|
|
1091
|
+
goalId?: string | null | undefined;
|
|
954
1092
|
priority?: "critical" | "high" | "medium" | "low" | undefined;
|
|
1093
|
+
parentId?: string | null | undefined;
|
|
955
1094
|
assigneeAgentId?: string | null | undefined;
|
|
956
1095
|
assigneeUserId?: string | null | undefined;
|
|
957
|
-
|
|
958
|
-
goalId?: string | null | undefined;
|
|
959
|
-
parentId?: string | null | undefined;
|
|
1096
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
960
1097
|
reviewerAgentId?: string | null | undefined;
|
|
1098
|
+
reviewerUserId?: string | null | undefined;
|
|
961
1099
|
labelIds?: string[] | undefined;
|
|
962
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
963
1100
|
} | undefined;
|
|
964
1101
|
}>;
|
|
965
1102
|
export declare function chatIssueProposalFromStructuredPayload(payload: unknown): {
|
|
966
|
-
title: string;
|
|
967
1103
|
status: "done" | "backlog" | "todo" | "in_progress" | "in_review" | "blocked" | "cancelled";
|
|
1104
|
+
title: string;
|
|
968
1105
|
description: string;
|
|
969
1106
|
priority: "critical" | "high" | "medium" | "low";
|
|
970
1107
|
projectId?: string | null | undefined;
|
|
971
|
-
assigneeAgentId?: string | null | undefined;
|
|
972
|
-
assigneeUserId?: string | null | undefined;
|
|
973
|
-
reviewerUserId?: string | null | undefined;
|
|
974
1108
|
goalId?: string | null | undefined;
|
|
975
1109
|
parentId?: string | null | undefined;
|
|
1110
|
+
assigneeAgentId?: string | null | undefined;
|
|
1111
|
+
assigneeUserId?: string | null | undefined;
|
|
1112
|
+
assigneeUnassignedReason?: string | null | undefined;
|
|
976
1113
|
reviewerAgentId?: string | null | undefined;
|
|
1114
|
+
reviewerUserId?: string | null | undefined;
|
|
977
1115
|
labelIds?: string[] | undefined;
|
|
978
|
-
assigneeUnassignedReason?: string | null | undefined;
|
|
979
1116
|
} | null;
|
|
980
1117
|
export declare const chatOperationProposalSchema: z.ZodObject<{
|
|
981
1118
|
targetType: z.ZodEnum<["organization", "agent"]>;
|
|
@@ -1096,6 +1233,7 @@ export type ChatContextEntityType = z.infer<typeof chatContextEntityTypeSchema>;
|
|
|
1096
1233
|
export type CreateChatContextLink = z.infer<typeof createChatContextLinkSchema>;
|
|
1097
1234
|
export type CreateChatConversation = z.infer<typeof createChatConversationSchema>;
|
|
1098
1235
|
export type ForkChatConversation = z.infer<typeof forkChatConversationSchema>;
|
|
1236
|
+
export type CreateSideChat = z.infer<typeof createSideChatSchema>;
|
|
1099
1237
|
export type SetChatProjectContext = z.infer<typeof setChatProjectContextSchema>;
|
|
1100
1238
|
export type UpdateChatConversation = z.infer<typeof updateChatConversationSchema>;
|
|
1101
1239
|
export type AddChatMessage = z.infer<typeof addChatMessageSchema>;
|
|
@@ -1111,6 +1249,9 @@ export type CreateChatQueuedMessage = z.infer<typeof createChatQueuedMessageSche
|
|
|
1111
1249
|
export type UpdateChatQueuedMessage = z.infer<typeof updateChatQueuedMessageSchema>;
|
|
1112
1250
|
export type CancelChatQueuedMessage = z.infer<typeof cancelChatQueuedMessageSchema>;
|
|
1113
1251
|
export type SteerChatQueuedMessage = z.infer<typeof steerChatQueuedMessageSchema>;
|
|
1252
|
+
export type StopChatGeneration = z.infer<typeof stopChatGenerationSchema>;
|
|
1253
|
+
export type ChatClientCheckpoint = z.infer<typeof chatClientCheckpointSchema>;
|
|
1254
|
+
export type AppendChatGenerationEvent = z.infer<typeof appendChatGenerationEventSchema>;
|
|
1114
1255
|
export type ChatAskUserOption = z.infer<typeof chatAskUserOptionSchema>;
|
|
1115
1256
|
export type ChatAskUserQuestion = z.infer<typeof chatAskUserQuestionSchema>;
|
|
1116
1257
|
export type ChatAskUserRequest = z.infer<typeof chatAskUserRequestSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/validators/chat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAexB,eAAO,MAAM,4BAA4B,+CAAqC,CAAC;AAC/E,eAAO,MAAM,2BAA2B,+CAAoC,CAAC;AAC7E,eAAO,MAAM,qBAAqB,4CAA6B,CAAC;AAChE,eAAO,MAAM,qBAAqB,4FAA6B,CAAC;AAChE,eAAO,MAAM,uBAAuB,2EAAgC,CAAC;AACrE,eAAO,MAAM,2BAA2B,0CAAoC,CAAC;
|
|
1
|
+
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/validators/chat.ts"],"names":[],"mappings":"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"}
|