@promptbook/javascript 0.112.0-36 → 0.112.0-39

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.
Files changed (122) hide show
  1. package/README.md +10 -6
  2. package/esm/index.es.js +1 -1
  3. package/esm/src/_packages/components.index.d.ts +2 -0
  4. package/esm/src/_packages/types.index.d.ts +48 -46
  5. package/esm/src/book-components/Chat/Chat/ChatActionsBar.d.ts +7 -0
  6. package/esm/src/book-components/Chat/Chat/ChatActionsBar.test.d.ts +2 -0
  7. package/esm/src/book-components/Chat/Chat/ChatInputArea.d.ts +4 -0
  8. package/esm/src/book-components/Chat/Chat/ChatMessageItem.d.ts +8 -0
  9. package/esm/src/book-components/Chat/Chat/ChatMessageList.d.ts +2 -0
  10. package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +50 -1
  11. package/esm/src/book-components/Chat/Chat/ChatReplyPreview.d.ts +19 -0
  12. package/esm/src/book-components/Chat/Chat/createProgressCardChecklistMarkdown.d.ts +2 -2
  13. package/esm/src/book-components/Chat/MockedChat/MockedChat.d.ts +1 -1
  14. package/esm/src/book-components/Chat/types/ChatMessage.d.ts +35 -0
  15. package/esm/src/book-components/Chat/utils/resolveChatMessageReplyPreviewText.d.ts +25 -0
  16. package/esm/src/book-components/Chat/utils/resolveChatMessageReplySenderLabel.d.ts +12 -0
  17. package/esm/src/cli/cli-commands/coder/agentCodingFile.d.ts +14 -0
  18. package/esm/src/cli/cli-commands/coder/agentsFile.d.ts +12 -0
  19. package/esm/src/cli/cli-commands/coder/appendBlock.d.ts +6 -0
  20. package/esm/src/cli/cli-commands/coder/boilerplateTemplates.d.ts +10 -0
  21. package/esm/src/cli/cli-commands/coder/ensureCoderEnvFile.d.ts +15 -0
  22. package/esm/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +7 -0
  23. package/esm/src/cli/cli-commands/coder/ensureCoderMarkdownFile.d.ts +7 -0
  24. package/esm/src/cli/cli-commands/coder/ensureCoderPackageJsonFile.d.ts +7 -0
  25. package/esm/src/cli/cli-commands/coder/ensureCoderVscodeSettingsFile.d.ts +7 -0
  26. package/esm/src/cli/cli-commands/coder/ensureDirectory.d.ts +7 -0
  27. package/esm/src/cli/cli-commands/coder/find-refactor-candidates.d.ts +1 -1
  28. package/esm/src/cli/cli-commands/coder/find-refactor-candidates.test.d.ts +1 -0
  29. package/esm/src/cli/cli-commands/coder/formatDisplayPath.d.ts +6 -0
  30. package/esm/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.d.ts +6 -0
  31. package/esm/src/cli/cli-commands/coder/getDefaultCoderVscodeSettings.d.ts +6 -0
  32. package/esm/src/cli/cli-commands/coder/init.d.ts +3 -38
  33. package/esm/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +25 -0
  34. package/esm/src/cli/cli-commands/coder/mergeStringRecordJsonFile.d.ts +18 -0
  35. package/esm/src/cli/cli-commands/coder/printInitializationSummary.d.ts +7 -0
  36. package/esm/src/cli/cli-commands/coder/readTextFileIfExists.d.ts +6 -0
  37. package/esm/src/types/string_agent_url.d.ts +7 -0
  38. package/esm/src/types/string_agent_url_private.d.ts +9 -0
  39. package/esm/src/types/string_base64.d.ts +13 -0
  40. package/esm/src/types/string_base64_private.d.ts +2 -2
  41. package/esm/src/types/string_base_url.d.ts +7 -0
  42. package/esm/src/types/string_base_url_private.d.ts +9 -0
  43. package/esm/src/types/string_email.d.ts +13 -0
  44. package/esm/src/types/string_email_private.d.ts +2 -2
  45. package/esm/src/types/string_host.d.ts +42 -0
  46. package/esm/src/types/string_host_private.d.ts +7 -7
  47. package/esm/src/types/string_href.d.ts +19 -0
  48. package/esm/src/types/string_href_private.d.ts +24 -0
  49. package/esm/src/types/string_mime_type.d.ts +15 -0
  50. package/esm/src/types/string_mime_type_private.d.ts +2 -2
  51. package/esm/src/types/string_pipeline_root_url.d.ts +7 -0
  52. package/esm/src/types/string_pipeline_root_url_private.d.ts +9 -0
  53. package/esm/src/types/string_pipeline_url.d.ts +13 -0
  54. package/esm/src/types/string_pipeline_url_private.d.ts +17 -0
  55. package/esm/src/types/string_promptbook_server_url.d.ts +7 -0
  56. package/esm/src/types/string_promptbook_server_url_private.d.ts +9 -0
  57. package/esm/src/types/string_url.d.ts +14 -141
  58. package/esm/src/types/string_url_image.d.ts +7 -0
  59. package/esm/src/types/string_url_image_private.d.ts +9 -0
  60. package/esm/src/types/string_url_private.d.ts +0 -80
  61. package/esm/src/version.d.ts +1 -1
  62. package/package.json +2 -2
  63. package/umd/index.umd.js +1 -1
  64. package/umd/src/_packages/components.index.d.ts +2 -0
  65. package/umd/src/_packages/types.index.d.ts +48 -46
  66. package/umd/src/book-components/Chat/Chat/ChatActionsBar.d.ts +7 -0
  67. package/umd/src/book-components/Chat/Chat/ChatActionsBar.test.d.ts +2 -0
  68. package/umd/src/book-components/Chat/Chat/ChatInputArea.d.ts +4 -0
  69. package/umd/src/book-components/Chat/Chat/ChatMessageItem.d.ts +8 -0
  70. package/umd/src/book-components/Chat/Chat/ChatMessageList.d.ts +2 -0
  71. package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +50 -1
  72. package/umd/src/book-components/Chat/Chat/ChatReplyPreview.d.ts +19 -0
  73. package/umd/src/book-components/Chat/Chat/createProgressCardChecklistMarkdown.d.ts +2 -2
  74. package/umd/src/book-components/Chat/MockedChat/MockedChat.d.ts +1 -1
  75. package/umd/src/book-components/Chat/types/ChatMessage.d.ts +35 -0
  76. package/umd/src/book-components/Chat/utils/resolveChatMessageReplyPreviewText.d.ts +25 -0
  77. package/umd/src/book-components/Chat/utils/resolveChatMessageReplySenderLabel.d.ts +12 -0
  78. package/umd/src/cli/cli-commands/coder/agentCodingFile.d.ts +14 -0
  79. package/umd/src/cli/cli-commands/coder/agentsFile.d.ts +12 -0
  80. package/umd/src/cli/cli-commands/coder/appendBlock.d.ts +6 -0
  81. package/umd/src/cli/cli-commands/coder/boilerplateTemplates.d.ts +10 -0
  82. package/umd/src/cli/cli-commands/coder/ensureCoderEnvFile.d.ts +15 -0
  83. package/umd/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +7 -0
  84. package/umd/src/cli/cli-commands/coder/ensureCoderMarkdownFile.d.ts +7 -0
  85. package/umd/src/cli/cli-commands/coder/ensureCoderPackageJsonFile.d.ts +7 -0
  86. package/umd/src/cli/cli-commands/coder/ensureCoderVscodeSettingsFile.d.ts +7 -0
  87. package/umd/src/cli/cli-commands/coder/ensureDirectory.d.ts +7 -0
  88. package/umd/src/cli/cli-commands/coder/find-refactor-candidates.d.ts +1 -1
  89. package/umd/src/cli/cli-commands/coder/find-refactor-candidates.test.d.ts +1 -0
  90. package/umd/src/cli/cli-commands/coder/formatDisplayPath.d.ts +6 -0
  91. package/umd/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.d.ts +6 -0
  92. package/umd/src/cli/cli-commands/coder/getDefaultCoderVscodeSettings.d.ts +6 -0
  93. package/umd/src/cli/cli-commands/coder/init.d.ts +3 -38
  94. package/umd/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +25 -0
  95. package/umd/src/cli/cli-commands/coder/mergeStringRecordJsonFile.d.ts +18 -0
  96. package/umd/src/cli/cli-commands/coder/printInitializationSummary.d.ts +7 -0
  97. package/umd/src/cli/cli-commands/coder/readTextFileIfExists.d.ts +6 -0
  98. package/umd/src/types/string_agent_url.d.ts +7 -0
  99. package/umd/src/types/string_agent_url_private.d.ts +9 -0
  100. package/umd/src/types/string_base64.d.ts +13 -0
  101. package/umd/src/types/string_base64_private.d.ts +2 -2
  102. package/umd/src/types/string_base_url.d.ts +7 -0
  103. package/umd/src/types/string_base_url_private.d.ts +9 -0
  104. package/umd/src/types/string_email.d.ts +13 -0
  105. package/umd/src/types/string_email_private.d.ts +2 -2
  106. package/umd/src/types/string_host.d.ts +42 -0
  107. package/umd/src/types/string_host_private.d.ts +7 -7
  108. package/umd/src/types/string_href.d.ts +19 -0
  109. package/umd/src/types/string_href_private.d.ts +24 -0
  110. package/umd/src/types/string_mime_type.d.ts +15 -0
  111. package/umd/src/types/string_mime_type_private.d.ts +2 -2
  112. package/umd/src/types/string_pipeline_root_url.d.ts +7 -0
  113. package/umd/src/types/string_pipeline_root_url_private.d.ts +9 -0
  114. package/umd/src/types/string_pipeline_url.d.ts +13 -0
  115. package/umd/src/types/string_pipeline_url_private.d.ts +17 -0
  116. package/umd/src/types/string_promptbook_server_url.d.ts +7 -0
  117. package/umd/src/types/string_promptbook_server_url_private.d.ts +9 -0
  118. package/umd/src/types/string_url.d.ts +14 -141
  119. package/umd/src/types/string_url_image.d.ts +7 -0
  120. package/umd/src/types/string_url_image_private.d.ts +9 -0
  121. package/umd/src/types/string_url_private.d.ts +0 -80
  122. package/umd/src/version.d.ts +1 -1
