@hasna/todos 0.16.0 → 0.17.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/CHANGELOG.md +109 -0
- package/README.md +59 -22
- package/dist/cli/cloud-router.d.ts +63 -21
- package/dist/cli/cloud-router.d.ts.map +1 -1
- package/dist/cli/commands/config-serve-commands.d.ts.map +1 -1
- package/dist/cli/commands/template-commands.d.ts.map +1 -1
- package/dist/cli/index.js +2591 -503
- package/dist/cli/stage-a.d.ts +2 -12
- package/dist/cli/stage-a.d.ts.map +1 -1
- package/dist/cli/template-remote.d.ts +90 -0
- package/dist/cli/template-remote.d.ts.map +1 -0
- package/dist/cli-mcp-parity.d.ts.map +1 -1
- package/dist/contracts.js +77 -30
- package/dist/db/agents.d.ts +8 -0
- package/dist/db/agents.d.ts.map +1 -1
- package/dist/db/database.d.ts +6 -0
- package/dist/db/database.d.ts.map +1 -1
- package/dist/db/identity-mapping.d.ts +25 -0
- package/dist/db/identity-mapping.d.ts.map +1 -1
- package/dist/db/task-crud.d.ts.map +1 -1
- package/dist/index.js +496 -58
- package/dist/lib/feature-manifest.d.ts.map +1 -1
- package/dist/lib/local-opt-in.d.ts +14 -0
- package/dist/lib/local-opt-in.d.ts.map +1 -1
- package/dist/lib/paths.d.ts +11 -1
- package/dist/lib/paths.d.ts.map +1 -1
- package/dist/mcp/index.d.ts +52 -0
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/mcp/index.js +15162 -30695
- package/dist/mcp/tools/agents.d.ts.map +1 -1
- package/dist/mcp/tools/task-adv-tools.d.ts.map +1 -1
- package/dist/mcp/tools/task-auto-tools.d.ts.map +1 -1
- package/dist/mcp/tools/task-crud.d.ts.map +1 -1
- package/dist/mcp/tools/task-meta-tools.d.ts.map +1 -1
- package/dist/mcp/tools/task-project-tools.d.ts.map +1 -1
- package/dist/mcp/tools/task-resources.d.ts.map +1 -1
- package/dist/mcp/tools/templates.d.ts.map +1 -1
- package/dist/mcp.js +3 -3
- package/dist/project-registration.js +466 -35
- package/dist/registry.js +77 -30
- package/dist/release-provenance.json +5 -5
- package/dist/sdk/client.d.ts +3 -1
- package/dist/sdk/client.d.ts.map +1 -1
- package/dist/sdk/index.js +48 -12
- package/dist/sdk/resolve.d.ts +23 -13
- package/dist/sdk/resolve.d.ts.map +1 -1
- package/dist/sdk/types.d.ts +17 -2
- package/dist/sdk/types.d.ts.map +1 -1
- package/dist/sdk/v1.generated.d.ts +115 -0
- package/dist/sdk/v1.generated.d.ts.map +1 -1
- package/dist/server/index.js +3972 -916
- package/dist/server/openapi.d.ts +837 -50
- package/dist/server/openapi.d.ts.map +1 -1
- package/dist/server/rate-limit-config.d.ts +6 -0
- package/dist/server/rate-limit-config.d.ts.map +1 -0
- package/dist/server/serve.d.ts.map +1 -1
- package/dist/server/v1.d.ts.map +1 -1
- package/dist/storage/index.d.ts +1 -1
- package/dist/storage/index.d.ts.map +1 -1
- package/dist/storage/interfaces.d.ts +74 -3
- package/dist/storage/interfaces.d.ts.map +1 -1
- package/dist/storage/local-sqlite.d.ts.map +1 -1
- package/dist/storage/postgres-adapter.d.ts.map +1 -1
- package/dist/storage.js +464 -33
- package/dist/task-manifest.js +8 -2
- package/dist/types/index.d.ts +5 -2
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/mcp/tools/code-tools.d.ts +0 -15
- package/dist/mcp/tools/code-tools.d.ts.map +0 -1
package/dist/server/openapi.d.ts
CHANGED
|
@@ -142,6 +142,240 @@ export declare function buildV1OpenApiDocument(version?: string): {
|
|
|
142
142
|
};
|
|
143
143
|
};
|
|
144
144
|
};
|
|
145
|
+
TaskDependency: {
|
|
146
|
+
readonly type: "object";
|
|
147
|
+
readonly additionalProperties: false;
|
|
148
|
+
readonly required: readonly ["task_id", "depends_on"];
|
|
149
|
+
readonly properties: {
|
|
150
|
+
readonly task_id: {
|
|
151
|
+
readonly type: "string";
|
|
152
|
+
readonly minLength: 1;
|
|
153
|
+
};
|
|
154
|
+
readonly depends_on: {
|
|
155
|
+
readonly type: "string";
|
|
156
|
+
readonly minLength: 1;
|
|
157
|
+
};
|
|
158
|
+
readonly external_project_id: {
|
|
159
|
+
readonly type: "string";
|
|
160
|
+
readonly nullable: true;
|
|
161
|
+
};
|
|
162
|
+
readonly external_task_id: {
|
|
163
|
+
readonly type: "string";
|
|
164
|
+
readonly nullable: true;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
DependencyPage: {
|
|
169
|
+
readonly type: "object";
|
|
170
|
+
readonly additionalProperties: false;
|
|
171
|
+
readonly required: readonly ["dependencies", "count", "total", "limit", "offset", "has_more", "next_offset"];
|
|
172
|
+
readonly properties: {
|
|
173
|
+
readonly dependencies: {
|
|
174
|
+
readonly type: "array";
|
|
175
|
+
readonly items: {
|
|
176
|
+
readonly $ref: "#/components/schemas/TaskDependency";
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
readonly count: {
|
|
180
|
+
readonly type: "integer";
|
|
181
|
+
readonly minimum: 0;
|
|
182
|
+
};
|
|
183
|
+
readonly total: {
|
|
184
|
+
readonly type: "integer";
|
|
185
|
+
readonly minimum: 0;
|
|
186
|
+
};
|
|
187
|
+
readonly limit: {
|
|
188
|
+
readonly type: "integer";
|
|
189
|
+
readonly minimum: 0;
|
|
190
|
+
};
|
|
191
|
+
readonly offset: {
|
|
192
|
+
readonly type: "integer";
|
|
193
|
+
readonly minimum: 0;
|
|
194
|
+
};
|
|
195
|
+
readonly has_more: {
|
|
196
|
+
readonly type: "boolean";
|
|
197
|
+
};
|
|
198
|
+
readonly next_offset: {
|
|
199
|
+
readonly type: "integer";
|
|
200
|
+
readonly minimum: 0;
|
|
201
|
+
readonly nullable: true;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
BulkCreateTaskInput: {
|
|
206
|
+
readonly type: "object";
|
|
207
|
+
readonly additionalProperties: false;
|
|
208
|
+
readonly required: readonly ["title"];
|
|
209
|
+
readonly properties: {
|
|
210
|
+
readonly temp_id: {
|
|
211
|
+
readonly type: "string";
|
|
212
|
+
readonly minLength: 1;
|
|
213
|
+
readonly maxLength: 100;
|
|
214
|
+
};
|
|
215
|
+
readonly depends_on: {
|
|
216
|
+
readonly type: "array";
|
|
217
|
+
readonly maxItems: 100;
|
|
218
|
+
readonly items: {
|
|
219
|
+
readonly type: "string";
|
|
220
|
+
readonly minLength: 1;
|
|
221
|
+
readonly maxLength: 200;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
readonly title: {
|
|
225
|
+
readonly type: "string";
|
|
226
|
+
readonly minLength: 1;
|
|
227
|
+
readonly maxLength: 20000;
|
|
228
|
+
};
|
|
229
|
+
readonly description: {
|
|
230
|
+
readonly type: "string";
|
|
231
|
+
readonly nullable: true;
|
|
232
|
+
readonly maxLength: 100000;
|
|
233
|
+
};
|
|
234
|
+
readonly status: {
|
|
235
|
+
readonly type: "string";
|
|
236
|
+
readonly enum: readonly ["pending", "in_progress", "completed", "failed", "cancelled"];
|
|
237
|
+
};
|
|
238
|
+
readonly priority: {
|
|
239
|
+
readonly type: "string";
|
|
240
|
+
readonly enum: readonly ["low", "medium", "high", "critical"];
|
|
241
|
+
};
|
|
242
|
+
readonly project_id: {
|
|
243
|
+
readonly type: "string";
|
|
244
|
+
readonly minLength: 1;
|
|
245
|
+
readonly maxLength: 200;
|
|
246
|
+
};
|
|
247
|
+
readonly parent_id: {
|
|
248
|
+
readonly type: "string";
|
|
249
|
+
};
|
|
250
|
+
readonly plan_id: {
|
|
251
|
+
readonly type: "string";
|
|
252
|
+
};
|
|
253
|
+
readonly task_list_id: {
|
|
254
|
+
readonly type: "string";
|
|
255
|
+
readonly minLength: 1;
|
|
256
|
+
readonly maxLength: 200;
|
|
257
|
+
};
|
|
258
|
+
readonly assigned_to: {
|
|
259
|
+
readonly type: "string";
|
|
260
|
+
readonly minLength: 1;
|
|
261
|
+
readonly maxLength: 200;
|
|
262
|
+
};
|
|
263
|
+
readonly agent_id: {
|
|
264
|
+
readonly type: "string";
|
|
265
|
+
};
|
|
266
|
+
readonly created_by: {
|
|
267
|
+
readonly type: "string";
|
|
268
|
+
};
|
|
269
|
+
readonly tags: {
|
|
270
|
+
readonly type: "array";
|
|
271
|
+
readonly maxItems: 100;
|
|
272
|
+
readonly items: {
|
|
273
|
+
readonly type: "string";
|
|
274
|
+
readonly minLength: 1;
|
|
275
|
+
readonly maxLength: 100;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
readonly estimated_minutes: {
|
|
279
|
+
readonly type: "number";
|
|
280
|
+
readonly minimum: 0;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
BulkCreateReceipt: {
|
|
285
|
+
readonly type: "object";
|
|
286
|
+
readonly additionalProperties: false;
|
|
287
|
+
readonly required: readonly ["schema_version", "atomic", "created", "dependencies"];
|
|
288
|
+
readonly properties: {
|
|
289
|
+
readonly schema_version: {
|
|
290
|
+
readonly type: "integer";
|
|
291
|
+
readonly enum: readonly [1];
|
|
292
|
+
};
|
|
293
|
+
readonly atomic: {
|
|
294
|
+
readonly type: "boolean";
|
|
295
|
+
readonly enum: readonly [true];
|
|
296
|
+
};
|
|
297
|
+
readonly created: {
|
|
298
|
+
readonly type: "array";
|
|
299
|
+
readonly maxItems: 100;
|
|
300
|
+
readonly items: {
|
|
301
|
+
readonly type: "object";
|
|
302
|
+
readonly additionalProperties: false;
|
|
303
|
+
readonly required: readonly ["temp_id", "id", "short_id", "title"];
|
|
304
|
+
readonly properties: {
|
|
305
|
+
readonly temp_id: {
|
|
306
|
+
readonly type: "string";
|
|
307
|
+
readonly nullable: true;
|
|
308
|
+
};
|
|
309
|
+
readonly id: {
|
|
310
|
+
readonly type: "string";
|
|
311
|
+
};
|
|
312
|
+
readonly short_id: {
|
|
313
|
+
readonly type: "string";
|
|
314
|
+
readonly nullable: true;
|
|
315
|
+
};
|
|
316
|
+
readonly title: {
|
|
317
|
+
readonly type: "string";
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
};
|
|
321
|
+
};
|
|
322
|
+
readonly dependencies: {
|
|
323
|
+
readonly type: "array";
|
|
324
|
+
readonly maxItems: 100;
|
|
325
|
+
readonly items: {
|
|
326
|
+
readonly $ref: "#/components/schemas/TaskDependency";
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
};
|
|
331
|
+
BulkDeleteReceipt: {
|
|
332
|
+
readonly type: "object";
|
|
333
|
+
readonly additionalProperties: false;
|
|
334
|
+
readonly required: readonly ["schema_version", "atomic", "force", "results"];
|
|
335
|
+
readonly properties: {
|
|
336
|
+
readonly schema_version: {
|
|
337
|
+
readonly type: "integer";
|
|
338
|
+
readonly enum: readonly [1];
|
|
339
|
+
};
|
|
340
|
+
readonly atomic: {
|
|
341
|
+
readonly type: "boolean";
|
|
342
|
+
readonly enum: readonly [true];
|
|
343
|
+
};
|
|
344
|
+
readonly force: {
|
|
345
|
+
readonly type: "boolean";
|
|
346
|
+
};
|
|
347
|
+
readonly results: {
|
|
348
|
+
readonly type: "array";
|
|
349
|
+
readonly maxItems: 100;
|
|
350
|
+
readonly items: {
|
|
351
|
+
readonly type: "object";
|
|
352
|
+
readonly additionalProperties: false;
|
|
353
|
+
readonly required: readonly ["requested_id", "task_id", "outcome", "reason"];
|
|
354
|
+
readonly properties: {
|
|
355
|
+
readonly requested_id: {
|
|
356
|
+
readonly type: "string";
|
|
357
|
+
};
|
|
358
|
+
readonly task_id: {
|
|
359
|
+
readonly type: "string";
|
|
360
|
+
readonly nullable: true;
|
|
361
|
+
};
|
|
362
|
+
readonly outcome: {
|
|
363
|
+
readonly type: "string";
|
|
364
|
+
readonly enum: readonly ["deleted", "skipped", "missing"];
|
|
365
|
+
};
|
|
366
|
+
readonly reason: {
|
|
367
|
+
readonly oneOf: readonly [{
|
|
368
|
+
readonly type: "string";
|
|
369
|
+
readonly enum: readonly ["has_children", "not_found"];
|
|
370
|
+
}, {
|
|
371
|
+
readonly type: "null";
|
|
372
|
+
}];
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
};
|
|
145
379
|
Project: {
|
|
146
380
|
readonly type: "object";
|
|
147
381
|
readonly properties: {
|
|
@@ -2466,6 +2700,11 @@ export declare function buildV1OpenApiDocument(version?: string): {
|
|
|
2466
2700
|
type: string;
|
|
2467
2701
|
nullable: boolean;
|
|
2468
2702
|
};
|
|
2703
|
+
archived_at: {
|
|
2704
|
+
type: string;
|
|
2705
|
+
format: string;
|
|
2706
|
+
nullable: boolean;
|
|
2707
|
+
};
|
|
2469
2708
|
version: {
|
|
2470
2709
|
type: string;
|
|
2471
2710
|
};
|
|
@@ -5471,64 +5710,45 @@ export declare function buildV1OpenApiDocument(version?: string): {
|
|
|
5471
5710
|
};
|
|
5472
5711
|
};
|
|
5473
5712
|
};
|
|
5474
|
-
"/v1/tasks/
|
|
5475
|
-
|
|
5476
|
-
operationId: string;
|
|
5477
|
-
summary: string;
|
|
5478
|
-
parameters: {
|
|
5479
|
-
name: string;
|
|
5480
|
-
in: string;
|
|
5481
|
-
required: boolean;
|
|
5482
|
-
schema: {
|
|
5483
|
-
type: string;
|
|
5484
|
-
};
|
|
5485
|
-
}[];
|
|
5486
|
-
responses: {
|
|
5487
|
-
"200": {
|
|
5488
|
-
content: {
|
|
5489
|
-
"application/json": {
|
|
5490
|
-
schema: {
|
|
5491
|
-
type: string;
|
|
5492
|
-
properties: {
|
|
5493
|
-
task: {
|
|
5494
|
-
$ref: string;
|
|
5495
|
-
};
|
|
5496
|
-
};
|
|
5497
|
-
};
|
|
5498
|
-
};
|
|
5499
|
-
};
|
|
5500
|
-
};
|
|
5501
|
-
};
|
|
5502
|
-
};
|
|
5503
|
-
patch: {
|
|
5713
|
+
"/v1/tasks/bulk-create": {
|
|
5714
|
+
post: {
|
|
5504
5715
|
operationId: string;
|
|
5505
5716
|
summary: string;
|
|
5506
|
-
parameters: {
|
|
5507
|
-
name: string;
|
|
5508
|
-
in: string;
|
|
5509
|
-
required: boolean;
|
|
5510
|
-
schema: {
|
|
5511
|
-
type: string;
|
|
5512
|
-
};
|
|
5513
|
-
}[];
|
|
5514
5717
|
requestBody: {
|
|
5515
5718
|
required: boolean;
|
|
5516
5719
|
content: {
|
|
5517
5720
|
"application/json": {
|
|
5518
5721
|
schema: {
|
|
5519
|
-
|
|
5722
|
+
type: string;
|
|
5723
|
+
additionalProperties: boolean;
|
|
5724
|
+
required: string[];
|
|
5725
|
+
properties: {
|
|
5726
|
+
schema_version: {
|
|
5727
|
+
type: string;
|
|
5728
|
+
enum: number[];
|
|
5729
|
+
};
|
|
5730
|
+
tasks: {
|
|
5731
|
+
type: string;
|
|
5732
|
+
minItems: number;
|
|
5733
|
+
maxItems: number;
|
|
5734
|
+
items: {
|
|
5735
|
+
$ref: string;
|
|
5736
|
+
};
|
|
5737
|
+
};
|
|
5738
|
+
};
|
|
5520
5739
|
};
|
|
5521
5740
|
};
|
|
5522
5741
|
};
|
|
5523
5742
|
};
|
|
5524
5743
|
responses: {
|
|
5525
|
-
"
|
|
5744
|
+
"201": {
|
|
5526
5745
|
content: {
|
|
5527
5746
|
"application/json": {
|
|
5528
5747
|
schema: {
|
|
5529
5748
|
type: string;
|
|
5749
|
+
required: string[];
|
|
5530
5750
|
properties: {
|
|
5531
|
-
|
|
5751
|
+
receipt: {
|
|
5532
5752
|
$ref: string;
|
|
5533
5753
|
};
|
|
5534
5754
|
};
|
|
@@ -5536,13 +5756,153 @@ export declare function buildV1OpenApiDocument(version?: string): {
|
|
|
5536
5756
|
};
|
|
5537
5757
|
};
|
|
5538
5758
|
};
|
|
5539
|
-
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5759
|
+
"400": {
|
|
5760
|
+
content: {
|
|
5761
|
+
"application/json": {
|
|
5762
|
+
schema: {
|
|
5763
|
+
$ref: string;
|
|
5764
|
+
};
|
|
5765
|
+
};
|
|
5766
|
+
};
|
|
5767
|
+
};
|
|
5768
|
+
"404": {
|
|
5769
|
+
content: {
|
|
5770
|
+
"application/json": {
|
|
5771
|
+
schema: {
|
|
5772
|
+
$ref: string;
|
|
5773
|
+
};
|
|
5774
|
+
};
|
|
5775
|
+
};
|
|
5776
|
+
};
|
|
5777
|
+
"409": {
|
|
5778
|
+
content: {
|
|
5779
|
+
"application/json": {
|
|
5780
|
+
schema: {
|
|
5781
|
+
$ref: string;
|
|
5782
|
+
};
|
|
5783
|
+
};
|
|
5784
|
+
};
|
|
5785
|
+
};
|
|
5786
|
+
"413": {
|
|
5787
|
+
content: {
|
|
5788
|
+
"application/json": {
|
|
5789
|
+
schema: {
|
|
5790
|
+
$ref: string;
|
|
5791
|
+
};
|
|
5792
|
+
};
|
|
5793
|
+
};
|
|
5794
|
+
};
|
|
5795
|
+
"501": {
|
|
5796
|
+
content: {
|
|
5797
|
+
"application/json": {
|
|
5798
|
+
schema: {
|
|
5799
|
+
$ref: string;
|
|
5800
|
+
};
|
|
5801
|
+
};
|
|
5802
|
+
};
|
|
5803
|
+
};
|
|
5804
|
+
};
|
|
5805
|
+
};
|
|
5806
|
+
};
|
|
5807
|
+
"/v1/tasks/bulk-delete": {
|
|
5808
|
+
post: {
|
|
5809
|
+
operationId: string;
|
|
5810
|
+
summary: string;
|
|
5811
|
+
requestBody: {
|
|
5812
|
+
required: boolean;
|
|
5813
|
+
content: {
|
|
5814
|
+
"application/json": {
|
|
5815
|
+
schema: {
|
|
5816
|
+
type: string;
|
|
5817
|
+
additionalProperties: boolean;
|
|
5818
|
+
required: string[];
|
|
5819
|
+
properties: {
|
|
5820
|
+
schema_version: {
|
|
5821
|
+
type: string;
|
|
5822
|
+
enum: number[];
|
|
5823
|
+
};
|
|
5824
|
+
task_ids: {
|
|
5825
|
+
type: string;
|
|
5826
|
+
minItems: number;
|
|
5827
|
+
maxItems: number;
|
|
5828
|
+
uniqueItems: boolean;
|
|
5829
|
+
items: {
|
|
5830
|
+
type: string;
|
|
5831
|
+
minLength: number;
|
|
5832
|
+
maxLength: number;
|
|
5833
|
+
};
|
|
5834
|
+
};
|
|
5835
|
+
force: {
|
|
5836
|
+
type: string;
|
|
5837
|
+
default: boolean;
|
|
5838
|
+
description: string;
|
|
5839
|
+
};
|
|
5840
|
+
};
|
|
5841
|
+
};
|
|
5842
|
+
};
|
|
5843
|
+
};
|
|
5844
|
+
};
|
|
5845
|
+
responses: {
|
|
5846
|
+
"200": {
|
|
5847
|
+
content: {
|
|
5848
|
+
"application/json": {
|
|
5849
|
+
schema: {
|
|
5850
|
+
type: string;
|
|
5851
|
+
required: string[];
|
|
5852
|
+
properties: {
|
|
5853
|
+
receipt: {
|
|
5854
|
+
$ref: string;
|
|
5855
|
+
};
|
|
5856
|
+
};
|
|
5857
|
+
};
|
|
5858
|
+
};
|
|
5859
|
+
};
|
|
5860
|
+
};
|
|
5861
|
+
"400": {
|
|
5862
|
+
content: {
|
|
5863
|
+
"application/json": {
|
|
5864
|
+
schema: {
|
|
5865
|
+
$ref: string;
|
|
5866
|
+
};
|
|
5867
|
+
};
|
|
5868
|
+
};
|
|
5869
|
+
};
|
|
5870
|
+
"403": {
|
|
5871
|
+
content: {
|
|
5872
|
+
"application/json": {
|
|
5873
|
+
schema: {
|
|
5874
|
+
$ref: string;
|
|
5875
|
+
};
|
|
5876
|
+
};
|
|
5877
|
+
};
|
|
5878
|
+
};
|
|
5879
|
+
"409": {
|
|
5880
|
+
content: {
|
|
5881
|
+
"application/json": {
|
|
5882
|
+
schema: {
|
|
5883
|
+
$ref: string;
|
|
5884
|
+
};
|
|
5885
|
+
};
|
|
5886
|
+
};
|
|
5887
|
+
};
|
|
5888
|
+
"501": {
|
|
5889
|
+
content: {
|
|
5890
|
+
"application/json": {
|
|
5891
|
+
schema: {
|
|
5892
|
+
$ref: string;
|
|
5893
|
+
};
|
|
5894
|
+
};
|
|
5895
|
+
};
|
|
5896
|
+
};
|
|
5897
|
+
};
|
|
5898
|
+
};
|
|
5899
|
+
};
|
|
5900
|
+
"/v1/tasks/{id}": {
|
|
5901
|
+
get: {
|
|
5902
|
+
operationId: string;
|
|
5903
|
+
summary: string;
|
|
5904
|
+
parameters: {
|
|
5905
|
+
name: string;
|
|
5546
5906
|
in: string;
|
|
5547
5907
|
required: boolean;
|
|
5548
5908
|
schema: {
|
|
@@ -5556,17 +5916,240 @@ export declare function buildV1OpenApiDocument(version?: string): {
|
|
|
5556
5916
|
schema: {
|
|
5557
5917
|
type: string;
|
|
5558
5918
|
properties: {
|
|
5559
|
-
|
|
5919
|
+
task: {
|
|
5920
|
+
$ref: string;
|
|
5921
|
+
};
|
|
5922
|
+
};
|
|
5923
|
+
};
|
|
5924
|
+
};
|
|
5925
|
+
};
|
|
5926
|
+
};
|
|
5927
|
+
};
|
|
5928
|
+
};
|
|
5929
|
+
patch: {
|
|
5930
|
+
operationId: string;
|
|
5931
|
+
summary: string;
|
|
5932
|
+
parameters: {
|
|
5933
|
+
name: string;
|
|
5934
|
+
in: string;
|
|
5935
|
+
required: boolean;
|
|
5936
|
+
schema: {
|
|
5937
|
+
type: string;
|
|
5938
|
+
};
|
|
5939
|
+
}[];
|
|
5940
|
+
requestBody: {
|
|
5941
|
+
required: boolean;
|
|
5942
|
+
content: {
|
|
5943
|
+
"application/json": {
|
|
5944
|
+
schema: {
|
|
5945
|
+
$ref: string;
|
|
5946
|
+
};
|
|
5947
|
+
};
|
|
5948
|
+
};
|
|
5949
|
+
};
|
|
5950
|
+
responses: {
|
|
5951
|
+
"200": {
|
|
5952
|
+
content: {
|
|
5953
|
+
"application/json": {
|
|
5954
|
+
schema: {
|
|
5955
|
+
type: string;
|
|
5956
|
+
properties: {
|
|
5957
|
+
task: {
|
|
5958
|
+
$ref: string;
|
|
5959
|
+
};
|
|
5960
|
+
};
|
|
5961
|
+
};
|
|
5962
|
+
};
|
|
5963
|
+
};
|
|
5964
|
+
};
|
|
5965
|
+
};
|
|
5966
|
+
};
|
|
5967
|
+
delete: {
|
|
5968
|
+
operationId: string;
|
|
5969
|
+
summary: string;
|
|
5970
|
+
parameters: {
|
|
5971
|
+
name: string;
|
|
5972
|
+
in: string;
|
|
5973
|
+
required: boolean;
|
|
5974
|
+
schema: {
|
|
5975
|
+
type: string;
|
|
5976
|
+
};
|
|
5977
|
+
}[];
|
|
5978
|
+
responses: {
|
|
5979
|
+
"200": {
|
|
5980
|
+
content: {
|
|
5981
|
+
"application/json": {
|
|
5982
|
+
schema: {
|
|
5983
|
+
type: string;
|
|
5984
|
+
properties: {
|
|
5985
|
+
deleted: {
|
|
5986
|
+
type: string;
|
|
5987
|
+
};
|
|
5988
|
+
id: {
|
|
5989
|
+
type: string;
|
|
5990
|
+
};
|
|
5991
|
+
};
|
|
5992
|
+
};
|
|
5993
|
+
};
|
|
5994
|
+
};
|
|
5995
|
+
};
|
|
5996
|
+
};
|
|
5997
|
+
};
|
|
5998
|
+
};
|
|
5999
|
+
"/v1/tasks/{id}/history": {
|
|
6000
|
+
get: {
|
|
6001
|
+
operationId: string;
|
|
6002
|
+
summary: string;
|
|
6003
|
+
description: string;
|
|
6004
|
+
parameters: ({
|
|
6005
|
+
name: string;
|
|
6006
|
+
in: string;
|
|
6007
|
+
required: boolean;
|
|
6008
|
+
schema: {
|
|
6009
|
+
type: string;
|
|
6010
|
+
minimum?: undefined;
|
|
6011
|
+
maximum?: undefined;
|
|
6012
|
+
default?: undefined;
|
|
6013
|
+
format?: undefined;
|
|
6014
|
+
enum?: undefined;
|
|
6015
|
+
};
|
|
6016
|
+
} | {
|
|
6017
|
+
name: string;
|
|
6018
|
+
in: string;
|
|
6019
|
+
required: boolean;
|
|
6020
|
+
schema: {
|
|
6021
|
+
type: string;
|
|
6022
|
+
minimum: number;
|
|
6023
|
+
maximum: number;
|
|
6024
|
+
default: number;
|
|
6025
|
+
format?: undefined;
|
|
6026
|
+
enum?: undefined;
|
|
6027
|
+
};
|
|
6028
|
+
} | {
|
|
6029
|
+
name: string;
|
|
6030
|
+
in: string;
|
|
6031
|
+
required: boolean;
|
|
6032
|
+
schema: {
|
|
6033
|
+
type: string;
|
|
6034
|
+
minimum: number;
|
|
6035
|
+
default: number;
|
|
6036
|
+
maximum?: undefined;
|
|
6037
|
+
format?: undefined;
|
|
6038
|
+
enum?: undefined;
|
|
6039
|
+
};
|
|
6040
|
+
} | {
|
|
6041
|
+
name: string;
|
|
6042
|
+
in: string;
|
|
6043
|
+
schema: {
|
|
6044
|
+
type: string;
|
|
6045
|
+
format: string;
|
|
6046
|
+
minimum?: undefined;
|
|
6047
|
+
maximum?: undefined;
|
|
6048
|
+
default?: undefined;
|
|
6049
|
+
enum?: undefined;
|
|
6050
|
+
};
|
|
6051
|
+
required?: undefined;
|
|
6052
|
+
} | {
|
|
6053
|
+
name: string;
|
|
6054
|
+
in: string;
|
|
6055
|
+
schema: {
|
|
6056
|
+
type: string;
|
|
6057
|
+
enum: string[];
|
|
6058
|
+
default: string;
|
|
6059
|
+
minimum?: undefined;
|
|
6060
|
+
maximum?: undefined;
|
|
6061
|
+
format?: undefined;
|
|
6062
|
+
};
|
|
6063
|
+
required?: undefined;
|
|
6064
|
+
})[];
|
|
6065
|
+
responses: {
|
|
6066
|
+
"200": {
|
|
6067
|
+
content: {
|
|
6068
|
+
"application/json": {
|
|
6069
|
+
schema: {
|
|
6070
|
+
type: string;
|
|
6071
|
+
additionalProperties: boolean;
|
|
6072
|
+
required: string[];
|
|
6073
|
+
properties: {
|
|
6074
|
+
history: {
|
|
5560
6075
|
type: string;
|
|
6076
|
+
maxItems: number;
|
|
6077
|
+
items: {
|
|
6078
|
+
type: string;
|
|
6079
|
+
additionalProperties: boolean;
|
|
6080
|
+
};
|
|
5561
6081
|
};
|
|
5562
|
-
|
|
6082
|
+
count: {
|
|
6083
|
+
type: string;
|
|
6084
|
+
minimum: number;
|
|
6085
|
+
maximum: number;
|
|
6086
|
+
};
|
|
6087
|
+
total: {
|
|
6088
|
+
type: string;
|
|
6089
|
+
minimum: number;
|
|
6090
|
+
};
|
|
6091
|
+
limit: {
|
|
5563
6092
|
type: string;
|
|
6093
|
+
minimum: number;
|
|
6094
|
+
maximum: number;
|
|
6095
|
+
};
|
|
6096
|
+
offset: {
|
|
6097
|
+
type: string;
|
|
6098
|
+
minimum: number;
|
|
6099
|
+
};
|
|
6100
|
+
order: {
|
|
6101
|
+
type: string;
|
|
6102
|
+
enum: string[];
|
|
6103
|
+
};
|
|
6104
|
+
has_more: {
|
|
6105
|
+
type: string;
|
|
6106
|
+
};
|
|
6107
|
+
next_offset: {
|
|
6108
|
+
type: string;
|
|
6109
|
+
minimum: number;
|
|
6110
|
+
nullable: boolean;
|
|
5564
6111
|
};
|
|
5565
6112
|
};
|
|
5566
6113
|
};
|
|
5567
6114
|
};
|
|
5568
6115
|
};
|
|
5569
6116
|
};
|
|
6117
|
+
"400": {
|
|
6118
|
+
content: {
|
|
6119
|
+
"application/json": {
|
|
6120
|
+
schema: {
|
|
6121
|
+
$ref: string;
|
|
6122
|
+
};
|
|
6123
|
+
};
|
|
6124
|
+
};
|
|
6125
|
+
};
|
|
6126
|
+
"404": {
|
|
6127
|
+
content: {
|
|
6128
|
+
"application/json": {
|
|
6129
|
+
schema: {
|
|
6130
|
+
$ref: string;
|
|
6131
|
+
};
|
|
6132
|
+
};
|
|
6133
|
+
};
|
|
6134
|
+
};
|
|
6135
|
+
"426": {
|
|
6136
|
+
content: {
|
|
6137
|
+
"application/json": {
|
|
6138
|
+
schema: {
|
|
6139
|
+
$ref: string;
|
|
6140
|
+
};
|
|
6141
|
+
};
|
|
6142
|
+
};
|
|
6143
|
+
};
|
|
6144
|
+
"501": {
|
|
6145
|
+
content: {
|
|
6146
|
+
"application/json": {
|
|
6147
|
+
schema: {
|
|
6148
|
+
$ref: string;
|
|
6149
|
+
};
|
|
6150
|
+
};
|
|
6151
|
+
};
|
|
6152
|
+
};
|
|
5570
6153
|
};
|
|
5571
6154
|
};
|
|
5572
6155
|
};
|
|
@@ -7575,6 +8158,210 @@ export declare function buildV1OpenApiDocument(version?: string): {
|
|
|
7575
8158
|
};
|
|
7576
8159
|
};
|
|
7577
8160
|
};
|
|
8161
|
+
"/v1/agents": {
|
|
8162
|
+
get: {
|
|
8163
|
+
operationId: string;
|
|
8164
|
+
summary: string;
|
|
8165
|
+
description: string;
|
|
8166
|
+
parameters: ({
|
|
8167
|
+
name: string;
|
|
8168
|
+
in: string;
|
|
8169
|
+
required: boolean;
|
|
8170
|
+
schema: {
|
|
8171
|
+
type: string;
|
|
8172
|
+
minimum: number;
|
|
8173
|
+
maximum: number;
|
|
8174
|
+
default: number;
|
|
8175
|
+
};
|
|
8176
|
+
} | {
|
|
8177
|
+
name: string;
|
|
8178
|
+
in: string;
|
|
8179
|
+
required: boolean;
|
|
8180
|
+
schema: {
|
|
8181
|
+
type: string;
|
|
8182
|
+
minimum: number;
|
|
8183
|
+
default: number;
|
|
8184
|
+
maximum?: undefined;
|
|
8185
|
+
};
|
|
8186
|
+
} | {
|
|
8187
|
+
name: string;
|
|
8188
|
+
in: string;
|
|
8189
|
+
required: boolean;
|
|
8190
|
+
schema: {
|
|
8191
|
+
type: string;
|
|
8192
|
+
default: boolean;
|
|
8193
|
+
minimum?: undefined;
|
|
8194
|
+
maximum?: undefined;
|
|
8195
|
+
};
|
|
8196
|
+
})[];
|
|
8197
|
+
responses: {
|
|
8198
|
+
"200": {
|
|
8199
|
+
content: {
|
|
8200
|
+
"application/json": {
|
|
8201
|
+
schema: {
|
|
8202
|
+
type: string;
|
|
8203
|
+
required: string[];
|
|
8204
|
+
properties: {
|
|
8205
|
+
agents: {
|
|
8206
|
+
type: string;
|
|
8207
|
+
items: {
|
|
8208
|
+
type: string;
|
|
8209
|
+
};
|
|
8210
|
+
};
|
|
8211
|
+
count: {
|
|
8212
|
+
type: string;
|
|
8213
|
+
minimum: number;
|
|
8214
|
+
};
|
|
8215
|
+
total: {
|
|
8216
|
+
type: string;
|
|
8217
|
+
minimum: number;
|
|
8218
|
+
};
|
|
8219
|
+
limit: {
|
|
8220
|
+
type: string;
|
|
8221
|
+
minimum: number;
|
|
8222
|
+
maximum: number;
|
|
8223
|
+
};
|
|
8224
|
+
offset: {
|
|
8225
|
+
type: string;
|
|
8226
|
+
minimum: number;
|
|
8227
|
+
};
|
|
8228
|
+
has_more: {
|
|
8229
|
+
type: string;
|
|
8230
|
+
};
|
|
8231
|
+
next_offset: {
|
|
8232
|
+
anyOf: ({
|
|
8233
|
+
type: string;
|
|
8234
|
+
minimum: number;
|
|
8235
|
+
} | {
|
|
8236
|
+
type: string;
|
|
8237
|
+
minimum?: undefined;
|
|
8238
|
+
})[];
|
|
8239
|
+
};
|
|
8240
|
+
};
|
|
8241
|
+
};
|
|
8242
|
+
};
|
|
8243
|
+
};
|
|
8244
|
+
};
|
|
8245
|
+
"426": {
|
|
8246
|
+
description: string;
|
|
8247
|
+
};
|
|
8248
|
+
};
|
|
8249
|
+
};
|
|
8250
|
+
};
|
|
8251
|
+
"/v1/activity": {
|
|
8252
|
+
get: {
|
|
8253
|
+
operationId: string;
|
|
8254
|
+
summary: string;
|
|
8255
|
+
parameters: {
|
|
8256
|
+
name: string;
|
|
8257
|
+
in: string;
|
|
8258
|
+
required: boolean;
|
|
8259
|
+
schema: {
|
|
8260
|
+
type: string;
|
|
8261
|
+
minimum: number;
|
|
8262
|
+
maximum: number;
|
|
8263
|
+
default: number;
|
|
8264
|
+
};
|
|
8265
|
+
}[];
|
|
8266
|
+
responses: {
|
|
8267
|
+
"200": {
|
|
8268
|
+
content: {
|
|
8269
|
+
"application/json": {
|
|
8270
|
+
schema: {
|
|
8271
|
+
type: string;
|
|
8272
|
+
required: string[];
|
|
8273
|
+
properties: {
|
|
8274
|
+
activity: {
|
|
8275
|
+
type: string;
|
|
8276
|
+
items: {
|
|
8277
|
+
type: string;
|
|
8278
|
+
};
|
|
8279
|
+
};
|
|
8280
|
+
count: {
|
|
8281
|
+
type: string;
|
|
8282
|
+
minimum: number;
|
|
8283
|
+
};
|
|
8284
|
+
limit: {
|
|
8285
|
+
type: string;
|
|
8286
|
+
minimum: number;
|
|
8287
|
+
maximum: number;
|
|
8288
|
+
};
|
|
8289
|
+
};
|
|
8290
|
+
};
|
|
8291
|
+
};
|
|
8292
|
+
};
|
|
8293
|
+
};
|
|
8294
|
+
};
|
|
8295
|
+
};
|
|
8296
|
+
};
|
|
8297
|
+
"/v1/dependencies": {
|
|
8298
|
+
get: {
|
|
8299
|
+
operationId: string;
|
|
8300
|
+
summary: string;
|
|
8301
|
+
description: string;
|
|
8302
|
+
parameters: ({
|
|
8303
|
+
name: string;
|
|
8304
|
+
in: string;
|
|
8305
|
+
required: boolean;
|
|
8306
|
+
description: string;
|
|
8307
|
+
schema: {
|
|
8308
|
+
type: string;
|
|
8309
|
+
minimum: number;
|
|
8310
|
+
maximum: number;
|
|
8311
|
+
default: number;
|
|
8312
|
+
};
|
|
8313
|
+
} | {
|
|
8314
|
+
name: string;
|
|
8315
|
+
in: string;
|
|
8316
|
+
required: boolean;
|
|
8317
|
+
description: string;
|
|
8318
|
+
schema: {
|
|
8319
|
+
type: string;
|
|
8320
|
+
minimum: number;
|
|
8321
|
+
default: number;
|
|
8322
|
+
maximum?: undefined;
|
|
8323
|
+
};
|
|
8324
|
+
})[];
|
|
8325
|
+
responses: {
|
|
8326
|
+
"200": {
|
|
8327
|
+
content: {
|
|
8328
|
+
"application/json": {
|
|
8329
|
+
schema: {
|
|
8330
|
+
$ref: string;
|
|
8331
|
+
};
|
|
8332
|
+
};
|
|
8333
|
+
};
|
|
8334
|
+
};
|
|
8335
|
+
"400": {
|
|
8336
|
+
content: {
|
|
8337
|
+
"application/json": {
|
|
8338
|
+
schema: {
|
|
8339
|
+
$ref: string;
|
|
8340
|
+
};
|
|
8341
|
+
};
|
|
8342
|
+
};
|
|
8343
|
+
};
|
|
8344
|
+
"426": {
|
|
8345
|
+
content: {
|
|
8346
|
+
"application/json": {
|
|
8347
|
+
schema: {
|
|
8348
|
+
$ref: string;
|
|
8349
|
+
};
|
|
8350
|
+
};
|
|
8351
|
+
};
|
|
8352
|
+
};
|
|
8353
|
+
"501": {
|
|
8354
|
+
content: {
|
|
8355
|
+
"application/json": {
|
|
8356
|
+
schema: {
|
|
8357
|
+
$ref: string;
|
|
8358
|
+
};
|
|
8359
|
+
};
|
|
8360
|
+
};
|
|
8361
|
+
};
|
|
8362
|
+
};
|
|
8363
|
+
};
|
|
8364
|
+
};
|
|
7578
8365
|
"/v1/task-lists": {
|
|
7579
8366
|
get: {
|
|
7580
8367
|
operationId: string;
|