@agent-relay/api-types 0.1.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.
Files changed (41) hide show
  1. package/dist/index.d.ts +21 -0
  2. package/dist/index.d.ts.map +1 -0
  3. package/dist/index.js +22 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/schemas/agent.d.ts +259 -0
  6. package/dist/schemas/agent.d.ts.map +1 -0
  7. package/dist/schemas/agent.js +102 -0
  8. package/dist/schemas/agent.js.map +1 -0
  9. package/dist/schemas/api.d.ts +290 -0
  10. package/dist/schemas/api.d.ts.map +1 -0
  11. package/dist/schemas/api.js +162 -0
  12. package/dist/schemas/api.js.map +1 -0
  13. package/dist/schemas/decision.d.ts +230 -0
  14. package/dist/schemas/decision.d.ts.map +1 -0
  15. package/dist/schemas/decision.js +104 -0
  16. package/dist/schemas/decision.js.map +1 -0
  17. package/dist/schemas/fleet.d.ts +615 -0
  18. package/dist/schemas/fleet.d.ts.map +1 -0
  19. package/dist/schemas/fleet.js +71 -0
  20. package/dist/schemas/fleet.js.map +1 -0
  21. package/dist/schemas/history.d.ts +180 -0
  22. package/dist/schemas/history.d.ts.map +1 -0
  23. package/dist/schemas/history.js +72 -0
  24. package/dist/schemas/history.js.map +1 -0
  25. package/dist/schemas/index.d.ts +14 -0
  26. package/dist/schemas/index.d.ts.map +1 -0
  27. package/dist/schemas/index.js +22 -0
  28. package/dist/schemas/index.js.map +1 -0
  29. package/dist/schemas/message.d.ts +456 -0
  30. package/dist/schemas/message.d.ts.map +1 -0
  31. package/dist/schemas/message.js +88 -0
  32. package/dist/schemas/message.js.map +1 -0
  33. package/dist/schemas/session.d.ts +60 -0
  34. package/dist/schemas/session.d.ts.map +1 -0
  35. package/dist/schemas/session.js +36 -0
  36. package/dist/schemas/session.js.map +1 -0
  37. package/dist/schemas/task.d.ts +111 -0
  38. package/dist/schemas/task.d.ts.map +1 -0
  39. package/dist/schemas/task.js +64 -0
  40. package/dist/schemas/task.js.map +1 -0
  41. package/package.json +61 -0
