@conduit-client/type-normalization 3.15.0 → 3.16.0-dev1
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.
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { IdentifiableTypeRepository, FlattenedKeySelfIdentifiableTypeRepository } from '..';
|
|
2
|
+
import type { Cache, CanonicalCacheControlMetadata, ReadonlyCache } from '@conduit-client/service-cache/v1';
|
|
3
|
+
import type { Result } from '@conduit-client/utils';
|
|
4
|
+
import type { NormalizedLink, TypeRepository, WriteErrors, WriteInput, ReadErrors, DenormalizeDataInput, ReadInput, WriteResult, ReadResult, NormalizeDataInput } from '..';
|
|
4
5
|
import type { NamedCacheControllerService } from '@conduit-client/service-cache-control/v1';
|
|
5
|
-
import { NamedPubSubService } from '@conduit-client/service-pubsub/v1';
|
|
6
|
-
import { NamedInstrumentationService } from '@conduit-client/service-instrumentation/v1';
|
|
6
|
+
import type { NamedPubSubService } from '@conduit-client/service-pubsub/v1';
|
|
7
|
+
import type { NamedInstrumentationService } from '@conduit-client/service-instrumentation/v1';
|
|
7
8
|
type City = {
|
|
8
9
|
id: string;
|
|
9
10
|
name: string;
|
|
@@ -134,7 +135,7 @@ declare class GetPostListById200JsonType extends IdentifiableTypeRepository<Post
|
|
|
134
135
|
cacheControl: CanonicalCacheControlMetadata;
|
|
135
136
|
constructor(services: {}, typeRegistry: ExampleModuleTypeRegistry);
|
|
136
137
|
buildKeyParams(input: GetPostListWriteInput): GetPostListKeyParams;
|
|
137
|
-
protected normalizeData(cache: Cache, input: GetPostListNormalizeDataInput): Err<never, WriteErrors> | import("@conduit-client/utils").Ok<PostListNormalized, never>;
|
|
138
|
+
protected normalizeData(cache: Cache, input: GetPostListNormalizeDataInput): import("@conduit-client/utils").Err<never, WriteErrors> | import("@conduit-client/utils").Ok<PostListNormalized, never>;
|
|
138
139
|
protected denormalizeData(cache: ReadonlyCache, input: GetPostListDenormalizeDataInput): Result<PostList, ReadErrors>;
|
|
139
140
|
}
|
|
140
141
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conduit-client/type-normalization",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0-dev1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Luvio Normalized Cache Control Command",
|
|
6
6
|
"type": "module",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"watch": "npm run build --watch"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@conduit-client/service-cache": "3.
|
|
36
|
-
"@conduit-client/service-cache-control": "3.
|
|
37
|
-
"@conduit-client/utils": "3.
|
|
35
|
+
"@conduit-client/service-cache": "3.16.0-dev1",
|
|
36
|
+
"@conduit-client/service-cache-control": "3.16.0-dev1",
|
|
37
|
+
"@conduit-client/utils": "3.16.0-dev1"
|
|
38
38
|
},
|
|
39
39
|
"volta": {
|
|
40
40
|
"extends": "../../../package.json"
|