@salesforce/lds-adapters-cdp-semantic-engine 1.380.0-dev2 → 1.380.0-dev20
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-semantic-engine.js +1 -0
- package/dist/es/es2018/types/src/generated/adapters/executeSemanticQuery.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSemanticEngineGateway.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSemanticEngineGatewayNonInteractive.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SemanticQueryRequest.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +2 -1
- package/src/raml/api.raml +4 -0
|
@@ -216,6 +216,7 @@ const executeSemanticQuery_ConfigPropertyMetadata = [
|
|
|
216
216
|
generateParamConfigMetadata('dataspace', true, 2 /* Body */, 0 /* String */),
|
|
217
217
|
generateParamConfigMetadata('groupId', false, 2 /* Body */, 0 /* String */),
|
|
218
218
|
generateParamConfigMetadata('semanticModel', false, 2 /* Body */, 4 /* Unsupported */),
|
|
219
|
+
generateParamConfigMetadata('semanticModelApiName', false, 2 /* Body */, 0 /* String */),
|
|
219
220
|
generateParamConfigMetadata('semanticModelId', false, 2 /* Body */, 0 /* String */),
|
|
220
221
|
generateParamConfigMetadata('source', true, 2 /* Body */, 0 /* String */),
|
|
221
222
|
generateParamConfigMetadata('structuredSemanticQuery', true, 2 /* Body */, 4 /* Unsupported */),
|
|
@@ -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, 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 VERSION = "
|
|
2
|
+
export declare const VERSION = "4d4e0328a11335c03be11e496d93aee6";
|
|
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: SemanticQueryRequest, existing: SemanticQueryRequestNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticQueryRequestNormalized;
|
|
@@ -26,6 +26,8 @@ export interface SemanticQueryRequestNormalized {
|
|
|
26
26
|
groupId?: string;
|
|
27
27
|
/** Set SemanticModel */
|
|
28
28
|
semanticModel?: unknown;
|
|
29
|
+
/** Set semanticModelApiName */
|
|
30
|
+
semanticModelApiName?: string;
|
|
29
31
|
/** Set SemanticModelId */
|
|
30
32
|
semanticModelId?: string;
|
|
31
33
|
/** source */
|
|
@@ -47,6 +49,7 @@ export interface SemanticQueryRequest {
|
|
|
47
49
|
dataspace: string;
|
|
48
50
|
groupId?: string;
|
|
49
51
|
semanticModel?: unknown;
|
|
52
|
+
semanticModelApiName?: string;
|
|
50
53
|
semanticModelId?: string;
|
|
51
54
|
source: string;
|
|
52
55
|
structuredSemanticQuery: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-semantic-engine",
|
|
3
|
-
"version": "1.380.0-
|
|
3
|
+
"version": "1.380.0-dev20",
|
|
4
4
|
"description": "Execution of Semantic Queries via Semantic Layer",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-semantic-engine.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.380.0-
|
|
43
|
+
"@salesforce/lds-bindings": "^1.380.0-dev20"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.380.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.380.0-dev20"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -225,6 +225,7 @@ const executeSemanticQuery_ConfigPropertyMetadata = [
|
|
|
225
225
|
generateParamConfigMetadata('dataspace', true, 2 /* Body */, 0 /* String */),
|
|
226
226
|
generateParamConfigMetadata('groupId', false, 2 /* Body */, 0 /* String */),
|
|
227
227
|
generateParamConfigMetadata('semanticModel', false, 2 /* Body */, 4 /* Unsupported */),
|
|
228
|
+
generateParamConfigMetadata('semanticModelApiName', false, 2 /* Body */, 0 /* String */),
|
|
228
229
|
generateParamConfigMetadata('semanticModelId', false, 2 /* Body */, 0 /* String */),
|
|
229
230
|
generateParamConfigMetadata('source', true, 2 /* Body */, 0 /* String */),
|
|
230
231
|
generateParamConfigMetadata('structuredSemanticQuery', true, 2 /* Body */, 4 /* Unsupported */),
|
|
@@ -316,4 +317,4 @@ withDefaultLuvio((luvio) => {
|
|
|
316
317
|
});
|
|
317
318
|
|
|
318
319
|
export { executeSemanticQuery };
|
|
319
|
-
// version: 1.380.0-
|
|
320
|
+
// version: 1.380.0-dev20-504301d774
|
package/src/raml/api.raml
CHANGED
|
@@ -89,6 +89,10 @@ types:
|
|
|
89
89
|
description: Set SemanticModel
|
|
90
90
|
type: any # TODO hand-rolled (changed from object with no properties)
|
|
91
91
|
required: false # TODO hand-rolled (required: false)
|
|
92
|
+
semanticModelApiName:
|
|
93
|
+
description: Set semanticModelApiName
|
|
94
|
+
type: string
|
|
95
|
+
required: false # TODO hand-rolled (required: false)
|
|
92
96
|
semanticModelId:
|
|
93
97
|
description: Set SemanticModelId
|
|
94
98
|
type: string
|