@promptbook/remote-server 0.68.0 → 0.70.0-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/esm/index.es.js CHANGED
@@ -7,7 +7,7 @@ import spaceTrim$1, { spaceTrim } from 'spacetrim';
7
7
  /**
8
8
  * The version of the Promptbook library
9
9
  */
10
- var PROMPTBOOK_VERSION = '0.68.0-5';
10
+ var PROMPTBOOK_VERSION = '0.69.0-0';
11
11
  // TODO: !!!! List here all the versions and annotate + put into script
12
12
 
13
13
  /*! *****************************************************************************
@@ -1,9 +1,14 @@
1
+ import type { string_parameter_name } from '../../types/typeAliases';
2
+ import type { TODO_string } from '../../utils/organization/TODO_string';
1
3
  /**
2
- * Parsed FOREACH command <- Write [🍭]
4
+ * Parsed FOREACH command <- Write [🍭] !!!!!!
3
5
  *
4
6
  * @see ./foreachCommandParser.ts for more details
5
7
  * @private within the commands folder
6
8
  */
7
9
  export type ForeachCommand = {
8
10
  readonly type: 'FOREACH';
11
+ formatName: TODO_string;
12
+ cellName: TODO_string;
13
+ parameterName: string_parameter_name;
9
14
  };
@@ -10,5 +10,6 @@ import type { ForeachCommand } from './ForeachCommand';
10
10
  */
11
11
  export declare const foreachCommandParser: PipelineTemplateCommandParser<ForeachCommand>;
12
12
  /**
13
- * TODO: [🍭] Make .ptbk.md file with examples of the FOREACH command and also with wrong parsing and logic
13
+ * TODO: !!!!!! Comment console logs
14
+ * TODO: [🍭] !!!!!! Make .ptbk.md file with examples of the FOREACH command and also with wrong parsing and logic
14
15
  */
@@ -147,24 +147,39 @@ export type $PipelineJson = WritableDeep<PipelineJson>;
147
147
  export type CommandParserInput = {
148
148
  /**
149
149
  * @@@
150
+ *
151
+ * @example 'PIPELINE_HEAD'
152
+ * @example 'PIPELINE_TEMPLATE'
150
153
  */
151
154
  readonly usagePlace: CommandUsagePlace;
152
155
  /**
153
156
  * @@@
157
+ *
158
+ * @example 'promptbook version 0.62.0'
159
+ * @example 'FOREACH List Line -> `{customer}`'
154
160
  */
155
161
  readonly raw: string_markdown_text;
156
162
  /**
157
163
  * @@@
164
+ *
165
+ * @example '0.62.0'
166
+ * @example 'List Line -> `{customer}`'
158
167
  */
159
168
  readonly rawArgs: string_markdown_text;
160
169
  /**
161
170
  * @@@
171
+ *
172
+ * @example 'PROMPTBOOK_VERSION_0_62_0'
173
+ * @example 'FOREACH_LIST_LINE_CUSTOMER'
162
174
  */
163
175
  readonly normalized: string_name & string_SCREAMING_CASE;
164
176
  /**
165
177
  * @@@
178
+ *
179
+ * @example [ '0.62.0' ]
180
+ * @example [ 'List', 'Line', '', '{customer}' ]
166
181
  */
167
- readonly args: Array<string_name & string_SCREAMING_CASE>;
182
+ readonly args: Array<string_name>;
168
183
  };
169
184
  /**
170
185
  * TODO: [♓️] Add order here
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/remote-server",
3
- "version": "0.68.0",
3
+ "version": "0.70.0-0",
4
4
  "description": "Supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -47,7 +47,7 @@
47
47
  "module": "./esm/index.es.js",
48
48
  "typings": "./esm/typings/src/_packages/remote-server.index.d.ts",
49
49
  "peerDependencies": {
50
- "@promptbook/core": "0.68.0"
50
+ "@promptbook/core": "0.70.0-0"
51
51
  },
52
52
  "dependencies": {
53
53
  "colors": "1.4.0",
package/umd/index.umd.js CHANGED
@@ -14,7 +14,7 @@
14
14
  /**
15
15
  * The version of the Promptbook library
16
16
  */
17
- var PROMPTBOOK_VERSION = '0.68.0-5';
17
+ var PROMPTBOOK_VERSION = '0.69.0-0';
18
18
  // TODO: !!!! List here all the versions and annotate + put into script
19
19
 
20
20
  /*! *****************************************************************************