@ember-data/store 5.4.0-alpha.35 → 5.4.0-alpha.41

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/addon/index.js CHANGED
@@ -1 +1 @@
1
- export { C as CacheHandler, S as default, r as recordIdentifierFor, c as setIdentifierForgetMethod, a as setIdentifierGenerationMethod, d as setIdentifierResetMethod, b as setIdentifierUpdateMethod, s as storeFor } from "./cache-handler-k7I5KvcC";
1
+ export { C as CacheHandler, S as default, r as recordIdentifierFor, c as setIdentifierForgetMethod, a as setIdentifierGenerationMethod, d as setIdentifierResetMethod, b as setIdentifierUpdateMethod, s as storeFor } from "./cache-handler-B6QvsAXr";
package/addon-main.js CHANGED
@@ -58,6 +58,7 @@ module.exports = {
58
58
 
59
59
  // copy configs forward
60
60
  const ownConfig = this.options['@embroider/macros'].setOwnConfig;
61
+ ownConfig.polyfillUUID = hostOptions.polyfillUUID ?? false;
61
62
  ownConfig.compatWith = hostOptions.compatWith || null;
62
63
  ownConfig.debug = debugOptions;
63
64
  ownConfig.deprecations = Object.assign(DEPRECATIONS, ownConfig.deprecations || {}, hostOptions.deprecations || {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember-data/store",
3
- "version": "5.4.0-alpha.35",
3
+ "version": "5.4.0-alpha.41",
4
4
  "description": "The core of EmberData. Provides the Store service which coordinates the cache with the network and presentation layers.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -21,11 +21,17 @@
21
21
  "ember-data-logo-dark.svg",
22
22
  "ember-data-logo-light.svg"
23
23
  ],
24
+ "scripts": {
25
+ "lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs --report-unused-disable-directives",
26
+ "build:runtime": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
27
+ "build:types": "tsc --build",
28
+ "_build": "bun run build:runtime && bun run build:types",
29
+ "_syncPnpm": "bun run sync-dependencies-meta-injected"
30
+ },
24
31
  "dependencies": {
25
- "@ember-data/private-build-infra": "5.4.0-alpha.35",
26
- "@embroider/macros": "^1.13.5",
27
- "ember-cli-babel": "^8.2.0",
28
- "pnpm-sync-dependencies-meta-injected": "0.0.10"
32
+ "@ember-data/private-build-infra": "workspace:5.4.0-alpha.41",
33
+ "@embroider/macros": "^1.15.0",
34
+ "ember-cli-babel": "^8.2.0"
29
35
  },
30
36
  "dependenciesMeta": {
31
37
  "@ember-data/private-build-infra": {
@@ -45,36 +51,37 @@
45
51
  }
46
52
  },
47
53
  "peerDependencies": {
48
- "@ember-data/request": "5.4.0-alpha.35",
49
- "@ember-data/tracking": "5.4.0-alpha.35",
54
+ "@ember-data/request": "workspace:5.4.0-alpha.41",
55
+ "@ember-data/tracking": "workspace:5.4.0-alpha.41",
50
56
  "@ember/string": "^3.1.1",
51
- "@warp-drive/core-types": "0.0.0-alpha.21"
57
+ "@warp-drive/core-types": "workspace:0.0.0-alpha.27"
52
58
  },
53
59
  "devDependencies": {
54
- "@babel/cli": "^7.23.9",
55
- "@babel/core": "^7.23.9",
56
- "@babel/plugin-proposal-decorators": "^7.23.9",
57
- "@babel/plugin-transform-class-properties": "^7.23.3",
58
- "@babel/plugin-transform-private-methods": "^7.23.3",
59
- "@babel/plugin-transform-runtime": "^7.23.9",
60
- "@babel/plugin-transform-typescript": "^7.23.6",
61
- "@babel/preset-env": "^7.23.9",
62
- "@babel/preset-typescript": "^7.23.3",
63
- "@babel/runtime": "^7.23.9",
64
- "@ember-data/request": "5.4.0-alpha.35",
65
- "@ember-data/tracking": "5.4.0-alpha.35",
60
+ "@babel/cli": "^7.24.1",
61
+ "@babel/core": "^7.24.1",
62
+ "@babel/plugin-proposal-decorators": "^7.24.1",
63
+ "@babel/plugin-transform-class-properties": "^7.24.1",
64
+ "@babel/plugin-transform-private-methods": "^7.24.1",
65
+ "@babel/plugin-transform-runtime": "^7.24.1",
66
+ "@babel/plugin-transform-typescript": "^7.24.1",
67
+ "@babel/preset-env": "^7.24.1",
68
+ "@babel/preset-typescript": "^7.24.1",
69
+ "@babel/runtime": "^7.24.1",
70
+ "@ember-data/request": "workspace:5.4.0-alpha.41",
71
+ "@ember-data/tracking": "workspace:5.4.0-alpha.41",
66
72
  "@ember/string": "^3.1.1",
67
- "@embroider/addon-dev": "^4.1.2",
73
+ "@embroider/addon-dev": "^4.2.1",
68
74
  "@glimmer/component": "^1.1.2",
69
75
  "@rollup/plugin-babel": "^6.0.4",
70
76
  "@rollup/plugin-node-resolve": "^15.2.3",
71
- "@warp-drive/core-types": "0.0.0-alpha.21",
72
- "@warp-drive/internal-config": "5.4.0-alpha.35",
73
- "ember-source": "~5.6.0",
74
- "rollup": "^4.9.6",
75
- "typescript": "^5.3.3",
77
+ "@warp-drive/core-types": "workspace:0.0.0-alpha.27",
78
+ "@warp-drive/internal-config": "workspace:5.4.0-alpha.41",
79
+ "ember-source": "~5.7.0",
80
+ "pnpm-sync-dependencies-meta-injected": "0.0.10",
81
+ "rollup": "^4.13.0",
82
+ "typescript": "^5.4.3",
76
83
  "walk-sync": "^3.0.0",
77
- "webpack": "^5.89.0"
84
+ "webpack": "^5.91.0"
78
85
  },
79
86
  "engines": {
80
87
  "node": ">= 18.19.1"
@@ -82,7 +89,7 @@
82
89
  "volta": {
83
90
  "extends": "../../package.json"
84
91
  },
85
- "packageManager": "pnpm@8.6.0",
92
+ "packageManager": "pnpm@8.15.5",
86
93
  "ember-addon": {
87
94
  "main": "addon-main.js",
88
95
  "type": "addon",
@@ -90,12 +97,5 @@
90
97
  },
91
98
  "ember": {
92
99
  "edition": "octane"
93
- },
94
- "scripts": {
95
- "lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs --report-unused-disable-directives",
96
- "build:runtime": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
97
- "build:types": "tsc --build",
98
- "_build": "bun run build:runtime && bun run build:types",
99
- "_syncPnpm": "bun run sync-dependencies-meta-injected"
100
100
  }
101
- }
101
+ }
@@ -1,5 +1,5 @@
1
1
  declare module '@ember-data/store/-private/cache-handler' {
2
- import type { Handler } from '@ember-data/request/-private/types';
2
+ import type { CacheHandler as CacheHandlerType } from '@ember-data/request';
3
3
  import type { StableDocumentIdentifier } from '@warp-drive/core-types/identifier';
4
4
  import type { ImmutableRequestInfo, RequestContext, ResponseInfo } from '@warp-drive/core-types/request';
5
5
  import { EnableHydration } from '@warp-drive/core-types/request';
@@ -84,18 +84,17 @@ declare module '@ember-data/store/-private/cache-handler' {
84
84
  */
85
85
  didRequest?(request: ImmutableRequestInfo, response: Response | ResponseInfo | null, identifier: StableDocumentIdentifier | null, store: Store): void;
86
86
  }
87
- export type StoreRequestInfo = ImmutableRequestInfo;
88
- export type LooseStoreRequestInfo = Omit<StoreRequestInfo, 'records' | 'headers'> & {
87
+ export type LooseStoreRequestInfo = Omit<ImmutableRequestInfo, 'records' | 'headers'> & {
89
88
  records?: ResourceIdentifierObject[];
90
89
  headers?: Headers;
91
90
  };
92
- export type StoreRequestInput = StoreRequestInfo | LooseStoreRequestInfo;
91
+ export type StoreRequestInput = ImmutableRequestInfo | LooseStoreRequestInfo;
93
92
  export interface StoreRequestContext extends RequestContext {
94
- request: StoreRequestInfo & {
93
+ request: ImmutableRequestInfo & {
95
94
  store: Store;
96
95
  [EnableHydration]?: boolean;
97
96
  };
98
97
  }
99
- export const CacheHandler: Handler;
98
+ export const CacheHandler: CacheHandlerType;
100
99
  }
101
100
  //# sourceMappingURL=cache-handler.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"cache-handler.d.ts","sourceRoot":"","sources":["../../src/-private/cache-handler.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAU,OAAO,EAAU,MAAM,oCAAoC,CAAC;AAClF,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAClF,OAAO,KAAK,EAGV,oBAAoB,EAEpB,cAAc,EACd,YAAY,EAGb,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,eAAe,EAAa,MAAM,gCAAgC,CAAC;AAO5E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAIhF,OAAO,KAAK,KAAK,MAAM,iBAAiB,CAAC;AAEzC;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;;;;;;;;;;;;OAeG;IACH,aAAa,CAAC,UAAU,EAAE,wBAAwB,EAAE,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC;IAC3E;;;;;;;;;;;;;;OAcG;IACH,aAAa,CAAC,UAAU,EAAE,wBAAwB,EAAE,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC;IAE3E;;;;;;;;;;;;OAYG;IACH,WAAW,CAAC,CAAC,OAAO,EAAE,oBAAoB,EAAE,UAAU,EAAE,wBAAwB,GAAG,IAAI,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;IAE7G;;;;;;;;;;;;;;OAcG;IACH,UAAU,CAAC,CACT,OAAO,EAAE,oBAAoB,EAC7B,QAAQ,EAAE,QAAQ,GAAG,YAAY,GAAG,IAAI,EACxC,UAAU,EAAE,wBAAwB,GAAG,IAAI,EAC3C,KAAK,EAAE,KAAK,GACX,IAAI,CAAC;CACT;AAED,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,CAAC;AACpD,MAAM,MAAM,qBAAqB,GAAG,IAAI,CAAC,gBAAgB,EAAE,SAAS,GAAG,SAAS,CAAC,GAAG;IAClF,OAAO,CAAC,EAAE,wBAAwB,EAAE,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,gBAAgB,GAAG,qBAAqB,CAAC;AAEzE,MAAM,WAAW,mBAAoB,SAAQ,cAAc;IACzD,OAAO,EAAE,gBAAgB,GAAG;QAAE,KAAK,EAAE,KAAK,CAAC;QAAC,CAAC,eAAe,CAAC,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC;CAC3E;AA+RD,eAAO,MAAM,YAAY,EAAE,OAoD1B,CAAC"}
1
+ {"version":3,"file":"cache-handler.d.ts","sourceRoot":"","sources":["../../src/-private/cache-handler.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,IAAI,gBAAgB,EAAkB,MAAM,qBAAqB,CAAC;AAC5F,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAClF,OAAO,KAAK,EAGV,oBAAoB,EAEpB,cAAc,EACd,YAAY,EAGb,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,eAAe,EAAa,MAAM,gCAAgC,CAAC;AAO5E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAIhF,OAAO,KAAK,KAAK,MAAM,iBAAiB,CAAC;AAEzC;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;;;;;;;;;;;;OAeG;IACH,aAAa,CAAC,UAAU,EAAE,wBAAwB,EAAE,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC;IAC3E;;;;;;;;;;;;;;OAcG;IACH,aAAa,CAAC,UAAU,EAAE,wBAAwB,EAAE,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC;IAE3E;;;;;;;;;;;;OAYG;IACH,WAAW,CAAC,CAAC,OAAO,EAAE,oBAAoB,EAAE,UAAU,EAAE,wBAAwB,GAAG,IAAI,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;IAE7G;;;;;;;;;;;;;;OAcG;IACH,UAAU,CAAC,CACT,OAAO,EAAE,oBAAoB,EAC7B,QAAQ,EAAE,QAAQ,GAAG,YAAY,GAAG,IAAI,EACxC,UAAU,EAAE,wBAAwB,GAAG,IAAI,EAC3C,KAAK,EAAE,KAAK,GACX,IAAI,CAAC;CACT;AAED,MAAM,MAAM,qBAAqB,GAAG,IAAI,CAAC,oBAAoB,EAAE,SAAS,GAAG,SAAS,CAAC,GAAG;IACtF,OAAO,CAAC,EAAE,wBAAwB,EAAE,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,oBAAoB,GAAG,qBAAqB,CAAC;AAE7E,MAAM,WAAW,mBAAoB,SAAQ,cAAc;IACzD,OAAO,EAAE,oBAAoB,GAAG;QAAE,KAAK,EAAE,KAAK,CAAC;QAAC,CAAC,eAAe,CAAC,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC;CAC/E;AA+RD,eAAO,MAAM,YAAY,EAAE,gBAoD1B,CAAC"}
@@ -15,5 +15,6 @@ declare module '@ember-data/store/-private' {
15
15
  export { setRecordIdentifier, StoreMap } from '@ember-data/store/-private/caches/instance-cache';
16
16
  export { setCacheFor } from '@ember-data/store/-private/caches/cache-utils';
17
17
  export { default as _deprecatingNormalize } from '@ember-data/store/-private/utils/normalize-model-name';
18
+ export type { StoreRequestInput } from './-private/cache-handler';
18
19
  }
19
20
  //# sourceMappingURL=-private.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"-private.d.ts","sourceRoot":"","sources":["../src/-private.ts"],"names":[],"mappings":"AAAA;;EAEE;AAEF,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEtE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AAEvE,OAAO,EAAE,YAAY,EAAE,KAAK,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAE/E,OAAO,EACL,6BAA6B,EAC7B,yBAAyB,EACzB,yBAAyB,EACzB,wBAAwB,EACxB,kBAAkB,GACnB,MAAM,oCAAoC,CAAC;AAI5C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACjE,YAAY,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAClF,OAAO,EACL,OAAO,IAAI,WAAW,EACtB,OAAO,IAAI,eAAe,EAC1B,UAAU,IAAI,2BAA2B,EACzC,WAAW,EACX,MAAM,EACN,MAAM,EACN,YAAY,GACb,MAAM,2CAA2C,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,QAAQ,EAAE,MAAM,0CAA0C,CAAC;AAGnG,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAG1F,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,uCAAuC,CAAC"}
1
+ {"version":3,"file":"-private.d.ts","sourceRoot":"","sources":["../src/-private.ts"],"names":[],"mappings":"AAAA;;EAEE;AAEF,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEtE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AAEvE,OAAO,EAAE,YAAY,EAAE,KAAK,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAE/E,OAAO,EACL,6BAA6B,EAC7B,yBAAyB,EACzB,yBAAyB,EACzB,wBAAwB,EACxB,kBAAkB,GACnB,MAAM,oCAAoC,CAAC;AAI5C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACjE,YAAY,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAClF,OAAO,EACL,OAAO,IAAI,WAAW,EACtB,OAAO,IAAI,eAAe,EAC1B,UAAU,IAAI,2BAA2B,EACzC,WAAW,EACX,MAAM,EACN,MAAM,EACN,YAAY,GACb,MAAM,2CAA2C,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,QAAQ,EAAE,MAAM,0CAA0C,CAAC;AAGnG,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAG1F,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,uCAAuC,CAAC;AACzF,YAAY,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC"}
@@ -1,36 +1,36 @@
1
1
  /// <reference path="./-private.d.ts" />
2
- /// <reference path="./-private/cache-handler.d.ts" />
2
+ /// <reference path="./-types/overview.d.ts" />
3
+ /// <reference path="./-types/q/identifier.d.ts" />
4
+ /// <reference path="./-types/q/schema-service.d.ts" />
5
+ /// <reference path="./-types/q/ds-model.d.ts" />
6
+ /// <reference path="./-types/q/promise-proxies.d.ts" />
7
+ /// <reference path="./-types/q/record-data-json-api.d.ts" />
8
+ /// <reference path="./-types/q/cache-store-wrapper.d.ts" />
9
+ /// <reference path="./-types/q/record-instance.d.ts" />
10
+ /// <reference path="./-types/q/cache.d.ts" />
11
+ /// <reference path="./-types/q/store.d.ts" />
3
12
  /// <reference path="./-private/document.d.ts" />
13
+ /// <reference path="./-private/cache-handler.d.ts" />
4
14
  /// <reference path="./-private/store-service.d.ts" />
5
- /// <reference path="./-private/network/request-cache.d.ts" />
6
- /// <reference path="./-private/managers/cache-capabilities-manager.d.ts" />
7
- /// <reference path="./-private/managers/cache-manager.d.ts" />
8
- /// <reference path="./-private/managers/notification-manager.d.ts" />
9
- /// <reference path="./-private/managers/record-array-manager.d.ts" />
10
- /// <reference path="./-private/record-arrays/identifier-array.d.ts" />
11
- /// <reference path="./-private/record-arrays/native-proxy-type-fix.d.ts" />
12
- /// <reference path="./-private/legacy-model-support/shim-model-class.d.ts" />
13
15
  /// <reference path="./-private/legacy-model-support/record-reference.d.ts" />
14
- /// <reference path="./-private/caches/instance-cache.d.ts" />
16
+ /// <reference path="./-private/legacy-model-support/shim-model-class.d.ts" />
15
17
  /// <reference path="./-private/caches/identifier-cache.d.ts" />
16
- /// <reference path="./-private/caches/resource-utils.d.ts" />
18
+ /// <reference path="./-private/caches/instance-cache.d.ts" />
17
19
  /// <reference path="./-private/caches/cache-utils.d.ts" />
18
- /// <reference path="./-private/utils/normalize-model-name.d.ts" />
19
- /// <reference path="./-private/utils/identifier-debug-consts.d.ts" />
20
- /// <reference path="./-private/utils/construct-resource.d.ts" />
20
+ /// <reference path="./-private/caches/resource-utils.d.ts" />
21
21
  /// <reference path="./-private/utils/coerce-id.d.ts" />
22
- /// <reference path="./-private/utils/uuid-polyfill.d.ts" />
23
22
  /// <reference path="./-private/utils/is-non-empty-string.d.ts" />
24
- /// <reference path="./-types/overview.d.ts" />
25
- /// <reference path="./-types/q/record-data-json-api.d.ts" />
26
- /// <reference path="./-types/q/store.d.ts" />
27
- /// <reference path="./-types/q/record-instance.d.ts" />
28
- /// <reference path="./-types/q/identifier.d.ts" />
29
- /// <reference path="./-types/q/promise-proxies.d.ts" />
30
- /// <reference path="./-types/q/ds-model.d.ts" />
31
- /// <reference path="./-types/q/schema-service.d.ts" />
32
- /// <reference path="./-types/q/cache-store-wrapper.d.ts" />
33
- /// <reference path="./-types/q/cache.d.ts" />
23
+ /// <reference path="./-private/utils/uuid-polyfill.d.ts" />
24
+ /// <reference path="./-private/utils/identifier-debug-consts.d.ts" />
25
+ /// <reference path="./-private/utils/construct-resource.d.ts" />
26
+ /// <reference path="./-private/utils/normalize-model-name.d.ts" />
27
+ /// <reference path="./-private/record-arrays/identifier-array.d.ts" />
28
+ /// <reference path="./-private/record-arrays/native-proxy-type-fix.d.ts" />
29
+ /// <reference path="./-private/managers/record-array-manager.d.ts" />
30
+ /// <reference path="./-private/managers/cache-manager.d.ts" />
31
+ /// <reference path="./-private/managers/cache-capabilities-manager.d.ts" />
32
+ /// <reference path="./-private/managers/notification-manager.d.ts" />
33
+ /// <reference path="./-private/network/request-cache.d.ts" />
34
34
  declare module '@ember-data/store' {
35
35
  /**
36
36
  * <p align="center">
@@ -215,6 +215,6 @@ declare module '@ember-data/store' {
215
215
  * @module @ember-data/store
216
216
  * @main @ember-data/store
217
217
  */
218
- export { Store as default, CacheHandler, type LifetimesService, setIdentifierGenerationMethod, setIdentifierUpdateMethod, setIdentifierForgetMethod, setIdentifierResetMethod, recordIdentifierFor, storeFor, } from '@ember-data/store/-private';
218
+ export { Store as default, CacheHandler, type LifetimesService, type StoreRequestInput, setIdentifierGenerationMethod, setIdentifierUpdateMethod, setIdentifierForgetMethod, setIdentifierResetMethod, recordIdentifierFor, storeFor, } from '@ember-data/store/-private';
219
219
  }
220
220
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsLG;AAEH,OAAO,EACL,KAAK,IAAI,OAAO,EAChB,YAAY,EACZ,KAAK,gBAAgB,EACrB,6BAA6B,EAC7B,yBAAyB,EACzB,yBAAyB,EACzB,wBAAwB,EACxB,mBAAmB,EACnB,QAAQ,GACT,MAAM,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsLG;AAEH,OAAO,EACL,KAAK,IAAI,OAAO,EAChB,YAAY,EACZ,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,6BAA6B,EAC7B,yBAAyB,EACzB,yBAAyB,EACzB,wBAAwB,EACxB,mBAAmB,EACnB,QAAQ,GACT,MAAM,YAAY,CAAC"}