@promptbook/legacy-documents 0.75.4 → 0.75.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.
@@ -34,11 +34,12 @@ import { stringifyPipelineJson } from '../conversion/utils/stringifyPipelineJson
34
34
  import { validatePipeline } from '../conversion/validation/validatePipeline';
35
35
  import { CallbackInterfaceTools } from '../dialogs/callback/CallbackInterfaceTools';
36
36
  import type { CallbackInterfaceToolsOptions } from '../dialogs/callback/CallbackInterfaceToolsOptions';
37
+ import { BoilerplateError } from '../errors/0-BoilerplateError';
38
+ import { ERRORS } from '../errors/0-index';
37
39
  import { AbstractFormatError } from '../errors/AbstractFormatError';
38
40
  import { CollectionError } from '../errors/CollectionError';
39
41
  import { EnvironmentMismatchError } from '../errors/EnvironmentMismatchError';
40
42
  import { ExpectError } from '../errors/ExpectError';
41
- import { ERRORS } from '../errors/index';
42
43
  import { KnowledgeScrapeError } from '../errors/KnowledgeScrapeError';
43
44
  import { LimitReachedError } from '../errors/LimitReachedError';
44
45
  import { MissingToolsError } from '../errors/MissingToolsError';
@@ -147,11 +148,12 @@ export { stringifyPipelineJson };
147
148
  export { validatePipeline };
148
149
  export { CallbackInterfaceTools };
149
150
  export type { CallbackInterfaceToolsOptions };
151
+ export { BoilerplateError };
152
+ export { ERRORS };
150
153
  export { AbstractFormatError };
151
154
  export { CollectionError };
152
155
  export { EnvironmentMismatchError };
153
156
  export { ExpectError };
154
- export { ERRORS };
155
157
  export { KnowledgeScrapeError };
156
158
  export { LimitReachedError };
157
159
  export { MissingToolsError };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This error indicates @@@
3
+ *
4
+ * @public exported from `@promptbook/core`
5
+ */
6
+ export declare class BoilerplateError extends Error {
7
+ readonly name = "BoilerplateError";
8
+ constructor(message: string);
9
+ }
10
+ /**
11
+ * TODO: @@@ Do not forget to add the error into `0-index.ts` ERRORS
12
+ */
@@ -1,7 +1,11 @@
1
+ import { CsvFormatError } from '../formats/csv/CsvFormatError';
2
+ import { AbstractFormatError } from './AbstractFormatError';
1
3
  import { CollectionError } from './CollectionError';
2
4
  import { EnvironmentMismatchError } from './EnvironmentMismatchError';
3
5
  import { ExpectError } from './ExpectError';
6
+ import { KnowledgeScrapeError } from './KnowledgeScrapeError';
4
7
  import { LimitReachedError } from './LimitReachedError';
8
+ import { MissingToolsError } from './MissingToolsError';
5
9
  import { NotFoundError } from './NotFoundError';
6
10
  import { NotYetImplementedError } from './NotYetImplementedError';
7
11
  import { ParseError } from './ParseError';
@@ -15,10 +19,14 @@ import { UnexpectedError } from './UnexpectedError';
15
19
  * @public exported from `@promptbook/core`
16
20
  */
