@vendure/common 2.0.0-next.8 → 2.0.0

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,5 +1,5 @@
1
- export declare type FetchPolicy = 'cache-first' | 'network-only' | 'cache-only' | 'no-cache' | 'standby';
2
- export declare type WatchQueryFetchPolicy = FetchPolicy | 'cache-and-network';
1
+ export type FetchPolicy = 'cache-first' | 'network-only' | 'cache-only' | 'no-cache' | 'standby';
2
+ export type WatchQueryFetchPolicy = FetchPolicy | 'cache-and-network';
3
3
  export interface BaseExtensionMessage {
4
4
  requestId: string;
5
5
  type: string;
@@ -58,7 +58,7 @@ export interface DestroyMessage extends BaseExtensionMessage {
58
58
  type: 'destroy';
59
59
  data: null;
60
60
  }
61
- export declare type ExtensionMessage = ActivatedRouteMessage | QueryMessage | MutationMessage | NotificationMessage | CancellationMessage | DestroyMessage;
61
+ export type ExtensionMessage = ActivatedRouteMessage | QueryMessage | MutationMessage | NotificationMessage | CancellationMessage | DestroyMessage;
62
62
  export interface MessageResponse {
63
63
  requestId: string;
64
64
  data: any;