@@ -0,0 +1,15 @@
1
+ import type { string_mime_type_private, string_mime_type_with_wildcard_private } from './string_mime_type_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"text/plain"` or `"application/collboard"`
6
+ */
7
+ export type string_mime_type = string_mime_type_private;
8
+ /**
9
+ * Semantic helper
10
+ *
11
+ * For example `"text/*"` or `"image/*"`
12
+ *
13
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#unique_file_type_specifiers
14
+ */
15
+ export type string_mime_type_with_wildcard = string_mime_type_with_wildcard_private;
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * For example `"text/plain"` or `"application/collboard"`
5
5
  *
6
- * @private internal utility of `string_url.ts`
6
+ * @private internal utility of `string_mime_type.ts`
7
7
  */
8
8
  export type string_mime_type_private = string;
9
9
  /**
@@ -13,6 +13,6 @@ export type string_mime_type_private = string;
13
13
  *
14
14
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#unique_file_type_specifiers
15
15
  *
16
- * @private internal utility of `string_url.ts`
16
+ * @private internal utility of `string_mime_type.ts`
17
17
  */
18
18
  export type string_mime_type_with_wildcard_private = string;
@@ -0,0 +1,7 @@
1
+ import type { string_pipeline_root_url_private } from './string_pipeline_root_url_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://promptbook.studio/webgpt/"`
6
+ */
7
+ export type string_pipeline_root_url = string_pipeline_root_url_private;
@@ -0,0 +1,9 @@
1
+ import type { string_url_private } from './string_url_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://promptbook.studio/webgpt/"`
6
+ *
7
+ * @private internal utility of `string_pipeline_root_url.ts`
8
+ */
9
+ export type string_pipeline_root_url_private = string_url_private;
@@ -0,0 +1,13 @@
1
+ import type { string_pipeline_url_private, string_pipeline_url_with_task_hash_private } from './string_pipeline_url_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book"`
6
+ */
7
+ export type string_pipeline_url = string_pipeline_url_private;
8
+ /**
9
+ * Semantic helper
10
+ *
11
+ * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book#keywords"`
12
+ */
13
+ export type string_pipeline_url_with_task_hash = string_pipeline_url_with_task_hash_private;
@@ -0,0 +1,17 @@
1
+ import type { string_url_private } from './string_url_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book"`
6
+ *
7
+ * @private internal utility of `string_pipeline_url.ts`
8
+ */
9
+ export type string_pipeline_url_private = string_url_private;
10
+ /**
11
+ * Semantic helper
12
+ *
13
+ * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book#keywords"`
14
+ *
15
+ * @private internal utility of `string_pipeline_url.ts`
16
+ */
17
+ export type string_pipeline_url_with_task_hash_private = string_pipeline_url_private;
@@ -0,0 +1,7 @@
1
+ import type { string_promptbook_server_url_private } from './string_promptbook_server_url_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://s1.ptbk.io/promptbook"`
6
+ */
7
+ export type string_promptbook_server_url = string_promptbook_server_url_private;
@@ -0,0 +1,9 @@
1
+ import type { string_url_private } from './string_url_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://s1.ptbk.io/promptbook"`
6
+ *
7
+ * @private internal utility of `string_promptbook_server_url.ts`
8
+ */
9
+ export type string_promptbook_server_url_private = string_url_private;
@@ -1,150 +1,23 @@
1
- import type { string_base64_private, string_data_url_private } from './string_base64_private';
2
- import type { string_domain_private, string_host_private, string_hostname_private, string_ip_address_private, string_origin_private, string_protocol_private, string_tdl_private } from './string_host_private';
3
- import type { string_email_private, string_emails_private } from './string_email_private';
4
- import type { string_mime_type_private, string_mime_type_with_wildcard_private } from './string_mime_type_private';
5
- import type { string_agent_url_private, string_base_url_private, string_href_private, string_pipeline_root_url_private, string_pipeline_url_private, string_pipeline_url_with_task_hash_private, string_promptbook_server_url_private, string_uri_part_private, string_uri_private, string_url_image_private, string_url_private } from './string_url_private';
1
+ import type { string_url_private } from './string_url_private';
6
2
  /**
7
- * Semantic helper
8
- *
9
- * For example `"text/plain"` or `"application/collboard"`
10
- */
11
- export type string_mime_type = string_mime_type_private;
12
- /**
13
- * Semantic helper
14
- *
15
- * For example `"text/*"` or `"image/*"`
3
+ * Compatibility facade for semantic URL-related type aliases.
16
4
  *
17
- * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#unique_file_type_specifiers
5
+ * The concrete type declarations live in focused modules under `src/types`.
18
6
  */
