@ember-data/legacy-compat 5.6.0-alpha.14 → 5.6.0-alpha.17
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.js +0 -1
- package/dist/builders.js +0 -1
- package/dist/index.js +0 -1
- package/dist/utils.js +0 -1
- package/package.json +6 -6
- package/unstable-preview-types/-private.d.ts +7 -7
- package/unstable-preview-types/builders.d.ts +9 -9
- package/unstable-preview-types/index.d.ts +3 -3
- package/unstable-preview-types/utils.d.ts +7 -7
- package/dist/-private.js.map +0 -1
- package/dist/builders.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/utils.js.map +0 -1
- package/unstable-preview-types/-private.d.ts.map +0 -1
- package/unstable-preview-types/builders.d.ts.map +0 -1
- package/unstable-preview-types/index.d.ts.map +0 -1
- package/unstable-preview-types/utils.d.ts.map +0 -1
package/dist/-private.js
CHANGED
package/dist/builders.js
CHANGED
package/dist/index.js
CHANGED
package/dist/utils.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-data/legacy-compat",
|
|
3
3
|
"description": "Compatibility Shims for Older EmberData",
|
|
4
|
-
"version": "5.6.0-alpha.
|
|
4
|
+
"version": "5.6.0-alpha.17",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
|
|
7
7
|
"repository": {
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@embroider/macros": "^1.16.12",
|
|
46
|
-
"@warp-drive/core": "5.6.0-alpha.
|
|
47
|
-
"@warp-drive/legacy": "5.6.0-alpha.
|
|
48
|
-
"@warp-drive/utilities": "5.6.0-alpha.
|
|
46
|
+
"@warp-drive/core": "5.6.0-alpha.17",
|
|
47
|
+
"@warp-drive/legacy": "5.6.0-alpha.17",
|
|
48
|
+
"@warp-drive/utilities": "5.6.0-alpha.17"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {},
|
|
51
51
|
"devDependencies": {
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"@babel/plugin-transform-typescript": "^7.27.0",
|
|
54
54
|
"@babel/preset-env": "^7.26.9",
|
|
55
55
|
"@babel/preset-typescript": "^7.27.0",
|
|
56
|
-
"@warp-drive/internal-config": "5.6.0-alpha.
|
|
56
|
+
"@warp-drive/internal-config": "5.6.0-alpha.17",
|
|
57
57
|
"typescript": "^5.8.3",
|
|
58
|
-
"vite": "^
|
|
58
|
+
"vite": "^7.0.0"
|
|
59
59
|
},
|
|
60
60
|
"ember": {
|
|
61
61
|
"edition": "octane"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare module '@ember-data/legacy-compat/-private' {
|
|
2
2
|
/**
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
* Utilities - often temporary - for maintaining backwards compatibility with
|
|
4
|
+
* older parts of EmberData.
|
|
5
|
+
*
|
|
6
|
+
@module
|
|
7
7
|
*/
|
|
8
|
-
export * from
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
export * from "@warp-drive/legacy/compat/-private";
|
|
9
|
+
|
|
10
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare module '@ember-data/legacy-compat/builders' {
|
|
2
2
|
/**
|
|
3
|
-
|
|
3
|
+
Builders for migrating from `store` methods to `store.request`.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
These builders enable you to migrate your codebase to using the correct syntax for `store.request` while temporarily preserving legacy behaviors.
|
|
6
|
+
This is useful for quickly upgrading an entire app to a unified syntax while a longer incremental migration is made to shift off of adapters and serializers.
|
|
7
|
+
To that end, these builders are deprecated and will be removed in a future version of Ember Data.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
@module
|
|
10
|
+
@deprecated
|
|
11
11
|
*/
|
|
12
|
-
export * from
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
export * from "@warp-drive/legacy/compat/builders";
|
|
13
|
+
|
|
14
|
+
}
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
/// <reference path="./-private.d.ts" />
|
|
3
3
|
/// <reference path="./utils.d.ts" />
|
|
4
4
|
declare module '@ember-data/legacy-compat' {
|
|
5
|
-
export * from
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
export * from "@warp-drive/legacy/compat";
|
|
6
|
+
|
|
7
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare module '@ember-data/legacy-compat/utils' {
|
|
2
2
|
/**
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Utilities for helping to migrate to stricter
|
|
4
|
+
and more consistent use of IDs and types.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
@module
|
|
7
|
+
@deprecated
|
|
8
8
|
*/
|
|
9
|
-
export * from
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
export * from "@warp-drive/legacy/compat/utils";
|
|
10
|
+
|
|
11
|
+
}
|
package/dist/-private.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"-private.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/dist/builders.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"builders.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/dist/utils.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"-private.d.ts","sourceRoot":"","sources":["../src/-private.ts"],"names":[],"mappings":"AAAA;;;;;EAKE;AACF,cAAc,oCAAoC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"builders.d.ts","sourceRoot":"","sources":["../src/builders.ts"],"names":[],"mappings":"AAAA;;;;;;;;;EASE;AAEF,cAAc,oCAAoC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAAA;;;;;;EAME;AAEF,cAAc,iCAAiC,CAAC"}
|