@warp-drive-mirror/json-api 5.8.0-alpha.30 → 5.8.0-alpha.34
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 +28 -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.34",
|
|
4
4
|
"description": "A {json:api} Cache Implementation for WarpDrive",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -23,16 +23,40 @@
|
|
|
23
23
|
],
|
|
24
24
|
"exports": {
|
|
25
25
|
".": {
|
|
26
|
+
"unpkg": {
|
|
27
|
+
"development": {
|
|
28
|
+
"deprecations": {
|
|
29
|
+
".": "./dist/unpkg/dev-deprecated/index.js"
|
|
30
|
+
},
|
|
31
|
+
".": "./dist/unpkg/dev/index.js"
|
|
32
|
+
},
|
|
33
|
+
"deprecations": {
|
|
34
|
+
".": "./dist/unpkg/prod-deprecated/index.js"
|
|
35
|
+
},
|
|
36
|
+
".": "./dist/unpkg/prod/index.js"
|
|
37
|
+
},
|
|
26
38
|
"types": "./declarations/index.d.ts",
|
|
27
39
|
"default": "./dist/index.js"
|
|
28
40
|
},
|
|
29
41
|
"./*": {
|
|
42
|
+
"unpkg": {
|
|
43
|
+
"development": {
|
|
44
|
+
"deprecations": {
|
|
45
|
+
"./*": "./dist/unpkg/dev-deprecated/*.js"
|
|
46
|
+
},
|
|
47
|
+
"./*": "./dist/unpkg/dev/*.js"
|
|
48
|
+
},
|
|
49
|
+
"deprecations": {
|
|
50
|
+
"./*": "./dist/unpkg/prod-deprecated/*.js"
|
|
51
|
+
},
|
|
52
|
+
"./*": "./dist/unpkg/prod/*.js"
|
|
53
|
+
},
|
|
30
54
|
"types": "./declarations/*.d.ts",
|
|
31
55
|
"default": "./dist/*.js"
|
|
32
56
|
}
|
|
33
57
|
},
|
|
34
58
|
"peerDependencies": {
|
|
35
|
-
"@warp-drive-mirror/core": "5.8.0-alpha.
|
|
59
|
+
"@warp-drive-mirror/core": "5.8.0-alpha.34"
|
|
36
60
|
},
|
|
37
61
|
"dependencies": {
|
|
38
62
|
"@embroider/macros": "^1.18.1",
|
|
@@ -44,8 +68,8 @@
|
|
|
44
68
|
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
45
69
|
"@babel/preset-typescript": "^7.27.1",
|
|
46
70
|
"@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.
|
|
71
|
+
"@warp-drive/internal-config": "5.8.0-alpha.34",
|
|
72
|
+
"@warp-drive-mirror/core": "5.8.0-alpha.34",
|
|
49
73
|
"decorator-transforms": "^2.3.0",
|
|
50
74
|
"expect-type": "^1.2.2",
|
|
51
75
|
"typescript": "^5.9.2",
|