@promptbook/node 0.69.0-6 → 0.69.0-8

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.
@@ -1,30 +0,0 @@
1
- import type { ReadonlyDeep } from 'type-fest';
2
- import type { PipelineJson } from '../../types/PipelineJson/PipelineJson';
3
- import type { TemplateJson } from '../../types/PipelineJson/TemplateJson';
4
- import type { TODO_any } from '../../utils/organization/TODO_any';
5
- /**
6
- * @@@
7
- *
8
- * @private internal type of `executeFormatCell`
9
- */
10
- type ExecuteFormatCellOptions = {
11
- /**
12
- * @@@
13
- */
14
- readonly preparedPipeline: ReadonlyDeep<PipelineJson>;
15
- /**
16
- * @@@
17
- */
18
- readonly template: ReadonlyDeep<TemplateJson>;
19
- /**
20
- * @@@
21
- */
22
- readonly pipelineIdentification: string;
23
- };
24
- /**
25
- * @@@
26
- *
27
- * @private internal utility of `createPipelineExecutor`
28
- */
29
- export declare function executeFormatCell(options: ExecuteFormatCellOptions): Promise<TODO_any>;
30
- export {};
@@ -1,30 +0,0 @@
1
- import type { ReadonlyDeep } from 'type-fest';
2
- import type { PipelineJson } from '../../types/PipelineJson/PipelineJson';
3
- import type { TemplateJson } from '../../types/PipelineJson/TemplateJson';
4
- import type { TODO_any } from '../../utils/organization/TODO_any';
5
- /**
6
- * @@@
7
- *
8
- * @private internal type of `executeAttempt`
9
- */
10
- type ExecuteAttemptOptions = {
11
- /**
12
- * @@@
13
- */
14
- readonly preparedPipeline: ReadonlyDeep<PipelineJson>;
15
- /**
16
- * @@@
17
- */
18
- readonly template: ReadonlyDeep<TemplateJson>;
19
- /**
20
- * @@@
21
- */
22
- readonly pipelineIdentification: string;
23
- };
24
- /**
25
- * @@@
26
- *
27
- * @private internal utility of `createPipelineExecutor`
28
- */
29
- export declare function executeAttempt(options: ExecuteAttemptOptions): Promise<TODO_any>;
30
- export {};