@warp-drive/core 5.9.0-alpha.14 → 5.9.0-alpha.16

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 (47) hide show
  1. package/declarations/build-config/debugging.d.ts +55 -0
  2. package/declarations/signals/-leaked.d.ts +1 -1
  3. package/declarations/signals/-private.d.ts +1 -1
  4. package/dist/{configure-BlQ9ebNX.js → configure-BMxnD2RJ.js} +1 -1
  5. package/dist/configure.js +1 -1
  6. package/dist/{index-D1MSdV3_.js → index-CFwnjldF.js} +1 -1
  7. package/dist/index.js +2 -2
  8. package/dist/reactive.js +2 -2
  9. package/dist/signals/-leaked.js +1 -1
  10. package/dist/store/-private.js +1 -1
  11. package/dist/types/-private.js +1 -1
  12. package/dist/unpkg/dev/{-leaked-BYj8zMi0.js → -leaked-BohmerbH.js} +1 -1
  13. package/dist/unpkg/dev/configure.js +1 -1
  14. package/dist/unpkg/dev/{index-BRuavm7L.js → index-BZRBBa34.js} +1 -1
  15. package/dist/unpkg/dev/index.js +2 -2
  16. package/dist/unpkg/dev/reactive.js +2 -2
  17. package/dist/unpkg/dev/signals/-leaked.js +1 -1
  18. package/dist/unpkg/dev/store/-private.js +2 -2
  19. package/dist/unpkg/dev/types/-private.js +1 -1
  20. package/dist/unpkg/dev-deprecated/{-leaked-D0KHC8Qz.js → -leaked-C40gfiH-.js} +1 -1
  21. package/dist/unpkg/dev-deprecated/configure.js +1 -1
  22. package/dist/unpkg/dev-deprecated/{index-BwwP9hpV.js → index-Bu52tQ9I.js} +1 -1
  23. package/dist/unpkg/dev-deprecated/index.js +2 -2
  24. package/dist/unpkg/dev-deprecated/reactive.js +2 -2
  25. package/dist/unpkg/dev-deprecated/signals/-leaked.js +1 -1
  26. package/dist/unpkg/dev-deprecated/store/-private.js +1 -1
  27. package/dist/unpkg/dev-deprecated/types/-private.js +1 -1
  28. package/dist/unpkg/prod/{-leaked-DUONXQDB.js → -leaked-BHLmJyaw.js} +1 -1
  29. package/dist/unpkg/prod/configure.js +1 -1
  30. package/dist/unpkg/prod/{handler-DeouKoRZ.js → handler-BJogFbfS.js} +2 -2
  31. package/dist/unpkg/prod/index.js +4 -4
  32. package/dist/unpkg/prod/reactive.js +3 -3
  33. package/dist/unpkg/prod/{schema-DlxmDxns.js → schema-BdC3DirM.js} +1 -1
  34. package/dist/unpkg/prod/signals/-leaked.js +1 -1
  35. package/dist/unpkg/prod/store/-private.js +3 -3
  36. package/dist/unpkg/prod/types/-private.js +1 -1
  37. package/dist/unpkg/prod-deprecated/{-leaked-DRNv9VIX.js → -leaked-D_5Yrs5c.js} +1 -1
  38. package/dist/unpkg/prod-deprecated/configure.js +1 -1
  39. package/dist/unpkg/prod-deprecated/{handler-BVKoq9bM.js → handler-kGR8zguj.js} +1 -1
  40. package/dist/unpkg/prod-deprecated/{hooks-CfCFjO7d.js → hooks-wJdveHPi.js} +1 -1
  41. package/dist/unpkg/prod-deprecated/index.js +5 -5
  42. package/dist/unpkg/prod-deprecated/reactive.js +3 -3
  43. package/dist/unpkg/prod-deprecated/{schema-_W00LRDb.js → schema-h0nuUTCj.js} +1 -1
  44. package/dist/unpkg/prod-deprecated/signals/-leaked.js +1 -1
  45. package/dist/unpkg/prod-deprecated/store/-private.js +2 -2
  46. package/dist/unpkg/prod-deprecated/types/-private.js +1 -1
  47. package/package.json +3 -3
@@ -1 +1,56 @@
1
+ /**
2
+ * # Log Instrumentation <Badge type="tip" text="debug only" />
3
+ *
4
+ * Many portions of the internals are helpfully instrumented with logging.
5
+ * This instrumentation is always removed from production builds.
6
+ *
7
+ * Log instrumentation is "regionalized" to specific concepts and concerns
8
+ * to enable you to enable/disable just the areas you are interested in.
9
+ *
10
+ * To activate a particular group of logs set the appropriate flag to `true`
11
+ * either in your build config or via the runtime helper.
12
+ *
13
+ *
14
+ * ## Runtime Activation
15
+ *
16
+ * ::: tip 💡 Just Works in browser Dev Tools!
17
+ * No import is needed, and the logging config is preserved when the page is refreshed
18
+ * :::
19
+ *
20
+ * ```ts
21
+ * setWarpDriveLogging({
22
+ * LOG_CACHE: true,
23
+ * LOG_REQUESTS: true,
24
+ * })
25
+ * ```
26
+ *
27
+ * A runtime helper is attached to `globalThis` to enable activation of the logs
28
+ * from anywhere in your application including from the devtools panel.
29
+ *
30
+ * The runtime helper overrides any build config settings for the given flag
31
+ * for the current browser tab. It stores the configuration you give it in
32
+ * `sessionStorage` so that it persists across page reloads of the current tab,
33
+ * but not across browser tabs or windows.
34
+ *
35
+ * If you need to deactivate the logging, you can call the helper again with the
36
+ * same flag set to `false` or just open a new tab/window.
37
+ *
38
+ * ## Buildtime Activation
39
+ *
40
+ * ```ts
41
+ * setConfig(__dirname, app, {
42
+ * debug: {
43
+ * LOG_CACHE: true,
44
+ * LOG_REQUESTS: false,
45
+ * LOG_NOTIFICATIONS: true,
46
+ * }
47
+ * });
48
+ * ```
49
+ *
50
+ * The build config settings are used to set the default values for the
51
+ * logging flags. Any logging flag that is not set in the build config
52
+ * will default to `false`.
53
+ *
54
+ * @module
55
+ */
1
56
  export * from "@warp-drive/build-config/debugging";
