@luvio/lwc-luvio 0.137.0 → 0.137.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.
- package/dist/es/es2018/LWCGraphQLLuvioWireAdapter.d.ts +1 -1
- package/dist/es/es2018/main.d.ts +2 -2
- package/dist/umd/es2018/LWCGraphQLLuvioWireAdapter.d.ts +1 -1
- package/dist/umd/es2018/main.d.ts +2 -2
- package/dist/umd/es5/LWCGraphQLLuvioWireAdapter.d.ts +1 -1
- package/dist/umd/es5/main.d.ts +2 -2
- package/package.json +4 -4
|
@@ -21,7 +21,7 @@ export interface ResolvedGraphQLConfig extends GraphQLUserInput {
|
|
|
21
21
|
query?: DocumentNode;
|
|
22
22
|
}
|
|
23
23
|
export interface GraphQLBatchUserInput {
|
|
24
|
-
batchQuery: [
|
|
24
|
+
batchQuery: GraphQLUserInput[];
|
|
25
25
|
}
|
|
26
26
|
export declare type GraphQLInput = GraphQLUserInput | GraphQLBatchUserInput;
|
|
27
27
|
export declare type GraphQLResponse = {
|
package/dist/es/es2018/main.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import { bindWireRefresh, refreshData } from './LWCLuvioBindings';
|
|
|
3
3
|
import { createWireAdapterConstructor } from './LWCLuvioWireAdapter';
|
|
4
4
|
import { createInfiniteScrollingWireAdapterConstructor } from './LWCInfiniteScrollingLuvioWireAdapter';
|
|
5
5
|
import { createGraphQLWireAdapterConstructor } from './LWCGraphQLLuvioWireAdapter';
|
|
6
|
-
import type { GraphQLError, GraphQLResponse, GraphQLUserInput } from './LWCGraphQLLuvioWireAdapter';
|
|
6
|
+
import type { GraphQLError, GraphQLResponse, GraphQLBatchUserInput, GraphQLInput, GraphQLUserInput } from './LWCGraphQLLuvioWireAdapter';
|
|
7
7
|
export { createWireAdapterConstructor, createInfiniteScrollingWireAdapterConstructor, createGraphQLWireAdapterConstructor, bindWireRefresh, refreshData, REFRESH_ADAPTER_EVENT, ADAPTER_UNFULFILLED_ERROR, };
|
|
8
|
-
export type { GraphQLError, GraphQLResponse, GraphQLUserInput };
|
|
8
|
+
export type { GraphQLError, GraphQLResponse, GraphQLBatchUserInput, GraphQLUserInput, GraphQLInput, };
|
|
@@ -21,7 +21,7 @@ export interface ResolvedGraphQLConfig extends GraphQLUserInput {
|
|
|
21
21
|
query?: DocumentNode;
|
|
22
22
|
}
|
|
23
23
|
export interface GraphQLBatchUserInput {
|
|
24
|
-
batchQuery: [
|
|
24
|
+
batchQuery: GraphQLUserInput[];
|
|
25
25
|
}
|
|
26
26
|
export declare type GraphQLInput = GraphQLUserInput | GraphQLBatchUserInput;
|
|
27
27
|
export declare type GraphQLResponse = {
|
|
@@ -3,6 +3,6 @@ import { bindWireRefresh, refreshData } from './LWCLuvioBindings';
|
|
|
3
3
|
import { createWireAdapterConstructor } from './LWCLuvioWireAdapter';
|
|
4
4
|
import { createInfiniteScrollingWireAdapterConstructor } from './LWCInfiniteScrollingLuvioWireAdapter';
|
|
5
5
|
import { createGraphQLWireAdapterConstructor } from './LWCGraphQLLuvioWireAdapter';
|
|
6
|
-
import type { GraphQLError, GraphQLResponse, GraphQLUserInput } from './LWCGraphQLLuvioWireAdapter';
|
|
6
|
+
import type { GraphQLError, GraphQLResponse, GraphQLBatchUserInput, GraphQLInput, GraphQLUserInput } from './LWCGraphQLLuvioWireAdapter';
|
|
7
7
|
export { createWireAdapterConstructor, createInfiniteScrollingWireAdapterConstructor, createGraphQLWireAdapterConstructor, bindWireRefresh, refreshData, REFRESH_ADAPTER_EVENT, ADAPTER_UNFULFILLED_ERROR, };
|
|
8
|
-
export type { GraphQLError, GraphQLResponse, GraphQLUserInput };
|
|
8
|
+
export type { GraphQLError, GraphQLResponse, GraphQLBatchUserInput, GraphQLUserInput, GraphQLInput, };
|
|
@@ -21,7 +21,7 @@ export interface ResolvedGraphQLConfig extends GraphQLUserInput {
|
|
|
21
21
|
query?: DocumentNode;
|
|
22
22
|
}
|
|
23
23
|
export interface GraphQLBatchUserInput {
|
|
24
|
-
batchQuery: [
|
|
24
|
+
batchQuery: GraphQLUserInput[];
|
|
25
25
|
}
|
|
26
26
|
export declare type GraphQLInput = GraphQLUserInput | GraphQLBatchUserInput;
|
|
27
27
|
export declare type GraphQLResponse = {
|
package/dist/umd/es5/main.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import { bindWireRefresh, refreshData } from './LWCLuvioBindings';
|
|
|
3
3
|
import { createWireAdapterConstructor } from './LWCLuvioWireAdapter';
|
|
4
4
|
import { createInfiniteScrollingWireAdapterConstructor } from './LWCInfiniteScrollingLuvioWireAdapter';
|
|
5
5
|
import { createGraphQLWireAdapterConstructor } from './LWCGraphQLLuvioWireAdapter';
|
|
6
|
-
import type { GraphQLError, GraphQLResponse, GraphQLUserInput } from './LWCGraphQLLuvioWireAdapter';
|
|
6
|
+
import type { GraphQLError, GraphQLResponse, GraphQLBatchUserInput, GraphQLInput, GraphQLUserInput } from './LWCGraphQLLuvioWireAdapter';
|
|
7
7
|
export { createWireAdapterConstructor, createInfiniteScrollingWireAdapterConstructor, createGraphQLWireAdapterConstructor, bindWireRefresh, refreshData, REFRESH_ADAPTER_EVENT, ADAPTER_UNFULFILLED_ERROR, };
|
|
8
|
-
export type { GraphQLError, GraphQLResponse, GraphQLUserInput };
|
|
8
|
+
export type { GraphQLError, GraphQLResponse, GraphQLBatchUserInput, GraphQLUserInput, GraphQLInput, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luvio/lwc-luvio",
|
|
3
|
-
"version": "0.137.
|
|
3
|
+
"version": "0.137.1",
|
|
4
4
|
"description": "Lightning Web Component bindings for Luvio",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"watch": "yarn build --watch"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@luvio/engine": "^0.137.
|
|
28
|
+
"@luvio/engine": "^0.137.1",
|
|
29
29
|
"@lwc/engine-core": "2.11.3"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@luvio/adapter-test-library": "^0.137.
|
|
33
|
-
"@luvio/cli": "^0.137.
|
|
32
|
+
"@luvio/adapter-test-library": "^0.137.1",
|
|
33
|
+
"@luvio/cli": "^0.137.1",
|
|
34
34
|
"@lwc/jest-preset": "11.2.2"
|
|
35
35
|
},
|
|
36
36
|
"volta": {
|