19
- export type string_mime_type_with_wildcard = string_mime_type_with_wildcard_private;
20
- /**
21
- * Semantic helper
22
- *
23
- * For example `"SGVsbG8sIFdvcmxkIQ=="`
24
- */
25
- export type string_base64 = string_base64_private;
26
- /**
27
- * Semantic helper
28
- *
29
- * For example `"data:text/plain;base64,SGVsbG8sIFdvcmxkIQ=="`
30
- */
31
- export type string_data_url = string_data_url_private;
32
- /**
33
- * Semantic helper
34
- *
35
- * For example `"towns.cz"`
36
- */
37
- export type string_domain = string_domain_private;
38
- /**
39
- * Semantic helper
40
- *
41
- * For example `"https://*.pavolhejny.com/*"`
42
- */
43
- export type string_origin = string_origin_private;
44
- /**
45
- * Semantic helper
46
- *
47
- * For example `"com"`
48
- */
49
- export type string_tdl = string_tdl_private;
50
- /**
51
- * Semantic helper
52
- *
53
- * For example `"localhost"` or `"collboard.com"`
54
- */
55
- export type string_hostname = string_hostname_private;
56
- /**
57
- * Semantic helper
58
- *
59
- * For example `"localhost:9977"` or `"collboard.com"`
60
- */
61
- export type string_host = string_host_private;
62
- /**
63
- * Semantic helper
64
- */
65
- export type string_protocol = string_protocol_private;
66
- /**
67
- * Semantic helper
68
- *
69
- * For example `"192.168.1.1"` (IPv4)
70
- * For example `"2001:0db8:85a3:0000:0000:8a2e:0370:7334"` (IPv6)
71
- */
72
- export type string_ip_address = string_ip_address_private;
7
+ export type { string_mime_type, string_mime_type_with_wildcard } from './string_mime_type';
8
+ export type { string_base64, string_data_url } from './string_base64';
9
+ export type { string_domain, string_host, string_hostname, string_ip_address, string_origin, string_protocol, string_tdl, } from './string_host';
10
+ export type { string_href, string_uri, string_uri_part } from './string_href';
11
+ export type { string_email, string_emails } from './string_email';
12
+ export type { string_promptbook_server_url } from './string_promptbook_server_url';
13
+ export type { string_base_url } from './string_base_url';
14
+ export type { string_pipeline_root_url } from './string_pipeline_root_url';
15
+ export type { string_agent_url } from './string_agent_url';
16
+ export type { string_pipeline_url, string_pipeline_url_with_task_hash } from './string_pipeline_url';
17
+ export type { string_url_image } from './string_url_image';
73
18
  /**
74
19
  * Semantic helper
75
20
  *
76
21
  * For example `"https://collboard.com/9SeSQTupmQHwuSrLi"`
77
22
  */
