@salesforce/lds-adapters-cdp-data-clean-room 1.392.0 → 1.394.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-data-clean-room.js +1 -1
- package/dist/es/es2018/types/src/generated/adapters/executeDataCleanRoomQuery.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborationsActionsRunByCollaborationIdOrApiName.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomQueryJobInputRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +2 -2
- package/src/raml/api.raml +1 -0
|
@@ -3516,7 +3516,7 @@ const adapterName$2 = 'executeDataCleanRoomQuery';
|
|
|
3516
3516
|
const executeDataCleanRoomQuery_ConfigPropertyMetadata = [
|
|
3517
3517
|
generateParamConfigMetadata('collaborationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
3518
3518
|
generateParamConfigMetadata('queryExecutionName', true, 2 /* Body */, 0 /* String */),
|
|
3519
|
-
generateParamConfigMetadata('segmentIds',
|
|
3519
|
+
generateParamConfigMetadata('segmentIds', false, 2 /* Body */, 0 /* String */, true),
|
|
3520
3520
|
generateParamConfigMetadata('queryParameters', false, 2 /* Body */, 4 /* Unsupported */),
|
|
3521
3521
|
];
|
|
3522
3522
|
const executeDataCleanRoomQuery_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$2, executeDataCleanRoomQuery_ConfigPropertyMetadata);
|
|
@@ -8,7 +8,7 @@ export declare const executeDataCleanRoomQuery_ConfigPropertyNames: adapter$45$u
|
|
|
8
8
|
export interface ExecuteDataCleanRoomQueryConfig {
|
|
9
9
|
collaborationIdOrApiName: string;
|
|
10
10
|
queryExecutionName: string;
|
|
11
|
-
segmentIds
|
|
11
|
+
segmentIds?: Array<string>;
|
|
12
12
|
queryParameters?: unknown;
|
|
13
13
|
}
|
|
14
14
|
export declare const createResourceParams: (config: ExecuteDataCleanRoomQueryConfig) => resources_postSsotDataCleanRoomCollaborationsActionsRunByCollaborationIdOrApiName_ResourceRequestConfig;
|
package/dist/es/es2018/types/src/generated/types/DataCleanRoomQueryJobInputRepresentation.d.ts
CHANGED
|
@@ -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 = "dafde3e51bb80800fa0d8c0a2077c845";
|
|
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: DataCleanRoomQueryJobInputRepresentation, existing: DataCleanRoomQueryJobInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataCleanRoomQueryJobInputRepresentationNormalized;
|
|
@@ -19,7 +19,7 @@ export interface DataCleanRoomQueryJobInputRepresentationNormalized {
|
|
|
19
19
|
/** Map of query parameters along-with their values, required for the query to be executed */
|
|
20
20
|
queryParameters?: unknown;
|
|
21
21
|
/** Segment IDs on which the query would be executed */
|
|
22
|
-
segmentIds
|
|
22
|
+
segmentIds?: Array<string>;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* Represents Cdp Data clean room Query Job input
|
|
@@ -30,5 +30,5 @@ export interface DataCleanRoomQueryJobInputRepresentationNormalized {
|
|
|
30
30
|
export interface DataCleanRoomQueryJobInputRepresentation {
|
|
31
31
|
queryExecutionName: string;
|
|
32
32
|
queryParameters?: unknown;
|
|
33
|
-
segmentIds
|
|
33
|
+
segmentIds?: Array<string>;
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-data-clean-room",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.394.0",
|
|
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.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.394.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.394.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2203,7 +2203,7 @@ const adapterName$7 = 'executeDataCleanRoomQuery';
|
|
|
2203
2203
|
const executeDataCleanRoomQuery_ConfigPropertyMetadata = [
|
|
2204
2204
|
generateParamConfigMetadata('collaborationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
2205
2205
|
generateParamConfigMetadata('queryExecutionName', true, 2 /* Body */, 0 /* String */),
|
|
2206
|
-
generateParamConfigMetadata('segmentIds',
|
|
2206
|
+
generateParamConfigMetadata('segmentIds', false, 2 /* Body */, 0 /* String */, true),
|
|
2207
2207
|
generateParamConfigMetadata('queryParameters', false, 2 /* Body */, 4 /* Unsupported */),
|
|
2208
2208
|
];
|
|
2209
2209
|
const executeDataCleanRoomQuery_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$7, executeDataCleanRoomQuery_ConfigPropertyMetadata);
|
|
@@ -4071,4 +4071,4 @@ withDefaultLuvio((luvio) => {
|
|
|
4071
4071
|
});
|
|
4072
4072
|
|
|
4073
4073
|
export { acceptDataCleanRoomInvitation, createDataCleanRoomCollaboration, createDataCleanRoomSpecification, createProvider, executeDataCleanRoomQuery, getAllDataCleanRoomQueryPaginated, getAllDataCleanRoomQueryPaginated_imperative, getAllDataCleanRoomsPaginated, getAllDataCleanRoomsPaginated_imperative, getDataCleanRoomProvidersPaginated, getDataCleanRoomProvidersPaginated_imperative, getDataCleanRoomSpecificationsPaginated, getDataCleanRoomSpecificationsPaginated_imperative, getDataCleanRoomTemplatePaginated, getDataCleanRoomTemplatePaginated_imperative, getDataCleanRoomTemplatesByProviderIdPaginated, getDataCleanRoomTemplatesByProviderIdPaginated_imperative, rejectDataCleanRoomInvitation };
|
|
4074
|
-
// version: 1.
|
|
4074
|
+
// version: 1.394.0-db58817a4e
|