@salesforce/lds-adapters-apex 1.412.0 → 1.413.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/apex-service.js +2 -2
- package/package.json +5 -5
- package/sfdc/index.js +3 -3
- package/src/raml/api.raml +1 -1
|
@@ -83,7 +83,7 @@ function createResourceRequest$1(config) {
|
|
|
83
83
|
headers['X-SFDC-Allow-Continuation'] = header_xSFDCAllowContinuation;
|
|
84
84
|
}
|
|
85
85
|
return {
|
|
86
|
-
baseUri: '/lwr/apex/
|
|
86
|
+
baseUri: '/lwr/apex/v67.0',
|
|
87
87
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
88
88
|
method: 'get',
|
|
89
89
|
body: null,
|
|
@@ -444,7 +444,7 @@ function createResourceRequest(config) {
|
|
|
444
444
|
headers['X-SFDC-Allow-Continuation'] = header_xSFDCAllowContinuation;
|
|
445
445
|
}
|
|
446
446
|
return {
|
|
447
|
-
baseUri: '/lwr/apex/
|
|
447
|
+
baseUri: '/lwr/apex/v67.0',
|
|
448
448
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
449
449
|
method: 'post',
|
|
450
450
|
body: config.body,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-apex",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.413.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters for Apex",
|
|
6
6
|
"main": "dist/es/es2018/apex-service.js",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
]
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@salesforce/lds-bindings": "^1.
|
|
34
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
33
|
+
"@salesforce/lds-bindings": "^1.413.0",
|
|
34
|
+
"@salesforce/lds-default-luvio": "^1.413.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
38
|
-
"@salesforce/lds-karma": "^1.
|
|
37
|
+
"@salesforce/lds-compiler-plugins": "^1.413.0",
|
|
38
|
+
"@salesforce/lds-karma": "^1.413.0"
|
|
39
39
|
},
|
|
40
40
|
"nx": {
|
|
41
41
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -94,7 +94,7 @@ function createResourceRequest$1(config) {
|
|
|
94
94
|
headers['X-SFDC-Allow-Continuation'] = header_xSFDCAllowContinuation;
|
|
95
95
|
}
|
|
96
96
|
return {
|
|
97
|
-
baseUri: '/lwr/apex/
|
|
97
|
+
baseUri: '/lwr/apex/v67.0',
|
|
98
98
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
99
99
|
method: 'get',
|
|
100
100
|
body: null,
|
|
@@ -423,7 +423,7 @@ function createResourceRequest(config) {
|
|
|
423
423
|
headers['X-SFDC-Allow-Continuation'] = header_xSFDCAllowContinuation;
|
|
424
424
|
}
|
|
425
425
|
return {
|
|
426
|
-
baseUri: '/lwr/apex/
|
|
426
|
+
baseUri: '/lwr/apex/v67.0',
|
|
427
427
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
428
428
|
method: 'post',
|
|
429
429
|
body: config.body,
|
|
@@ -686,4 +686,4 @@ const getApexInvoker = function (namespace, classname, method, isContinuation, i
|
|
|
686
686
|
};
|
|
687
687
|
|
|
688
688
|
export { factory as GetApexWireAdapterFactory, getApexInvoker, getApexInvoker_imperative, refreshApex, registerPrefetcher };
|
|
689
|
-
// version: 1.
|
|
689
|
+
// version: 1.413.0-8cd312301b
|
package/src/raml/api.raml
CHANGED