@salesforce/lds-adapters-cdp-query 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/cdp-query.js +2 -2
- package/package.json +3 -3
- package/sfdc/index.js +3 -3
- package/src/raml/api.raml +1 -1
|
@@ -176,7 +176,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
176
176
|
function createResourceRequest$1(config) {
|
|
177
177
|
const headers = {};
|
|
178
178
|
return {
|
|
179
|
-
baseUri: '/services/data/
|
|
179
|
+
baseUri: '/services/data/v67.0',
|
|
180
180
|
basePath: '/ssot/universalIdLookup/' + config.urlParams.entityName + '/' + config.urlParams.dataSourceId + '/' + config.urlParams.dataSourceObjectId + '/' + config.urlParams.sourceRecordId + '',
|
|
181
181
|
method: 'get',
|
|
182
182
|
body: null,
|
|
@@ -413,7 +413,7 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
413
413
|
function createResourceRequest(config) {
|
|
414
414
|
const headers = {};
|
|
415
415
|
return {
|
|
416
|
-
baseUri: '/services/data/
|
|
416
|
+
baseUri: '/services/data/v67.0',
|
|
417
417
|
basePath: '/ssot/query',
|
|
418
418
|
method: 'post',
|
|
419
419
|
body: config.body,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-query",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.413.0",
|
|
4
4
|
"description": "CDP Query",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-query.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.413.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.413.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -226,7 +226,7 @@ function ingestSuccess$1(luvio, resourceParams, response) {
|
|
|
226
226
|
function createResourceRequest$1(config) {
|
|
227
227
|
const headers = {};
|
|
228
228
|
return {
|
|
229
|
-
baseUri: '/services/data/
|
|
229
|
+
baseUri: '/services/data/v67.0',
|
|
230
230
|
basePath: '/ssot/query',
|
|
231
231
|
method: 'post',
|
|
232
232
|
body: config.body,
|
|
@@ -391,7 +391,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
391
391
|
function createResourceRequest(config) {
|
|
392
392
|
const headers = {};
|
|
393
393
|
return {
|
|
394
|
-
baseUri: '/services/data/
|
|
394
|
+
baseUri: '/services/data/v67.0',
|
|
395
395
|
basePath: '/ssot/universalIdLookup/' + config.urlParams.entityName + '/' + config.urlParams.dataSourceId + '/' + config.urlParams.dataSourceObjectId + '/' + config.urlParams.sourceRecordId + '',
|
|
396
396
|
method: 'get',
|
|
397
397
|
body: null,
|
|
@@ -522,4 +522,4 @@ withDefaultLuvio((luvio) => {
|
|
|
522
522
|
});
|
|
523
523
|
|
|
524
524
|
export { cdpQuery, universalIdLookupBySourceId, universalIdLookupBySourceId_imperative };
|
|
525
|
-
// version: 1.
|
|
525
|
+
// version: 1.413.0-8cd312301b
|