@ember-data/request-utils 5.6.0-alpha.5 → 5.6.0-beta.1

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.
Files changed (30) hide show
  1. package/addon-main.cjs +1 -1
  2. package/dist/deprecation-support.js +9 -8
  3. package/dist/handlers.js +1 -141
  4. package/dist/index.js +6 -909
  5. package/dist/string.js +1 -2
  6. package/package.json +5 -11
  7. package/unstable-preview-types/deprecation-support.d.ts +2 -2
  8. package/unstable-preview-types/handlers.d.ts +8 -8
  9. package/unstable-preview-types/index.d.ts +10 -649
  10. package/unstable-preview-types/string.d.ts +13 -14
  11. package/dist/deprecation-support.js.map +0 -1
  12. package/dist/handlers.js.map +0 -1
  13. package/dist/index.js.map +0 -1
  14. package/dist/inflect-SV-gOUrZ.js +0 -267
  15. package/dist/inflect-SV-gOUrZ.js.map +0 -1
  16. package/dist/string.js.map +0 -1
  17. package/dist/transform-BixPrO0I.js +0 -173
  18. package/dist/transform-BixPrO0I.js.map +0 -1
  19. package/unstable-preview-types/-private/handlers/auto-compress.d.ts +0 -155
  20. package/unstable-preview-types/-private/handlers/auto-compress.d.ts.map +0 -1
  21. package/unstable-preview-types/-private/string/inflect.d.ts +0 -107
  22. package/unstable-preview-types/-private/string/inflect.d.ts.map +0 -1
  23. package/unstable-preview-types/-private/string/inflections.d.ts +0 -12
  24. package/unstable-preview-types/-private/string/inflections.d.ts.map +0 -1
  25. package/unstable-preview-types/-private/string/transform.d.ts +0 -102
  26. package/unstable-preview-types/-private/string/transform.d.ts.map +0 -1
  27. package/unstable-preview-types/deprecation-support.d.ts.map +0 -1
  28. package/unstable-preview-types/handlers.d.ts.map +0 -1
  29. package/unstable-preview-types/index.d.ts.map +0 -1
  30. package/unstable-preview-types/string.d.ts.map +0 -1
package/dist/string.js CHANGED
@@ -1,2 +1 @@
1
- export { d as clear, e as clearRules, i as irregular, l as loadIrregular, c as loadUncountable, b as plural, p as pluralize, r as resetToDefaults, a as singular, s as singularize, u as uncountable } from "./inflect-SV-gOUrZ.js";
2
- export { c as camelize, a as capitalize, d as dasherize, s as setMaxLRUCacheSize, u as underscore } from "./transform-BixPrO0I.js";
1
+ export * from '@warp-drive/utilities/string';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ember-data/request-utils",
3
3
  "description": "Request Building Utilities for use with EmberData",
4
- "version": "5.6.0-alpha.5",
4
+ "version": "5.6.0-beta.1",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "author": "Chris Thoburn <runspired@users.noreply.github.com>",
@@ -43,34 +43,28 @@
43
43
  "version": 2
44
44
  },
45
45
  "peerDependencies": {
46
- "@ember/string": "^3.1.1 || ^4.0.0",
47
46
  "ember-inflector": "^4.0.2 || ^5.0.0 || ^6.0.0"
48
47
  },
49
48
  "peerDependenciesMeta": {
50
49
  "ember-inflector": {
51
50
  "optional": true
52
- },
53
- "@ember/string": {
54
- "optional": true
55
51
  }
56
52
  },
57
53
  "dependencies": {
58
54
  "@embroider/macros": "^1.16.12",
59
- "@warp-drive/build-config": "5.6.0-alpha.5",
60
- "@warp-drive/core": "5.6.0-alpha.5"
55
+ "@warp-drive/core": "5.6.0-beta.0",
56
+ "@warp-drive/utilities": "5.6.0-beta.0"
61
57
  },
62
58
  "devDependencies": {
63
59
  "@babel/core": "^7.26.10",
64
60
  "@babel/plugin-transform-typescript": "^7.27.0",
65
61
  "@babel/preset-env": "^7.26.9",
66
62
  "@babel/preset-typescript": "^7.27.0",
67
- "@glimmer/component": "^2.0.0",
68
- "@ember/string": "4.0.1",
69
- "@warp-drive/internal-config": "5.6.0-alpha.5",
63
+ "@warp-drive/internal-config": "5.6.0-beta.1",
70
64
  "ember-source": "~6.3.0",
71
65
  "ember-inflector": "6.0.0",
72
66
  "typescript": "^5.8.3",
73
- "vite": "^5.4.15"
67
+ "vite": "^7.0.0"
74
68
  },
75
69
  "ember": {
76
70
  "edition": "octane"
@@ -1,4 +1,4 @@
1
1
  declare module '@ember-data/request-utils/deprecation-support' {
2
2
  export {};
3
- }
4
- //# sourceMappingURL=deprecation-support.d.ts.map
3
+
4
+ }
@@ -1,10 +1,10 @@
1
1
  declare module '@ember-data/request-utils/handlers' {
2
2
  /**
3
- * A selection of pre-built request handlers for handling common
4
- * request scenarios.
5
- *
6
- * @module
7
- */
8
- export { AutoCompress, SupportsRequestStreams } from '@ember-data/request-utils/-private/handlers/auto-compress.ts';
9
- }
10
- //# sourceMappingURL=handlers.d.ts.map
3
+ * A selection of pre-built request handlers for handling common
4
+ * request scenarios.
5
+ *
6
+ * @module
7
+ */
8
+ export * from "@warp-drive/utilities/handlers";
9
+
10
+ }