@@ -1,2 +1,2 @@
1
- export { defineNonEnumerableSignal, defineGate, defineSignal, entangleSignal, signal, waitFor, gate, DISPOSE, memoized, notifyInternalSignal, peekInternalSignal, withSignalStore } from "./-private.js";
1
+ export { defineNonEnumerableSignal, defineGate, defineSignal, entangleSignal, makeInitializer, signal, waitFor, gate, DISPOSE, memoized, notifyInternalSignal, peekInternalSignal, withSignalStore } from "./-private.js";
2
2
  export type { AutorefreshBehaviorCombos, SubscriptionArgs, ContentFeatures, RecoveryFeatures, RequestArgs } from "./-private.js";
@@ -3,4 +3,4 @@ export { getRequestState, type RequestLoadingState, type RequestState } from "./
3
3
  export { getPromiseState, type PromiseState, type ResolvedPromise, type RejectedPromise, type PendingPromise } from "./promise-state.js";
4
4
  export { setupSignals, type HooksOptions, type SignalHooks, waitFor, willSyncFlushWatchers } from "./reactivity/configure.js";
5
5
  export { signal, memoized, gate, entangleSignal, entangleInitiallyStaleSignal, defineSignal, defineGate, defineNonEnumerableSignal, createSignalDescriptor } from "./reactivity/signal.js";
6
- export { type SignalStore, ARRAY_SIGNAL, OBJECT_SIGNAL, Signals, type WarpDriveSignal, peekInternalSignal, createInternalMemo, withSignalStore, notifyInternalSignal, consumeInternalSignal, getOrCreateInternalSignal, createInternalSignal } from "./reactivity/internal.js";
6
+ export { type SignalStore, ARRAY_SIGNAL, OBJECT_SIGNAL, Signals, type WarpDriveSignal, peekInternalSignal, createInternalMemo, withSignalStore, notifyInternalSignal, consumeInternalSignal, getOrCreateInternalSignal, createInternalSignal, makeInitializer } from "./reactivity/internal.js";
@@ -1937,4 +1937,4 @@ function getPromiseState(promise) {
1937
1937
  }
1938
1938
  return state;
1939
1939
  }
1940
- export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, defineGate as a, defineSignal as b, withSignalStore as c, defineNonEnumerableSignal as d, entangleSignal as e, createRequestSubscription as f, gate as g, getRequestState as h, getPromiseState as i, willSyncFlushWatchers as j, getOrCreateInternalSignal as k, consumeInternalSignal as l, memoized as m, notifyInternalSignal as n, createInternalSignal as o, peekInternalSignal as p, createSignalDescriptor as q, entangleInitiallyStaleSignal as r, signal as s, createInternalMemo as t, setupSignals as u, waitFor as w };
1940
+ export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, defineGate as a, defineSignal as b, memoized as c, defineNonEnumerableSignal as d, entangleSignal as e, withSignalStore as f, gate as g, createRequestSubscription as h, getRequestState as i, getPromiseState as j, willSyncFlushWatchers as k, getOrCreateInternalSignal as l, makeInitializer as m, notifyInternalSignal as n, consumeInternalSignal as o, peekInternalSignal as p, createInternalSignal as q, createSignalDescriptor as r, signal as s, entangleInitiallyStaleSignal as t, createInternalMemo as u, setupSignals as v, waitFor as w };
package/dist/configure.js CHANGED
@@ -1,2 +1,2 @@
1
- export { u as setupSignals } from "./configure-BlQ9ebNX.js";
1
+ export { v as setupSignals } from "./configure-BMxnD2RJ.js";
2
2
  import '@embroider/macros';
@@ -1,4 +1,4 @@
1
- import { a as defineGate, c as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, j as willSyncFlushWatchers, k as getOrCreateInternalSignal, l as consumeInternalSignal, o as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, q as createSignalDescriptor, b as defineSignal, e as entangleSignal, r as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, t as createInternalMemo, w as waitFor } from "./configure-BlQ9ebNX.js";
1
+ import { a as defineGate, f as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, k as willSyncFlushWatchers, l as getOrCreateInternalSignal, o as consumeInternalSignal, q as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, r as createSignalDescriptor, b as defineSignal, e as entangleSignal, t as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, u as createInternalMemo, w as waitFor } from "./configure-BMxnD2RJ.js";
2
2
  import { deprecate, warn } from '@ember/debug';
3
3
  import { EnableHydration, SkipCache, STRUCTURED } from './types/request.js';
4
4
  import { macroCondition, getGlobalConfig, dependencySatisfies, importSync } from '@embroider/macros';
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
- export { C as CacheHandler, F as Fetch, z as RequestManager, S as Store, r as cacheKeyFor, r as recordIdentifierFor, E as setIdentifierForgetMethod, B as setIdentifierGenerationMethod, G as setIdentifierResetMethod, D as setIdentifierUpdateMethod, H as setKeyInfoForResource, s as storeFor, A as useRecommendedStore } from "./index-D1MSdV3_.js";
1
+ export { C as CacheHandler, F as Fetch, z as RequestManager, S as Store, r as cacheKeyFor, r as recordIdentifierFor, E as setIdentifierForgetMethod, B as setIdentifierGenerationMethod, G as setIdentifierResetMethod, D as setIdentifierUpdateMethod, H as setKeyInfoForResource, s as storeFor, A as useRecommendedStore } from "./index-CFwnjldF.js";
2
2
  import "./symbols-3C1OkYtZ.js";
3
- import "./configure-BlQ9ebNX.js";
3
+ import "./configure-BMxnD2RJ.js";
4
4
  import '@embroider/macros';
5
5
  import "./default-cache-policy-D7_u4YRH.js";
