@salesforce/lds-adapters-platform-flow 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/platform-flow.js +3 -3
- package/package.json +4 -4
- package/sfdc/index.js +4 -4
- package/src/raml/api.raml +1 -1
|
@@ -143,7 +143,7 @@ function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
|
143
143
|
function createResourceRequest$2(config) {
|
|
144
144
|
const headers = {};
|
|
145
145
|
return {
|
|
146
|
-
baseUri: '/services/data/
|
|
146
|
+
baseUri: '/services/data/v61.0',
|
|
147
147
|
basePath: '/connect/interaction/runtime/startFlow',
|
|
148
148
|
method: 'post',
|
|
149
149
|
body: config.body,
|
|
@@ -224,7 +224,7 @@ function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
|
224
224
|
function createResourceRequest$1(config) {
|
|
225
225
|
const headers = {};
|
|
226
226
|
return {
|
|
227
|
-
baseUri: '/services/data/
|
|
227
|
+
baseUri: '/services/data/v61.0',
|
|
228
228
|
basePath: '/connect/interaction/runtime/navigateFlow',
|
|
229
229
|
method: 'post',
|
|
230
230
|
body: config.body,
|
|
@@ -431,7 +431,7 @@ function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
|
431
431
|
function createResourceRequest(config) {
|
|
432
432
|
const headers = {};
|
|
433
433
|
return {
|
|
434
|
-
baseUri: '/services/data/
|
|
434
|
+
baseUri: '/services/data/v61.0',
|
|
435
435
|
basePath: '/connect/interaction/runtime/resumeFlow',
|
|
436
436
|
method: 'post',
|
|
437
437
|
body: config.body,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-flow",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.269.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Flow Runtime APIs",
|
|
6
6
|
"main": "dist/es/es2018/platform-flow.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-flow"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@salesforce/lds-bindings": "^1.
|
|
40
|
+
"@salesforce/lds-bindings": "^1.269.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
44
|
-
"@salesforce/lds-karma": "^1.
|
|
43
|
+
"@salesforce/lds-compiler-plugins": "^1.269.0",
|
|
44
|
+
"@salesforce/lds-karma": "^1.269.0"
|
|
45
45
|
},
|
|
46
46
|
"nx": {
|
|
47
47
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -153,7 +153,7 @@ function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
|
153
153
|
function createResourceRequest$2(config) {
|
|
154
154
|
const headers = {};
|
|
155
155
|
return {
|
|
156
|
-
baseUri: '/services/data/
|
|
156
|
+
baseUri: '/services/data/v61.0',
|
|
157
157
|
basePath: '/connect/interaction/runtime/navigateFlow',
|
|
158
158
|
method: 'post',
|
|
159
159
|
body: config.body,
|
|
@@ -360,7 +360,7 @@ function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
|
360
360
|
function createResourceRequest$1(config) {
|
|
361
361
|
const headers = {};
|
|
362
362
|
return {
|
|
363
|
-
baseUri: '/services/data/
|
|
363
|
+
baseUri: '/services/data/v61.0',
|
|
364
364
|
basePath: '/connect/interaction/runtime/resumeFlow',
|
|
365
365
|
method: 'post',
|
|
366
366
|
body: config.body,
|
|
@@ -436,7 +436,7 @@ function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
|
436
436
|
function createResourceRequest(config) {
|
|
437
437
|
const headers = {};
|
|
438
438
|
return {
|
|
439
|
-
baseUri: '/services/data/
|
|
439
|
+
baseUri: '/services/data/v61.0',
|
|
440
440
|
basePath: '/connect/interaction/runtime/startFlow',
|
|
441
441
|
method: 'post',
|
|
442
442
|
body: config.body,
|
|
@@ -523,4 +523,4 @@ withDefaultLuvio((luvio) => {
|
|
|
523
523
|
});
|
|
524
524
|
|
|
525
525
|
export { navigateFlow, resumeFlow, startFlow };
|
|
526
|
-
// version: 1.
|
|
526
|
+
// version: 1.269.0-37c0722c7
|