@warp-drive/core-types 0.0.0-alpha.19 → 0.0.0-alpha.20

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.19",
3
+ "version": "0.0.0-alpha.20",
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.33",
25
+ "@ember-data/private-build-infra": "5.4.0-alpha.34",
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.33",
49
+ "@warp-drive/internal-config": "5.4.0-alpha.34",
50
50
  "ember-source": "~5.6.0",
51
51
  "rollup": "^4.9.6",
52
52
  "typescript": "^5.3.3",
@@ -1,4 +1,4 @@
1
1
  declare module '@warp-drive/core-types/cache/aliases' {
2
2
  export type ResourceBlob = unknown;
3
- //# sourceMappingURL=aliases.d.ts.map
4
- }
3
+ }
4
+ //# sourceMappingURL=aliases.d.ts.map
@@ -5,5 +5,5 @@ declare module '@warp-drive/core-types/cache/change' {
5
5
  op: 'upsert' | 'remove';
6
6
  patch?: unknown;
7
7
  }
8
- //# sourceMappingURL=change.d.ts.map
9
- }
8
+ }
9
+ //# sourceMappingURL=change.d.ts.map
@@ -37,5 +37,5 @@ declare module '@warp-drive/core-types/cache/mutations' {
37
37
  value: StableRecordIdentifier[];
38
38
  }
39
39
  export type Mutation = ReplaceRelatedRecordsMutation | ReplaceRelatedRecordMutation | RemoveFromRelatedRecordsMutation | AddToRelatedRecordsMutation | SortRelatedRecordsMutation;
40
- //# sourceMappingURL=mutations.d.ts.map
41
- }
40
+ }
41
+ //# sourceMappingURL=mutations.d.ts.map
@@ -13,5 +13,5 @@ declare module '@warp-drive/core-types/cache/operations' {
13
13
  record: StableRecordIdentifier;
14
14
  }
15
15
  export type Operation = MergeOperation | RemoveOperation;
16
- //# sourceMappingURL=operations.d.ts.map
17
- }
16
+ }
17
+ //# sourceMappingURL=operations.d.ts.map
@@ -12,5 +12,5 @@ declare module '@warp-drive/core-types/cache/relationship' {
12
12
  links?: PaginationLinks;
13
13
  }
14
14
  export type Relationship = ResourceRelationship | CollectionRelationship;
15
- //# sourceMappingURL=relationship.d.ts.map
16
- }
15
+ }
16
+ //# sourceMappingURL=relationship.d.ts.map
@@ -473,5 +473,5 @@ declare module '@warp-drive/core-types/cache' {
473
473
  */
474
474
  isDeletionCommitted(identifier: StableRecordIdentifier): boolean;
475
475
  }
476
- //# sourceMappingURL=cache.d.ts.map
477
- }
476
+ }
477
+ //# sourceMappingURL=cache.d.ts.map
@@ -66,5 +66,5 @@ declare module '@warp-drive/core-types/graph' {
66
66
  }
67
67
  export type RemoteRelationshipOperation = UpdateRelationshipOperation | ReplaceRelatedRecordOperation | ReplaceRelatedRecordsOperation | DeleteRecordOperation | SortRelatedRecords;
68
68
  export type LocalRelationshipOperation = ReplaceRelatedRecordsOperation | ReplaceRelatedRecordOperation | RemoveFromRelatedRecordsOperation | AddToRelatedRecordsOperation | SortRelatedRecords;
69
- //# sourceMappingURL=graph.d.ts.map
70
- }
69
+ }
70
+ //# sourceMappingURL=graph.d.ts.map
@@ -107,5 +107,5 @@ declare module '@warp-drive/core-types/identifier' {
107
107
  * @public
108
108
  */
109
109
  export type StableRecordIdentifier<T extends string = string> = StableExistingRecordIdentifier<T> | StableNewRecordIdentifier<T>;
110
- //# sourceMappingURL=identifier.d.ts.map
111
- }
110
+ }
111
+ //# sourceMappingURL=identifier.d.ts.map
@@ -17,5 +17,5 @@
17
17
  /// <reference path="./json/raw.d.ts" />
