@promptbook/editable 0.84.0-20 → 0.84.0-9

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 (29) hide show
  1. package/README.md +5 -11
  2. package/esm/index.es.js +6 -56
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/typings/src/_packages/cli.index.d.ts +0 -4
  5. package/esm/typings/src/_packages/core.index.d.ts +2 -12
  6. package/esm/typings/src/_packages/types.index.d.ts +0 -2
  7. package/esm/typings/src/_packages/utils.index.d.ts +0 -2
  8. package/esm/typings/src/_packages/wizzard.index.d.ts +0 -4
  9. package/esm/typings/src/config.d.ts +1 -27
  10. package/esm/typings/src/conversion/compilePipelineOnRemoteServer.d.ts +1 -1
  11. package/esm/typings/src/execution/FilesystemTools.d.ts +1 -1
  12. package/esm/typings/src/execution/assertsExecutionSuccessful.d.ts +1 -3
  13. package/esm/typings/src/pipeline/book-notation.d.ts +2 -3
  14. package/esm/typings/src/pipeline/prompt-notation.d.ts +5 -18
  15. package/esm/typings/src/prepare/preparePipelineOnRemoteServer.d.ts +1 -1
  16. package/esm/typings/src/remote-server/socket-types/_subtypes/PromptbookServer_Identification.d.ts +2 -5
  17. package/esm/typings/src/wizzard/wizzard.d.ts +1 -7
  18. package/package.json +16 -9
  19. package/umd/index.umd.js +6 -56
  20. package/umd/index.umd.js.map +1 -1
  21. package/esm/typings/src/_packages/deepseek.index.d.ts +0 -8
  22. package/esm/typings/src/llm-providers/deepseek/DeepseekExecutionToolsOptions.d.ts +0 -9
  23. package/esm/typings/src/llm-providers/deepseek/createDeepseekExecutionTools.d.ts +0 -14
  24. package/esm/typings/src/llm-providers/deepseek/register-configuration.d.ts +0 -14
  25. package/esm/typings/src/llm-providers/deepseek/register-constructor.d.ts +0 -15
  26. package/esm/typings/src/utils/editable/edit-pipeline-string/deflatePipeline.test.d.ts +0 -1
  27. package/esm/typings/src/utils/editable/utils/isFlatPipeline.test.d.ts +0 -1
  28. package/esm/typings/src/utils/files/mimeTypeToExtension.d.ts +0 -10
  29. package/esm/typings/src/utils/files/mimeTypeToExtension.test.d.ts +0 -1
@@ -1,15 +0,0 @@
1
- import type { Registration } from '../../utils/$Register';
2
- /**
3
- * Registration of LLM provider
4
- *
5
- * Warning: This is not useful for the end user, it is just a side effect of the mechanism that handles all available LLM tools
6
- *
7
- * @public exported from `@promptbook/deepseek`
8
- * @public exported from `@promptbook/wizzard`
9
- * @public exported from `@promptbook/cli`
10
- */
11
- export declare const _DeepseekRegistration: Registration;
12
- /**
13
- * TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
14
- * Note: [💞] Ignore a discrepancy between file name and entity name
15
- */
@@ -1,10 +0,0 @@
1
- import type { string_file_extension } from '../../types/typeAliases';
2
- import type { string_mime_type } from '../../types/typeAliases';
3
- /**
4
- * Convert mime type to file extension
5
- *
6
- * Note: If the mime type is invalid, `null` is returned
7
- *
8
- * @private within the repository
9
- */
10
- export declare function mimeTypeToExtension(value: string_mime_type): string_file_extension | null;