@warp-drive/core-types 0.0.0-alpha.20 → 0.0.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive/core-types",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.21",
|
|
4
4
|
"description": "Provides core logic, utils and types for WarpDrive and EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"NCC-1701-a-blue.svg"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@ember-data/private-build-infra": "5.4.0-alpha.
|
|
25
|
+
"@ember-data/private-build-infra": "5.4.0-alpha.35",
|
|
26
26
|
"ember-cli-babel": "^8.2.0",
|
|
27
27
|
"pnpm-sync-dependencies-meta-injected": "0.0.10"
|
|
28
28
|
},
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@glimmer/component": "^1.1.2",
|
|
47
47
|
"@rollup/plugin-babel": "^6.0.4",
|
|
48
48
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
49
|
-
"@warp-drive/internal-config": "5.4.0-alpha.
|
|
49
|
+
"@warp-drive/internal-config": "5.4.0-alpha.35",
|
|
50
50
|
"ember-source": "~5.6.0",
|
|
51
51
|
"rollup": "^4.9.6",
|
|
52
52
|
"typescript": "^5.3.3",
|
|
@@ -2,10 +2,10 @@ declare module '@warp-drive/core-types/identifier' {
|
|
|
2
2
|
/**
|
|
3
3
|
@module @ember-data/store
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
5
|
+
export const DEBUG_CLIENT_ORIGINATED: unique symbol;
|
|
6
|
+
export const DEBUG_IDENTIFIER_BUCKET: unique symbol;
|
|
7
|
+
export const DEBUG_STALE_CACHE_OWNER: unique symbol;
|
|
8
|
+
export const CACHE_OWNER: unique symbol;
|
|
9
9
|
export type IdentifierBucket = 'record' | 'document';
|
|
10
10
|
export interface Identifier {
|
|
11
11
|
lid: string;
|
|
@@ -3,10 +3,10 @@ declare module '@warp-drive/core-types/request' {
|
|
|
3
3
|
import type { QueryParamsSerializationOptions } from '@warp-drive/core-types/params';
|
|
4
4
|
import type { ResourceIdentifierObject } from '@warp-drive/core-types/spec/raw';
|
|
5
5
|
type Store = unknown;
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
6
|
+
export const SkipCache: unique symbol;
|
|
7
|
+
export const EnableHydration: unique symbol;
|
|
8
|
+
export const IS_FUTURE: unique symbol;
|
|
9
|
+
export const STRUCTURED: unique symbol;
|
|
10
10
|
export type HTTPMethod = 'GET' | 'OPTIONS' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD';
|
|
11
11
|
/**
|
|
12
12
|
* Use these options to adjust CacheHandler behavior for a request.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare module '@warp-drive/core-types/symbols' {
|
|
2
|
-
export
|
|
2
|
+
export const RecordStore: unique symbol;
|
|
3
3
|
/**
|
|
4
4
|
* Symbol for the type of a resource.
|
|
5
5
|
*
|
|
@@ -14,7 +14,7 @@ declare module '@warp-drive/core-types/symbols' {
|
|
|
14
14
|
* @type {Symbol}
|
|
15
15
|
* @typedoc
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
17
|
+
export const ResourceType: unique symbol;
|
|
18
18
|
/**
|
|
19
19
|
* Symbol for the name of a transform.
|
|
20
20
|
*
|
|
@@ -32,6 +32,6 @@ declare module '@warp-drive/core-types/symbols' {
|
|
|
32
32
|
* @type {Symbol}
|
|
33
33
|
* @typedoc
|
|
34
34
|
*/
|
|
35
|
-
export
|
|
35
|
+
export const TransformName: unique symbol;
|
|
36
36
|
}
|
|
37
37
|
//# sourceMappingURL=symbols.d.ts.map
|