@ember-data-mirror/store 5.5.0-alpha.19 → 5.5.0-alpha.21
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 +2 -1
- package/dist/-private.js.map +1 -1
- package/dist/configure-BfLLW6GY.js +161 -0
- package/dist/configure-BfLLW6GY.js.map +1 -0
- package/dist/configure.js +1 -0
- package/dist/configure.js.map +1 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/{many-array-CE2Jr4mQ.js → request-state-BrADgFy5.js} +870 -92
- package/dist/request-state-BrADgFy5.js.map +1 -0
- package/package.json +19 -11
- package/unstable-preview-types/-private/document.d.ts.map +1 -1
- package/unstable-preview-types/-private/legacy-model-support/record-reference.d.ts.map +1 -1
- package/unstable-preview-types/-private/managers/notification-manager.d.ts.map +1 -1
- package/unstable-preview-types/-private/managers/record-array-manager.d.ts.map +1 -1
- package/unstable-preview-types/-private/network/request-cache.d.ts +8 -8
- package/unstable-preview-types/-private/network/request-cache.d.ts.map +1 -1
- package/unstable-preview-types/-private/new-core-tmp/promise-state.d.ts +289 -0
- package/unstable-preview-types/-private/new-core-tmp/promise-state.d.ts.map +1 -0
- package/unstable-preview-types/-private/new-core-tmp/reactivity/configure.d.ts +92 -0
- package/unstable-preview-types/-private/new-core-tmp/reactivity/configure.d.ts.map +1 -0
- package/unstable-preview-types/-private/new-core-tmp/reactivity/internal.d.ts +172 -0
- package/unstable-preview-types/-private/new-core-tmp/reactivity/internal.d.ts.map +1 -0
- package/unstable-preview-types/-private/new-core-tmp/reactivity/signal.d.ts +32 -0
- package/unstable-preview-types/-private/new-core-tmp/reactivity/signal.d.ts.map +1 -0
- package/unstable-preview-types/-private/new-core-tmp/request-state.d.ts +276 -0
- package/unstable-preview-types/-private/new-core-tmp/request-state.d.ts.map +1 -0
- package/unstable-preview-types/-private/record-arrays/identifier-array.d.ts +4 -9
- package/unstable-preview-types/-private/record-arrays/identifier-array.d.ts.map +1 -1
- package/unstable-preview-types/-private/record-arrays/many-array.d.ts +2 -2
- package/unstable-preview-types/-private/record-arrays/many-array.d.ts.map +1 -1
- package/unstable-preview-types/-private.d.ts +7 -2
- package/unstable-preview-types/-private.d.ts.map +1 -1
- package/unstable-preview-types/configure.d.ts +21 -0
- package/unstable-preview-types/configure.d.ts.map +1 -0
- package/unstable-preview-types/index.d.ts +6 -0
- package/unstable-preview-types/index.d.ts.map +1 -1
- package/dist/many-array-CE2Jr4mQ.js.map +0 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare module '@ember-data-mirror/store/configure' {
|
|
2
|
+
/**
|
|
3
|
+
* Provides a configuration API for the reactivity system
|
|
4
|
+
* that WarpDrive should use.
|
|
5
|
+
*
|
|
6
|
+
* @module @ember-data-mirror/store/configure
|
|
7
|
+
* @main @ember-data-mirror/store/configure
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* Configures the signals implementation to use. Supports multiple
|
|
11
|
+
* implementations simultaneously.
|
|
12
|
+
*
|
|
13
|
+
* @method setupSignals
|
|
14
|
+
* @static
|
|
15
|
+
* @for @ember-data-mirror/store/configure
|
|
16
|
+
* @public
|
|
17
|
+
* @param {function} buildConfig - a function that takes options and returns a configuration object
|
|
18
|
+
*/
|
|
19
|
+
export { setupSignals } from '@ember-data-mirror/store/-private/new-core-tmp/reactivity/configure';
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=configure.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configure.d.ts","sourceRoot":"","sources":["../src/configure.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH;;;;;;;;;GASG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference path="./-private.d.ts" />
|
|
2
2
|
/// <reference path="./types.d.ts" />
|
|
3
|
+
/// <reference path="./configure.d.ts" />
|
|
3
4
|
/// <reference path="./-types/overview.d.ts" />
|
|
4
5
|
/// <reference path="./-types/q/record-data-json-api.d.ts" />
|
|
5
6
|
/// <reference path="./-types/q/schema-service.d.ts" />
|
|
@@ -20,6 +21,11 @@
|
|
|
20
21
|
/// <reference path="./-private/cache-handler/utils.d.ts" />
|
|
21
22
|
/// <reference path="./-private/cache-handler/handler.d.ts" />
|
|
22
23
|
/// <reference path="./-private/cache-handler/types.d.ts" />
|
|
24
|
+
/// <reference path="./-private/new-core-tmp/promise-state.d.ts" />
|
|
25
|
+
/// <reference path="./-private/new-core-tmp/request-state.d.ts" />
|
|
26
|
+
/// <reference path="./-private/new-core-tmp/reactivity/signal.d.ts" />
|
|
27
|
+
/// <reference path="./-private/new-core-tmp/reactivity/internal.d.ts" />
|
|
28
|
+
/// <reference path="./-private/new-core-tmp/reactivity/configure.d.ts" />
|
|
23
29
|
/// <reference path="./-private/network/request-cache.d.ts" />
|
|
24
30
|
/// <reference path="./-private/legacy-model-support/record-reference.d.ts" />
|
|
25
31
|
/// <reference path="./-private/legacy-model-support/shim-model-class.d.ts" />
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmLG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmLG;AACH,OAAO,EACL,KAAK,IAAI,OAAO,EAChB,KAAK,mBAAmB,EACxB,YAAY,EACZ,KAAK,QAAQ,EACb,KAAK,WAAW,EAChB,KAAK,iBAAiB,EACtB,mBAAmB,EACnB,QAAQ,GACT,MAAM,YAAY,CAAC;AAEpB,YAAY,EACV,sBAAsB,EACtB,cAAc,EACd,gBAAgB,GACjB,MAAM,0CAA0C,CAAC;AAElD,OAAO,EACL,6BAA6B,EAC7B,yBAAyB,EACzB,yBAAyB,EACzB,wBAAwB,EACxB,qBAAqB,GACtB,MAAM,oCAAoC,CAAC"}
|