@promptbook/core
Advanced tools
Comparing version 0.69.0-12 to 0.69.0-13
@@ -50,2 +50,3 @@ import { PROMPTBOOK_VERSION } from '../version'; | ||
import { CsvFormatDefinition } from '../formats/csv/CsvFormatDefinition'; | ||
import { MANDATORY_CSV_SETTINGS } from '../formats/csv/CsvSettings'; | ||
import { TextFormatDefinition } from '../formats/text/TextFormatDefinition'; | ||
@@ -127,2 +128,3 @@ import { CallbackInterfaceTools } from '../knowledge/dialogs/callback/CallbackInterfaceTools'; | ||
export { CsvFormatDefinition }; | ||
export { MANDATORY_CSV_SETTINGS }; | ||
export { TextFormatDefinition }; | ||
@@ -129,0 +131,0 @@ export { CallbackInterfaceTools }; |
@@ -1,5 +0,13 @@ | ||
import type { ParseConfig, UnparseConfig } from "papaparse"; | ||
import type { ParseConfig, UnparseConfig } from 'papaparse'; | ||
/** | ||
* @@@ | ||
*/ | ||
export type CsvSettings = ParseConfig & UnparseConfig; | ||
export type CsvSettings = Pick<ParseConfig & UnparseConfig, 'delimiter' | 'quoteChar' | 'newline' | 'skipEmptyLines'>; | ||
/** | ||
* @@@ | ||
* | ||
* @public exported from `@promptbook/core` | ||
*/ | ||
export declare const MANDATORY_CSV_SETTINGS: Readonly<{ | ||
readonly header: true; | ||
}>; |
{ | ||
"name": "@promptbook/core", | ||
"version": "0.69.0-12", | ||
"version": "0.69.0-13", | ||
"description": "Supercharge your use of large language models", | ||
@@ -5,0 +5,0 @@ "private": false, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1710175
27311