@jaypie/testkit 1.2.0-rc.3 → 1.2.0-rc.5
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.
package/dist/mock/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import * as vitest from 'vitest';
|
|
|
4
4
|
import * as errors from '@jaypie/errors';
|
|
5
5
|
import * as kit from '@jaypie/kit';
|
|
6
6
|
import * as original from '@jaypie/llm';
|
|
7
|
-
import * as original$1 from '@jaypie/textract';
|
|
8
7
|
export { FORMAT, LEVEL, Logger, log } from '@jaypie/logger';
|
|
9
8
|
export { mongoose } from '@jaypie/mongoose';
|
|
10
9
|
|
|
@@ -465,7 +464,7 @@ declare const disconnect: vitest.Mock<(...args: any[]) => any>;
|
|
|
465
464
|
/**
|
|
466
465
|
* Mock for MarkdownPage class from @jaypie/textract
|
|
467
466
|
*/
|
|
468
|
-
declare const MarkdownPage:
|
|
467
|
+
declare const MarkdownPage: any;
|
|
469
468
|
/**
|
|
470
469
|
* Mock for textractJsonToMarkdown function from @jaypie/textract
|
|
471
470
|
*/
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import * as original from "@jaypie/textract";
|
|
2
1
|
/**
|
|
3
2
|
* Mock for MarkdownPage class from @jaypie/textract
|
|
4
3
|
*/
|
|
5
|
-
export declare const MarkdownPage:
|
|
4
|
+
export declare const MarkdownPage: any;
|
|
6
5
|
/**
|
|
7
6
|
* Mock for textractJsonToMarkdown function from @jaypie/textract
|
|
8
7
|
*/
|
|
9
8
|
export declare const textractJsonToMarkdown: import("vitest").Mock<(...args: any[]) => any>;
|
|
10
9
|
declare const _default: {
|
|
11
|
-
MarkdownPage:
|
|
10
|
+
MarkdownPage: any;
|
|
12
11
|
textractJsonToMarkdown: import("vitest").Mock<(...args: any[]) => any>;
|
|
13
12
|
};
|
|
14
13
|
export default _default;
|
package/dist/mock/original.d.ts
CHANGED
package/dist/mock/textract.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import * as original from "@jaypie/textract";
|
|
2
1
|
/**
|
|
3
2
|
* Mock for MarkdownPage class from @jaypie/textract
|
|
4
3
|
*/
|
|
5
|
-
export declare const MarkdownPage:
|
|
4
|
+
export declare const MarkdownPage: any;
|
|
6
5
|
/**
|
|
7
6
|
* Mock for textractJsonToMarkdown function from @jaypie/textract
|
|
8
7
|
*/
|
|
9
8
|
export declare const textractJsonToMarkdown: import("vitest").Mock<(...args: any[]) => any>;
|
|
10
9
|
declare const _default: {
|
|
11
|
-
MarkdownPage:
|
|
10
|
+
MarkdownPage: any;
|
|
12
11
|
textractJsonToMarkdown: import("vitest").Mock<(...args: any[]) => any>;
|
|
13
12
|
};
|
|
14
13
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jaypie/testkit",
|
|
3
|
-
"version": "1.2.0-rc.
|
|
3
|
+
"version": "1.2.0-rc.5",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/finlaysonstudio/jaypie.git"
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"vitest": "^3.0.5"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@jaypie/errors": "1.2.0-rc.
|
|
59
|
-
"@jaypie/kit": "1.2.0-rc.
|
|
60
|
-
"@jaypie/logger": "1.2.0-rc.
|
|
58
|
+
"@jaypie/errors": "^1.2.0-rc.4",
|
|
59
|
+
"@jaypie/kit": "^1.2.0-rc.4",
|
|
60
|
+
"@jaypie/logger": "^1.2.0-rc.4",
|
|
61
61
|
"vitest": ">=1.0.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependenciesMeta": {
|