@promptbook/types 0.82.0-2 → 0.82.0-3

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.
@@ -11,6 +11,7 @@ import { CLAIM } from '../config';
11
11
  import { LOGO_LIGHT_SRC } from '../config';
12
12
  import { LOGO_DARK_SRC } from '../config';
13
13
  import { DEFAULT_BOOK_TITLE } from '../config';
14
+ import { DEFAULT_TASK_TITLE } from '../config';
14
15
  import { MAX_FILENAME_LENGTH } from '../config';
15
16
  import { DEFAULT_INTERMEDIATE_FILES_STRATEGY } from '../config';
16
17
  import { DEFAULT_MAX_PARALLEL_COUNT } from '../config';
@@ -134,6 +135,7 @@ export { CLAIM };
134
135
  export { LOGO_LIGHT_SRC };
135
136
  export { LOGO_DARK_SRC };
136
137
  export { DEFAULT_BOOK_TITLE };
138
+ export { DEFAULT_TASK_TITLE };
137
139
  export { MAX_FILENAME_LENGTH };
138
140
  export { DEFAULT_INTERMEDIATE_FILES_STRATEGY };
139
141
  export { DEFAULT_MAX_PARALLEL_COUNT };
@@ -59,6 +59,12 @@ export declare const LOGO_DARK_SRC: string_url_image;
59
59
  * @public exported from `@promptbook/core`
60
60
  */
61
61
  export declare const DEFAULT_BOOK_TITLE = "\u2728 Untitled Book";
62
+ /**
63
+ * When the title of task is not provided, the default title is used
64
+ *
65
+ * @public exported from `@promptbook/core`
66
+ */
67
+ export declare const DEFAULT_TASK_TITLE = "Task";
62
68
  /**
63
69
  * Warning message for the generated sections and files files
64
70
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.82.0-2",
3
+ "version": "0.82.0-3",
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,
@@ -52,6 +52,6 @@
52
52
  ],
53
53
  "typings": "./esm/typings/src/_packages/types.index.d.ts",
54
54
  "peerDependencies": {
55
- "@promptbook/core": "0.82.0-2"
55
+ "@promptbook/core": "0.82.0-3"
56
56
  }
57
57
  }