@salesforce/lds-adapters-industries-epc 1.261.0 → 1.262.1
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.
|
@@ -8,4 +8,4 @@ declare let getContextDefinitionInfoById_imperative: any;
|
|
|
8
8
|
declare let getProductAttributesByProductId_imperative: any;
|
|
9
9
|
declare let getProductById_imperative: any;
|
|
10
10
|
declare let getProductFlowByProductId_imperative: any;
|
|
11
|
-
export { createProductAttributeDefinition, deactivate, getContextDefinitionInfoById, getProductAttributesByProductId, getProductById, getProductFlowByProductId, getContextDefinitionInfoById_imperative, getProductAttributesByProductId_imperative, getProductById_imperative, getProductFlowByProductId_imperative };
|
|
11
|
+
export { createProductAttributeDefinition, deactivate, getContextDefinitionInfoById, getProductAttributesByProductId, getProductById, getProductFlowByProductId, getContextDefinitionInfoById_imperative, getProductAttributesByProductId_imperative, getProductById_imperative, getProductFlowByProductId_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-epc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "APIs for EPCNext project",
|
|
6
6
|
"main": "dist/es/es2018/industries-epc.js",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-epc",
|
|
40
40
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-epc",
|
|
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.1"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2514,10 +2514,22 @@ let getContextDefinitionInfoById_imperative;
|
|
|
2514
2514
|
let getProductAttributesByProductId_imperative;
|
|
2515
2515
|
let getProductById_imperative;
|
|
2516
2516
|
let getProductFlowByProductId_imperative;
|
|
2517
|
-
const getContextDefinitionInfoByIdMetadata = {
|
|
2518
|
-
|
|
2517
|
+
const getContextDefinitionInfoByIdMetadata = {
|
|
2518
|
+
apiFamily: 'epc',
|
|
2519
|
+
name: 'getContextDefinitionInfoById',
|
|
2520
|
+
ttl: 6000,
|
|
2521
|
+
};
|
|
2522
|
+
const getProductAttributesByProductIdMetadata = {
|
|
2523
|
+
apiFamily: 'epc',
|
|
2524
|
+
name: 'getProductAttributesByProductId',
|
|
2525
|
+
ttl: 6000,
|
|
2526
|
+
};
|
|
2519
2527
|
const getProductByIdMetadata = { apiFamily: 'epc', name: 'getProductById' };
|
|
2520
|
-
const getProductFlowByProductIdMetadata = {
|
|
2528
|
+
const getProductFlowByProductIdMetadata = {
|
|
2529
|
+
apiFamily: 'epc',
|
|
2530
|
+
name: 'getProductFlowByProductId',
|
|
2531
|
+
ttl: 6000,
|
|
2532
|
+
};
|
|
2521
2533
|
// Notify Update Available
|
|
2522
2534
|
function bindExportsTo(luvio) {
|
|
2523
2535
|
// LDS Adapters
|
|
@@ -2527,7 +2539,7 @@ function bindExportsTo(luvio) {
|
|
|
2527
2539
|
const getProductFlowByProductId_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getProductFlowByProductId', getProductFlowByProductIdAdapterFactory), getProductFlowByProductIdMetadata);
|
|
2528
2540
|
function unwrapSnapshotData(factory) {
|
|
2529
2541
|
const adapter = factory(luvio);
|
|
2530
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
2542
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
2531
2543
|
}
|
|
2532
2544
|
return {
|
|
2533
2545
|
createProductAttributeDefinition: unwrapSnapshotData(createProductAttributeDefinitionAdapterFactory),
|
|
@@ -2560,4 +2572,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2560
2572
|
});
|
|
2561
2573
|
|
|
2562
2574
|
export { createProductAttributeDefinition, deactivate, getContextDefinitionInfoById, getContextDefinitionInfoById_imperative, getProductAttributesByProductId, getProductAttributesByProductId_imperative, getProductById, getProductById_imperative, getProductFlowByProductId, getProductFlowByProductId_imperative };
|
|
2563
|
-
// version: 1.
|
|
2575
|
+
// version: 1.262.1-9a1924e93
|