@common-stack/client-core 0.6.1-alpha.0 → 0.6.1-alpha.1

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.
@@ -5,7 +5,7 @@ import { BaseClientFeature } from './base-client-feature';
5
5
  declare class ApolloClientFeature extends BaseClientFeature implements IApolloClientFeature {
6
6
  readonly clientStateParams?: IClientStateConfig[];
7
7
  readonly dataIdFromObject?: {
8
- [key: string]: (value: any) => string;
8
+ [key: string]: (value?: any) => string;
9
9
  }[];
10
10
  readonly errorLink?: ErrorLink[];
11
11
  constructor(...modules: IApolloClientFeatureShape[]);
@@ -98,7 +98,7 @@ export interface IApolloClientFeatureShape extends IBaseClientFeatureShape {
98
98
  export interface IApolloClientFeature extends IApolloClientFeatureShape {
99
99
  readonly clientStateParamsIn?: IClientStateConfig[];
100
100
  readonly dataIdFromObjectIn?: {
101
- [key: string]: (value: any) => string;
101
+ [key: string]: (value?: any) => string;
102
102
  }[];
103
103
  readonly errorLinkIn?: ErrorLink[];
104
104
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/client-core",
3
- "version": "0.6.1-alpha.0",
3
+ "version": "0.6.1-alpha.1",
4
4
  "description": "common core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -31,5 +31,5 @@
31
31
  "typescript": {
32
32
  "definition": "lib/index.d.ts"
33
33
  },
34
- "gitHead": "32445493b66c73ec547b5fd27acfa84ae4718897"
34
+ "gitHead": "0132952f3b5dfce22ef8f93af87ed6d70f85ed7f"
35
35
  }