@salesforce/lds-adapters-cdp-personalization-service 1.303.0 → 1.304.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/cdp-personalization-service.js +743 -28
- package/dist/es/es2018/types/src/generated/types/CriteriaRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/FilterRepresentation.d.ts +66 -0
- package/dist/es/es2018/types/src/generated/types/FiltersWrapRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/PersonalizationDecisionRepresentation.d.ts +14 -4
- package/dist/es/es2018/types/src/generated/types/PersonalizationPointRepresentation.d.ts +12 -3
- package/dist/es/es2018/types/src/generated/types/SubjectRepresentation.d.ts +37 -0
- package/package.json +3 -3
- package/sfdc/index.js +744 -29
- package/src/raml/api.raml +116 -1
- package/src/raml/luvio.raml +2 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
import { FilterRepresentation as FilterRepresentation_FilterRepresentation } from './FilterRepresentation';
|
|
3
|
+
export declare const VERSION = "ea475f10b4c028f8b97a44af1cf0be14";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: CriteriaRepresentation, existing: CriteriaRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CriteriaRepresentationNormalized;
|
|
7
|
+
export interface DynamicIngestParams {
|
|
8
|
+
filters: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
}
|
|
10
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: CriteriaRepresentation, existing: CriteriaRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => CriteriaRepresentationNormalized;
|
|
11
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
12
|
+
export interface DynamicSelectParams {
|
|
13
|
+
filters?: $64$luvio_engine_LinkSelection;
|
|
14
|
+
}
|
|
15
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: CriteriaRepresentationNormalized, incoming: CriteriaRepresentationNormalized): boolean;
|
|
17
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
18
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CriteriaRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
20
|
+
/**
|
|
21
|
+
* Personalization Decision Criteria Output Representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface CriteriaRepresentationNormalized {
|
|
27
|
+
/** Filters */
|
|
28
|
+
filters: Array<$64$luvio_engine_StoreLink>;
|
|
29
|
+
/** Operator */
|
|
30
|
+
operator: string;
|
|
31
|
+
/** Type */
|
|
32
|
+
type: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Personalization Decision Criteria Output Representation
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* (none)
|
|
39
|
+
*/
|
|
40
|
+
export interface CriteriaRepresentation {
|
|
41
|
+
filters: Array<FilterRepresentation_FilterRepresentation>;
|
|
42
|
+
operator: string;
|
|
43
|
+
type: string;
|
|
44
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { FiltersWrapRepresentation as FiltersWrapRepresentation_FiltersWrapRepresentation } from './FiltersWrapRepresentation';
|
|
2
|
+
import { SubjectRepresentation as SubjectRepresentation_SubjectRepresentation } from './SubjectRepresentation';
|
|
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 VERSION = "437fc3300d85b1cb5bc34ec53413937d";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: FilterRepresentation, existing: FilterRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FilterRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: FilterRepresentationNormalized, incoming: FilterRepresentationNormalized): 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: FilterRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Personalization Decision Criteria Filter Output Representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface FilterRepresentationNormalized {
|
|
19
|
+
/** Aggregate Function */
|
|
20
|
+
aggregateFunction?: string | null;
|
|
21
|
+
/** Comparison */
|
|
22
|
+
comparison?: $64$luvio_engine_StoreLink | null;
|
|
23
|
+
/** Filter */
|
|
24
|
+
filter?: $64$luvio_engine_StoreLink | null;
|
|
25
|
+
/** Filters */
|
|
26
|
+
filters?: Array<$64$luvio_engine_StoreLink | null>;
|
|
27
|
+
/** First Bound Value */
|
|
28
|
+
firstBoundValue?: string | null;
|
|
29
|
+
/** Operator */
|
|
30
|
+
operator?: string | null;
|
|
31
|
+
/** Path */
|
|
32
|
+
path?: Array<Array<SubjectRepresentation_SubjectRepresentation>>;
|
|
33
|
+
/** Rule Time Zone */
|
|
34
|
+
ruleTimeZone?: string | null;
|
|
35
|
+
/** Second Bound Value */
|
|
36
|
+
secondBoundValue?: string | null;
|
|
37
|
+
/** Subject */
|
|
38
|
+
subject?: SubjectRepresentation_SubjectRepresentation | null;
|
|
39
|
+
/** Type */
|
|
40
|
+
type?: string | null;
|
|
41
|
+
/** Value */
|
|
42
|
+
value?: number | null;
|
|
43
|
+
/** Values */
|
|
44
|
+
values?: Array<string>;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Personalization Decision Criteria Filter Output Representation
|
|
48
|
+
*
|
|
49
|
+
* Keys:
|
|
50
|
+
* (none)
|
|
51
|
+
*/
|
|
52
|
+
export interface FilterRepresentation {
|
|
53
|
+
aggregateFunction?: string | null;
|
|
54
|
+
comparison?: FilterRepresentation | null;
|
|
55
|
+
filter?: FiltersWrapRepresentation_FiltersWrapRepresentation | null;
|
|
56
|
+
filters?: Array<FilterRepresentation | null>;
|
|
57
|
+
firstBoundValue?: string | null;
|
|
58
|
+
operator?: string | null;
|
|
59
|
+
path?: Array<Array<SubjectRepresentation_SubjectRepresentation>>;
|
|
60
|
+
ruleTimeZone?: string | null;
|
|
61
|
+
secondBoundValue?: string | null;
|
|
62
|
+
subject?: SubjectRepresentation_SubjectRepresentation | null;
|
|
63
|
+
type?: string | null;
|
|
64
|
+
value?: number | null;
|
|
65
|
+
values?: Array<string>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
import { FilterRepresentation as FilterRepresentation_FilterRepresentation } from './FilterRepresentation';
|
|
3
|
+
export declare const VERSION = "1ae5495126401063642bc0528bf442ab";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FiltersWrapRepresentation, existing: FiltersWrapRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FiltersWrapRepresentationNormalized;
|
|
7
|
+
export interface DynamicIngestParams {
|
|
8
|
+
filters: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
}
|
|
10
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: FiltersWrapRepresentation, existing: FiltersWrapRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => FiltersWrapRepresentationNormalized;
|
|
11
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
12
|
+
export interface DynamicSelectParams {
|
|
13
|
+
filters?: $64$luvio_engine_LinkSelection;
|
|
14
|
+
}
|
|
15
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: FiltersWrapRepresentationNormalized, incoming: FiltersWrapRepresentationNormalized): boolean;
|
|
17
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
18
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FiltersWrapRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
20
|
+
/**
|
|
21
|
+
* Personalization Decision Criteria Filters Wrap Output Representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface FiltersWrapRepresentationNormalized {
|
|
27
|
+
/** Filters */
|
|
28
|
+
filters?: Array<$64$luvio_engine_StoreLink>;
|
|
29
|
+
/** Operator */
|
|
30
|
+
operator?: string | null;
|
|
31
|
+
/** Type */
|
|
32
|
+
type?: string | null;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Personalization Decision Criteria Filters Wrap Output Representation
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* (none)
|
|
39
|
+
*/
|
|
40
|
+
export interface FiltersWrapRepresentation {
|
|
41
|
+
filters?: Array<FilterRepresentation_FilterRepresentation>;
|
|
42
|
+
operator?: string | null;
|
|
43
|
+
type?: string | null;
|
|
44
|
+
}
|
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
import { PersonalizationAttributeValueRepresentation as PersonalizationAttributeValueRepresentation_PersonalizationAttributeValueRepresentation } from './PersonalizationAttributeValueRepresentation';
|
|
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,
|
|
3
|
-
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
import { CriteriaRepresentation as CriteriaRepresentation_CriteriaRepresentation } from './CriteriaRepresentation';
|
|
4
|
+
export declare const VERSION = "4c6e23e63e764c028a88f2f6c2f7c6a3";
|
|
4
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
6
|
export declare const RepresentationType: string;
|
|
6
7
|
export declare function normalize(input: PersonalizationDecisionRepresentation, existing: PersonalizationDecisionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PersonalizationDecisionRepresentationNormalized;
|
|
8
|
+
export interface DynamicIngestParams {
|
|
9
|
+
criteria: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
}
|
|
11
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: PersonalizationDecisionRepresentation, existing: PersonalizationDecisionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => PersonalizationDecisionRepresentationNormalized;
|
|
7
12
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
13
|
+
export interface DynamicSelectParams {
|
|
14
|
+
criteria?: $64$luvio_engine_LinkSelection;
|
|
15
|
+
}
|
|
16
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
8
17
|
export declare function equals(existing: PersonalizationDecisionRepresentationNormalized, incoming: PersonalizationDecisionRepresentationNormalized): boolean;
|
|
9
18
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
19
|
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: PersonalizationDecisionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
11
21
|
/**
|
|
12
22
|
* Personalization Decision Output Representation
|
|
13
23
|
*
|
|
@@ -22,7 +32,7 @@ export interface PersonalizationDecisionRepresentationNormalized {
|
|
|
22
32
|
/** Created date */
|
|
23
33
|
createdDate: string | null;
|
|
24
34
|
/** The criteria of the Personalization Decision */
|
|
25
|
-
criteria:
|
|
35
|
+
criteria: $64$luvio_engine_StoreLink | null;
|
|
26
36
|
/** Personalization Decision description */
|
|
27
37
|
description: string | null;
|
|
28
38
|
/** The 18 character ID of the record */
|
|
@@ -50,7 +60,7 @@ export interface PersonalizationDecisionRepresentation {
|
|
|
50
60
|
attributeValues: Array<PersonalizationAttributeValueRepresentation_PersonalizationAttributeValueRepresentation>;
|
|
51
61
|
createdById: string | null;
|
|
52
62
|
createdDate: string | null;
|
|
53
|
-
criteria:
|
|
63
|
+
criteria: CriteriaRepresentation_CriteriaRepresentation | null;
|
|
54
64
|
description: string | null;
|
|
55
65
|
id: string | null;
|
|
56
66
|
label: string | null;
|
|
@@ -1,7 +1,7 @@
|
|
|
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
1
2
|
import { PersonalizationDecisionRepresentation as PersonalizationDecisionRepresentation_PersonalizationDecisionRepresentation } from './PersonalizationDecisionRepresentation';
|
|
2
|
-
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
3
|
export declare const TTL = 600;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "da1bfa46416530ff1aeab78ba84646bb";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -14,10 +14,19 @@ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio,
|
|
|
14
14
|
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: PersonalizationPointRepresentation): string;
|
|
15
15
|
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: PersonalizationPointRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
16
|
export declare function normalize(input: PersonalizationPointRepresentation, existing: PersonalizationPointRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PersonalizationPointRepresentationNormalized;
|
|
17
|
+
export interface DynamicIngestParams {
|
|
18
|
+
decisions: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
}
|
|
20
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: PersonalizationPointRepresentation, existing: PersonalizationPointRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => PersonalizationPointRepresentationNormalized;
|
|
17
21
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
22
|
+
export interface DynamicSelectParams {
|
|
23
|
+
decisions?: $64$luvio_engine_LinkSelection;
|
|
24
|
+
}
|
|
25
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
18
26
|
export declare function equals(existing: PersonalizationPointRepresentationNormalized, incoming: PersonalizationPointRepresentationNormalized): boolean;
|
|
19
27
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
28
|
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: PersonalizationPointRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
29
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
21
30
|
/**
|
|
22
31
|
* Personalization Point Output Representation
|
|
23
32
|
*
|
|
@@ -34,7 +43,7 @@ export interface PersonalizationPointRepresentationNormalized {
|
|
|
34
43
|
/** The API name of the Data Space associated with the Personalization Point */
|
|
35
44
|
dataSpaceName: string | null;
|
|
36
45
|
/** List of PersonalizationDecisions associated with the Personalization Point */
|
|
37
|
-
decisions: Array
|
|
46
|
+
decisions: Array<$64$luvio_engine_StoreLink>;
|
|
38
47
|
/** Personalization Point description */
|
|
39
48
|
description: string | null;
|
|
40
49
|
/** The 18 character ID of the record */
|
|
@@ -0,0 +1,37 @@
|
|
|
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 = "c82590a0cf948ac531b631fbfeb20d1a";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: SubjectRepresentation, existing: SubjectRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SubjectRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: SubjectRepresentationNormalized, incoming: SubjectRepresentationNormalized): 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: SubjectRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Personalization Decision Criteria Subject Output Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface SubjectRepresentationNormalized {
|
|
17
|
+
/** Field API Name */
|
|
18
|
+
fieldApiName: string;
|
|
19
|
+
/** Field Label */
|
|
20
|
+
fieldLabel?: string;
|
|
21
|
+
/** Object API Name */
|
|
22
|
+
objectApiName: string;
|
|
23
|
+
/** Object Label */
|
|
24
|
+
objectLabel?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Personalization Decision Criteria Subject Output Representation
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface SubjectRepresentation {
|
|
33
|
+
fieldApiName: string;
|
|
34
|
+
fieldLabel?: string;
|
|
35
|
+
objectApiName: string;
|
|
36
|
+
objectLabel?: string;
|
|
37
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-personalization-service",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.304.0",
|
|
4
4
|
"description": "wire adapters for personalization service connect api",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-personalization-service.js",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"test:unit:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.304.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.304.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|