@promptbook/browser
Advanced tools
Comparing version 0.69.0-12 to 0.69.0-13
@@ -8,3 +8,3 @@ import spaceTrim$1, { spaceTrim } from 'spacetrim'; | ||
*/ | ||
var PROMPTBOOK_VERSION = '0.69.0-11'; | ||
var PROMPTBOOK_VERSION = '0.69.0-12'; | ||
// TODO: !!!! List here all the versions and annotate + put into script | ||
@@ -401,3 +401,15 @@ | ||
]); | ||
// <- TODO: [π§ββοΈ] | ||
/** | ||
* @@@ | ||
* | ||
* @public exported from `@promptbook/core` | ||
*/ | ||
Object.freeze({ | ||
delimiter: ',', | ||
quoteChar: '"', | ||
newline: '\n', | ||
skipEmptyLines: true, | ||
}); | ||
/** | ||
* TODO: [π§ ][π§ββοΈ] Maybe join remoteUrl and path into single value | ||
@@ -404,0 +416,0 @@ */ |
@@ -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/browser", | ||
"version": "0.69.0-12", | ||
"version": "0.69.0-13", | ||
"description": "Supercharge your use of large language models", | ||
@@ -50,3 +50,3 @@ "private": false, | ||
"peerDependencies": { | ||
"@promptbook/core": "0.69.0-12" | ||
"@promptbook/core": "0.69.0-13" | ||
}, | ||
@@ -53,0 +53,0 @@ "dependencies": { |
@@ -15,3 +15,3 @@ (function (global, factory) { | ||
*/ | ||
var PROMPTBOOK_VERSION = '0.69.0-11'; | ||
var PROMPTBOOK_VERSION = '0.69.0-12'; | ||
// TODO: !!!! List here all the versions and annotate + put into script | ||
@@ -408,3 +408,15 @@ | ||
]); | ||
// <- TODO: [π§ββοΈ] | ||
/** | ||
* @@@ | ||
* | ||
* @public exported from `@promptbook/core` | ||
*/ | ||
Object.freeze({ | ||
delimiter: ',', | ||
quoteChar: '"', | ||
newline: '\n', | ||
skipEmptyLines: true, | ||
}); | ||
/** | ||
* TODO: [π§ ][π§ββοΈ] Maybe join remoteUrl and path into single value | ||
@@ -411,0 +423,0 @@ */ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
508539
10065