6
6
  import '@ember/debug';
package/dist/reactive.js CHANGED
@@ -1,4 +1,4 @@
1
- export { u as SchemaService, p as checkout, y as commit, v as fromIdentity, q as instantiateRecord, x as registerDerivations, t as teardownRecord, w as withDefaults } from "./index-D1MSdV3_.js";
1
+ export { u as SchemaService, p as checkout, y as commit, v as fromIdentity, q as instantiateRecord, x as registerDerivations, t as teardownRecord, w as withDefaults } from "./index-CFwnjldF.js";
2
2
  export { C as Checkout } from "./symbols-3C1OkYtZ.js";
3
- export { f as createRequestSubscription, i as getPromiseState, h as getRequestState } from "./configure-BlQ9ebNX.js";
3
+ export { h as createRequestSubscription, j as getPromiseState, i as getRequestState } from "./configure-BMxnD2RJ.js";
4
4
  import '@embroider/macros';
@@ -1 +1 @@
1
- export { D as DISPOSE, a as defineGate, d as defineNonEnumerableSignal, b as defineSignal, e as entangleSignal, g as gate, m as memoized, n as notifyInternalSignal, p as peekInternalSignal, s as signal, w as waitFor, c as withSignalStore } from "../configure-BlQ9ebNX.js";
1
+ export { D as DISPOSE, a as defineGate, d as defineNonEnumerableSignal, b as defineSignal, e as entangleSignal, g as gate, m as makeInitializer, c as memoized, n as notifyInternalSignal, p as peekInternalSignal, s as signal, w as waitFor, f as withSignalStore } from "../configure-BMxnD2RJ.js";
@@ -1 +1 @@
1
- export { C as CacheHandler, R as RecordArrayManager, S as Store, k as StoreMap, _ as _clearCaches, n as _deprecatingNormalize, h as assertPrivateCapabilities, d as assertPrivateStore, b as coerceId, c as constructResource, l as createLegacyManyArray, e as ensureStringId, f as fastPush, g as isPrivateStore, a as isRequestKey, i as isResourceKey, m as log, o as logGroup, r as recordIdentifierFor, j as setRecordIdentifier, s as storeFor } from "../index-D1MSdV3_.js";
1
+ export { C as CacheHandler, R as RecordArrayManager, S as Store, k as StoreMap, _ as _clearCaches, n as _deprecatingNormalize, h as assertPrivateCapabilities, d as assertPrivateStore, b as coerceId, c as constructResource, l as createLegacyManyArray, e as ensureStringId, f as fastPush, g as isPrivateStore, a as isRequestKey, i as isResourceKey, m as log, o as logGroup, r as recordIdentifierFor, j as setRecordIdentifier, s as storeFor } from "../index-CFwnjldF.js";
@@ -1,6 +1,6 @@
1
1
  import { macroCondition, getGlobalConfig } from '@embroider/macros';
2
2
  const name = "@warp-drive/core";
3
- const version = "5.9.0-alpha.14";
3
+ const version = "5.9.0-alpha.16";
4
4
 
5
5
  // in testing mode, we utilize globals to ensure only one copy exists of
6
6
  // these maps, due to bugs in ember-auto-import
@@ -1936,4 +1936,4 @@ function getPromiseState(promise) {
1936
1936
  }
1937
1937
  return state;
1938
1938
  }
1939
- export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, willSyncFlushWatchers as a, createInternalSignal as b, consumeInternalSignal as c, defineGate as d, createSignalDescriptor as e, defineSignal as f, getOrCreateInternalSignal as g, entangleSignal as h, entangleInitiallyStaleSignal as i, createInternalMemo as j, createRequestSubscription as k, getRequestState as l, getPromiseState as m, notifyInternalSignal as n, waitFor as o, peekInternalSignal as p, defineNonEnumerableSignal as q, signal as r, setupSignals as s, gate as t, memoized as u, withSignalStore as w };
1939
+ export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, willSyncFlushWatchers as a, createInternalSignal as b, consumeInternalSignal as c, defineGate as d, createSignalDescriptor as e, defineSignal as f, getOrCreateInternalSignal as g, entangleSignal as h, entangleInitiallyStaleSignal as i, createInternalMemo as j, createRequestSubscription as k, getRequestState as l, getPromiseState as m, notifyInternalSignal as n, waitFor as o, peekInternalSignal as p, defineNonEnumerableSignal as q, makeInitializer as r, setupSignals as s, signal as t, gate as u, memoized as v, withSignalStore as w };
@@ -1 +1 @@
1
- export { s as setupSignals } from "./-leaked-BYj8zMi0.js";
1
+ export { s as setupSignals } from "./-leaked-BohmerbH.js";
@@ -1,5 +1,5 @@
1
1
  import { D as Destroy, C as Context, S as SOURCE, a as Checkout, b as Commit } from "./-private-sql1_mdx.js";
2
- import { d as defineGate, w as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, a as willSyncFlushWatchers, g as getOrCreateInternalSignal, c as consumeInternalSignal, b as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, e as createSignalDescriptor, f as defineSignal, h as entangleSignal, i as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, j as createInternalMemo, o as waitFor } from "./-leaked-BYj8zMi0.js";
2
+ import { d as defineGate, w as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, a as willSyncFlushWatchers, g as getOrCreateInternalSignal, c as consumeInternalSignal, b as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, e as createSignalDescriptor, f as defineSignal, h as entangleSignal, i as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, j as createInternalMemo, o as waitFor } from "./-leaked-BohmerbH.js";
3
3
  import { EnableHydration, SkipCache, STRUCTURED } from './types/request.js';
4
4
  import { isResourceSchema } from './types/schema/fields.js';
5
5
  import { a as cloneResponseProperties, I as IS_CACHE_HANDLER, b as assertValidRequest, e as executeNextHandler, d as getRequestResult, u as upgradePromise, s as setPromiseResult, f as clearRequestResult } from "./future-DUuPqyLj.js";