78
23
  export type string_url = string_url_private;
79
- /**
80
- * Semantic helper
81
- *
82
- * For example `"https://s1.ptbk.io/promptbook"`
83
- */
84
- export type string_promptbook_server_url = string_promptbook_server_url_private;
85
- /**
86
- * Semantic helper
87
- *
88
- * For example `"https://collboard.com"`
89
- */
90
- export type string_base_url = string_base_url_private;
91
- /**
92
- * Semantic helper
93
- *
94
- * For example `"https://promptbook.studio/webgpt/"`
95
- */
96
- export type string_pipeline_root_url = string_pipeline_root_url_private;
97
- /**
98
- * Semantic helper
99
- *
100
- * For example `"https://s6.ptbk.io/agents/agent-007"`
101
- */
102
- export type string_agent_url = string_agent_url_private;
103
- /**
104
- * Semantic helper
105
- *
106
- * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book"`
107
- */
108
- export type string_pipeline_url = string_pipeline_url_private;
109
- /**
110
- * Semantic helper
111
- *
112
- * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book#keywords"`
113
- */
114
- export type string_pipeline_url_with_task_hash = string_pipeline_url_with_task_hash_private;
115
- /**
116
- * Semantic helper
117
- *
118
- * For example `"https://collboard.com/9SeSQTupmQHwuSrLi"` OR `/9SeSQTupmQHwuSrLi`
119
- */
120
- export type string_href = string_href_private;
121
- /**
122
- * Semantic helper
123
- *
124
- * For example `"https://collboard.com/9SeSQTupmQHwuSrLi.png?width=1200&height=630"`
125
- */
126
- export type string_url_image = string_url_image_private;
127
- /**
128
- * Semantic helper
129
- *
130
- * For example `"/9SeSQTupmQHwuSrLi"`
131
- */
132
- export type string_uri = string_uri_private;
133
- /**
134
- * Semantic helper
135
- *
136
- * For example `"9SeSQTupmQHwuSrLi"`
137
- */
138
- export type string_uri_part = string_uri_part_private;
139
- /**
140
- * Semantic helper
141
- *
142
- * For example `"pavol@hejny.org"`
143
- */
144
- export type string_email = string_email_private;
145
- /**
146
- * Semantic helper
147
- *
148
- * For example `"pavol@hejny.org, jirka@webgpt.cz"`
149
- */
150
- export type string_emails = string_emails_private;
@@ -0,0 +1,7 @@
1
+ import type { string_url_image_private } from './string_url_image_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://collboard.com/9SeSQTupmQHwuSrLi.png?width=1200&height=630"`
6
+ */
7
+ export type string_url_image = string_url_image_private;
@@ -0,0 +1,9 @@
1
+ import type { string_url_private } from './string_url_private';
2
+ /**
3
+ * Semantic helper
4
+ *
5
+ * For example `"https://collboard.com/9SeSQTupmQHwuSrLi.png?width=1200&height=630"`
6
+ *
7
+ * @private internal utility of `string_url_image.ts`
8
+ */
9
+ export type string_url_image_private = string_url_private;
@@ -6,83 +6,3 @@
6
6
  * @private internal utility of `string_url.ts`
