@warp-drive-mirror/json-api 5.8.0-alpha.30 → 5.8.0-alpha.32
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/unpkg/dev/declarations/-private/cache.d.ts +445 -0
- package/dist/unpkg/dev/declarations/-private/validate-document-fields.d.ts +3 -0
- package/dist/unpkg/dev/declarations/-private/validator/1.1/7.1_top-level-document-members.d.ts +1 -0
- package/dist/unpkg/dev/declarations/-private/validator/1.1/7.2_resource-objects.d.ts +1 -0
- package/dist/unpkg/dev/declarations/-private/validator/1.1/links.d.ts +1 -0
- package/dist/unpkg/dev/declarations/-private/validator/index.d.ts +4 -0
- package/dist/unpkg/dev/declarations/-private/validator/utils.d.ts +75 -0
- package/dist/unpkg/dev/declarations/index.d.ts +5 -0
- package/dist/unpkg/dev/index.js +3225 -0
- package/dist/unpkg/dev-deprecated/declarations/-private/cache.d.ts +445 -0
- package/dist/unpkg/dev-deprecated/declarations/-private/validate-document-fields.d.ts +3 -0
- package/dist/unpkg/dev-deprecated/declarations/-private/validator/1.1/7.1_top-level-document-members.d.ts +1 -0
- package/dist/unpkg/dev-deprecated/declarations/-private/validator/1.1/7.2_resource-objects.d.ts +1 -0
- package/dist/unpkg/dev-deprecated/declarations/-private/validator/1.1/links.d.ts +1 -0
- package/dist/unpkg/dev-deprecated/declarations/-private/validator/index.d.ts +4 -0
- package/dist/unpkg/dev-deprecated/declarations/-private/validator/utils.d.ts +75 -0
- package/dist/unpkg/dev-deprecated/declarations/index.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/index.js +3225 -0
- package/dist/unpkg/prod/declarations/-private/cache.d.ts +445 -0
- package/dist/unpkg/prod/declarations/-private/validate-document-fields.d.ts +3 -0
- package/dist/unpkg/prod/declarations/-private/validator/1.1/7.1_top-level-document-members.d.ts +1 -0
- package/dist/unpkg/prod/declarations/-private/validator/1.1/7.2_resource-objects.d.ts +1 -0
- package/dist/unpkg/prod/declarations/-private/validator/1.1/links.d.ts +1 -0
- package/dist/unpkg/prod/declarations/-private/validator/index.d.ts +4 -0
- package/dist/unpkg/prod/declarations/-private/validator/utils.d.ts +75 -0
- package/dist/unpkg/prod/declarations/index.d.ts +5 -0
- package/dist/unpkg/prod/index.js +3225 -0
- package/dist/unpkg/prod-deprecated/declarations/-private/cache.d.ts +445 -0
- package/dist/unpkg/prod-deprecated/declarations/-private/validate-document-fields.d.ts +3 -0
- package/dist/unpkg/prod-deprecated/declarations/-private/validator/1.1/7.1_top-level-document-members.d.ts +1 -0
- package/dist/unpkg/prod-deprecated/declarations/-private/validator/1.1/7.2_resource-objects.d.ts +1 -0
- package/dist/unpkg/prod-deprecated/declarations/-private/validator/1.1/links.d.ts +1 -0
- package/dist/unpkg/prod-deprecated/declarations/-private/validator/index.d.ts +4 -0
- package/dist/unpkg/prod-deprecated/declarations/-private/validator/utils.d.ts +75 -0
- package/dist/unpkg/prod-deprecated/declarations/index.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/index.js +3225 -0
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive-mirror/json-api",
|
|
3
|
-
"version": "5.8.0-alpha.
|
|
3
|
+
"version": "5.8.0-alpha.32",
|
|
4
4
|
"description": "A {json:api} Cache Implementation for WarpDrive",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@warp-drive-mirror/core": "5.8.0-alpha.
|
|
35
|
+
"@warp-drive-mirror/core": "5.8.0-alpha.32"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@embroider/macros": "^1.18.1",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
45
45
|
"@babel/preset-typescript": "^7.27.1",
|
|
46
46
|
"@types/json-to-ast": "^2.1.4",
|
|
47
|
-
"@warp-drive/internal-config": "5.8.0-alpha.
|
|
48
|
-
"@warp-drive-mirror/core": "5.8.0-alpha.
|
|
47
|
+
"@warp-drive/internal-config": "5.8.0-alpha.32",
|
|
48
|
+
"@warp-drive-mirror/core": "5.8.0-alpha.32",
|
|
49
49
|
"decorator-transforms": "^2.3.0",
|
|
50
50
|
"expect-type": "^1.2.2",
|
|
51
51
|
"typescript": "^5.9.2",
|