@warp-drive-mirror/schema-record 5.9.0-alpha.21 → 5.9.0-alpha.23
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/-private.d.ts +2 -0
- package/dist/-private.js +3 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -1
- package/package.json +13 -12
- package/unstable-preview-types/-private.d.ts +2 -2
- package/unstable-preview-types/index.d.ts +2 -6
package/dist/-private.js
CHANGED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { Checkout, ReactiveResource as SchemaRecord, SchemaService, Transformation, fromIdentity, instantiateRecord, registerDerivations, teardownRecord, withDefaults } from "@warp-drive-mirror/core/reactive";
|
|
2
|
+
export { Checkout, type SchemaRecord, SchemaService, type Transformation, fromIdentity, instantiateRecord, registerDerivations, teardownRecord, withDefaults };
|
package/dist/index.js
CHANGED
|
@@ -1 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
import { Checkout, SchemaService, fromIdentity, instantiateRecord, registerDerivations, teardownRecord, withDefaults } from "@warp-drive-mirror/core/reactive";
|
|
2
|
+
|
|
3
|
+
export { Checkout, SchemaService, fromIdentity, instantiateRecord, registerDerivations, teardownRecord, withDefaults };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive-mirror/schema-record",
|
|
3
|
-
"version": "5.9.0-alpha.
|
|
3
|
+
"version": "5.9.0-alpha.23",
|
|
4
4
|
"description": "(Legacy) Schema Driven Resource Presentation for WarpDrive and EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"dist",
|
|
23
23
|
"README.md",
|
|
24
24
|
"LICENSE.md",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
25
|
+
"logos",
|
|
26
|
+
"unstable-preview-types"
|
|
27
27
|
],
|
|
28
28
|
"exports": {
|
|
29
29
|
".": {
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@embroider/macros": "^1.20.6",
|
|
41
|
-
"@warp-drive-mirror/core": "5.9.0-alpha.
|
|
41
|
+
"@warp-drive-mirror/core": "5.9.0-alpha.23"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@babel/core": "^7.
|
|
45
|
-
"@babel/plugin-transform-typescript": "^7.
|
|
46
|
-
"@babel/preset-env": "^7.
|
|
47
|
-
"@babel/preset-typescript": "^7.
|
|
48
|
-
"@warp-drive/internal-config": "5.9.0-alpha.
|
|
49
|
-
"
|
|
44
|
+
"@babel/core": "^7.29.7",
|
|
45
|
+
"@babel/plugin-transform-typescript": "^7.29.7",
|
|
46
|
+
"@babel/preset-env": "^7.29.7",
|
|
47
|
+
"@babel/preset-typescript": "^7.29.7",
|
|
48
|
+
"@warp-drive/internal-config": "5.9.0-alpha.23",
|
|
49
|
+
"tsdown": "^0.22.14"
|
|
50
50
|
},
|
|
51
51
|
"ember": {
|
|
52
52
|
"edition": "octane"
|
|
@@ -63,8 +63,9 @@
|
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"lint": "eslint . --quiet --cache --cache-strategy=content",
|
|
66
|
-
"
|
|
66
|
+
"check:types": "tsc --noEmit",
|
|
67
|
+
"build:pkg": "node node_modules/tsdown/dist/run.mjs",
|
|
67
68
|
"sync": "echo \"syncing\"",
|
|
68
|
-
"start": "
|
|
69
|
+
"start": "node node_modules/tsdown/dist/run.mjs --watch"
|
|
69
70
|
}
|
|
70
71
|
}
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
/// <reference path="./-private.d.ts" />
|
|
2
2
|
declare module '@warp-drive-mirror/schema-record' {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
* @mergeModuleWith <project>
|
|
6
|
-
*/
|
|
7
|
-
export { instantiateRecord, teardownRecord, type Transformation, SchemaService, withDefaults, fromIdentity, registerDerivations, type ReactiveResource as SchemaRecord, Checkout } from "@warp-drive-mirror/core/reactive";
|
|
8
|
-
|
|
3
|
+
import { Checkout, ReactiveResource as SchemaRecord, SchemaService, Transformation, fromIdentity, instantiateRecord, registerDerivations, teardownRecord, withDefaults } from "@warp-drive-mirror/core/reactive";
|
|
4
|
+
export { Checkout, type SchemaRecord, SchemaService, type Transformation, fromIdentity, instantiateRecord, registerDerivations, teardownRecord, withDefaults };
|
|
9
5
|
}
|