@didim365/agent-cli-core 0.3.4 → 0.3.5
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/src/ide/types.d.ts +8 -8
- package/package.json +1 -1
package/dist/src/ide/types.d.ts
CHANGED
|
@@ -310,6 +310,7 @@ export declare const IdeContextNotificationSchema: z.ZodObject<{
|
|
|
310
310
|
} | undefined;
|
|
311
311
|
}>;
|
|
312
312
|
}, "strip", z.ZodTypeAny, {
|
|
313
|
+
method: "ide/contextUpdate";
|
|
313
314
|
params: {
|
|
314
315
|
workspaceState?: {
|
|
315
316
|
openFiles?: {
|
|
@@ -326,8 +327,8 @@ export declare const IdeContextNotificationSchema: z.ZodObject<{
|
|
|
326
327
|
} | undefined;
|
|
327
328
|
};
|
|
328
329
|
jsonrpc: "2.0";
|
|
329
|
-
method: "ide/contextUpdate";
|
|
330
330
|
}, {
|
|
331
|
+
method: "ide/contextUpdate";
|
|
331
332
|
params: {
|
|
332
333
|
workspaceState?: {
|
|
333
334
|
openFiles?: {
|
|
@@ -344,7 +345,6 @@ export declare const IdeContextNotificationSchema: z.ZodObject<{
|
|
|
344
345
|
} | undefined;
|
|
345
346
|
};
|
|
346
347
|
jsonrpc: "2.0";
|
|
347
|
-
method: "ide/contextUpdate";
|
|
348
348
|
}>;
|
|
349
349
|
/**
|
|
350
350
|
* A notification that a diff has been accepted in the IDE.
|
|
@@ -369,19 +369,19 @@ export declare const IdeDiffAcceptedNotificationSchema: z.ZodObject<{
|
|
|
369
369
|
content: string;
|
|
370
370
|
}>;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
+
method: "ide/diffAccepted";
|
|
372
373
|
params: {
|
|
373
374
|
filePath: string;
|
|
374
375
|
content: string;
|
|
375
376
|
};
|
|
376
377
|
jsonrpc: "2.0";
|
|
377
|
-
method: "ide/diffAccepted";
|
|
378
378
|
}, {
|
|
379
|
+
method: "ide/diffAccepted";
|
|
379
380
|
params: {
|
|
380
381
|
filePath: string;
|
|
381
382
|
content: string;
|
|
382
383
|
};
|
|
383
384
|
jsonrpc: "2.0";
|
|
384
|
-
method: "ide/diffAccepted";
|
|
385
385
|
}>;
|
|
386
386
|
/**
|
|
387
387
|
* A notification that a diff has been rejected in the IDE.
|
|
@@ -400,17 +400,17 @@ export declare const IdeDiffRejectedNotificationSchema: z.ZodObject<{
|
|
|
400
400
|
filePath: string;
|
|
401
401
|
}>;
|
|
402
402
|
}, "strip", z.ZodTypeAny, {
|
|
403
|
+
method: "ide/diffRejected";
|
|
403
404
|
params: {
|
|
404
405
|
filePath: string;
|
|
405
406
|
};
|
|
406
407
|
jsonrpc: "2.0";
|
|
407
|
-
method: "ide/diffRejected";
|
|
408
408
|
}, {
|
|
409
|
+
method: "ide/diffRejected";
|
|
409
410
|
params: {
|
|
410
411
|
filePath: string;
|
|
411
412
|
};
|
|
412
413
|
jsonrpc: "2.0";
|
|
413
|
-
method: "ide/diffRejected";
|
|
414
414
|
}>;
|
|
415
415
|
/**
|
|
416
416
|
* This is defined for backwards compatibility only. Newer extension versions
|
|
@@ -432,19 +432,19 @@ export declare const IdeDiffClosedNotificationSchema: z.ZodObject<{
|
|
|
432
432
|
content?: string | undefined;
|
|
433
433
|
}>;
|
|
434
434
|
}, "strip", z.ZodTypeAny, {
|
|
435
|
+
method: "ide/diffClosed";
|
|
435
436
|
params: {
|
|
436
437
|
filePath: string;
|
|
437
438
|
content?: string | undefined;
|
|
438
439
|
};
|
|
439
440
|
jsonrpc: "2.0";
|
|
440
|
-
method: "ide/diffClosed";
|
|
441
441
|
}, {
|
|
442
|
+
method: "ide/diffClosed";
|
|
442
443
|
params: {
|
|
443
444
|
filePath: string;
|
|
444
445
|
content?: string | undefined;
|
|
445
446
|
};
|
|
446
447
|
jsonrpc: "2.0";
|
|
447
|
-
method: "ide/diffClosed";
|
|
448
448
|
}>;
|
|
449
449
|
/**
|
|
450
450
|
* The request to open a diff view in the IDE.
|