17
21
  export declare const ERRORS: {
18
- readonly ExpectError: typeof ExpectError;
22
+ readonly AbstractFormatError: typeof AbstractFormatError;
23
+ readonly CsvFormatError: typeof CsvFormatError;
19
24
  readonly CollectionError: typeof CollectionError;
20
25
  readonly EnvironmentMismatchError: typeof EnvironmentMismatchError;
26
+ readonly ExpectError: typeof ExpectError;
27
+ readonly KnowledgeScrapeError: typeof KnowledgeScrapeError;
21
28
  readonly LimitReachedError: typeof LimitReachedError;
29
+ readonly MissingToolsError: typeof MissingToolsError;
22
30
  readonly NotFoundError: typeof NotFoundError;
23
31
  readonly NotYetImplementedError: typeof NotYetImplementedError;
24
32
  readonly ParseError: typeof ParseError;
@@ -29,4 +37,4 @@ export declare const ERRORS: {
29
37
  };
30
38
  /**
31
39
  * Note: [💞] Ignore a discrepancy between file name and entity name
32
- */
40
+ */
@@ -1,4 +1,4 @@
1
- import type { ERRORS } from '../index';
1
+ import type { ERRORS } from '../0-index';
2
2
  /**
3
3
  * Represents a serialized error or custom Promptbook error
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/legacy-documents",
3
- "version": "0.75.4",
3
+ "version": "0.75.5",
4
4
  "description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
5
5
  "--note-0": " <- [🐊]",
6
6
  "private": false,
@@ -54,7 +54,7 @@
54
54
  "module": "./esm/index.es.js",
55
55
  "typings": "./esm/typings/src/_packages/legacy-documents.index.d.ts",
56
56
  "peerDependencies": {
57
- "@promptbook/core": "0.75.4"
57
+ "@promptbook/core": "0.75.5"
58
58
  },
59
59
  "dependencies": {
60
60
  "colors": "1.4.0",
package/umd/index.umd.js CHANGED
@@ -23,7 +23,7 @@
23
23
  *
24
24
  * @see https://github.com/webgptorg/promptbook
25
25
  */
26
- var PROMPTBOOK_ENGINE_VERSION = '0.75.3';
26
+ var PROMPTBOOK_ENGINE_VERSION = '0.75.4';
27
27
  /**
28
28
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
29
29
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -2114,6 +2114,42 @@
2114
2114
  return PipelineExecutionError;
2115
2115
  }(Error));
2116
2116
 
2117
+ /**
2118
+ * This error indicates problems parsing the format value
2119
+ *
2120
+ * For example, when the format value is not a valid JSON or CSV
2121
+ * This is not thrown directly but in extended classes
2122
+ *
2123
+ * @public exported from `@promptbook/core`
2124
+ */
2125
+ var AbstractFormatError = /** @class */ (function (_super) {
2126
+ __extends(AbstractFormatError, _super);
2127
+ // Note: To allow instanceof do not put here error `name`
2128
+ // public readonly name = 'AbstractFormatError';
2129
+ function AbstractFormatError(message) {
2130
+ var _this = _super.call(this, message) || this;
2131
+ Object.setPrototypeOf(_this, AbstractFormatError.prototype);
2132
+ return _this;
2133
+ }
2134
+ return AbstractFormatError;
2135
+ }(Error));
2136
+
2137
+ /**
2138
+ * This error indicates problem with parsing of CSV
2139
+ *
2140
+ * @public exported from `@promptbook/core`
2141
+ */
2142
+ var CsvFormatError = /** @class */ (function (_super) {
2143
+ __extends(CsvFormatError, _super);
2144
+ function CsvFormatError(message) {
2145
+ var _this = _super.call(this, message) || this;
2146
+ _this.name = 'CsvFormatError';
2147
+ Object.setPrototypeOf(_this, CsvFormatError.prototype);
2148
+ return _this;
2149
+ }
2150
+ return CsvFormatError;
2151
+ }(AbstractFormatError));
2152
+
2117
2153
  /**
2118
2154
  * This error indicates that the pipeline collection cannot be propperly loaded
2119
2155
  *
@@ -2187,10 +2223,14 @@
2187
2223
  * @public exported from `@promptbook/core`
2188
2224
  */
2189
2225
  var ERRORS = {
2190
- ExpectError: ExpectError,
2226
+ AbstractFormatError: AbstractFormatError,
2227
+ CsvFormatError: CsvFormatError,
2191
2228
  CollectionError: CollectionError,
2192
2229
  EnvironmentMismatchError: EnvironmentMismatchError,
2230
+ ExpectError: ExpectError,
2231
+ KnowledgeScrapeError: KnowledgeScrapeError,
2193
2232
  LimitReachedError: LimitReachedError,
2233
+ MissingToolsError: MissingToolsError,
2194
2234
  NotFoundError: NotFoundError,
2195
2235
  NotYetImplementedError: NotYetImplementedError,
2196
2236
  ParseError: ParseError,
@@ -3964,42 +4004,6 @@
3964
4004
  return union;
3965
4005
  }
3966
4006
 
3967
- /**
3968
- * This error indicates problems parsing the format value
3969
- *
3970
- * For example, when the format value is not a valid JSON or CSV
3971
- * This is not thrown directly but in extended classes
3972
- *
3973
- * @public exported from `@promptbook/core`
3974
- */
3975
- var AbstractFormatError = /** @class */ (function (_super) {
3976
- __extends(AbstractFormatError, _super);
3977
- // Note: To allow instanceof do not put here error `name`
3978
- // public readonly name = 'AbstractFormatError';
3979
- function AbstractFormatError(message) {
3980
- var _this = _super.call(this, message) || this;
3981
- Object.setPrototypeOf(_this, AbstractFormatError.prototype);
3982
- return _this;
3983
- }
3984
- return AbstractFormatError;
3985
- }(Error));
3986
-
3987
- /**
3988
- * This error indicates problem with parsing of CSV
3989
- *
3990
- * @public exported from `@promptbook/core`
3991
- */
3992
- var CsvFormatError = /** @class */ (function (_super) {
3993
- __extends(CsvFormatError, _super);
3994
- function CsvFormatError(message) {
3995
- var _this = _super.call(this, message) || this;
3996
- _this.name = 'CsvFormatError';
3997
- Object.setPrototypeOf(_this, CsvFormatError.prototype);
3998
- return _this;
3999
- }
4000
- return CsvFormatError;
4001
- }(AbstractFormatError));
4002
-
4003
4007
  /**
4004
4008
  * @@@
4005
4009
  *
@@ -4040,7 +4044,7 @@
4040
4044
  case 0:
4041
4045
  csv = papaparse.parse(value, __assign(__assign({}, settings), MANDATORY_CSV_SETTINGS));
4042
4046
  if (csv.errors.length !== 0) {
4043
- throw new CsvFormatError(spaceTrim__default["default"](function (block) { return "\n CSV parsing error\n\n ".concat(block(csv.errors.map(function (error) { return error.message; }).join('\n\n')), "\n "); }));
4047
+ throw new CsvFormatError(spaceTrim__default["default"](function (block) { return "\n CSV parsing error\n\n Error(s) from CSV parsing:\n ".concat(block(csv.errors.map(function (error) { return error.message; }).join('\n\n')), "\n\n The CSV data:\n ").concat(block(value), "\n "); }));
4044
4048
  }
4045
4049
  return [4 /*yield*/, Promise.all(csv.data.map(function (row, index) { return __awaiter(_this, void 0, void 0, function () {
4046
4050
  var _a, _b;
@@ -4078,7 +4082,7 @@
4078
4082
  case 0:
4079
4083
  csv = papaparse.parse(value, __assign(__assign({}, settings), MANDATORY_CSV_SETTINGS));
4080
4084
  if (csv.errors.length !== 0) {
4081
- throw new CsvFormatError(spaceTrim__default["default"](function (block) { return "\n CSV parsing error\n\n ".concat(block(csv.errors.map(function (error) { return error.message; }).join('\n\n')), "\n "); }));
4085
+ throw new CsvFormatError(spaceTrim__default["default"](function (block) { return "\n CSV parsing error\n\n Error(s) from CSV parsing:\n ".concat(block(csv.errors.map(function (error) { return error.message; }).join('\n\n')), "\n\n The CSV data:\n ").concat(block(value), "\n "); }));
4082
4086
  }
4083
4087
  return [4 /*yield*/, Promise.all(csv.data.map(function (row, rowIndex) { return __awaiter(_this, void 0, void 0, function () {
4084
4088
  var _this = this;