@@ -1,6 +1,6 @@
1
- export { C as CacheHandler, F as Fetch, y as RequestManager, S as Store, r as cacheKeyFor, r as recordIdentifierFor, D as setIdentifierForgetMethod, A as setIdentifierGenerationMethod, E as setIdentifierResetMethod, B as setIdentifierUpdateMethod, G as setKeyInfoForResource, s as storeFor, z as useRecommendedStore } from "./index-BRuavm7L.js";
1
+ export { C as CacheHandler, F as Fetch, y as RequestManager, S as Store, r as cacheKeyFor, r as recordIdentifierFor, D as setIdentifierForgetMethod, A as setIdentifierGenerationMethod, E as setIdentifierResetMethod, B as setIdentifierUpdateMethod, G as setKeyInfoForResource, s as storeFor, z as useRecommendedStore } from "./index-BZRBBa34.js";
2
2
  import "./-private-sql1_mdx.js";
3
- import "./-leaked-BYj8zMi0.js";
3
+ import "./-leaked-BohmerbH.js";
4
4
  import './store.js';
5
5
  import './types/request.js';
6
6
  import './types/runtime.js';
@@ -1,3 +1,3 @@
1
- export { q as SchemaService, o as checkout, x as commit, u as fromIdentity, p as instantiateRecord, v as registerDerivations, t as teardownRecord, w as withDefaults } from "./index-BRuavm7L.js";
1
+ export { q as SchemaService, o as checkout, x as commit, u as fromIdentity, p as instantiateRecord, v as registerDerivations, t as teardownRecord, w as withDefaults } from "./index-BZRBBa34.js";
2
2
  export { a as Checkout } from "./-private-sql1_mdx.js";
3
- export { k as createRequestSubscription, m as getPromiseState, l as getRequestState } from "./-leaked-BYj8zMi0.js";
3
+ export { k as createRequestSubscription, m as getPromiseState, l as getRequestState } from "./-leaked-BohmerbH.js";
@@ -1 +1 @@
1
- export { D as DISPOSE, d as defineGate, q as defineNonEnumerableSignal, f as defineSignal, h as entangleSignal, t as gate, u as memoized, n as notifyInternalSignal, p as peekInternalSignal, r as signal, o as waitFor, w as withSignalStore } from "../-leaked-BYj8zMi0.js";
1
+ export { D as DISPOSE, d as defineGate, q as defineNonEnumerableSignal, f as defineSignal, h as entangleSignal, u as gate, r as makeInitializer, v as memoized, n as notifyInternalSignal, p as peekInternalSignal, t as signal, o as waitFor, w as withSignalStore } from "../-leaked-BohmerbH.js";
@@ -1,6 +1,6 @@
1
1
  import '../types/request.js';
2
- import { i as isResourceKey, c as coerceId } from "../index-BRuavm7L.js";
3
- export { C as CacheHandler, R as RecordArrayManager, S as Store, j as StoreMap, _ as _clearCaches, n as _deprecatingNormalize, g as assertPrivateCapabilities, b as assertPrivateStore, k as createLegacyManyArray, e as ensureStringId, f as fastPush, d as isPrivateStore, a as isRequestKey, l as log, m as logGroup, r as recordIdentifierFor, h as setRecordIdentifier, s as storeFor } from "../index-BRuavm7L.js";
2
+ import { i as isResourceKey, c as coerceId } from "../index-BZRBBa34.js";
3
+ export { C as CacheHandler, R as RecordArrayManager, S as Store, j as StoreMap, _ as _clearCaches, n as _deprecatingNormalize, g as assertPrivateCapabilities, b as assertPrivateStore, k as createLegacyManyArray, e as ensureStringId, f as fastPush, d as isPrivateStore, a as isRequestKey, l as log, m as logGroup, r as recordIdentifierFor, h as setRecordIdentifier, s as storeFor } from "../index-BZRBBa34.js";
4
4
  function isNonEmptyString(str) {
5
5
  return Boolean(str && typeof str === 'string');
6
6
  }
@@ -1,5 +1,5 @@
1
1
  const name = "@warp-drive/core";
2
- const version = "5.9.0-alpha.14";
2
+ const version = "5.9.0-alpha.16";
3
3
 
4
4
  // in testing mode, we utilize globals to ensure only one copy exists of
5
5
  // these maps, due to bugs in ember-auto-import
@@ -1936,4 +1936,4 @@ function getPromiseState(promise) {
1936
1936
  }
1937
1937
  return state;
1938
1938
  }
1939
- export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, getPromiseState as a, willSyncFlushWatchers as b, createRequestSubscription as c, defineGate as d, getOrCreateInternalSignal as e, consumeInternalSignal as f, getRequestState as g, createInternalSignal as h, createSignalDescriptor as i, defineSignal as j, entangleSignal as k, entangleInitiallyStaleSignal as l, createInternalMemo as m, notifyInternalSignal as n, waitFor as o, peekInternalSignal as p, defineNonEnumerableSignal as q, signal as r, setupSignals as s, gate as t, memoized as u, withSignalStore as w };
1939
+ export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, getPromiseState as a, willSyncFlushWatchers as b, createRequestSubscription as c, defineGate as d, getOrCreateInternalSignal as e, consumeInternalSignal as f, getRequestState as g, createInternalSignal as h, createSignalDescriptor as i, defineSignal as j, entangleSignal as k, entangleInitiallyStaleSignal as l, createInternalMemo as m, notifyInternalSignal as n, waitFor as o, peekInternalSignal as p, defineNonEnumerableSignal as q, makeInitializer as r, setupSignals as s, signal as t, gate as u, memoized as v, withSignalStore as w };
@@ -1 +1 @@
1
- export { s as setupSignals } from "./-leaked-D0KHC8Qz.js";
1
+ export { s as setupSignals } from "./-leaked-C40gfiH-.js";
@@ -1,4 +1,4 @@
1
- import { d as defineGate, w as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, b as willSyncFlushWatchers, e as getOrCreateInternalSignal, f as consumeInternalSignal, h as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, i as createSignalDescriptor, j as defineSignal, k as entangleSignal, l as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, m as createInternalMemo, o as waitFor } from "./-leaked-D0KHC8Qz.js";
1
+ import { d as defineGate, w as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, b as willSyncFlushWatchers, e as getOrCreateInternalSignal, f as consumeInternalSignal, h as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, i as createSignalDescriptor, j as defineSignal, k as entangleSignal, l as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, m as createInternalMemo, o as waitFor } from "./-leaked-C40gfiH-.js";
2
2
  import { EnableHydration, SkipCache, STRUCTURED } from './types/request.js';
