@promptbook/cli 0.112.0-31 → 0.112.0-32

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 (63) hide show
  1. package/esm/index.es.js +183 -50
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/scripts/run-codex-prompts/runners/github-copilot/GitHubCopilotRunner.d.ts +19 -0
  4. package/esm/scripts/run-codex-prompts/runners/github-copilot/buildGitHubCopilotScript.d.ts +5 -0
  5. package/esm/src/_packages/components.index.d.ts +6 -0
  6. package/esm/src/_packages/types.index.d.ts +6 -0
  7. package/esm/src/book-2.0/agent-source/AgentReferenceResolver.d.ts +11 -0
  8. package/esm/src/book-2.0/agent-source/CreateAgentModelRequirementsOptions.d.ts +8 -0
  9. package/esm/src/book-2.0/agent-source/TeammateProfileResolver.d.ts +33 -0
  10. package/esm/src/book-2.0/agent-source/createTeamToolName.d.ts +7 -7
  11. package/esm/src/book-components/Chat/Chat/ChatActionsBar.d.ts +5 -0
  12. package/esm/src/book-components/Chat/Chat/ChatMessageItem.d.ts +17 -1
  13. package/esm/src/book-components/Chat/Chat/ChatMessageItem.test.d.ts +1 -1
  14. package/esm/src/book-components/Chat/Chat/ChatMessageList.d.ts +14 -0
  15. package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +290 -0
  16. package/esm/src/book-components/Chat/Chat/ChatToolCallModal.d.ts +16 -0
  17. package/esm/src/book-components/Chat/Chat/renderAdvancedToolCallDetails.d.ts +4 -0
  18. package/esm/src/book-components/Chat/Chat/renderToolCallDetails.d.ts +9 -0
  19. package/esm/src/book-components/Chat/MarkdownContent/MarkdownContent.d.ts +2 -1
  20. package/esm/src/book-components/Chat/MarkdownContent/MarkdownContent.test.d.ts +2 -0
  21. package/esm/src/book-components/Chat/hooks/useChatCompleteNotification.d.ts +18 -0
  22. package/esm/src/book-components/Chat/hooks/useChatCompleteNotification.test.d.ts +2 -0
  23. package/esm/src/book-components/Chat/types/ChatMessage.d.ts +77 -1
  24. package/esm/src/book-components/Chat/utils/formatToolCallDateTime.d.ts +37 -0
  25. package/esm/src/book-components/Chat/utils/formatToolCallLocalTime.d.ts +11 -0
  26. package/esm/src/book-components/Chat/utils/formatToolCallTranslationTemplate.d.ts +10 -0
  27. package/esm/src/book-components/Chat/utils/getChatMessageTimingDisplay.d.ts +5 -1
  28. package/esm/src/book-components/Chat/utils/getToolCallChipletInfo.d.ts +26 -1
  29. package/esm/src/book-components/Chat/utils/timeoutToolCallPresentation.d.ts +26 -3
  30. package/esm/src/utils/toolCalls/mergeToolCalls.d.ts +1 -1
  31. package/esm/src/version.d.ts +1 -1
  32. package/package.json +1 -1
  33. package/umd/index.umd.js +183 -50
  34. package/umd/index.umd.js.map +1 -1
  35. package/umd/scripts/run-codex-prompts/runners/github-copilot/GitHubCopilotRunner.d.ts +19 -0
  36. package/umd/scripts/run-codex-prompts/runners/github-copilot/buildGitHubCopilotScript.d.ts +5 -0
  37. package/umd/src/_packages/components.index.d.ts +6 -0
  38. package/umd/src/_packages/types.index.d.ts +6 -0
  39. package/umd/src/book-2.0/agent-source/AgentReferenceResolver.d.ts +11 -0
  40. package/umd/src/book-2.0/agent-source/CreateAgentModelRequirementsOptions.d.ts +8 -0
  41. package/umd/src/book-2.0/agent-source/TeammateProfileResolver.d.ts +33 -0
  42. package/umd/src/book-2.0/agent-source/createTeamToolName.d.ts +7 -7
  43. package/umd/src/book-components/Chat/Chat/ChatActionsBar.d.ts +5 -0
  44. package/umd/src/book-components/Chat/Chat/ChatMessageItem.d.ts +17 -1
  45. package/umd/src/book-components/Chat/Chat/ChatMessageItem.test.d.ts +1 -1
  46. package/umd/src/book-components/Chat/Chat/ChatMessageList.d.ts +14 -0
  47. package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +290 -0
  48. package/umd/src/book-components/Chat/Chat/ChatToolCallModal.d.ts +16 -0
  49. package/umd/src/book-components/Chat/Chat/renderAdvancedToolCallDetails.d.ts +4 -0
  50. package/umd/src/book-components/Chat/Chat/renderToolCallDetails.d.ts +9 -0
  51. package/umd/src/book-components/Chat/MarkdownContent/MarkdownContent.d.ts +2 -1
  52. package/umd/src/book-components/Chat/MarkdownContent/MarkdownContent.test.d.ts +2 -0
  53. package/umd/src/book-components/Chat/hooks/useChatCompleteNotification.d.ts +18 -0
  54. package/umd/src/book-components/Chat/hooks/useChatCompleteNotification.test.d.ts +2 -0
  55. package/umd/src/book-components/Chat/types/ChatMessage.d.ts +77 -1
  56. package/umd/src/book-components/Chat/utils/formatToolCallDateTime.d.ts +37 -0
  57. package/umd/src/book-components/Chat/utils/formatToolCallLocalTime.d.ts +11 -0
  58. package/umd/src/book-components/Chat/utils/formatToolCallTranslationTemplate.d.ts +10 -0
  59. package/umd/src/book-components/Chat/utils/getChatMessageTimingDisplay.d.ts +5 -1
  60. package/umd/src/book-components/Chat/utils/getToolCallChipletInfo.d.ts +26 -1
  61. package/umd/src/book-components/Chat/utils/timeoutToolCallPresentation.d.ts +26 -3
  62. package/umd/src/utils/toolCalls/mergeToolCalls.d.ts +1 -1
  63. package/umd/src/version.d.ts +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.