@salesforce/lds-adapters-graphql 1.271.0 → 1.273.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.
|
@@ -621,6 +621,7 @@ function genericCreateIngest(ast, variables) {
|
|
|
621
621
|
namespace: namespace,
|
|
622
622
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
623
623
|
version: GRAPHQL_INGEST_VERSION,
|
|
624
|
+
ingestionTimestamp: timestamp,
|
|
624
625
|
});
|
|
625
626
|
}
|
|
626
627
|
return {
|
|
@@ -721,6 +722,7 @@ function ingestConnectionEdges(sel, data, path, luvio, store, timestamp, variabl
|
|
|
721
722
|
namespace: namespace,
|
|
722
723
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
723
724
|
version: GRAPHQL_INGEST_VERSION,
|
|
725
|
+
ingestionTimestamp: timestamp,
|
|
724
726
|
});
|
|
725
727
|
return {
|
|
726
728
|
__ref: key,
|
|
@@ -761,6 +763,7 @@ const createIngest$1 = (ast, key, variables) => {
|
|
|
761
763
|
namespace: namespace,
|
|
762
764
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
763
765
|
version: GRAPHQL_INGEST_VERSION,
|
|
766
|
+
ingestionTimestamp: timestamp,
|
|
764
767
|
});
|
|
765
768
|
return {
|
|
766
769
|
__ref: key,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-graphql",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.273.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapter for GraphQL API endpoint",
|
|
6
6
|
"main": "dist/es/es2018/graphql-service.js",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-graphql"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@luvio/graphql-parser": "0.154.
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
39
|
+
"@luvio/graphql-parser": "0.154.9",
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.273.0",
|
|
41
|
+
"@salesforce/lds-bindings": "^1.273.0",
|
|
42
|
+
"@salesforce/lds-default-luvio": "^1.273.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-graphql-eval": "^1.
|
|
47
|
-
"@salesforce/lds-jest": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.273.0",
|
|
46
|
+
"@salesforce/lds-graphql-eval": "^1.273.0",
|
|
47
|
+
"@salesforce/lds-jest": "^1.273.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -630,6 +630,7 @@ function genericCreateIngest(ast, variables) {
|
|
|
630
630
|
namespace: namespace,
|
|
631
631
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
632
632
|
version: GRAPHQL_INGEST_VERSION,
|
|
633
|
+
ingestionTimestamp: timestamp,
|
|
633
634
|
});
|
|
634
635
|
}
|
|
635
636
|
return {
|
|
@@ -730,6 +731,7 @@ function ingestConnectionEdges(sel, data, path, luvio, store, timestamp, variabl
|
|
|
730
731
|
namespace: namespace,
|
|
731
732
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
732
733
|
version: GRAPHQL_INGEST_VERSION,
|
|
734
|
+
ingestionTimestamp: timestamp,
|
|
733
735
|
});
|
|
734
736
|
return {
|
|
735
737
|
__ref: key,
|
|
@@ -770,6 +772,7 @@ const createIngest$1 = (ast, key, variables) => {
|
|
|
770
772
|
namespace: namespace,
|
|
771
773
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
772
774
|
version: GRAPHQL_INGEST_VERSION,
|
|
775
|
+
ingestionTimestamp: timestamp,
|
|
773
776
|
});
|
|
774
777
|
return {
|
|
775
778
|
__ref: key,
|
|
@@ -2288,4 +2291,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2288
2291
|
});
|
|
2289
2292
|
|
|
2290
2293
|
export { graphQL, graphQLImperative, unstable_graphQL_imperative };
|
|
2291
|
-
// version: 1.
|
|
2294
|
+
// version: 1.273.0-daa4f720d
|