3
3
  import { D as Destroy, a as Context, S as SOURCE, C as Checkout, b as Commit } from "./-private-3C1OkYtZ.js";
4
4
  import { isResourceSchema } from './types/schema/fields.js';
@@ -1,5 +1,5 @@
1
- export { C as CacheHandler, F as Fetch, z as RequestManager, S as Store, r as cacheKeyFor, r as recordIdentifierFor, E as setIdentifierForgetMethod, B as setIdentifierGenerationMethod, G as setIdentifierResetMethod, D as setIdentifierUpdateMethod, H as setKeyInfoForResource, s as storeFor, A as useRecommendedStore } from "./index-BwwP9hpV.js";
1
+ export { C as CacheHandler, F as Fetch, z as RequestManager, S as Store, r as cacheKeyFor, r as recordIdentifierFor, E as setIdentifierForgetMethod, B as setIdentifierGenerationMethod, G as setIdentifierResetMethod, D as setIdentifierUpdateMethod, H as setKeyInfoForResource, s as storeFor, A as useRecommendedStore } from "./index-Bu52tQ9I.js";
2
2
  import "./-private-3C1OkYtZ.js";
3
- import "./-leaked-D0KHC8Qz.js";
3
+ import "./-leaked-C40gfiH-.js";
4
4
  import './store.js';
5
5
  import './types/runtime.js';
@@ -1,3 +1,3 @@
1
- export { u as SchemaService, p as checkout, y as commit, v as fromIdentity, q as instantiateRecord, x as registerDerivations, t as teardownRecord, w as withDefaults } from "./index-BwwP9hpV.js";
1
+ export { u as SchemaService, p as checkout, y as commit, v as fromIdentity, q as instantiateRecord, x as registerDerivations, t as teardownRecord, w as withDefaults } from "./index-Bu52tQ9I.js";
2
2
  export { C as Checkout } from "./-private-3C1OkYtZ.js";
3
- export { c as createRequestSubscription, a as getPromiseState, g as getRequestState } from "./-leaked-D0KHC8Qz.js";
3
+ export { c as createRequestSubscription, a as getPromiseState, g as getRequestState } from "./-leaked-C40gfiH-.js";
@@ -1 +1 @@
1
- export { D as DISPOSE, d as defineGate, q as defineNonEnumerableSignal, j as defineSignal, k as entangleSignal, t as gate, u as memoized, n as notifyInternalSignal, p as peekInternalSignal, r as signal, o as waitFor, w as withSignalStore } from "../-leaked-D0KHC8Qz.js";
1
+ export { D as DISPOSE, d as defineGate, q as defineNonEnumerableSignal, j as defineSignal, k as entangleSignal, u as gate, r as makeInitializer, v as memoized, n as notifyInternalSignal, p as peekInternalSignal, t as signal, o as waitFor, w as withSignalStore } from "../-leaked-C40gfiH-.js";
@@ -1 +1 @@
1
- export { C as CacheHandler, R as RecordArrayManager, S as Store, k as StoreMap, _ as _clearCaches, n as _deprecatingNormalize, h as assertPrivateCapabilities, d as assertPrivateStore, b as coerceId, c as constructResource, l as createLegacyManyArray, e as ensureStringId, f as fastPush, g as isPrivateStore, a as isRequestKey, i as isResourceKey, m as log, o as logGroup, r as recordIdentifierFor, j as setRecordIdentifier, s as storeFor } from "../index-BwwP9hpV.js";
1
+ export { C as CacheHandler, R as RecordArrayManager, S as Store, k as StoreMap, _ as _clearCaches, n as _deprecatingNormalize, h as assertPrivateCapabilities, d as assertPrivateStore, b as coerceId, c as constructResource, l as createLegacyManyArray, e as ensureStringId, f as fastPush, g as isPrivateStore, a as isRequestKey, i as isResourceKey, m as log, o as logGroup, r as recordIdentifierFor, j as setRecordIdentifier, s as storeFor } from "../index-Bu52tQ9I.js";
@@ -1,5 +1,5 @@
1
1
  const name = "@warp-drive/core";
2
- const version = "5.9.0-alpha.14";
2
+ const version = "5.9.0-alpha.16";
3
3
 
4
4
  // in testing mode, we utilize globals to ensure only one copy exists of
5
5
  // these maps, due to bugs in ember-auto-import
@@ -1673,4 +1673,4 @@ function getPromiseState(promise) {
1673
1673
  }
1674
1674
  return state;
1675
1675
  }
1676
- export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, withSignalStore as a, createInternalSignal as b, consumeInternalSignal as c, defineGate as d, createSignalDescriptor as e, defineSignal as f, getOrCreateInternalSignal as g, entangleSignal as h, entangleInitiallyStaleSignal as i, createInternalMemo as j, createRequestSubscription as k, getRequestState as l, getPromiseState as m, notifyInternalSignal as n, defineNonEnumerableSignal as o, peekInternalSignal as p, signal as q, waitFor as r, setupSignals as s, gate as t, memoized as u, willSyncFlushWatchers as w };
1676
+ export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, withSignalStore as a, createInternalSignal as b, consumeInternalSignal as c, defineGate as d, createSignalDescriptor as e, defineSignal as f, getOrCreateInternalSignal as g, entangleSignal as h, entangleInitiallyStaleSignal as i, createInternalMemo as j, createRequestSubscription as k, getRequestState as l, getPromiseState as m, notifyInternalSignal as n, defineNonEnumerableSignal as o, peekInternalSignal as p, makeInitializer as q, signal as r, setupSignals as s, waitFor as t, gate as u, memoized as v, willSyncFlushWatchers as w };
@@ -1,2 +1,2 @@
1
- export { s as setupSignals } from "./-leaked-DUONXQDB.js";
1
+ export { s as setupSignals } from "./-leaked-BHLmJyaw.js";
2
2
  import './types/-private.js';
