@promptbook/remote-client 0.60.0-4 → 0.60.0-6

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 (90) hide show
  1. package/README.md +3 -5
  2. package/esm/index.es.js +1 -1
  3. package/esm/typings/promptbook-collection/index.d.ts +1 -1
  4. package/esm/typings/src/_packages/core.index.d.ts +9 -9
  5. package/esm/typings/src/_packages/node.index.d.ts +1 -1
  6. package/esm/typings/src/_packages/types.index.d.ts +3 -3
  7. package/{umd/typings/src/library → esm/typings/src/collection}/PipelineCollection.d.ts +4 -4
  8. package/{umd/typings/src/library → esm/typings/src/collection}/SimplePipelineCollection.d.ts +5 -5
  9. package/{umd/typings/src/library/libraryToJson.d.ts → esm/typings/src/collection/collectionToJson.d.ts} +2 -2
  10. package/esm/typings/src/{library → collection}/constructors/createCollectionFromDirectory.d.ts +3 -3
  11. package/esm/typings/src/{library → collection}/constructors/createCollectionFromJson.d.ts +1 -1
  12. package/{umd/typings/src/library → esm/typings/src/collection}/constructors/createCollectionFromPromise.d.ts +1 -1
  13. package/esm/typings/src/{library → collection}/constructors/createCollectionFromUrl.d.ts +1 -1
  14. package/esm/typings/src/collection/constructors/createSubcollection.d.ts +12 -0
  15. package/esm/typings/src/config.d.ts +2 -2
  16. package/esm/typings/src/conversion/prettify/prettifyPipelineString.d.ts +1 -1
  17. package/esm/typings/src/conversion/prettify/renderPipelineMermaidOptions.d.ts +1 -1
  18. package/esm/typings/src/errors/CollectionError.d.ts +1 -1
  19. package/esm/typings/src/errors/ExecutionError.d.ts +1 -1
  20. package/esm/typings/src/errors/NotFoundError.d.ts +1 -1
  21. package/esm/typings/src/execution/EmbeddingVector.d.ts +1 -1
  22. package/esm/typings/src/execution/{PromptbookExecutor.d.ts → PipelineExecutor.d.ts} +3 -3
  23. package/esm/typings/src/execution/assertsExecutionSuccessful.d.ts +2 -2
  24. package/{umd/typings/src/execution/createPromptbookExecutor.d.ts → esm/typings/src/execution/createPipelineExecutor.d.ts} +13 -13
  25. package/esm/typings/src/execution/utils/replaceParameters.d.ts +1 -1
  26. package/esm/typings/src/llm-providers/mocked/joker.test.d.ts +1 -1
  27. package/esm/typings/src/llm-providers/mocked/mocked-chat.test.d.ts +1 -1
  28. package/esm/typings/src/llm-providers/mocked/mocked-completion.test.d.ts +1 -1
  29. package/esm/typings/src/llm-providers/remote/interfaces/RemoteServerOptions.d.ts +4 -4
  30. package/esm/typings/src/llm-providers/remote/startRemoteServer.d.ts +1 -1
  31. package/esm/typings/src/types/Command.d.ts +2 -2
  32. package/esm/typings/src/types/PipelineJson/PipelineJson.d.ts +5 -5
  33. package/esm/typings/src/types/PipelineJson/PromptTemplateJson.d.ts +1 -1
  34. package/esm/typings/src/types/PipelineString.d.ts +1 -1
  35. package/esm/typings/src/types/Prompt.d.ts +3 -3
  36. package/esm/typings/src/types/TaskProgress.d.ts +1 -1
  37. package/esm/typings/src/types/execution-report/ExecutionReportJson.d.ts +3 -3
  38. package/esm/typings/src/types/execution-report/config.d.ts +1 -1
  39. package/esm/typings/src/utils/emojis.d.ts +1 -1
  40. package/package.json +2 -2
  41. package/umd/index.umd.js +1 -1
  42. package/umd/typings/promptbook-collection/index.d.ts +1 -1
  43. package/umd/typings/src/_packages/core.index.d.ts +9 -9
  44. package/umd/typings/src/_packages/node.index.d.ts +1 -1
  45. package/umd/typings/src/_packages/types.index.d.ts +3 -3
  46. package/{esm/typings/src/library → umd/typings/src/collection}/PipelineCollection.d.ts +4 -4
  47. package/{esm/typings/src/library → umd/typings/src/collection}/SimplePipelineCollection.d.ts +5 -5
  48. package/{esm/typings/src/library/libraryToJson.d.ts → umd/typings/src/collection/collectionToJson.d.ts} +2 -2
  49. package/umd/typings/src/{library → collection}/constructors/createCollectionFromDirectory.d.ts +3 -3
  50. package/umd/typings/src/{library → collection}/constructors/createCollectionFromJson.d.ts +1 -1
  51. package/{esm/typings/src/library → umd/typings/src/collection}/constructors/createCollectionFromPromise.d.ts +1 -1
  52. package/umd/typings/src/{library → collection}/constructors/createCollectionFromUrl.d.ts +1 -1
  53. package/umd/typings/src/collection/constructors/createSubcollection.d.ts +12 -0
  54. package/umd/typings/src/config.d.ts +2 -2
  55. package/umd/typings/src/conversion/prettify/prettifyPipelineString.d.ts +1 -1
  56. package/umd/typings/src/conversion/prettify/renderPipelineMermaidOptions.d.ts +1 -1
  57. package/umd/typings/src/errors/CollectionError.d.ts +1 -1
  58. package/umd/typings/src/errors/ExecutionError.d.ts +1 -1
  59. package/umd/typings/src/errors/NotFoundError.d.ts +1 -1
  60. package/umd/typings/src/execution/EmbeddingVector.d.ts +1 -1
  61. package/umd/typings/src/execution/{PromptbookExecutor.d.ts → PipelineExecutor.d.ts} +3 -3
  62. package/umd/typings/src/execution/assertsExecutionSuccessful.d.ts +2 -2
  63. package/{esm/typings/src/execution/createPromptbookExecutor.d.ts → umd/typings/src/execution/createPipelineExecutor.d.ts} +13 -13
  64. package/umd/typings/src/execution/utils/replaceParameters.d.ts +1 -1
  65. package/umd/typings/src/llm-providers/mocked/joker.test.d.ts +1 -1
  66. package/umd/typings/src/llm-providers/mocked/mocked-chat.test.d.ts +1 -1
  67. package/umd/typings/src/llm-providers/mocked/mocked-completion.test.d.ts +1 -1
  68. package/umd/typings/src/llm-providers/remote/interfaces/RemoteServerOptions.d.ts +4 -4
  69. package/umd/typings/src/llm-providers/remote/startRemoteServer.d.ts +1 -1
  70. package/umd/typings/src/types/Command.d.ts +2 -2
  71. package/umd/typings/src/types/PipelineJson/PipelineJson.d.ts +5 -5
  72. package/umd/typings/src/types/PipelineJson/PromptTemplateJson.d.ts +1 -1
  73. package/umd/typings/src/types/PipelineString.d.ts +1 -1
  74. package/umd/typings/src/types/Prompt.d.ts +3 -3
  75. package/umd/typings/src/types/TaskProgress.d.ts +1 -1
  76. package/umd/typings/src/types/execution-report/ExecutionReportJson.d.ts +3 -3
  77. package/umd/typings/src/types/execution-report/config.d.ts +1 -1
  78. package/umd/typings/src/utils/emojis.d.ts +1 -1
  79. package/esm/typings/src/library/constructors/createSubcollection.d.ts +0 -12
  80. package/umd/typings/src/library/constructors/createSubcollection.d.ts +0 -12
  81. /package/esm/typings/src/{library/constructors/createCollectionFromDirectory.test.d.ts → collection/collectionToJson.test.d.ts} +0 -0
  82. /package/{umd/typings/src/library → esm/typings/src/collection}/constructors/createCollectionFromDirectory.test.d.ts +0 -0
  83. /package/esm/typings/src/{library → collection}/constructors/createCollectionFromJson.test.d.ts +0 -0
  84. /package/esm/typings/src/{library → collection}/constructors/createCollectionFromPromise.test.d.ts +0 -0
  85. /package/esm/typings/src/{library → collection}/constructors/justTestFsImport.d.ts +0 -0
  86. /package/{esm/typings/src/library/libraryToJson.test.d.ts → umd/typings/src/collection/collectionToJson.test.d.ts} +0 -0
  87. /package/umd/typings/src/{library/constructors/createCollectionFromJson.test.d.ts → collection/constructors/createCollectionFromDirectory.test.d.ts} +0 -0
  88. /package/umd/typings/src/{library/constructors/createCollectionFromPromise.test.d.ts → collection/constructors/createCollectionFromJson.test.d.ts} +0 -0
  89. /package/umd/typings/src/{library/libraryToJson.test.d.ts → collection/constructors/createCollectionFromPromise.test.d.ts} +0 -0
  90. /package/umd/typings/src/{library → collection}/constructors/justTestFsImport.d.ts +0 -0