18
18
  declare module '@warp-drive/core-types' {
19
19
  export type { StableRecordIdentifier } from './identifier';
20
- //# sourceMappingURL=index.d.ts.map
21
- }
20
+ }
21
+ //# sourceMappingURL=index.d.ts.map
@@ -5,5 +5,5 @@ declare module '@warp-drive/core-types/json/raw' {
5
5
  }
6
6
  export type ArrayValue = Value[];
7
7
  export type Value = PrimitiveValue | ArrayValue | ObjectValue;
8
- //# sourceMappingURL=raw.d.ts.map
9
- }
8
+ }
9
+ //# sourceMappingURL=raw.d.ts.map
@@ -5,5 +5,5 @@ declare module '@warp-drive/core-types/params' {
5
5
  arrayFormat?: 'bracket' | 'indices' | 'repeat' | 'comma';
6
6
  };
7
7
  export type QueryParamsSource = Record<string, Serializable> | URLSearchParams;
8
- //# sourceMappingURL=params.d.ts.map
9
- }
8
+ }
9
+ //# sourceMappingURL=params.d.ts.map
@@ -44,5 +44,5 @@ declare module '@warp-drive/core-types/record' {
44
44
  * @typedoc
45
45
  */
46
46
  export type TypeFromInstanceOrString<T> = T extends TypedRecordInstance ? T[typeof ResourceType] : string;
47
- //# sourceMappingURL=record.d.ts.map
48
- }
47
+ }
48
+ //# sourceMappingURL=record.d.ts.map
@@ -305,5 +305,5 @@ declare module '@warp-drive/core-types/request' {
305
305
  setResponse(response: Response | ResponseInfo): void;
306
306
  }
307
307
  export {};
308
- //# sourceMappingURL=request.d.ts.map
309
- }
308
+ }
309
+ //# sourceMappingURL=request.d.ts.map
@@ -22,5 +22,5 @@ declare module '@warp-drive/core-types/schema' {
22
22
  type: string | null;
23
23
  }
24
24
  export type AttributesSchema = Record<string, AttributeSchema>;
25
- //# sourceMappingURL=schema.d.ts.map
26
- }
25
+ }
26
+ //# sourceMappingURL=schema.d.ts.map
@@ -29,5 +29,5 @@ declare module '@warp-drive/core-types/spec/document' {
29
29
  errors: ApiError[];
30
30
  }
31
31
  export type ResourceDocument<T = StableExistingRecordIdentifier> = ResourceMetaDocument | SingleResourceDataDocument<T> | CollectionResourceDataDocument<T> | ResourceErrorDocument;
32
- //# sourceMappingURL=document.d.ts.map
33
- }
32
+ }
33
+ //# sourceMappingURL=document.d.ts.map
@@ -17,5 +17,5 @@ declare module '@warp-drive/core-types/spec/error' {
17
17
  };
18
18
  meta?: Meta;
19
19
  }
20
- //# sourceMappingURL=error.d.ts.map
21
- }
20
+ }
21
+ //# sourceMappingURL=error.d.ts.map
@@ -131,5 +131,5 @@ declare module '@warp-drive/core-types/spec/raw' {
131
131
  */
132
132
  export type JsonApiDocument<T extends string = string> = EmptyResourceDocument | SingleResourceDocument<T> | CollectionResourceDocument<T>;
133
133
  export {};
134
- //# sourceMappingURL=raw.d.ts.map
135
- }
134
+ }
135
+ //# sourceMappingURL=raw.d.ts.map
@@ -33,5 +33,5 @@ declare module '@warp-drive/core-types/symbols' {
33
33
  * @typedoc
34
34
  */
35
35
  export declare const TransformName: unique symbol;
36
- //# sourceMappingURL=symbols.d.ts.map
37
- }
36
+ }
37
+ //# sourceMappingURL=symbols.d.ts.map