@salesforce/lds-adapters-apex 1.268.0 → 1.269.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/v61.0',
|
|
87
87
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
88
88
|
method: 'get',
|
|
89
89
|
body: null,
|
|
@@ -469,7 +469,7 @@ function createResourceRequest(config) {
|
|
|
469
469
|
headers['X-SFDC-Allow-Continuation'] = header_xSFDCAllowContinuation;
|
|
470
470
|
}
|
|
471
471
|
return {
|
|
472
|
-
baseUri: '/lwr/apex/
|
|
472
|
+
baseUri: '/lwr/apex/v61.0',
|
|
473
473
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
474
474
|
method: 'post',
|
|
475
475
|
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.269.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.269.0",
|
|
34
|
+
"@salesforce/lds-default-luvio": "^1.269.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
38
|
-
"@salesforce/lds-karma": "^1.
|
|
37
|
+
"@salesforce/lds-compiler-plugins": "^1.269.0",
|
|
38
|
+
"@salesforce/lds-karma": "^1.269.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/v61.0',
|
|
98
98
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
99
99
|
method: 'get',
|
|
100
100
|
body: null,
|
|
@@ -448,7 +448,7 @@ function createResourceRequest(config) {
|
|
|
448
448
|
headers['X-SFDC-Allow-Continuation'] = header_xSFDCAllowContinuation;
|
|
449
449
|
}
|
|
450
450
|
return {
|
|
451
|
-
baseUri: '/lwr/apex/
|
|
451
|
+
baseUri: '/lwr/apex/v61.0',
|
|
452
452
|
basePath: '/' + config.urlParams.apexClass + '/' + config.urlParams.apexMethod + '',
|
|
453
453
|
method: 'post',
|
|
454
454
|
body: config.body,
|
|
@@ -680,4 +680,4 @@ const getApexInvoker = function (namespace, classname, method, isContinuation, i
|
|
|
680
680
|
};
|
|
681
681
|
|
|
682
682
|
export { getApexInvoker, getApexInvoker_imperative, refreshApex };
|
|
683
|
-
// version: 1.
|
|
683
|
+
// version: 1.269.0-37c0722c7
|
package/src/raml/api.raml
CHANGED