@salesforce/lds-adapters-industries-epc 1.365.0 → 1.366.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/industries-epc.js +2 -1
- package/dist/es/es2018/types/src/generated/adapters/getProductFlowByProductId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectPcmProductsFlowByProductId.d.ts +1 -0
- package/package.json +4 -4
- package/sfdc/index.js +3 -2
- package/src/raml/api.raml +3 -0
|
@@ -3312,7 +3312,7 @@ function select$a(luvio, params) {
|
|
|
3312
3312
|
return select$b();
|
|
3313
3313
|
}
|
|
3314
3314
|
function keyBuilder$a(luvio, params) {
|
|
3315
|
-
return keyPrefix + '::ProductFlowOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ',' + 'productId:' + params.urlParams.productId + ')';
|
|
3315
|
+
return keyPrefix + '::ProductFlowOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ',' + 'assignmentType:' + params.queryParams.assignmentType + ',' + 'productId:' + params.urlParams.productId + ')';
|
|
3316
3316
|
}
|
|
3317
3317
|
function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
3318
3318
|
getTypeCacheKeys$5(storeKeyMap, luvio, response, () => keyBuilder$a(luvio, resourceParams));
|
|
@@ -3364,6 +3364,7 @@ const adapterName$5 = 'getProductFlowByProductId';
|
|
|
3364
3364
|
const getProductFlowByProductId_ConfigPropertyMetadata = [
|
|
3365
3365
|
generateParamConfigMetadata('productId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
3366
3366
|
generateParamConfigMetadata('correlationId', false, 1 /* QueryParameter */, 0 /* String */),
|
|
3367
|
+
generateParamConfigMetadata('assignmentType', false, 1 /* QueryParameter */, 0 /* String */),
|
|
3367
3368
|
];
|
|
3368
3369
|
const getProductFlowByProductId_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$5, getProductFlowByProductId_ConfigPropertyMetadata);
|
|
3369
3370
|
const createResourceParams$5 = /*#__PURE__*/ createResourceParams$g(getProductFlowByProductId_ConfigPropertyMetadata);
|
|
@@ -8,6 +8,7 @@ export declare const getProductFlowByProductId_ConfigPropertyNames: adapter$45$u
|
|
|
8
8
|
export interface GetProductFlowByProductIdConfig {
|
|
9
9
|
productId: string;
|
|
10
10
|
correlationId?: string;
|
|
11
|
+
assignmentType?: string;
|
|
11
12
|
}
|
|
12
13
|
export declare const createResourceParams: (config: GetProductFlowByProductIdConfig) => resources_getConnectPcmProductsFlowByProductId_ResourceRequestConfig;
|
|
13
14
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetProductFlowByProductIdConfig): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-epc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.366.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "APIs for EPCNext project",
|
|
6
6
|
"main": "dist/es/es2018/industries-epc.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest --config=./jest.config.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.366.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.366.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.366.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4599,7 +4599,7 @@ function select$8(luvio, params) {
|
|
|
4599
4599
|
return select$9();
|
|
4600
4600
|
}
|
|
4601
4601
|
function keyBuilder$6(luvio, params) {
|
|
4602
|
-
return keyPrefix + '::ProductFlowOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ',' + 'productId:' + params.urlParams.productId + ')';
|
|
4602
|
+
return keyPrefix + '::ProductFlowOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ',' + 'assignmentType:' + params.queryParams.assignmentType + ',' + 'productId:' + params.urlParams.productId + ')';
|
|
4603
4603
|
}
|
|
4604
4604
|
function getResponseCacheKeys$4(storeKeyMap, luvio, resourceParams, response) {
|
|
4605
4605
|
getTypeCacheKeys$4(storeKeyMap, luvio, response, () => keyBuilder$6(luvio, resourceParams));
|
|
@@ -4651,6 +4651,7 @@ const adapterName$4 = 'getProductFlowByProductId';
|
|
|
4651
4651
|
const getProductFlowByProductId_ConfigPropertyMetadata = [
|
|
4652
4652
|
generateParamConfigMetadata('productId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
4653
4653
|
generateParamConfigMetadata('correlationId', false, 1 /* QueryParameter */, 0 /* String */),
|
|
4654
|
+
generateParamConfigMetadata('assignmentType', false, 1 /* QueryParameter */, 0 /* String */),
|
|
4654
4655
|
];
|
|
4655
4656
|
const getProductFlowByProductId_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$4, getProductFlowByProductId_ConfigPropertyMetadata);
|
|
4656
4657
|
const createResourceParams$4 = /*#__PURE__*/ createResourceParams$g(getProductFlowByProductId_ConfigPropertyMetadata);
|
|
@@ -5795,4 +5796,4 @@ withDefaultLuvio((luvio) => {
|
|
|
5795
5796
|
});
|
|
5796
5797
|
|
|
5797
5798
|
export { createProductAttributeDefinition, deactivate, deploySnapshotIndex, fetchRelatedRecords, getConfigRuleMetadata, getConfigRuleMetadata_imperative, getContextDefinitionInfoById, getContextDefinitionInfoById_imperative, getIndexConfigurations, getIndexConfigurations_imperative, getIndexError, getIndexError_imperative, getIndexSetting, getIndexSetting_imperative, getProductAttributesByProductId, getProductAttributesByProductId_imperative, getProductById, getProductById_imperative, getProductFlowByProductId, getProductFlowByProductId_imperative, getSnapshots, getSnapshots_imperative, patchIndexSetting, pcmCatalogUpdate, updateIndexConfigurations };
|
|
5798
|
-
// version: 1.
|
|
5799
|
+
// version: 1.366.0-bf15f04cce
|
package/src/raml/api.raml
CHANGED