Socket
Socket
Sign inDemoInstall

@promptbook/remote-client

Package Overview
Dependencies
Maintainers
0
Versions
406
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@promptbook/remote-client - npm Package Compare versions

Comparing version 0.69.0-12 to 0.69.0-13

14

esm/index.es.js

@@ -8,3 +8,3 @@ import { io } from 'socket.io-client';

*/
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

@@ -331,3 +331,15 @@

]);
// <- TODO: [🧜‍♂️]
/**
* @@@
*
* @public exported from `@promptbook/core`
*/
Object.freeze({
delimiter: ',',
quoteChar: '"',
newline: '\n',
skipEmptyLines: true,
});
/**
* TODO: [🧠][🧜‍♂️] Maybe join remoteUrl and path into single value

@@ -334,0 +346,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;
}>;

4

package.json
{
"name": "@promptbook/remote-client",
"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

@@ -338,3 +338,15 @@

]);
// <- TODO: [🧜‍♂️]
/**
* @@@
*
* @public exported from `@promptbook/core`
*/
Object.freeze({
delimiter: ',',
quoteChar: '"',
newline: '\n',
skipEmptyLines: true,
});
/**
* TODO: [🧠][🧜‍♂️] Maybe join remoteUrl and path into single value

@@ -341,0 +353,0 @@ */

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc