@rebasepro/inference 0.16.0 → 0.16.1-canary.g2d1aec8
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.
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { InferencePropertyBuilderProps } from "../types";
|
|
1
|
+
import { InferencePropertyBuilderProps } from "../types.js";
|
|
2
2
|
import { Property } from "@rebasepro/types";
|
|
3
3
|
export declare function buildReferenceProperty({ name, totalDocsCount, valuesResult }: InferencePropertyBuilderProps): Property;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Property } from "@rebasepro/types";
|
|
2
|
-
import { InferencePropertyBuilderProps } from "../types";
|
|
2
|
+
import { InferencePropertyBuilderProps } from "../types.js";
|
|
3
3
|
export declare function buildStringProperty({ name, totalDocsCount, valuesResult }: InferencePropertyBuilderProps): Property;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { PropertyValidationSchema } from "@rebasepro/types";
|
|
2
|
-
import { InferencePropertyBuilderProps } from "../types";
|
|
2
|
+
import { InferencePropertyBuilderProps } from "../types.js";
|
|
3
3
|
export declare function buildValidation({ totalDocsCount, valuesResult }: InferencePropertyBuilderProps): PropertyValidationSchema | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./collection_builder";
|
|
2
|
-
export * from "./util";
|
|
3
|
-
export * from "./strings";
|
|
1
|
+
export * from "./collection_builder.js";
|
|
2
|
+
export * from "./util.js";
|
|
3
|
+
export * from "./strings.js";
|
package/dist/strings.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebasepro/inference",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1-canary.g2d1aec8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"types": "dist/index.d.ts",
|
|
12
12
|
"source": "src/index.ts",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@rebasepro/
|
|
15
|
-
"@rebasepro/
|
|
14
|
+
"@rebasepro/types": "0.16.1-canary.g2d1aec8",
|
|
15
|
+
"@rebasepro/utils": "0.16.1-canary.g2d1aec8"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/jest": "^30.0.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"dev": "vite",
|
|
45
|
-
"build": "vite build && tsc --emitDeclarationOnly -p tsconfig.prod.json && node ../../scripts/assert-build-output.mjs",
|
|
45
|
+
"build": "vite build && tsc --emitDeclarationOnly -p tsconfig.prod.json && node ../../scripts/add-dts-extensions.mjs dist && node ../../scripts/assert-build-output.mjs",
|
|
46
46
|
"test": "jest --passWithNoTests",
|
|
47
47
|
"clean": "rm -rf dist && find ./src -name '*.js' -type f | xargs rm -f"
|
|
48
48
|
}
|