@salesforce/lds-adapters-industries-decisiontable 0.1.0-dev1

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.
Files changed (42) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/industries-decisiontable.js +1920 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getDecisionTable.d.ts +27 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getDecisionTableFile.d.ts +28 -0
  6. package/dist/es/es2018/types/src/generated/adapters/getDecisionTableRows.d.ts +30 -0
  7. package/dist/es/es2018/types/src/generated/adapters/getDecisionTableTemplate.d.ts +27 -0
  8. package/dist/es/es2018/types/src/generated/adapters/getDecisionTableTemplateList.d.ts +27 -0
  9. package/dist/es/es2018/types/src/generated/adapters/postDecisionTableFile.d.ts +17 -0
  10. package/dist/es/es2018/types/src/generated/adapters/postDecisionTableRows.d.ts +17 -0
  11. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +7 -0
  12. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +13 -0
  13. package/dist/es/es2018/types/src/generated/resources/getConnectBusinessRulesDecisionTableDataByDecisionTableId.d.ts +20 -0
  14. package/dist/es/es2018/types/src/generated/resources/getConnectBusinessRulesDecisionTableDefinitionsByDecisionTableId.d.ts +15 -0
  15. package/dist/es/es2018/types/src/generated/resources/getConnectBusinessRulesDecisionTableFileByDecisionTableId.d.ts +18 -0
  16. package/dist/es/es2018/types/src/generated/resources/getConnectBusinessRulesDecisionTableTemplates.d.ts +15 -0
  17. package/dist/es/es2018/types/src/generated/resources/getConnectBusinessRulesDecisionTableTemplatesByTemplateName.d.ts +15 -0
  18. package/dist/es/es2018/types/src/generated/resources/postConnectBusinessRulesDecisionTableDataByDecisionTableId.d.ts +16 -0
  19. package/dist/es/es2018/types/src/generated/resources/postConnectBusinessRulesDecisionTableFileByDecisionTableId.d.ts +16 -0
  20. package/dist/es/es2018/types/src/generated/types/DecisionTableDataOutputRepresentation.d.ts +41 -0
  21. package/dist/es/es2018/types/src/generated/types/DecisionTableDefinitionOutputRepresentation.d.ts +73 -0
  22. package/dist/es/es2018/types/src/generated/types/DecisionTableFileInputRepresentation.d.ts +31 -0
  23. package/dist/es/es2018/types/src/generated/types/DecisionTableFileOutputRepresentation.d.ts +38 -0
  24. package/dist/es/es2018/types/src/generated/types/DecisionTableOutputRepresentation.d.ts +39 -0
  25. package/dist/es/es2018/types/src/generated/types/DecisionTableParameterOutputRepresentation.d.ts +65 -0
  26. package/dist/es/es2018/types/src/generated/types/DecisionTableRowInputRepresentation.d.ts +38 -0
  27. package/dist/es/es2018/types/src/generated/types/DecisionTableRowOutputRepresentation.d.ts +35 -0
  28. package/dist/es/es2018/types/src/generated/types/DecisionTableRowsListInputRepresentation.d.ts +29 -0
  29. package/dist/es/es2018/types/src/generated/types/DecisionTableRowsListOutputRepresentation.d.ts +33 -0
  30. package/dist/es/es2018/types/src/generated/types/DecisionTableSourceCriteriaOutputRepresentation.d.ts +41 -0
  31. package/dist/es/es2018/types/src/generated/types/DecisionTableTemplateDefinitionOutputRepresentation.d.ts +34 -0
  32. package/dist/es/es2018/types/src/generated/types/DecisionTableTemplateOutputRepresentation.d.ts +35 -0
  33. package/dist/es/es2018/types/src/generated/types/DecisionTableTemplatesListOutputRepresentation.d.ts +34 -0
  34. package/dist/es/es2018/types/src/generated/types/ErrorOutputRepresentation.d.ts +43 -0
  35. package/dist/es/es2018/types/src/generated/types/ErrorParametersOutputRepresentation.d.ts +32 -0
  36. package/dist/es/es2018/types/src/generated/types/ErrorTargetsOutputRepresentation.d.ts +32 -0
  37. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  38. package/package.json +66 -0
  39. package/sfdc/index.d.ts +1 -0
  40. package/sfdc/index.js +2016 -0
  41. package/src/raml/api.raml +599 -0
  42. package/src/raml/luvio.raml +82 -0