@@ -0,0 +1,230 @@
1
+ /**
2
+ * Decision Schemas
3
+ *
4
+ * Zod schemas for decision queue types used across the dashboard and API.
5
+ */
6
+ import { z } from 'zod';
7
+ /**
8
+ * Decision urgency/priority enum
9
+ */
10
+ export declare const DecisionUrgencySchema: z.ZodEnum<["low", "medium", "high", "critical"]>;
11
+ export type DecisionUrgency = z.infer<typeof DecisionUrgencySchema>;
12
+ /**
13
+ * Decision category enum
14
+ */
15
+ export declare const DecisionCategorySchema: z.ZodEnum<["approval", "choice", "input", "confirmation"]>;
16
+ export type DecisionCategory = z.infer<typeof DecisionCategorySchema>;
17
+ /**
18
+ * Decision option schema
19
+ */
20
+ export declare const DecisionOptionSchema: z.ZodObject<{
21
+ id: z.ZodString;
22
+ label: z.ZodString;
23
+ description: z.ZodOptional<z.ZodString>;
24
+ }, "strip", z.ZodTypeAny, {
25
+ id: string;
26
+ label: string;
27
+ description?: string | undefined;
28
+ }, {
29
+ id: string;
30
+ label: string;
31
+ description?: string | undefined;
32
+ }>;
33
+ export type DecisionOption = z.infer<typeof DecisionOptionSchema>;
34
+ /**
35
+ * API Decision schema (from API response)
36
+ */
37
+ export declare const ApiDecisionSchema: z.ZodObject<{
38
+ id: z.ZodString;
39
+ agentName: z.ZodString;
40
+ title: z.ZodString;
41
+ description: z.ZodString;
42
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
43
+ id: z.ZodString;
44
+ label: z.ZodString;
45
+ description: z.ZodOptional<z.ZodString>;
46
+ }, "strip", z.ZodTypeAny, {
47
+ id: string;
48
+ label: string;
49
+ description?: string | undefined;
50
+ }, {
51
+ id: string;
52
+ label: string;
53
+ description?: string | undefined;
54
+ }>, "many">>;
55
+ urgency: z.ZodEnum<["low", "medium", "high", "critical"]>;
56
+ category: z.ZodEnum<["approval", "choice", "input", "confirmation"]>;
57
+ createdAt: z.ZodString;
58
+ expiresAt: z.ZodOptional<z.ZodString>;
59
+ context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ title: string;
62
+ description: string;
63
+ agentName: string;
64
+ id: string;
65
+ createdAt: string;
66
+ urgency: "low" | "medium" | "high" | "critical";
67
+ category: "approval" | "choice" | "input" | "confirmation";
68
+ options?: {
69
+ id: string;
70
+ label: string;
71
+ description?: string | undefined;
72
+ }[] | undefined;
73
+ context?: Record<string, unknown> | undefined;
74
+ expiresAt?: string | undefined;
75
+ }, {
76
+ title: string;
77
+ description: string;
78
+ agentName: string;
79
+ id: string;
80
+ createdAt: string;
81
+ urgency: "low" | "medium" | "high" | "critical";
82
+ category: "approval" | "choice" | "input" | "confirmation";
83
+ options?: {
84
+ id: string;
85
+ label: string;
86
+ description?: string | undefined;
87
+ }[] | undefined;
88
+ context?: Record<string, unknown> | undefined;
89
+ expiresAt?: string | undefined;
90
+ }>;
91
+ export type ApiDecision = z.infer<typeof ApiDecisionSchema>;
92
+ /**
93
+ * Decision schema (component format)
94
+ */
95
+ export declare const DecisionSchema: z.ZodObject<{
96
+ id: z.ZodString;
97
+ agentName: z.ZodString;
98
+ timestamp: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
99
+ type: z.ZodEnum<["approval", "choice", "input", "confirmation"]>;
100
+ title: z.ZodString;
101
+ description: z.ZodString;
102
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
103
+ id: z.ZodString;
104
+ label: z.ZodString;
105
+ description: z.ZodOptional<z.ZodString>;
106
+ }, "strip", z.ZodTypeAny, {
107
+ id: string;
108
+ label: string;
109
+ description?: string | undefined;
110
+ }, {
111
+ id: string;
112
+ label: string;
113
+ description?: string | undefined;
114
+ }>, "many">>;
115
+ priority: z.ZodEnum<["low", "medium", "high", "critical"]>;
116
+ context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
117
+ expiresAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
118
+ }, "strip", z.ZodTypeAny, {
119
+ type: "approval" | "choice" | "input" | "confirmation";
120
+ title: string;
121
+ description: string;
122
+ agentName: string;
123
+ id: string;
124
+ timestamp: string | number;
125
+ priority: "low" | "medium" | "high" | "critical";
126
+ options?: {
127
+ id: string;
128
+ label: string;
129
+ description?: string | undefined;
130
+ }[] | undefined;
131
+ context?: Record<string, unknown> | undefined;
132
+ expiresAt?: string | number | undefined;
133
+ }, {
134
+ type: "approval" | "choice" | "input" | "confirmation";
135
+ title: string;
136
+ description: string;
137
+ agentName: string;
138
+ id: string;
139
+ timestamp: string | number;
140
+ priority: "low" | "medium" | "high" | "critical";
141
+ options?: {
142
+ id: string;
143
+ label: string;
144
+ description?: string | undefined;
145
+ }[] | undefined;
146
+ context?: Record<string, unknown> | undefined;
147
+ expiresAt?: string | number | undefined;
148
+ }>;
149
+ export type Decision = z.infer<typeof DecisionSchema>;
150
+ /**
151
+ * Pending decision schema (simplified format)
152
+ */
153
+ export declare const PendingDecisionSchema: z.ZodObject<{
154
+ id: z.ZodString;
155
+ agent: z.ZodString;
156
+ question: z.ZodString;
157
+ options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
158
+ context: z.ZodOptional<z.ZodString>;
159
+ priority: z.ZodEnum<["low", "medium", "high", "critical"]>;
160
+ createdAt: z.ZodString;
161
+ expiresAt: z.ZodOptional<z.ZodString>;
162
+ }, "strip", z.ZodTypeAny, {
163
+ id: string;
164
+ agent: string;
165
+ priority: "low" | "medium" | "high" | "critical";
166
+ createdAt: string;
167
+ question: string;
168
+ options?: string[] | undefined;
169
+ context?: string | undefined;
170
+ expiresAt?: string | undefined;
171
+ }, {
172
+ id: string;
173
+ agent: string;
174
+ priority: "low" | "medium" | "high" | "critical";
175
+ createdAt: string;
176
+ question: string;
177
+ options?: string[] | undefined;
178
+ context?: string | undefined;
179
+ expiresAt?: string | undefined;
180
+ }>;
181
+ export type PendingDecision = z.infer<typeof PendingDecisionSchema>;
182
+ /**
183
+ * Trajectory decision type enum (for tracking)
184
+ */
185
+ export declare const TrajectoryDecisionTypeSchema: z.ZodEnum<["tool_call", "message", "file_edit", "command", "question"]>;
186
+ export type TrajectoryDecisionType = z.infer<typeof TrajectoryDecisionTypeSchema>;
187
+ /**
188
+ * Trajectory decision outcome enum
189
+ */
190
+ export declare const TrajectoryDecisionOutcomeSchema: z.ZodEnum<["success", "error", "pending"]>;
191
+ export type TrajectoryDecisionOutcome = z.infer<typeof TrajectoryDecisionOutcomeSchema>;
192
+ /**
193
+ * Trajectory decision schema (for decision tracking)
194
+ */
195
+ export declare const TrajectoryDecisionSchema: z.ZodType<TrajectoryDecision>;
196
+ export type TrajectoryDecision = {
197
+ id: string;
198
+ timestamp: string;
199
+ agent: string;
200
+ type: TrajectoryDecisionType;
201
+ summary: string;
202
+ details?: string;
203
+ context?: string;
204
+ outcome?: TrajectoryDecisionOutcome;
205
+ children?: TrajectoryDecision[];
206
+ };
207
+ /**
208
+ * Trajectory schema
209
+ */
210
+ export declare const TrajectorySchema: z.ZodObject<{
211
+ agentName: z.ZodString;
212
+ sessionId: z.ZodString;
213
+ decisions: z.ZodArray<z.ZodType<TrajectoryDecision, z.ZodTypeDef, TrajectoryDecision>, "many">;
214
+ startTime: z.ZodString;
215
+ endTime: z.ZodOptional<z.ZodString>;
216
+ }, "strip", z.ZodTypeAny, {
217
+ agentName: string;
218
+ sessionId: string;
219
+ decisions: TrajectoryDecision[];
220
+ startTime: string;
221
+ endTime?: string | undefined;
222
+ }, {
223
+ agentName: string;
224
+ sessionId: string;
225
+ decisions: TrajectoryDecision[];
226
+ startTime: string;
227
+ endTime?: string | undefined;
228
+ }>;
229
+ export type Trajectory = z.infer<typeof TrajectorySchema>;
230
+ //# sourceMappingURL=decision.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"decision.d.ts","sourceRoot":"","sources":["../../src/schemas/decision.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,eAAO,MAAM,qBAAqB,kDAAgD,CAAC;AACnF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE;;GAEG;AACH,eAAO,MAAM,sBAAsB,4DAA0D,CAAC;AAC9F,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;EAI/B,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWzB,CAAC;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShC,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE;;GAEG;AACH,eAAO,MAAM,4BAA4B,yEAMvC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF;;GAEG;AACH,eAAO,MAAM,+BAA+B,4CAA0C,CAAC;AACvF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAExF;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAYlE,CAAC;AACF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,sBAAsB,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,yBAAyB,CAAC;IACpC,QAAQ,CAAC,EAAE,kBAAkB,EAAE,CAAC;CACjC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
@@ -0,0 +1,104 @@
1
+ /**
2
+ * Decision Schemas
3
+ *
4
+ * Zod schemas for decision queue types used across the dashboard and API.
5
+ */
6
+ import { z } from 'zod';
7
+ /**
8
+ * Decision urgency/priority enum
9
+ */
10
+ export const DecisionUrgencySchema = z.enum(['low', 'medium', 'high', 'critical']);
11
+ /**
12
+ * Decision category enum
13
+ */
14
+ export const DecisionCategorySchema = z.enum(['approval', 'choice', 'input', 'confirmation']);
15
+ /**
16
+ * Decision option schema
17
+ */
18
+ export const DecisionOptionSchema = z.object({
19
+ id: z.string(),
20
+ label: z.string(),
21
+ description: z.string().optional(),
22
+ });
23
+ /**
24
+ * API Decision schema (from API response)
25
+ */
26
+ export const ApiDecisionSchema = z.object({
27
+ id: z.string(),
28
+ agentName: z.string(),
29
+ title: z.string(),
30
+ description: z.string(),
31
+ options: z.array(DecisionOptionSchema).optional(),
32
+ urgency: DecisionUrgencySchema,
33
+ category: DecisionCategorySchema,
34
+ createdAt: z.string(),
35
+ expiresAt: z.string().optional(),
36
+ context: z.record(z.unknown()).optional(),
37
+ });
38
+ /**
39
+ * Decision schema (component format)
40
+ */
41
+ export const DecisionSchema = z.object({
42
+ id: z.string(),
43
+ agentName: z.string(),
44
+ timestamp: z.union([z.string(), z.number()]),
45
+ type: DecisionCategorySchema,
46
+ title: z.string(),
47
+ description: z.string(),
48
+ options: z.array(DecisionOptionSchema).optional(),
49
+ priority: DecisionUrgencySchema,
50
+ context: z.record(z.unknown()).optional(),
51
+ expiresAt: z.union([z.string(), z.number()]).optional(),
52
+ });
53
+ /**
54
+ * Pending decision schema (simplified format)
55
+ */
56
+ export const PendingDecisionSchema = z.object({
57
+ id: z.string(),
58
+ agent: z.string(),
59
+ question: z.string(),
60
+ options: z.array(z.string()).optional(),
61
+ context: z.string().optional(),
62
+ priority: DecisionUrgencySchema,
63
+ createdAt: z.string(),
64
+ expiresAt: z.string().optional(),
65
+ });
66
+ /**
67
+ * Trajectory decision type enum (for tracking)
68
+ */
69
+ export const TrajectoryDecisionTypeSchema = z.enum([
70
+ 'tool_call',
71
+ 'message',
72
+ 'file_edit',
73
+ 'command',
74
+ 'question',
75
+ ]);
76
+ /**
77
+ * Trajectory decision outcome enum
78
+ */
79
+ export const TrajectoryDecisionOutcomeSchema = z.enum(['success', 'error', 'pending']);
80
+ /**
81
+ * Trajectory decision schema (for decision tracking)
82
+ */
83
+ export const TrajectoryDecisionSchema = z.lazy(() => z.object({
84
+ id: z.string(),
85
+ timestamp: z.string(),
86
+ agent: z.string(),
87
+ type: TrajectoryDecisionTypeSchema,
88
+ summary: z.string(),
89
+ details: z.string().optional(),
90
+ context: z.string().optional(),
91
+ outcome: TrajectoryDecisionOutcomeSchema.optional(),
92
+ children: z.array(TrajectoryDecisionSchema).optional(),
93
+ }));
94
+ /**
95
+ * Trajectory schema
96
+ */
97
+ export const TrajectorySchema = z.object({
98
+ agentName: z.string(),
99
+ sessionId: z.string(),
100
+ decisions: z.array(TrajectoryDecisionSchema),
101
+ startTime: z.string(),
102
+ endTime: z.string().optional(),
103
+ });
104
+ //# sourceMappingURL=decision.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"decision.js","sourceRoot":"","sources":["../../src/schemas/decision.ts"],"names":[],"mappings":"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"}