@salesforce/lds-adapters-industries-interesttagging 1.260.0 → 1.261.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/package.json +4 -4
- package/sfdc/index.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-interesttagging",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Connect family for interest tags APIs",
|
|
6
6
|
"main": "dist/es/es2018/industries-interesttagging.js",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
50
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
51
51
|
},
|
|
52
52
|
"nx": {
|
|
53
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1359,6 +1359,7 @@ const getInterestTagEntityAssignmentsMetadata = { apiFamily: 'interesttagging',
|
|
|
1359
1359
|
const getTagCategoriesByTagIdMetadata = { apiFamily: 'interesttagging', name: 'getTagCategoriesByTagId' };
|
|
1360
1360
|
const getTagsByCategoryIdMetadata = { apiFamily: 'interesttagging', name: 'getTagsByCategoryId', ttl: 10000 };
|
|
1361
1361
|
const getTagsByRecordIdMetadata = { apiFamily: 'interesttagging', name: 'getTagsByRecordId', ttl: 10000 };
|
|
1362
|
+
// Notify Update Available
|
|
1362
1363
|
function bindExportsTo(luvio) {
|
|
1363
1364
|
// LDS Adapters
|
|
1364
1365
|
const getInterestTagEntityAssignments_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getInterestTagEntityAssignments', getInterestTagEntityAssignmentsAdapterFactory), getInterestTagEntityAssignmentsMetadata);
|
|
@@ -1379,7 +1380,8 @@ function bindExportsTo(luvio) {
|
|
|
1379
1380
|
getInterestTagEntityAssignments_imperative: createImperativeAdapter(luvio, getInterestTagEntityAssignments_ldsAdapter, getInterestTagEntityAssignmentsMetadata),
|
|
1380
1381
|
getTagCategoriesByTagId_imperative: createImperativeAdapter(luvio, getTagCategoriesByTagId_ldsAdapter, getTagCategoriesByTagIdMetadata),
|
|
1381
1382
|
getTagsByCategoryId_imperative: createImperativeAdapter(luvio, getTagsByCategoryId_ldsAdapter, getTagsByCategoryIdMetadata),
|
|
1382
|
-
getTagsByRecordId_imperative: createImperativeAdapter(luvio, getTagsByRecordId_ldsAdapter, getTagsByRecordIdMetadata)
|
|
1383
|
+
getTagsByRecordId_imperative: createImperativeAdapter(luvio, getTagsByRecordId_ldsAdapter, getTagsByRecordIdMetadata),
|
|
1384
|
+
// Notify Update Availables
|
|
1383
1385
|
};
|
|
1384
1386
|
}
|
|
1385
1387
|
withDefaultLuvio((luvio) => {
|
|
@@ -1392,9 +1394,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1392
1394
|
getInterestTagEntityAssignments_imperative,
|
|
1393
1395
|
getTagCategoriesByTagId_imperative,
|
|
1394
1396
|
getTagsByCategoryId_imperative,
|
|
1395
|
-
getTagsByRecordId_imperative
|
|
1397
|
+
getTagsByRecordId_imperative,
|
|
1396
1398
|
} = bindExportsTo(luvio));
|
|
1397
1399
|
});
|
|
1398
1400
|
|
|
1399
1401
|
export { createInterestTagEntityAssignment, getInterestTagEntityAssignments, getInterestTagEntityAssignments_imperative, getTagCategoriesByTagId, getTagCategoriesByTagId_imperative, getTagsByCategoryId, getTagsByCategoryId_imperative, getTagsByRecordId, getTagsByRecordId_imperative };
|
|
1400
|
-
// version: 1.
|
|
1402
|
+
// version: 1.261.0-10ee630e7
|