7
7
  */
8
8
  export type string_url_private = string;
9
- /**
10
- * Semantic helper
11
- *
12
- * For example `"https://s1.ptbk.io/promptbook"`
13
- *
14
- * @private internal utility of `string_url.ts`
15
- */
16
- export type string_promptbook_server_url_private = string_url_private;
17
- /**
18
- * Semantic helper
19
- *
20
- * For example `"https://collboard.com"`
21
- *
22
- * @private internal utility of `string_url.ts`
23
- */
24
- export type string_base_url_private = string_url_private;
25
- /**
26
- * Semantic helper
27
- *
28
- * For example `"https://promptbook.studio/webgpt/"`
29
- *
30
- * @private internal utility of `string_url.ts`
31
- */
32
- export type string_pipeline_root_url_private = string_url_private;
33
- /**
34
- * Semantic helper
35
- *
36
- * For example `"https://s6.ptbk.io/agents/agent-007"`
37
- *
38
- * @private internal utility of `string_url.ts`
39
- */
40
- export type string_agent_url_private = string_url_private;
41
- /**
42
- * Semantic helper
43
- *
44
- * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book"`
45
- *
46
- * @private internal utility of `string_url.ts`
47
- */
48
- export type string_pipeline_url_private = string_url_private;
49
- /**
50
- * Semantic helper
51
- *
52
- * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book#keywords"`
53
- *
54
- * @private internal utility of `string_url.ts`
55
- */
56
- export type string_pipeline_url_with_task_hash_private = string_pipeline_url_private;
57
- /**
58
- * Semantic helper
59
- *
60
- * For example `"https://collboard.com/9SeSQTupmQHwuSrLi"` OR `/9SeSQTupmQHwuSrLi`
61
- *
62
- * @private internal utility of `string_url.ts`
63
- */
64
- export type string_href_private = string;
65
- /**
66
- * Semantic helper
67
- *
68
- * For example `"https://collboard.com/9SeSQTupmQHwuSrLi.png?width=1200&height=630"`
69
- *
70
- * @private internal utility of `string_url.ts`
71
- */
72
- export type string_url_image_private = string_url_private;
73
- /**
74
- * Semantic helper
75
- *
76
- * For example `"/9SeSQTupmQHwuSrLi"`
77
- *
78
- * @private internal utility of `string_url.ts`
79
- */
80
- export type string_uri_private = string;
81
- /**
82
- * Semantic helper
83
- *
84
- * For example `"9SeSQTupmQHwuSrLi"`
85
- *
86
- * @private internal utility of `string_url.ts`
87
- */
88
- export type string_uri_part_private = string;
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
15
15
  export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
16
16
  /**
17
17
  * Represents the version string of the Promptbook engine.
18
- * It follows semantic versioning (e.g., `0.112.0-35`).
18
+ * It follows semantic versioning (e.g., `0.112.0-38`).
19
19
  *
20
20
  * @generated
21
21
  */