@salesforce/lds-adapters-uiapi 1.334.0 → 1.335.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.
- package/dist/es/es2018/uiapi-records-service.js +81 -81
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +3 -3
- package/sfdc/index.js +79 -79
- package/src/raml/api.raml +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.335.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters for record related UI API endpoints",
|
|
6
6
|
"main": "dist/es/es2018/uiapi-records-service.js",
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@salesforce/lds-bindings": "^1.
|
|
72
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
71
|
+
"@salesforce/lds-bindings": "^1.335.0",
|
|
72
|
+
"@salesforce/lds-default-luvio": "^1.335.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@databases/sqlite": "^3.0.0",
|
|
76
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
77
|
-
"@salesforce/lds-jest": "^1.
|
|
78
|
-
"@salesforce/lds-store-binary": "^1.
|
|
76
|
+
"@salesforce/lds-compiler-plugins": "^1.335.0",
|
|
77
|
+
"@salesforce/lds-jest": "^1.335.0",
|
|
78
|
+
"@salesforce/lds-store-binary": "^1.335.0"
|
|
79
79
|
},
|
|
80
80
|
"luvioBundlesize": [
|
|
81
81
|
{
|
package/sfdc/graphqlAdapters.js
CHANGED
|
@@ -20862,7 +20862,7 @@ function ingestError$1(luvio, config, params, error, snapshotRefresh) {
|
|
|
20862
20862
|
function createResourceRequest$2(config) {
|
|
20863
20863
|
const headers = {};
|
|
20864
20864
|
return {
|
|
20865
|
-
baseUri: '/services/data/
|
|
20865
|
+
baseUri: '/services/data/v64.0',
|
|
20866
20866
|
basePath: '/graphql',
|
|
20867
20867
|
method: 'post',
|
|
20868
20868
|
body: { ...config.body,
|
|
@@ -21274,7 +21274,7 @@ function createResourceRequest(config) {
|
|
|
21274
21274
|
const headers = {};
|
|
21275
21275
|
const transformedConfig = stripDocumentsOfMetaschema(config);
|
|
21276
21276
|
return {
|
|
21277
|
-
baseUri: '/services/data/
|
|
21277
|
+
baseUri: '/services/data/v64.0',
|
|
21278
21278
|
basePath: '/graphql/batch',
|
|
21279
21279
|
method: 'post',
|
|
21280
21280
|
body: transformedConfig.body,
|
|
@@ -22257,4 +22257,4 @@ register({
|
|
|
22257
22257
|
});
|
|
22258
22258
|
|
|
22259
22259
|
export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
|
|
22260
|
-
// version: 1.
|
|
22260
|
+
// version: 1.335.0-22a7c4d20b
|