@@ -1,12 +0,0 @@
1
- import type { string_pipeline_url } from '../../types/typeAliases';
2
- import type { PipelineCollection } from '../PipelineCollection';
3
- /**
4
- * Creates PipelineCollection as a subset of another PipelineCollection
5
- *
6
- * Note: You can use any type of library as a parent library - local, remote, etc.
7
- * Note: This is just a thin wrapper / proxy around the parent library
8
- *
9
- * @param promptbookSources
10
- * @returns PipelineCollection
11
- */
12
- export declare function createSubcollection(library: PipelineCollection, predicate: (url: string_pipeline_url) => boolean): PipelineCollection;
@@ -1,12 +0,0 @@
1
- import type { string_pipeline_url } from '../../types/typeAliases';
2
- import type { PipelineCollection } from '../PipelineCollection';
3
- /**
4
- * Creates PipelineCollection as a subset of another PipelineCollection
5
- *
6
- * Note: You can use any type of library as a parent library - local, remote, etc.
7
- * Note: This is just a thin wrapper / proxy around the parent library
8
- *
9
- * @param promptbookSources
10
- * @returns PipelineCollection
11
- */
12
- export declare function createSubcollection(library: PipelineCollection, predicate: (url: string_pipeline_url) => boolean): PipelineCollection;