@salesforce/lds-adapters-cdp-data-clean-room 1.428.0-dev17 → 1.428.0-dev18
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-data-clean-room.js +112 -54
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateColumnRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateMatchPolicyRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateAttributeConfigRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMatchPolicyRepresentation.d.ts +31 -0
- package/package.json +3 -3
- package/sfdc/index.js +131 -73
- package/src/raml/api.raml +33 -0
package/dist/es/es2018/types/src/generated/types/UseCaseTemplateAttributeConfigRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { UseCaseTemplateMatchPolicyRepresentation as UseCaseTemplateMatchPolicyRepresentation_UseCaseTemplateMatchPolicyRepresentation } from './UseCaseTemplateMatchPolicyRepresentation';
|
|
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 = "8ffeff58cf2fb465908550b33f367254";
|
|
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: UseCaseTemplateAttributeConfigRepresentation, existing: UseCaseTemplateAttributeConfigRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UseCaseTemplateAttributeConfigRepresentationNormalized;
|
|
@@ -24,6 +25,7 @@ export interface UseCaseTemplateAttributeConfigRepresentationNormalized {
|
|
|
24
25
|
id?: string;
|
|
25
26
|
/** UseCase Template Attribute label */
|
|
26
27
|
label?: string;
|
|
28
|
+
matchPolicy?: UseCaseTemplateMatchPolicyRepresentation_UseCaseTemplateMatchPolicyRepresentation;
|
|
27
29
|
/** UseCase Template Attribute Query Configuration */
|
|
28
30
|
queryOptions?: unknown;
|
|
29
31
|
/** Captures whether the attribute is mandatory to be mapped or not */
|
|
@@ -45,6 +47,7 @@ export interface UseCaseTemplateAttributeConfigRepresentation {
|
|
|
45
47
|
description?: string;
|
|
46
48
|
id?: string;
|
|
47
49
|
label?: string;
|
|
50
|
+
matchPolicy?: UseCaseTemplateMatchPolicyRepresentation_UseCaseTemplateMatchPolicyRepresentation;
|
|
48
51
|
queryOptions?: unknown;
|
|
49
52
|
required?: boolean;
|
|
50
53
|
tableName?: string;
|
package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMatchPolicyRepresentation.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
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 = "56aad2249d7e02c96b22f90198d73f58";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: UseCaseTemplateMatchPolicyRepresentation, existing: UseCaseTemplateMatchPolicyRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UseCaseTemplateMatchPolicyRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: UseCaseTemplateMatchPolicyRepresentationNormalized, incoming: UseCaseTemplateMatchPolicyRepresentationNormalized): 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: UseCaseTemplateMatchPolicyRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents usecase template match policy
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface UseCaseTemplateMatchPolicyRepresentationNormalized {
|
|
17
|
+
/** The output column name the given column has to be projected/unioned as. */
|
|
18
|
+
alias: string;
|
|
19
|
+
/** Type of the column being matched. */
|
|
20
|
+
type: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Represents usecase template match policy
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface UseCaseTemplateMatchPolicyRepresentation {
|
|
29
|
+
alias: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-data-clean-room",
|
|
3
|
-
"version": "1.428.0-
|
|
3
|
+
"version": "1.428.0-dev18",
|
|
4
4
|
"description": "API's related to Data Clean Room Feature",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-data-clean-room.js",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"test:unit": "jest"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.428.0-
|
|
44
|
+
"@salesforce/lds-bindings": "^1.428.0-dev18"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.428.0-
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.428.0-dev18"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|