@promptbook/types 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
- * @public exported from `@promptbook/core`
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.72.0-7",
3
+ "version": "0.72.0-8",
4
4
  "description": "Supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -49,6 +49,6 @@
49
49
  ],
50
50
  "typings": "./esm/typings/src/_packages/types.index.d.ts",
51
51
  "peerDependencies": {
52
- "@promptbook/core": "0.72.0-7"
52
+ "@promptbook/core": "0.72.0-8"
53
53
  }
54
54
  }