@@ -1,6 +1,6 @@
1
- import { i as isResourceKey, h as isRequestKey, C as CacheKeyManager, R as RecordArrayManager, I as InstanceCache, o as normalizeModelName, g as coerceId, q as getNewRecord, t as peekResourceKey, j as ensureStringId, a as recordIdentifierFor, u as createReactiveDocument } from "./schema-DlxmDxns.js";
1
+ import { i as isResourceKey, h as isRequestKey, C as CacheKeyManager, R as RecordArrayManager, I as InstanceCache, o as normalizeModelName, g as coerceId, q as getNewRecord, t as peekResourceKey, j as ensureStringId, a as recordIdentifierFor, u as createReactiveDocument } from "./schema-BdC3DirM.js";
2
2
  import { getOrSetGlobal } from './types/-private.js';
3
- import { w as willSyncFlushWatchers } from "./-leaked-DUONXQDB.js";
3
+ import { w as willSyncFlushWatchers } from "./-leaked-BHLmJyaw.js";
4
4
  import { EnableHydration, SkipCache } from './types/request.js';
5
5
  import './types/runtime.js';
6
6
  function isCacheOperationValue(value) {
@@ -1,13 +1,13 @@
1
- import { r as registerDerivations, S as SchemaService } from "./schema-DlxmDxns.js";
2
- export { a as cacheKeyFor, a as recordIdentifierFor, d as setIdentifierForgetMethod, b as setIdentifierGenerationMethod, e as setIdentifierResetMethod, c as setIdentifierUpdateMethod, f as setKeyInfoForResource, s as storeFor } from "./schema-DlxmDxns.js";
1
+ import { r as registerDerivations, S as SchemaService } from "./schema-BdC3DirM.js";
2
+ export { a as cacheKeyFor, a as recordIdentifierFor, d as setIdentifierForgetMethod, b as setIdentifierGenerationMethod, e as setIdentifierResetMethod, c as setIdentifierUpdateMethod, f as setKeyInfoForResource, s as storeFor } from "./schema-BdC3DirM.js";
3
3
  import { instantiateRecord, teardownRecord } from './reactive.js';
4
4
  import { peekUniversalTransient, setUniversalTransient } from './types/-private.js';
5
- import "./-leaked-DUONXQDB.js";
5
+ import "./-leaked-BHLmJyaw.js";
6
6
  import { c as cloneResponseProperties, I as IS_CACHE_HANDLER, e as executeNextHandler, u as upgradePromise } from "./request-BrJSCG6r.js";
7
7
  import { EnableHydration } from './types/request.js';
8
8
  import { g as getRequestResult, s as setPromiseResult, c as clearRequestResult } from "./promise-cache-DIT8Ypjq.js";
9
9
  import { DefaultCachePolicy } from './store.js';
10
- import { S as Store, C as CacheHandler } from "./handler-DeouKoRZ.js";
10
+ import { S as Store, C as CacheHandler } from "./handler-BJogFbfS.js";
11
11
  import './types/runtime.js';
12
12
 
13
13
  // Lazily close over fetch to avoid breaking Mirage
@@ -1,8 +1,8 @@
1
- import { v as ReactiveResource } from "./schema-DlxmDxns.js";
2
- export { S as SchemaService, w as checkout, z as commit, y as fromIdentity, r as registerDerivations, x as withDefaults } from "./schema-DlxmDxns.js";
1
+ import { v as ReactiveResource } from "./schema-BdC3DirM.js";
2
+ export { S as SchemaService, w as checkout, z as commit, y as fromIdentity, r as registerDerivations, x as withDefaults } from "./schema-BdC3DirM.js";
3
3
  import { D as Destroy } from "./-private-sql1_mdx.js";
4
4
  export { a as Checkout } from "./-private-sql1_mdx.js";
5
- export { k as createRequestSubscription, m as getPromiseState, l as getRequestState } from "./-leaked-DUONXQDB.js";
5
+ export { k as createRequestSubscription, m as getPromiseState, l as getRequestState } from "./-leaked-BHLmJyaw.js";
6
6
  import './types/-private.js';
7
7
  function instantiateRecord(store, identifier, createArgs) {
8
8
  const schema = store.schema;
@@ -1,4 +1,4 @@
1
- import { d as defineGate, a as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, g as getOrCreateInternalSignal, c as consumeInternalSignal, b as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, e as createSignalDescriptor, f as defineSignal, h as entangleSignal, i as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, j as createInternalMemo } from "./-leaked-DUONXQDB.js";
1
+ import { d as defineGate, a as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, g as getOrCreateInternalSignal, c as consumeInternalSignal, b as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, e as createSignalDescriptor, f as defineSignal, h as entangleSignal, i as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, j as createInternalMemo } from "./-leaked-BHLmJyaw.js";
2
2
  import { EnableHydration, STRUCTURED } from './types/request.js';
3
3
  import { D as Destroy, C as Context, S as SOURCE, a as Checkout, b as Commit } from "./-private-sql1_mdx.js";
4
4
  import { isResourceSchema } from './types/schema/fields.js';
@@ -1 +1 @@
1
- export { D as DISPOSE, d as defineGate, o as defineNonEnumerableSignal, f as defineSignal, h as entangleSignal, t as gate, u as memoized, n as notifyInternalSignal, p as peekInternalSignal, q as signal, r as waitFor, a as withSignalStore } from "../-leaked-DUONXQDB.js";
1
+ export { D as DISPOSE, d as defineGate, o as defineNonEnumerableSignal, f as defineSignal, h as entangleSignal, u as gate, q as makeInitializer, v as memoized, n as notifyInternalSignal, p as peekInternalSignal, r as signal, t as waitFor, a as withSignalStore } from "../-leaked-BHLmJyaw.js";
@@ -1,7 +1,7 @@
1
1
  import '../types/-private.js';
2
- export { C as CacheHandler, S as Store, a as assertPrivateStore, i as isPrivateStore } from "../handler-DeouKoRZ.js";
3
- import { i as isResourceKey, g as coerceId } from "../schema-DlxmDxns.js";
4
- export { R as RecordArrayManager, n as StoreMap, _ as _clearCaches, o as _deprecatingNormalize, l as assertPrivateCapabilities, p as createLegacyManyArray, j as ensureStringId, k as fastPush, h as isRequestKey, a as recordIdentifierFor, m as setRecordIdentifier, s as storeFor } from "../schema-DlxmDxns.js";
2
+ export { C as CacheHandler, S as Store, a as assertPrivateStore, i as isPrivateStore } from "../handler-BJogFbfS.js";
3
+ import { i as isResourceKey, g as coerceId } from "../schema-BdC3DirM.js";
4
+ export { R as RecordArrayManager, n as StoreMap, _ as _clearCaches, o as _deprecatingNormalize, l as assertPrivateCapabilities, p as createLegacyManyArray, j as ensureStringId, k as fastPush, h as isRequestKey, a as recordIdentifierFor, m as setRecordIdentifier, s as storeFor } from "../schema-BdC3DirM.js";
5
5
  const TEXT_COLORS = {
6
6
  TEXT: 'inherit',
7
7
  notify: ['white', 'white', 'inherit', 'magenta', 'inherit'],
@@ -1,5 +1,5 @@
1
1
  const name = "@warp-drive/core";
2
- const version = "5.9.0-alpha.14";
2
+ const version = "5.9.0-alpha.16";
3
3
 
4
4
  // in testing mode, we utilize globals to ensure only one copy exists of
5
5
  // these maps, due to bugs in ember-auto-import
@@ -1673,4 +1673,4 @@ function getPromiseState(promise) {
1673
1673
  }
1674
1674
  return state;
1675
1675
  }
1676
- export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, getPromiseState as a, willSyncFlushWatchers as b, createRequestSubscription as c, defineGate as d, getOrCreateInternalSignal as e, consumeInternalSignal as f, getRequestState as g, createInternalSignal as h, createSignalDescriptor as i, defineSignal as j, entangleSignal as k, entangleInitiallyStaleSignal as l, createInternalMemo as m, notifyInternalSignal as n, defineNonEnumerableSignal as o, peekInternalSignal as p, signal as q, waitFor as r, setupSignals as s, gate as t, memoized as u, withSignalStore as w };
1676
+ export { ARRAY_SIGNAL as A, DISPOSE as D, OBJECT_SIGNAL as O, Signals as S, getPromiseState as a, willSyncFlushWatchers as b, createRequestSubscription as c, defineGate as d, getOrCreateInternalSignal as e, consumeInternalSignal as f, getRequestState as g, createInternalSignal as h, createSignalDescriptor as i, defineSignal as j, entangleSignal as k, entangleInitiallyStaleSignal as l, createInternalMemo as m, notifyInternalSignal as n, defineNonEnumerableSignal as o, peekInternalSignal as p, makeInitializer as q, signal as r, setupSignals as s, waitFor as t, gate as u, memoized as v, withSignalStore as w };
@@ -1,2 +1,2 @@
1
- export { s as setupSignals } from "./-leaked-DRNv9VIX.js";
1
+ export { s as setupSignals } from "./-leaked-D_5Yrs5c.js";
2
2
  import './types/-private.js';
@@ -1,4 +1,4 @@
1
- import { v as createReactiveDocument } from "./schema-_W00LRDb.js";
1
+ import { v as createReactiveDocument } from "./schema-h0nuUTCj.js";
2
2
  import { SkipCache, EnableHydration } from './types/request.js';
3
3
  const MUTATION_OPS = new Set(['createRecord', 'updateRecord', 'deleteRecord']);
4
4
  function calcShouldFetch(store, request, hasCachedValue, identifier) {
@@ -1,4 +1,4 @@
1
- import { u as ReactiveResource } from "./schema-_W00LRDb.js";
1
+ import { u as ReactiveResource } from "./schema-h0nuUTCj.js";
2
2
  import { D as Destroy } from "./-private-3C1OkYtZ.js";
3
3
  function instantiateRecord(store, identifier, createArgs) {
4
4
  const schema = store.schema;
@@ -1,13 +1,13 @@
1
- import { b as Store, r as registerDerivations, S as SchemaService } from "./schema-_W00LRDb.js";
2
- export { d as cacheKeyFor, d as recordIdentifierFor, z as setIdentifierForgetMethod, x as setIdentifierGenerationMethod, A as setIdentifierResetMethod, y as setIdentifierUpdateMethod, B as setKeyInfoForResource, s as storeFor } from "./schema-_W00LRDb.js";
3
- import { i as instantiateRecord, t as teardownRecord } from "./hooks-CfCFjO7d.js";
1
+ import { b as Store, r as registerDerivations, S as SchemaService } from "./schema-h0nuUTCj.js";
2
+ export { d as cacheKeyFor, d as recordIdentifierFor, z as setIdentifierForgetMethod, x as setIdentifierGenerationMethod, A as setIdentifierResetMethod, y as setIdentifierUpdateMethod, B as setKeyInfoForResource, s as storeFor } from "./schema-h0nuUTCj.js";
3
+ import { i as instantiateRecord, t as teardownRecord } from "./hooks-wJdveHPi.js";
4
4
  import { peekUniversalTransient, setUniversalTransient } from './types/-private.js';
5
- import "./-leaked-DRNv9VIX.js";
5
+ import "./-leaked-D_5Yrs5c.js";
6
6
  import { c as cloneResponseProperties, I as IS_CACHE_HANDLER, e as executeNextHandler, u as upgradePromise } from "./request-BrJSCG6r.js";
7
7
  import { EnableHydration } from './types/request.js';
8
8
  import { g as getRequestResult, s as setPromiseResult, c as clearRequestResult } from "./promise-cache-DIT8Ypjq.js";
9
9
  import { DefaultCachePolicy } from './store.js';
10
- import { C as CacheHandler } from "./handler-BVKoq9bM.js";
10
+ import { C as CacheHandler } from "./handler-kGR8zguj.js";
11
11
  import './types/runtime.js';
12
12
 
13
13
  // Lazily close over fetch to avoid breaking Mirage
@@ -1,5 +1,5 @@
1
- export { S as SchemaService, c as checkout, a as commit, f as fromIdentity, r as registerDerivations, w as withDefaults } from "./schema-_W00LRDb.js";
2
- export { i as instantiateRecord, t as teardownRecord } from "./hooks-CfCFjO7d.js";
1
+ export { S as SchemaService, c as checkout, a as commit, f as fromIdentity, r as registerDerivations, w as withDefaults } from "./schema-h0nuUTCj.js";
2
+ export { i as instantiateRecord, t as teardownRecord } from "./hooks-wJdveHPi.js";
3
3
  export { C as Checkout } from "./-private-3C1OkYtZ.js";
4
- export { c as createRequestSubscription, a as getPromiseState, g as getRequestState } from "./-leaked-DRNv9VIX.js";
4
+ export { c as createRequestSubscription, a as getPromiseState, g as getRequestState } from "./-leaked-D_5Yrs5c.js";
5
5
  import './types/-private.js';
@@ -1,4 +1,4 @@
1
- import { d as defineGate, w as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, b as willSyncFlushWatchers, e as getOrCreateInternalSignal, f as consumeInternalSignal, h as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, i as createSignalDescriptor, j as defineSignal, k as entangleSignal, l as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, m as createInternalMemo } from "./-leaked-DRNv9VIX.js";
1
+ import { d as defineGate, w as withSignalStore, n as notifyInternalSignal, p as peekInternalSignal, b as willSyncFlushWatchers, e as getOrCreateInternalSignal, f as consumeInternalSignal, h as createInternalSignal, A as ARRAY_SIGNAL, S as Signals, i as createSignalDescriptor, j as defineSignal, k as entangleSignal, l as entangleInitiallyStaleSignal, O as OBJECT_SIGNAL, m as createInternalMemo } from "./-leaked-D_5Yrs5c.js";
2
2
  import { EnableHydration, SkipCache, STRUCTURED } from './types/request.js';
3
3
  import { peekTransient, setTransient, getOrSetGlobal } from './types/-private.js';
4
4
  import { isResourceSchema } from './types/schema/fields.js';
@@ -1 +1 @@
1
- export { D as DISPOSE, d as defineGate, o as defineNonEnumerableSignal, j as defineSignal, k as entangleSignal, t as gate, u as memoized, n as notifyInternalSignal, p as peekInternalSignal, q as signal, r as waitFor, w as withSignalStore } from "../-leaked-DRNv9VIX.js";
1
+ export { D as DISPOSE, d as defineGate, o as defineNonEnumerableSignal, j as defineSignal, k as entangleSignal, u as gate, q as makeInitializer, v as memoized, n as notifyInternalSignal, p as peekInternalSignal, r as signal, t as waitFor, w as withSignalStore } from "../-leaked-D_5Yrs5c.js";
@@ -1,5 +1,5 @@
1
- export { R as RecordArrayManager, b as Store, p as StoreMap, _ as _clearCaches, q as _deprecatingNormalize, n as assertPrivateCapabilities, l as assertPrivateStore, h as coerceId, g as constructResource, t as createLegacyManyArray, j as ensureStringId, k as fastPush, m as isPrivateStore, e as isRequestKey, i as isResourceKey, d as recordIdentifierFor, o as setRecordIdentifier, s as storeFor } from "../schema-_W00LRDb.js";
2
- export { C as CacheHandler } from "../handler-BVKoq9bM.js";
1
+ export { R as RecordArrayManager, b as Store, p as StoreMap, _ as _clearCaches, q as _deprecatingNormalize, n as assertPrivateCapabilities, l as assertPrivateStore, h as coerceId, g as constructResource, t as createLegacyManyArray, j as ensureStringId, k as fastPush, m as isPrivateStore, e as isRequestKey, i as isResourceKey, d as recordIdentifierFor, o as setRecordIdentifier, s as storeFor } from "../schema-h0nuUTCj.js";
2
+ export { C as CacheHandler } from "../handler-kGR8zguj.js";
3
3
  const TEXT_COLORS = {
4
4
  TEXT: 'inherit',
5
5
  notify: ['white', 'white', 'inherit', 'magenta', 'inherit'],
@@ -1,5 +1,5 @@
1
1
  const name = "@warp-drive/core";
2
- const version = "5.9.0-alpha.14";
2
+ const version = "5.9.0-alpha.16";
3
3
 
4
4
  // in testing mode, we utilize globals to ensure only one copy exists of
5
5
  // these maps, due to bugs in ember-auto-import
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warp-drive/core",
3
- "version": "5.9.0-alpha.14",
3
+ "version": "5.9.0-alpha.16",
4
4
  "description": "Core package for WarpDrive | All the Universal Basics",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -45,13 +45,13 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@embroider/macros": "^1.19.6",
48
- "@warp-drive/build-config": "5.9.0-alpha.14"
48
+ "@warp-drive/build-config": "5.9.0-alpha.16"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@babel/core": "^7.28.3",
52
52
  "@babel/plugin-transform-typescript": "^7.28.0",
53
53
  "@babel/preset-typescript": "^7.27.1",
54
- "@warp-drive/internal-config": "5.9.0-alpha.14",
54
+ "@warp-drive/internal-config": "5.9.0-alpha.16",
55
55
  "decorator-transforms": "^2.3.0",
56
56
  "ember-source": "~6.12.0",
57
57
  "expect-type": "^1.2.2",