@salesforce/lds-adapters-industries-interesttagging 1.261.0 → 1.262.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.
|
@@ -7,4 +7,4 @@ declare let getInterestTagEntityAssignments_imperative: any;
|
|
|
7
7
|
declare let getTagCategoriesByTagId_imperative: any;
|
|
8
8
|
declare let getTagsByCategoryId_imperative: any;
|
|
9
9
|
declare let getTagsByRecordId_imperative: any;
|
|
10
|
-
export { createInterestTagEntityAssignment, getInterestTagEntityAssignments, getTagCategoriesByTagId, getTagsByCategoryId, getTagsByRecordId, getInterestTagEntityAssignments_imperative, getTagCategoriesByTagId_imperative, getTagsByCategoryId_imperative, getTagsByRecordId_imperative };
|
|
10
|
+
export { createInterestTagEntityAssignment, getInterestTagEntityAssignments, getTagCategoriesByTagId, getTagsByCategoryId, getTagsByRecordId, getInterestTagEntityAssignments_imperative, getTagCategoriesByTagId_imperative, getTagsByCategoryId_imperative, getTagsByRecordId_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-interesttagging",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-interesttagging",
|
|
40
40
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-interesttagging",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
|
-
"test": "nx build:karma && karma start --single-run"
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
42
|
+
"test": "nx build:karma && karma start --single-run"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1355,10 +1355,24 @@ let getInterestTagEntityAssignments_imperative;
|
|
|
1355
1355
|
let getTagCategoriesByTagId_imperative;
|
|
1356
1356
|
let getTagsByCategoryId_imperative;
|
|
1357
1357
|
let getTagsByRecordId_imperative;
|
|
1358
|
-
const getInterestTagEntityAssignmentsMetadata = {
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1358
|
+
const getInterestTagEntityAssignmentsMetadata = {
|
|
1359
|
+
apiFamily: 'interesttagging',
|
|
1360
|
+
name: 'getInterestTagEntityAssignments',
|
|
1361
|
+
};
|
|
1362
|
+
const getTagCategoriesByTagIdMetadata = {
|
|
1363
|
+
apiFamily: 'interesttagging',
|
|
1364
|
+
name: 'getTagCategoriesByTagId',
|
|
1365
|
+
};
|
|
1366
|
+
const getTagsByCategoryIdMetadata = {
|
|
1367
|
+
apiFamily: 'interesttagging',
|
|
1368
|
+
name: 'getTagsByCategoryId',
|
|
1369
|
+
ttl: 10000,
|
|
1370
|
+
};
|
|
1371
|
+
const getTagsByRecordIdMetadata = {
|
|
1372
|
+
apiFamily: 'interesttagging',
|
|
1373
|
+
name: 'getTagsByRecordId',
|
|
1374
|
+
ttl: 10000,
|
|
1375
|
+
};
|
|
1362
1376
|
// Notify Update Available
|
|
1363
1377
|
function bindExportsTo(luvio) {
|
|
1364
1378
|
// LDS Adapters
|
|
@@ -1368,7 +1382,7 @@ function bindExportsTo(luvio) {
|
|
|
1368
1382
|
const getTagsByRecordId_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getTagsByRecordId', getTagsByRecordIdAdapterFactory), getTagsByRecordIdMetadata);
|
|
1369
1383
|
function unwrapSnapshotData(factory) {
|
|
1370
1384
|
const adapter = factory(luvio);
|
|
1371
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
1385
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
1372
1386
|
}
|
|
1373
1387
|
return {
|
|
1374
1388
|
createInterestTagEntityAssignment: unwrapSnapshotData(createInterestTagEntityAssignmentAdapterFactory),
|
|
@@ -1399,4 +1413,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1399
1413
|
});
|
|
1400
1414
|
|
|
1401
1415
|
export { createInterestTagEntityAssignment, getInterestTagEntityAssignments, getInterestTagEntityAssignments_imperative, getTagCategoriesByTagId, getTagCategoriesByTagId_imperative, getTagsByCategoryId, getTagsByCategoryId_imperative, getTagsByRecordId, getTagsByRecordId_imperative };
|
|
1402
|
-
// version: 1.
|
|
1416
|
+
// version: 1.262.0-d3c071fdc
|