@promptbook/core 0.72.0-7 → 0.72.0-8
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.
|
@@ -75,7 +75,6 @@ import { unpreparePipeline } from '../prepare/unpreparePipeline';
|
|
|
75
75
|
import { prepareKnowledgePieces } from '../scrapers/_common/prepareKnowledgePieces';
|
|
76
76
|
import { legacyDocumentScraper } from '../scrapers/document-legacy/legacyDocumentScraper';
|
|
77
77
|
import { documentScraper } from '../scrapers/document/documentScraper';
|
|
78
|
-
import { SCRAPERS } from '../scrapers/index';
|
|
79
78
|
import { markdownScraper } from '../scrapers/markdown/markdownScraper';
|
|
80
79
|
import { pdfScraper } from '../scrapers/pdf/pdfScraper';
|
|
81
80
|
import { websiteScraper } from '../scrapers/website/websiteScraper';
|
|
@@ -163,7 +162,6 @@ export { unpreparePipeline };
|
|
|
163
162
|
export { prepareKnowledgePieces };
|
|
164
163
|
export { legacyDocumentScraper };
|
|
165
164
|
export { documentScraper };
|
|
166
|
-
export { SCRAPERS };
|
|
167
165
|
export { markdownScraper };
|
|
168
166
|
export { pdfScraper };
|
|
169
167
|
export { websiteScraper };
|
|
@@ -2,6 +2,7 @@ import type { Scraper } from './_common/Scraper';
|
|
|
2
2
|
/**
|
|
3
3
|
* @@@
|
|
4
4
|
*
|
|
5
|
-
* @
|
|
5
|
+
* @private because this will be replaced by a system of one scraper per package [🦖]
|
|
6
|
+
* TODO: [🦖] System for scrapers NOT public exported from `@promptbook/core`
|
|
6
7
|
*/
|
|
7
8
|
export declare const SCRAPERS: Array<Scraper>;
|
package/package.json
CHANGED
package/umd/index.umd.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
/**
|
|
18
18
|
* The version of the Promptbook library
|
|
19
19
|
*/
|
|
20
|
-
var PROMPTBOOK_VERSION = '0.72.0-
|
|
20
|
+
var PROMPTBOOK_VERSION = '0.72.0-7';
|
|
21
21
|
// TODO: [main] !!!! List here all the versions and annotate + put into script
|
|
22
22
|
|
|
23
23
|
/*! *****************************************************************************
|
|
@@ -5811,7 +5811,8 @@
|
|
|
5811
5811
|
/**
|
|
5812
5812
|
* @@@
|
|
5813
5813
|
*
|
|
5814
|
-
* @
|
|
5814
|
+
* @private because this will be replaced by a system of one scraper per package [🦖]
|
|
5815
|
+
* TODO: [🦖] System for scrapers NOT public exported from `@promptbook/core`
|
|
5815
5816
|
*/
|
|
5816
5817
|
var SCRAPERS = [
|
|
5817
5818
|
markdownScraper,
|
|
@@ -10485,7 +10486,6 @@
|
|
|
10485
10486
|
exports.PipelineUrlError = PipelineUrlError;
|
|
10486
10487
|
exports.PrefixStorage = PrefixStorage;
|
|
10487
10488
|
exports.RESERVED_PARAMETER_NAMES = RESERVED_PARAMETER_NAMES;
|
|
10488
|
-
exports.SCRAPERS = SCRAPERS;
|
|
10489
10489
|
exports.SCRAPE_CACHE_DIRNAME = SCRAPE_CACHE_DIRNAME;
|
|
10490
10490
|
exports.TemplateTypes = TemplateTypes;
|
|
10491
10491
|
exports.TextFormatDefinition = TextFormatDefinition;
|