@@ -0,0 +1,38 @@
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const TTL = 1000;
3
+ export declare const VERSION = "581abdd509fd88568bfa17b4a220d8db";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
7
+ message: string;
8
+ }
9
+ export type DecisionTableFileOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialDecisionTableFileOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
11
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
12
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): DecisionTableFileOutputRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: DecisionTableFileOutputRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: DecisionTableFileOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: DecisionTableFileOutputRepresentation, existing: DecisionTableFileOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableFileOutputRepresentationNormalized;
16
+ export declare const select: () => $64$luvio_engine_BaseFragment;
17
+ export declare function equals(existing: DecisionTableFileOutputRepresentationNormalized, incoming: DecisionTableFileOutputRepresentationNormalized): boolean;
18
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
19
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableFileOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
20
+ /**
21
+ * Representation of the status of an action performed
22
+ *
23
+ * Keys:
24
+ * message (string): message
25
+ */
26
+ export interface DecisionTableFileOutputRepresentationNormalized {
27
+ /** Represents the Error Message if Transaction failed for any reason. */
28
+ message: string;
29
+ }
30
+ /**
31
+ * Representation of the status of an action performed
32
+ *
33
+ * Keys:
34
+ * message (string): message
35
+ */
36
+ export interface DecisionTableFileOutputRepresentation {
37
+ message: string;
38
+ }
@@ -0,0 +1,39 @@
1
+ import { DecisionTableDefinitionOutputRepresentation as DecisionTableDefinitionOutputRepresentation_DecisionTableDefinitionOutputRepresentation } from './DecisionTableDefinitionOutputRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const TTL = 1000;
4
+ export declare const VERSION = "21435364536c593ed8b8972af7d154d5";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: DecisionTableOutputRepresentation, existing: DecisionTableOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableOutputRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_BaseFragment;
9
+ export declare function equals(existing: DecisionTableOutputRepresentationNormalized, incoming: DecisionTableOutputRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Represents the decision table creation/fetch/delete response and its status
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface DecisionTableOutputRepresentationNormalized {
19
+ /** Represents the Error Code if Decision Table Definition creation failed for any reason. */
20
+ code?: string;
21
+ /** Represents the Decision Table Definition Output Representation type */
22
+ decisionTable: $64$luvio_engine_StoreLink;
23
+ /** Returns TRUE or FALSE depending on Decision Table Definition creation is successful or some error encountered. */
24
+ isSuccess?: boolean;
25
+ /** Represents the Error Message if Transaction failed for any reason. */
26
+ message?: string;
27
+ }
28
+ /**
29
+ * Represents the decision table creation/fetch/delete response and its status
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface DecisionTableOutputRepresentation {
35
+ code?: string;
36
+ decisionTable: DecisionTableDefinitionOutputRepresentation_DecisionTableDefinitionOutputRepresentation;
37
+ isSuccess?: boolean;
38
+ message?: string;
39
+ }
@@ -0,0 +1,65 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, 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 TTL = 1000;
3
+ export declare const VERSION = "8da8a9539ab11c385bafdc5028d51ad1";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DecisionTableParameterOutputRepresentation, existing: DecisionTableParameterOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableParameterOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: DecisionTableParameterOutputRepresentationNormalized, incoming: DecisionTableParameterOutputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableParameterOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents the decision table parameter
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DecisionTableParameterOutputRepresentationNormalized {
18
+ /** Specifies the source object path for the mapping to the column of an entity */
19
+ columnMapping?: string;
20
+ /** Data Type of the field used */
21
+ dataType?: string;
22
+ /** Precision of the field used */
23
+ decimalScale?: number;
24
+ /** Specifies the entity domain field is mapped to */
25
+ domainEntity?: string;
26
+ /** The name of the field to be used in the decision table */
27
+ fieldName?: string;
28
+ /** Indicates whether the field is used to group the business rules of the decision table */
29
+ isGroupByField?: boolean;
30
+ /** Whether it is priority field or not */
31
+ isPriority?: boolean;
32
+ /** Valid operators for a field based on its usage */
33
+ isRequired?: boolean;
34
+ /** Maximum length of the field used */
35
+ maxlength?: number;
36
+ /** Indicates whether the field is mandatory to be provided during lookup for hashing column data */
37
+ operator?: string;
38
+ /** The sequence in which input fields are processed. */
39
+ sequence?: number;
40
+ /** Specifies the type of sorting done on the rows of a decision table */
41
+ sortType?: string;
42
+ /** A picklist to select whether a particular field will be used as input or output */
43
+ usage?: string;
44
+ }
45
+ /**
46
+ * Represents the decision table parameter
47
+ *
48
+ * Keys:
49
+ * (none)
50
+ */
51
+ export interface DecisionTableParameterOutputRepresentation {
52
+ columnMapping?: string;
53
+ dataType?: string;
54
+ decimalScale?: number;
55
+ domainEntity?: string;
56
+ fieldName?: string;
57
+ isGroupByField?: boolean;
58
+ isPriority?: boolean;
59
+ isRequired?: boolean;
60
+ maxlength?: number;
61
+ operator?: string;
62
+ sequence?: number;
63
+ sortType?: string;
64
+ usage?: string;
65
+ }
@@ -0,0 +1,38 @@
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 = "1ea1802d3f2e4fa95ebca2f27dfb167f";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DecisionTableRowInputRepresentation, existing: DecisionTableRowInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableRowInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DecisionTableRowInputRepresentationNormalized, incoming: DecisionTableRowInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableRowInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents the information required to update or delete a row
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DecisionTableRowInputRepresentationNormalized {
17
+ /** Represents the action to this Decision Table Row, null if is add */
18
+ action: string;
19
+ /** Represents the id of the Decision Table Row, null it if is a new row */
20
+ id: string;
21
+ /** Represents the key value pair of the Decision Table Row. */
22
+ rowData: {
23
+ [key: string]: unknown;
24
+ };
25
+ }
26
+ /**
27
+ * Represents the information required to update or delete a row
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface DecisionTableRowInputRepresentation {
33
+ action: string;
34
+ id: string;
35
+ rowData: {
36
+ [key: string]: unknown;
37
+ };
38
+ }
@@ -0,0 +1,35 @@
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 = "6f6923643144056faa3aaa9f83320152";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DecisionTableRowOutputRepresentation, existing: DecisionTableRowOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableRowOutputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DecisionTableRowOutputRepresentationNormalized, incoming: DecisionTableRowOutputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableRowOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents the information to describe a Decision Table Row for output.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DecisionTableRowOutputRepresentationNormalized {
17
+ /** Represents the id of the Decision Table Row. */
18
+ id: string;
19
+ /** Represents the key value pair of the Decision Table Row. */
20
+ rowData: {
21
+ [key: string]: unknown;
22
+ };
23
+ }
24
+ /**
25
+ * Represents the information to describe a Decision Table Row for output.
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface DecisionTableRowOutputRepresentation {
31
+ id: string;
32
+ rowData: {
33
+ [key: string]: unknown;
34
+ };
35
+ }
@@ -0,0 +1,29 @@
1
+ import { DecisionTableRowInputRepresentation as DecisionTableRowInputRepresentation_DecisionTableRowInputRepresentation } from './DecisionTableRowInputRepresentation';
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';
3
+ export declare const VERSION = "a66e02693ed5b76b99eef9a133571149";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DecisionTableRowsListInputRepresentation, existing: DecisionTableRowsListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableRowsListInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: DecisionTableRowsListInputRepresentationNormalized, incoming: DecisionTableRowsListInputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableRowsListInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents the information to update the rows in CSV based Decision Table
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DecisionTableRowsListInputRepresentationNormalized {
18
+ /** Represents a list of rows to be updated */
19
+ rows?: Array<DecisionTableRowInputRepresentation_DecisionTableRowInputRepresentation>;
20
+ }
21
+ /**
22
+ * Represents the information to update the rows in CSV based Decision Table
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface DecisionTableRowsListInputRepresentation {
28
+ rows?: Array<DecisionTableRowInputRepresentation_DecisionTableRowInputRepresentation>;
29
+ }
@@ -0,0 +1,33 @@
1
+ import { DecisionTableRowOutputRepresentation as DecisionTableRowOutputRepresentation_DecisionTableRowOutputRepresentation } from './DecisionTableRowOutputRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const TTL = 1000;
4
+ export declare const VERSION = "10dd31535fc5c028227867bd30804643";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: DecisionTableRowsListOutputRepresentation, existing: DecisionTableRowsListOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableRowsListOutputRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_BaseFragment;
9
+ export declare function equals(existing: DecisionTableRowsListOutputRepresentationNormalized, incoming: DecisionTableRowsListOutputRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableRowsListOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Representation of the rows in Relation to the Decision Table, including current state of pagination
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface DecisionTableRowsListOutputRepresentationNormalized {
19
+ /** Represents the returned list of rows. */
20
+ rows: Array<DecisionTableRowOutputRepresentation_DecisionTableRowOutputRepresentation>;
21
+ /** Represents the total number of rows. */
22
+ totalRows: number | null;
23
+ }
24
+ /**
25
+ * Representation of the rows in Relation to the Decision Table, including current state of pagination
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface DecisionTableRowsListOutputRepresentation {
31
+ rows: Array<DecisionTableRowOutputRepresentation_DecisionTableRowOutputRepresentation>;
32
+ totalRows: number | null;
33
+ }
@@ -0,0 +1,41 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, 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 TTL = 1000;
3
+ export declare const VERSION = "f1589135819c1113935481d08bb2ddac";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DecisionTableSourceCriteriaOutputRepresentation, existing: DecisionTableSourceCriteriaOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableSourceCriteriaOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: DecisionTableSourceCriteriaOutputRepresentationNormalized, incoming: DecisionTableSourceCriteriaOutputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableSourceCriteriaOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents the decision table source criteria
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DecisionTableSourceCriteriaOutputRepresentationNormalized {
18
+ /** Specifies the operator used in the filter criteria */
19
+ operator?: string;
20
+ /** The sequence number of the filter criteria in the associated decision table source condition */
21
+ sequenceNumber?: number;
22
+ /** The name of the field that's used in the filter criteria */
23
+ sourceFieldName?: string;
24
+ /** The expected value of the field */
25
+ value?: string;
26
+ /** Specifies the type of filter value */
27
+ valueType?: string;
28
+ }
29
+ /**
30
+ * Represents the decision table source criteria
31
+ *
32
+ * Keys:
33
+ * (none)
34
+ */
35
+ export interface DecisionTableSourceCriteriaOutputRepresentation {
36
+ operator?: string;
37
+ sequenceNumber?: number;
38
+ sourceFieldName?: string;
39
+ value?: string;
40
+ valueType?: string;
41
+ }
@@ -0,0 +1,34 @@
1
+ import { DecisionTableDefinitionOutputRepresentation as DecisionTableDefinitionOutputRepresentation_DecisionTableDefinitionOutputRepresentation } from './DecisionTableDefinitionOutputRepresentation';
2
+ import { ErrorOutputRepresentation as ErrorOutputRepresentation_ErrorOutputRepresentation } from './ErrorOutputRepresentation';
3
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
4
+ export declare const TTL = 1000;
5
+ export declare const VERSION = "9a106f486843ccdb3e85594fb33ef97f";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export declare function normalize(input: DecisionTableTemplateDefinitionOutputRepresentation, existing: DecisionTableTemplateDefinitionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableTemplateDefinitionOutputRepresentationNormalized;
9
+ export declare const select: () => $64$luvio_engine_BaseFragment;
10
+ export declare function equals(existing: DecisionTableTemplateDefinitionOutputRepresentationNormalized, incoming: DecisionTableTemplateDefinitionOutputRepresentationNormalized): boolean;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableTemplateDefinitionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
13
+ /**
14
+ * Represents the decision table template fetch response
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface DecisionTableTemplateDefinitionOutputRepresentationNormalized {
20
+ /** Represents the Decision Table Definition Output Representation type */
21
+ decisionTableTemplate?: $64$luvio_engine_StoreLink;
22
+ /** Represents the Errors if Decision Table Definition creation failed for any reason. */
23
+ errors?: Array<$64$luvio_engine_StoreLink>;
24
+ }
25
+ /**
26
+ * Represents the decision table template fetch response
27
+ *
28
+ * Keys:
29
+ * (none)
30
+ */
31
+ export interface DecisionTableTemplateDefinitionOutputRepresentation {
32
+ decisionTableTemplate?: DecisionTableDefinitionOutputRepresentation_DecisionTableDefinitionOutputRepresentation;
33
+ errors?: Array<ErrorOutputRepresentation_ErrorOutputRepresentation>;
34
+ }
@@ -0,0 +1,35 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, 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 TTL = 1000;
3
+ export declare const VERSION = "f819303a653056218bd2f0d4e50c9954";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DecisionTableTemplateOutputRepresentation, existing: DecisionTableTemplateOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableTemplateOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: DecisionTableTemplateOutputRepresentationNormalized, incoming: DecisionTableTemplateOutputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableTemplateOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Representation of a Decision Table Template
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DecisionTableTemplateOutputRepresentationNormalized {
18
+ /** location /namespace of the template */
19
+ location?: string;
20
+ /** Display name of template */
21
+ templateName?: string;
22
+ /** Usage type used for the template */
23
+ usageType?: string;
24
+ }
25
+ /**
26
+ * Representation of a Decision Table Template
27
+ *
28
+ * Keys:
29
+ * (none)
30
+ */
31
+ export interface DecisionTableTemplateOutputRepresentation {
32
+ location?: string;
33
+ templateName?: string;
34
+ usageType?: string;
35
+ }
@@ -0,0 +1,34 @@
1
+ import { DecisionTableTemplateOutputRepresentation as DecisionTableTemplateOutputRepresentation_DecisionTableTemplateOutputRepresentation } from './DecisionTableTemplateOutputRepresentation';
2
+ import { ErrorOutputRepresentation as ErrorOutputRepresentation_ErrorOutputRepresentation } from './ErrorOutputRepresentation';
3
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
4
+ export declare const TTL = 1000;
5
+ export declare const VERSION = "a2891bd122ab9f728d5937bf70b9f600";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export declare function normalize(input: DecisionTableTemplatesListOutputRepresentation, existing: DecisionTableTemplatesListOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableTemplatesListOutputRepresentationNormalized;
9
+ export declare const select: () => $64$luvio_engine_BaseFragment;
10
+ export declare function equals(existing: DecisionTableTemplatesListOutputRepresentationNormalized, incoming: DecisionTableTemplatesListOutputRepresentationNormalized): boolean;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DecisionTableTemplatesListOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
13
+ /**
14
+ * Representation of a List of Decision Table Templates
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface DecisionTableTemplatesListOutputRepresentationNormalized {
20
+ /** Represents the Decision Table Template Output Representation */
21
+ decisionTableTemplates?: Array<$64$luvio_engine_StoreLink>;
22
+ /** Represents the Errors if Decision Table Template List retrieval failed for any reason. */
23
+ errors?: Array<$64$luvio_engine_StoreLink>;
24
+ }
25
+ /**
26
+ * Representation of a List of Decision Table Templates
27
+ *
28
+ * Keys:
29
+ * (none)
30
+ */
31
+ export interface DecisionTableTemplatesListOutputRepresentation {
32
+ decisionTableTemplates?: Array<DecisionTableTemplateOutputRepresentation_DecisionTableTemplateOutputRepresentation>;
33
+ errors?: Array<ErrorOutputRepresentation_ErrorOutputRepresentation>;
34
+ }
@@ -0,0 +1,43 @@
1
+ import { ErrorParametersOutputRepresentation as ErrorParametersOutputRepresentation_ErrorParametersOutputRepresentation } from './ErrorParametersOutputRepresentation';
2
+ import { ErrorTargetsOutputRepresentation as ErrorTargetsOutputRepresentation_ErrorTargetsOutputRepresentation } from './ErrorTargetsOutputRepresentation';
3
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
4
+ export declare const TTL = 1000;
5
+ export declare const VERSION = "faa4f3bd9f344ef8ec81e424356304e3";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export declare function normalize(input: ErrorOutputRepresentation, existing: ErrorOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ErrorOutputRepresentationNormalized;
9
+ export declare const select: () => $64$luvio_engine_BaseFragment;
10
+ export declare function equals(existing: ErrorOutputRepresentationNormalized, incoming: ErrorOutputRepresentationNormalized): boolean;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ErrorOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
13
+ /**
14
+ * Representation of error as per salesforce standardised template
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface ErrorOutputRepresentationNormalized {
20
+ /** Represents the error code */
21
+ errorCode?: string;
22
+ /** Represents the message for the error */
23
+ message?: string;
24
+ /** Represents the message code for the error */
25
+ messageCode?: string;
26
+ /** Represents the parameters of the error */
27
+ parameters?: Array<$64$luvio_engine_StoreLink>;
28
+ /** Represents the targets of the error */
29
+ targets?: Array<$64$luvio_engine_StoreLink>;
30
+ }
31
+ /**
32
+ * Representation of error as per salesforce standardised template
33
+ *
34
+ * Keys:
35
+ * (none)
36
+ */
37
+ export interface ErrorOutputRepresentation {
38
+ errorCode?: string;
39
+ message?: string;
40
+ messageCode?: string;
41
+ parameters?: Array<ErrorParametersOutputRepresentation_ErrorParametersOutputRepresentation>;
42
+ targets?: Array<ErrorTargetsOutputRepresentation_ErrorTargetsOutputRepresentation>;
43
+ }
@@ -0,0 +1,32 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, 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 TTL = 1000;
3
+ export declare const VERSION = "7ebb4b58c85eac7eb944d477bf620c2a";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ErrorParametersOutputRepresentation, existing: ErrorParametersOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ErrorParametersOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: ErrorParametersOutputRepresentationNormalized, incoming: ErrorParametersOutputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ErrorParametersOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Representation of parameters part of the error
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ErrorParametersOutputRepresentationNormalized {
18
+ /** Represents the name of the error parameter */
19
+ name?: string;
20
+ /** Represents the value of the error parameter */
21
+ value?: string;
22
+ }
23
+ /**
24
+ * Representation of parameters part of the error
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface ErrorParametersOutputRepresentation {
30
+ name?: string;
31
+ value?: string;
32
+ }
@@ -0,0 +1,32 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, 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 TTL = 1000;
3
+ export declare const VERSION = "adc36b354ec2a230662d0b5455a9a404";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ErrorTargetsOutputRepresentation, existing: ErrorTargetsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ErrorTargetsOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: ErrorTargetsOutputRepresentationNormalized, incoming: ErrorTargetsOutputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ErrorTargetsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Representation of targets part of the error
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ErrorTargetsOutputRepresentationNormalized {
18
+ /** Represents the reference to the error target */
19
+ reference?: string;
20
+ /** Represents the type of the error target */
21
+ type?: string;
22
+ }
23
+ /**
24
+ * Representation of targets part of the error
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface ErrorTargetsOutputRepresentation {
30
+ reference?: string;
31
+ type?: string;
32
+ }
@@ -0,0 +1,32 @@
1
+ import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const ObjectKeys: {
3
+ (o: object): string[];
4
+ (o: {}): string[];
5
+ }, ObjectCreate: {
6
+ (o: object | null): any;
7
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
8
+ }, ObjectAssign: {
9
+ <T extends {}, U>(target: T, source: U): T & U;
10
+ <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
11
+ <T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
12
+ (target: object, ...sources: any[]): any;
13
+ };
14
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
15
+ export declare const JSONStringify: {
16
+ (value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
17
+ (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
18
+ };
19
+ type AllowedPrimitives = boolean | string | number | Date | null;
20
+ type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
21
+ export type RecursivePartial<T> = null | {
22
+ [P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
23
+ };
24
+ export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
25
+ export declare function equalsObject<U, V extends {
26
+ [key: string]: U;
27
+ }>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
28
+ export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
29
+ __ref: string;
30
+ };
31
+ export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
32
+ export {};