@promptbook/components 0.112.0-36 → 0.112.0-38

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 (124) hide show
  1. package/README.md +10 -6
  2. package/esm/index.es.js +357 -69
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/src/_packages/components.index.d.ts +2 -0
  5. package/esm/src/_packages/types.index.d.ts +48 -46
  6. package/esm/src/book-components/Chat/Chat/ChatActionsBar.d.ts +7 -0
  7. package/esm/src/book-components/Chat/Chat/ChatActionsBar.test.d.ts +2 -0
  8. package/esm/src/book-components/Chat/Chat/ChatInputArea.d.ts +4 -0
  9. package/esm/src/book-components/Chat/Chat/ChatMessageItem.d.ts +8 -0
  10. package/esm/src/book-components/Chat/Chat/ChatMessageList.d.ts +2 -0
  11. package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +50 -1
  12. package/esm/src/book-components/Chat/Chat/ChatReplyPreview.d.ts +19 -0
  13. package/esm/src/book-components/Chat/Chat/createProgressCardChecklistMarkdown.d.ts +2 -2
  14. package/esm/src/book-components/Chat/MockedChat/MockedChat.d.ts +1 -1
  15. package/esm/src/book-components/Chat/types/ChatMessage.d.ts +35 -0
  16. package/esm/src/book-components/Chat/utils/resolveChatMessageReplyPreviewText.d.ts +25 -0
  17. package/esm/src/book-components/Chat/utils/resolveChatMessageReplySenderLabel.d.ts +12 -0
  18. package/esm/src/cli/cli-commands/coder/agentCodingFile.d.ts +14 -0
  19. package/esm/src/cli/cli-commands/coder/agentsFile.d.ts +12 -0
  20. package/esm/src/cli/cli-commands/coder/appendBlock.d.ts +6 -0
  21. package/esm/src/cli/cli-commands/coder/boilerplateTemplates.d.ts +10 -0
  22. package/esm/src/cli/cli-commands/coder/ensureCoderEnvFile.d.ts +15 -0
  23. package/esm/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +7 -0
  24. package/esm/src/cli/cli-commands/coder/ensureCoderMarkdownFile.d.ts +7 -0
  25. package/esm/src/cli/cli-commands/coder/ensureCoderPackageJsonFile.d.ts +7 -0
  26. package/esm/src/cli/cli-commands/coder/ensureCoderVscodeSettingsFile.d.ts +7 -0
  27. package/esm/src/cli/cli-commands/coder/ensureDirectory.d.ts +7 -0
  28. package/esm/src/cli/cli-commands/coder/find-refactor-candidates.d.ts +1 -1
  29. package/esm/src/cli/cli-commands/coder/find-refactor-candidates.test.d.ts +1 -0
  30. package/esm/src/cli/cli-commands/coder/formatDisplayPath.d.ts +6 -0
  31. package/esm/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.d.ts +6 -0
  32. package/esm/src/cli/cli-commands/coder/getDefaultCoderVscodeSettings.d.ts +6 -0
  33. package/esm/src/cli/cli-commands/coder/init.d.ts +3 -38
  34. package/esm/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +25 -0
  35. package/esm/src/cli/cli-commands/coder/mergeStringRecordJsonFile.d.ts +18 -0
  36. package/esm/src/cli/cli-commands/coder/printInitializationSummary.d.ts +7 -0
  37. package/esm/src/cli/cli-commands/coder/readTextFileIfExists.d.ts +6 -0
  38. package/esm/src/types/string_agent_url.d.ts +7 -0
  39. package/esm/src/types/string_agent_url_private.d.ts +9 -0
  40. package/esm/src/types/string_base64.d.ts +13 -0
  41. package/esm/src/types/string_base64_private.d.ts +2 -2
  42. package/esm/src/types/string_base_url.d.ts +7 -0
  43. package/esm/src/types/string_base_url_private.d.ts +9 -0
  44. package/esm/src/types/string_email.d.ts +13 -0
  45. package/esm/src/types/string_email_private.d.ts +2 -2
  46. package/esm/src/types/string_host.d.ts +42 -0
  47. package/esm/src/types/string_host_private.d.ts +7 -7
  48. package/esm/src/types/string_href.d.ts +19 -0
  49. package/esm/src/types/string_href_private.d.ts +24 -0
  50. package/esm/src/types/string_mime_type.d.ts +15 -0
  51. package/esm/src/types/string_mime_type_private.d.ts +2 -2
  52. package/esm/src/types/string_pipeline_root_url.d.ts +7 -0
  53. package/esm/src/types/string_pipeline_root_url_private.d.ts +9 -0
  54. package/esm/src/types/string_pipeline_url.d.ts +13 -0
  55. package/esm/src/types/string_pipeline_url_private.d.ts +17 -0
  56. package/esm/src/types/string_promptbook_server_url.d.ts +7 -0
  57. package/esm/src/types/string_promptbook_server_url_private.d.ts +9 -0
  58. package/esm/src/types/string_url.d.ts +14 -141
  59. package/esm/src/types/string_url_image.d.ts +7 -0
  60. package/esm/src/types/string_url_image_private.d.ts +9 -0
  61. package/esm/src/types/string_url_private.d.ts +0 -80
  62. package/esm/src/version.d.ts +1 -1
  63. package/package.json +1 -1
  64. package/umd/index.umd.js +356 -68
  65. package/umd/index.umd.js.map +1 -1
  66. package/umd/src/_packages/components.index.d.ts +2 -0
  67. package/umd/src/_packages/types.index.d.ts +48 -46
  68. package/umd/src/book-components/Chat/Chat/ChatActionsBar.d.ts +7 -0
  69. package/umd/src/book-components/Chat/Chat/ChatActionsBar.test.d.ts +2 -0
  70. package/umd/src/book-components/Chat/Chat/ChatInputArea.d.ts +4 -0
  71. package/umd/src/book-components/Chat/Chat/ChatMessageItem.d.ts +8 -0
  72. package/umd/src/book-components/Chat/Chat/ChatMessageList.d.ts +2 -0
  73. package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +50 -1
  74. package/umd/src/book-components/Chat/Chat/ChatReplyPreview.d.ts +19 -0
  75. package/umd/src/book-components/Chat/Chat/createProgressCardChecklistMarkdown.d.ts +2 -2
  76. package/umd/src/book-components/Chat/MockedChat/MockedChat.d.ts +1 -1
  77. package/umd/src/book-components/Chat/types/ChatMessage.d.ts +35 -0
  78. package/umd/src/book-components/Chat/utils/resolveChatMessageReplyPreviewText.d.ts +25 -0
  79. package/umd/src/book-components/Chat/utils/resolveChatMessageReplySenderLabel.d.ts +12 -0
  80. package/umd/src/cli/cli-commands/coder/agentCodingFile.d.ts +14 -0
  81. package/umd/src/cli/cli-commands/coder/agentsFile.d.ts +12 -0
  82. package/umd/src/cli/cli-commands/coder/appendBlock.d.ts +6 -0
  83. package/umd/src/cli/cli-commands/coder/boilerplateTemplates.d.ts +10 -0
  84. package/umd/src/cli/cli-commands/coder/ensureCoderEnvFile.d.ts +15 -0
  85. package/umd/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +7 -0
  86. package/umd/src/cli/cli-commands/coder/ensureCoderMarkdownFile.d.ts +7 -0
  87. package/umd/src/cli/cli-commands/coder/ensureCoderPackageJsonFile.d.ts +7 -0
  88. package/umd/src/cli/cli-commands/coder/ensureCoderVscodeSettingsFile.d.ts +7 -0
  89. package/umd/src/cli/cli-commands/coder/ensureDirectory.d.ts +7 -0
  90. package/umd/src/cli/cli-commands/coder/find-refactor-candidates.d.ts +1 -1
  91. package/umd/src/cli/cli-commands/coder/find-refactor-candidates.test.d.ts +1 -0
  92. package/umd/src/cli/cli-commands/coder/formatDisplayPath.d.ts +6 -0
  93. package/umd/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.d.ts +6 -0
  94. package/umd/src/cli/cli-commands/coder/getDefaultCoderVscodeSettings.d.ts +6 -0
  95. package/umd/src/cli/cli-commands/coder/init.d.ts +3 -38
  96. package/umd/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +25 -0
  97. package/umd/src/cli/cli-commands/coder/mergeStringRecordJsonFile.d.ts +18 -0
  98. package/umd/src/cli/cli-commands/coder/printInitializationSummary.d.ts +7 -0
  99. package/umd/src/cli/cli-commands/coder/readTextFileIfExists.d.ts +6 -0
  100. package/umd/src/types/string_agent_url.d.ts +7 -0
  101. package/umd/src/types/string_agent_url_private.d.ts +9 -0
  102. package/umd/src/types/string_base64.d.ts +13 -0
  103. package/umd/src/types/string_base64_private.d.ts +2 -2
  104. package/umd/src/types/string_base_url.d.ts +7 -0
  105. package/umd/src/types/string_base_url_private.d.ts +9 -0
  106. package/umd/src/types/string_email.d.ts +13 -0
  107. package/umd/src/types/string_email_private.d.ts +2 -2
  108. package/umd/src/types/string_host.d.ts +42 -0
  109. package/umd/src/types/string_host_private.d.ts +7 -7
  110. package/umd/src/types/string_href.d.ts +19 -0
  111. package/umd/src/types/string_href_private.d.ts +24 -0
  112. package/umd/src/types/string_mime_type.d.ts +15 -0
  113. package/umd/src/types/string_mime_type_private.d.ts +2 -2
  114. package/umd/src/types/string_pipeline_root_url.d.ts +7 -0
  115. package/umd/src/types/string_pipeline_root_url_private.d.ts +9 -0
  116. package/umd/src/types/string_pipeline_url.d.ts +13 -0
  117. package/umd/src/types/string_pipeline_url_private.d.ts +17 -0
  118. package/umd/src/types/string_promptbook_server_url.d.ts +7 -0
  119. package/umd/src/types/string_promptbook_server_url_private.d.ts +9 -0
  120. package/umd/src/types/string_url.d.ts +14 -141
  121. package/umd/src/types/string_url_image.d.ts +7 -0
  122. package/umd/src/types/string_url_image_private.d.ts +9 -0
  123. package/umd/src/types/string_url_private.d.ts +0 -80
  124. package/umd/src/version.d.ts +1 -1
@@ -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-37`).
19
19
  *
20
20
  * @generated
21
21
  */