@salesforce/lds-adapters-industries-cpq 1.428.0-dev1 → 1.428.0-dev2
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-cpq.js +179 -165
- package/dist/es/es2018/types/src/generated/adapters/executeConfigRules.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postRevenueProductConfiguratorRulesActionsExecute.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/types/ConfigRuleInputRepresentation.d.ts +4 -4
- package/dist/es/es2018/types/src/generated/types/ConfigRuleOptionsInputRepresentation.d.ts +3 -6
- package/package.json +4 -4
- package/sfdc/index.js +116 -102
- package/src/raml/api.raml +2 -6
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
2
|
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ConfigRuleOptionsInputRepresentation as types_ConfigRuleOptionsInputRepresentation_ConfigRuleOptionsInputRepresentation } from '../types/ConfigRuleOptionsInputRepresentation';
|
|
3
4
|
import { ResourceRequestConfig as resources_postRevenueProductConfiguratorRulesActionsExecute_ResourceRequestConfig } from '../resources/postRevenueProductConfiguratorRulesActionsExecute';
|
|
4
5
|
import { ConfigRuleOutputRepresentation as types_ConfigRuleOutputRepresentation_ConfigRuleOutputRepresentation } from '../types/ConfigRuleOutputRepresentation';
|
|
5
6
|
export declare const adapterName = "executeConfigRules";
|
|
6
7
|
export declare const executeConfigRules_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
8
|
export declare const executeConfigRules_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
9
|
export interface ExecuteConfigRulesConfig {
|
|
9
|
-
ruleOptions?:
|
|
10
|
+
ruleOptions?: types_ConfigRuleOptionsInputRepresentation_ConfigRuleOptionsInputRepresentation;
|
|
10
11
|
transactionContextId?: string | null;
|
|
11
12
|
transactionId?: string | null;
|
|
12
13
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { ConfigRuleOptionsInputRepresentation as types_ConfigRuleOptionsInputRepresentation_ConfigRuleOptionsInputRepresentation } from '../types/ConfigRuleOptionsInputRepresentation';
|
|
1
2
|
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
3
|
import { ConfigRuleOutputRepresentation as types_ConfigRuleOutputRepresentation_ConfigRuleOutputRepresentation } from '../types/ConfigRuleOutputRepresentation';
|
|
3
4
|
export interface ResourceRequestConfig {
|
|
4
5
|
body: {
|
|
5
|
-
ruleOptions?:
|
|
6
|
+
ruleOptions?: types_ConfigRuleOptionsInputRepresentation_ConfigRuleOptionsInputRepresentation;
|
|
6
7
|
transactionContextId?: string | null;
|
|
7
8
|
transactionId?: string | null;
|
|
8
9
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { ConfigRuleOptionsInputRepresentation as ConfigRuleOptionsInputRepresentation_ConfigRuleOptionsInputRepresentation } from './ConfigRuleOptionsInputRepresentation';
|
|
1
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "aa08a78ac0da647076fe0b5bf8281059";
|
|
3
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
5
|
export declare const RepresentationType: string;
|
|
5
6
|
export declare function normalize(input: ConfigRuleInputRepresentation, existing: ConfigRuleInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ConfigRuleInputRepresentationNormalized;
|
|
@@ -14,8 +15,7 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
14
15
|
* (none)
|
|
15
16
|
*/
|
|
16
17
|
export interface ConfigRuleInputRepresentationNormalized {
|
|
17
|
-
|
|
18
|
-
ruleOptions?: {};
|
|
18
|
+
ruleOptions?: ConfigRuleOptionsInputRepresentation_ConfigRuleOptionsInputRepresentation;
|
|
19
19
|
/** Transaction Context ID */
|
|
20
20
|
transactionContextId?: string | null;
|
|
21
21
|
/** Transaction ID */
|
|
@@ -28,7 +28,7 @@ export interface ConfigRuleInputRepresentationNormalized {
|
|
|
28
28
|
* (none)
|
|
29
29
|
*/
|
|
30
30
|
export interface ConfigRuleInputRepresentation {
|
|
31
|
-
ruleOptions?:
|
|
31
|
+
ruleOptions?: ConfigRuleOptionsInputRepresentation_ConfigRuleOptionsInputRepresentation;
|
|
32
32
|
transactionContextId?: string | null;
|
|
33
33
|
transactionId?: string | null;
|
|
34
34
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "2ea34bc0fb8d515d67db46b91e9a31c5";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: ConfigRuleOptionsInputRepresentation, existing: ConfigRuleOptionsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ConfigRuleOptionsInputRepresentationNormalized;
|
|
@@ -14,10 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
14
14
|
* (none)
|
|
15
15
|
*/
|
|
16
16
|
export interface ConfigRuleOptionsInputRepresentationNormalized {
|
|
17
|
-
/** Whether Amend, Renew and Cancel Resolution is Required or Not */
|
|
18
|
-
isAmendRenewCancelResolutionRequired?: boolean;
|
|
19
17
|
/** Whether Context Update is Required or Not */
|
|
20
|
-
|
|
18
|
+
updateContextRequired?: boolean;
|
|
21
19
|
}
|
|
22
20
|
/**
|
|
23
21
|
* Input Representation for the Config Rules Options
|
|
@@ -26,6 +24,5 @@ export interface ConfigRuleOptionsInputRepresentationNormalized {
|
|
|
26
24
|
* (none)
|
|
27
25
|
*/
|
|
28
26
|
export interface ConfigRuleOptionsInputRepresentation {
|
|
29
|
-
|
|
30
|
-
isUpdateContextRequired?: boolean;
|
|
27
|
+
updateContextRequired?: boolean;
|
|
31
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-cpq",
|
|
3
|
-
"version": "1.428.0-
|
|
3
|
+
"version": "1.428.0-dev2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "APIs for Industries CPQ Project",
|
|
6
6
|
"main": "dist/es/es2018/industries-cpq.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit:debug": "node --inspect-brk ../../node_modules/jest/bin/jest.js --config ./jest.config.js --runInBand"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.428.0-
|
|
47
|
+
"@salesforce/lds-bindings": "^1.428.0-dev2"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.428.0-
|
|
51
|
-
"@salesforce/lds-karma": "^1.428.0-
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.428.0-dev2",
|
|
51
|
+
"@salesforce/lds-karma": "^1.428.0-dev2"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|