@salesforce/lds-adapters-cdp-semantic-authoring 1.332.0-dev3 → 1.332.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-semantic-authoring.js +19 -21
- package/dist/es/es2018/types/src/generated/adapters/getSemanticMetricsByIds.d.ts +0 -2
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticMetricsByMetricIds.d.ts +0 -4
- package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsLogicalViewsByModelApiNameOrId.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewInputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +20 -22
- package/src/raml/api.raml +4 -13
|
@@ -1367,7 +1367,7 @@ function select$x(luvio, params) {
|
|
|
1367
1367
|
return select$y();
|
|
1368
1368
|
}
|
|
1369
1369
|
function keyBuilder$t(luvio, params) {
|
|
1370
|
-
return keyPrefix + '::SemanticMetricCollectionOutputRepresentation:(' + '
|
|
1370
|
+
return keyPrefix + '::SemanticMetricCollectionOutputRepresentation:(' + 'metricIds:' + params.urlParams.metricIds + ')';
|
|
1371
1371
|
}
|
|
1372
1372
|
function getResponseCacheKeys$c(storeKeyMap, luvio, resourceParams, response) {
|
|
1373
1373
|
getTypeCacheKeys$f(storeKeyMap, luvio, response, () => keyBuilder$t(luvio, resourceParams));
|
|
@@ -1403,7 +1403,7 @@ function createResourceRequest$c(config) {
|
|
|
1403
1403
|
method: 'get',
|
|
1404
1404
|
body: null,
|
|
1405
1405
|
urlParams: config.urlParams,
|
|
1406
|
-
queryParams:
|
|
1406
|
+
queryParams: {},
|
|
1407
1407
|
headers,
|
|
1408
1408
|
priority: 'normal',
|
|
1409
1409
|
};
|
|
@@ -1412,8 +1412,6 @@ function createResourceRequest$c(config) {
|
|
|
1412
1412
|
const adapterName$c = 'getSemanticMetricsByIds';
|
|
1413
1413
|
const getSemanticMetricsByIds_ConfigPropertyMetadata = [
|
|
1414
1414
|
generateParamConfigMetadata('metricIds', true, 0 /* UrlParameter */, 0 /* String */),
|
|
1415
|
-
generateParamConfigMetadata('sortBy', false, 1 /* QueryParameter */, 0 /* String */),
|
|
1416
|
-
generateParamConfigMetadata('sortOrder', false, 1 /* QueryParameter */, 0 /* String */),
|
|
1417
1415
|
];
|
|
1418
1416
|
const getSemanticMetricsByIds_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$c, getSemanticMetricsByIds_ConfigPropertyMetadata);
|
|
1419
1417
|
const createResourceParams$c = /*#__PURE__*/ createResourceParams$d(getSemanticMetricsByIds_ConfigPropertyMetadata);
|
|
@@ -3669,11 +3667,11 @@ function validate$y(obj, path = 'SemanticLogicalViewInputRepresentation') {
|
|
|
3669
3667
|
return new TypeError('Expected "string" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
3670
3668
|
}
|
|
3671
3669
|
}
|
|
3672
|
-
if (obj.
|
|
3673
|
-
const
|
|
3674
|
-
const
|
|
3675
|
-
if (typeof
|
|
3676
|
-
return new TypeError('Expected "string" but received "' + typeof
|
|
3670
|
+
if (obj.customSql !== undefined) {
|
|
3671
|
+
const obj_customSql = obj.customSql;
|
|
3672
|
+
const path_customSql = path + '.customSql';
|
|
3673
|
+
if (typeof obj_customSql !== 'string') {
|
|
3674
|
+
return new TypeError('Expected "string" but received "' + typeof obj_customSql + '" (at "' + path_customSql + '")');
|
|
3677
3675
|
}
|
|
3678
3676
|
}
|
|
3679
3677
|
if (obj.description !== undefined) {
|
|
@@ -7649,7 +7647,7 @@ function getTypeCacheKeys$7(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
7649
7647
|
}
|
|
7650
7648
|
}
|
|
7651
7649
|
|
|
7652
|
-
const VERSION$6 = "
|
|
7650
|
+
const VERSION$6 = "281e0163ea1fc7d956974394f5310216";
|
|
7653
7651
|
function validate$e(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
7654
7652
|
const v_error = (() => {
|
|
7655
7653
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7684,11 +7682,11 @@ function validate$e(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
|
7684
7682
|
if (typeof obj_createdDate !== 'string') {
|
|
7685
7683
|
return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
|
|
7686
7684
|
}
|
|
7687
|
-
if (obj.
|
|
7688
|
-
const
|
|
7689
|
-
const
|
|
7690
|
-
if (typeof
|
|
7691
|
-
return new TypeError('Expected "string" but received "' + typeof
|
|
7685
|
+
if (obj.customSql !== undefined) {
|
|
7686
|
+
const obj_customSql = obj.customSql;
|
|
7687
|
+
const path_customSql = path + '.customSql';
|
|
7688
|
+
if (typeof obj_customSql !== 'string') {
|
|
7689
|
+
return new TypeError('Expected "string" but received "' + typeof obj_customSql + '" (at "' + path_customSql + '")');
|
|
7692
7690
|
}
|
|
7693
7691
|
}
|
|
7694
7692
|
if (obj.description !== undefined) {
|
|
@@ -7897,7 +7895,7 @@ const select$g = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
7897
7895
|
kind: 'Scalar'
|
|
7898
7896
|
},
|
|
7899
7897
|
{
|
|
7900
|
-
name: '
|
|
7898
|
+
name: 'customSql',
|
|
7901
7899
|
kind: 'Scalar',
|
|
7902
7900
|
required: false
|
|
7903
7901
|
},
|
|
@@ -8008,16 +8006,16 @@ function equals$6(existing, incoming) {
|
|
|
8008
8006
|
if (!(existing_createdDate === incoming_createdDate)) {
|
|
8009
8007
|
return false;
|
|
8010
8008
|
}
|
|
8011
|
-
const
|
|
8012
|
-
const
|
|
8009
|
+
const existing_customSql = existing.customSql;
|
|
8010
|
+
const incoming_customSql = incoming.customSql;
|
|
8013
8011
|
// if at least one of these optionals is defined
|
|
8014
|
-
if (
|
|
8012
|
+
if (existing_customSql !== undefined || incoming_customSql !== undefined) {
|
|
8015
8013
|
// if one of these is not defined we know the other is defined and therefore
|
|
8016
8014
|
// not equal
|
|
8017
|
-
if (
|
|
8015
|
+
if (existing_customSql === undefined || incoming_customSql === undefined) {
|
|
8018
8016
|
return false;
|
|
8019
8017
|
}
|
|
8020
|
-
if (!(
|
|
8018
|
+
if (!(existing_customSql === incoming_customSql)) {
|
|
8021
8019
|
return false;
|
|
8022
8020
|
}
|
|
8023
8021
|
}
|
|
@@ -7,8 +7,6 @@ export declare const getSemanticMetricsByIds_ConfigPropertyMetadata: $64$luvio_e
|
|
|
7
7
|
export declare const getSemanticMetricsByIds_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetSemanticMetricsByIdsConfig {
|
|
9
9
|
metricIds: string;
|
|
10
|
-
sortBy?: string;
|
|
11
|
-
sortOrder?: string;
|
|
12
10
|
}
|
|
13
11
|
export declare const createResourceParams: (config: GetSemanticMetricsByIdsConfig) => resources_getSsotSemanticMetricsByMetricIds_ResourceRequestConfig;
|
|
14
12
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsByIdsConfig): string;
|
|
@@ -4,10 +4,6 @@ export interface ResourceRequestConfig {
|
|
|
4
4
|
urlParams: {
|
|
5
5
|
metricIds: string;
|
|
6
6
|
};
|
|
7
|
-
queryParams: {
|
|
8
|
-
sortBy?: string;
|
|
9
|
-
sortOrder?: string;
|
|
10
|
-
};
|
|
11
7
|
}
|
|
12
8
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
9
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
@@ -15,7 +15,7 @@ export interface ResourceRequestConfig {
|
|
|
15
15
|
label?: string;
|
|
16
16
|
filterLogic?: string;
|
|
17
17
|
filters?: Array<types_SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
18
|
-
|
|
18
|
+
customSql?: string;
|
|
19
19
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
20
20
|
semanticRelationships?: Array<types_SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation>;
|
|
21
21
|
semanticUnions?: Array<types_SemanticUnionInputRepresentation_SemanticUnionInputRepresentation>;
|
|
@@ -14,7 +14,7 @@ export interface ResourceRequestConfig {
|
|
|
14
14
|
label?: string;
|
|
15
15
|
filterLogic?: string;
|
|
16
16
|
filters?: Array<types_SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
17
|
-
|
|
17
|
+
customSql?: string;
|
|
18
18
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
19
19
|
semanticRelationships?: Array<types_SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation>;
|
|
20
20
|
semanticUnions?: Array<types_SemanticUnionInputRepresentation_SemanticUnionInputRepresentation>;
|
|
@@ -15,7 +15,7 @@ export interface ResourceRequestConfig {
|
|
|
15
15
|
label?: string;
|
|
16
16
|
filterLogic?: string;
|
|
17
17
|
filters?: Array<types_SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
18
|
-
|
|
18
|
+
customSql?: string;
|
|
19
19
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
20
20
|
semanticRelationships?: Array<types_SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation>;
|
|
21
21
|
semanticUnions?: Array<types_SemanticUnionInputRepresentation_SemanticUnionInputRepresentation>;
|
package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewInputRepresentation.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { SemanticDataObjectInputRepresentation as SemanticDataObjectInputReprese
|
|
|
3
3
|
import { SemanticRelationshipInputRepresentation as SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation } from './SemanticRelationshipInputRepresentation';
|
|
4
4
|
import { SemanticUnionInputRepresentation as SemanticUnionInputRepresentation_SemanticUnionInputRepresentation } from './SemanticUnionInputRepresentation';
|
|
5
5
|
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';
|
|
6
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "f913bc73e37e2a7107113fd7ad230fa5";
|
|
7
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
8
|
export declare const RepresentationType: string;
|
|
9
9
|
export declare function normalize(input: SemanticLogicalViewInputRepresentation, existing: SemanticLogicalViewInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticLogicalViewInputRepresentationNormalized;
|
|
@@ -21,7 +21,7 @@ export interface SemanticLogicalViewInputRepresentationNormalized {
|
|
|
21
21
|
/** The API name of the semantic entity. */
|
|
22
22
|
apiName?: string;
|
|
23
23
|
/** Represents the custom sql query. */
|
|
24
|
-
|
|
24
|
+
customSql?: string;
|
|
25
25
|
/** An optional description of the semantic entity. */
|
|
26
26
|
description?: string;
|
|
27
27
|
/** The logic for generating a filter based on the list of filters. */
|
|
@@ -45,7 +45,7 @@ export interface SemanticLogicalViewInputRepresentationNormalized {
|
|
|
45
45
|
*/
|
|
46
46
|
export interface SemanticLogicalViewInputRepresentation {
|
|
47
47
|
apiName?: string;
|
|
48
|
-
|
|
48
|
+
customSql?: string;
|
|
49
49
|
description?: string;
|
|
50
50
|
filterLogic?: string;
|
|
51
51
|
filters?: Array<SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $
|
|
|
3
3
|
import { SemanticDataObjectOutputRepresentation as SemanticDataObjectOutputRepresentation_SemanticDataObjectOutputRepresentation } from './SemanticDataObjectOutputRepresentation';
|
|
4
4
|
import { SemanticRelationshipOutputRepresentation as SemanticRelationshipOutputRepresentation_SemanticRelationshipOutputRepresentation } from './SemanticRelationshipOutputRepresentation';
|
|
5
5
|
import { SemanticUnionOutputRepresentation as SemanticUnionOutputRepresentation_SemanticUnionOutputRepresentation } from './SemanticUnionOutputRepresentation';
|
|
6
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "281e0163ea1fc7d956974394f5310216";
|
|
7
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
8
|
export declare const RepresentationType: string;
|
|
9
9
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -51,7 +51,7 @@ export interface SemanticLogicalViewOutputRepresentationNormalized {
|
|
|
51
51
|
/** The date in which the semantic entity was created. */
|
|
52
52
|
createdDate: string;
|
|
53
53
|
/** The custom sql query, relevant only for logicalView created by sql */
|
|
54
|
-
|
|
54
|
+
customSql?: string;
|
|
55
55
|
/** The Description of the semantic entity. */
|
|
56
56
|
description?: string;
|
|
57
57
|
/** The logic expression for generating a filter based on the list of filters. */
|
|
@@ -87,7 +87,7 @@ export interface SemanticLogicalViewOutputRepresentation {
|
|
|
87
87
|
cacheKey?: string;
|
|
88
88
|
createdBy: string;
|
|
89
89
|
createdDate: string;
|
|
90
|
-
|
|
90
|
+
customSql?: string;
|
|
91
91
|
description?: string;
|
|
92
92
|
filterLogic?: string;
|
|
93
93
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-semantic-authoring",
|
|
3
|
-
"version": "1.332.0
|
|
3
|
+
"version": "1.332.0",
|
|
4
4
|
"description": "Semantic Authoring",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-semantic-authoring.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.332.0
|
|
43
|
+
"@salesforce/lds-bindings": "^1.332.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.332.0
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.332.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1198,11 +1198,11 @@ function validate$J(obj, path = 'SemanticLogicalViewInputRepresentation') {
|
|
|
1198
1198
|
return new TypeError('Expected "string" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
1199
1199
|
}
|
|
1200
1200
|
}
|
|
1201
|
-
if (obj.
|
|
1202
|
-
const
|
|
1203
|
-
const
|
|
1204
|
-
if (typeof
|
|
1205
|
-
return new TypeError('Expected "string" but received "' + typeof
|
|
1201
|
+
if (obj.customSql !== undefined) {
|
|
1202
|
+
const obj_customSql = obj.customSql;
|
|
1203
|
+
const path_customSql = path + '.customSql';
|
|
1204
|
+
if (typeof obj_customSql !== 'string') {
|
|
1205
|
+
return new TypeError('Expected "string" but received "' + typeof obj_customSql + '" (at "' + path_customSql + '")');
|
|
1206
1206
|
}
|
|
1207
1207
|
}
|
|
1208
1208
|
if (obj.description !== undefined) {
|
|
@@ -5485,7 +5485,7 @@ function getTypeCacheKeys$a(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5485
5485
|
}
|
|
5486
5486
|
}
|
|
5487
5487
|
|
|
5488
|
-
const VERSION$d = "
|
|
5488
|
+
const VERSION$d = "281e0163ea1fc7d956974394f5310216";
|
|
5489
5489
|
function validate$l(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
5490
5490
|
const v_error = (() => {
|
|
5491
5491
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5520,11 +5520,11 @@ function validate$l(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
|
5520
5520
|
if (typeof obj_createdDate !== 'string') {
|
|
5521
5521
|
return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
|
|
5522
5522
|
}
|
|
5523
|
-
if (obj.
|
|
5524
|
-
const
|
|
5525
|
-
const
|
|
5526
|
-
if (typeof
|
|
5527
|
-
return new TypeError('Expected "string" but received "' + typeof
|
|
5523
|
+
if (obj.customSql !== undefined) {
|
|
5524
|
+
const obj_customSql = obj.customSql;
|
|
5525
|
+
const path_customSql = path + '.customSql';
|
|
5526
|
+
if (typeof obj_customSql !== 'string') {
|
|
5527
|
+
return new TypeError('Expected "string" but received "' + typeof obj_customSql + '" (at "' + path_customSql + '")');
|
|
5528
5528
|
}
|
|
5529
5529
|
}
|
|
5530
5530
|
if (obj.description !== undefined) {
|
|
@@ -5733,7 +5733,7 @@ const select$p = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
5733
5733
|
kind: 'Scalar'
|
|
5734
5734
|
},
|
|
5735
5735
|
{
|
|
5736
|
-
name: '
|
|
5736
|
+
name: 'customSql',
|
|
5737
5737
|
kind: 'Scalar',
|
|
5738
5738
|
required: false
|
|
5739
5739
|
},
|
|
@@ -5844,16 +5844,16 @@ function equals$d(existing, incoming) {
|
|
|
5844
5844
|
if (!(existing_createdDate === incoming_createdDate)) {
|
|
5845
5845
|
return false;
|
|
5846
5846
|
}
|
|
5847
|
-
const
|
|
5848
|
-
const
|
|
5847
|
+
const existing_customSql = existing.customSql;
|
|
5848
|
+
const incoming_customSql = incoming.customSql;
|
|
5849
5849
|
// if at least one of these optionals is defined
|
|
5850
|
-
if (
|
|
5850
|
+
if (existing_customSql !== undefined || incoming_customSql !== undefined) {
|
|
5851
5851
|
// if one of these is not defined we know the other is defined and therefore
|
|
5852
5852
|
// not equal
|
|
5853
|
-
if (
|
|
5853
|
+
if (existing_customSql === undefined || incoming_customSql === undefined) {
|
|
5854
5854
|
return false;
|
|
5855
5855
|
}
|
|
5856
|
-
if (!(
|
|
5856
|
+
if (!(existing_customSql === incoming_customSql)) {
|
|
5857
5857
|
return false;
|
|
5858
5858
|
}
|
|
5859
5859
|
}
|
|
@@ -9790,7 +9790,7 @@ function select$c(luvio, params) {
|
|
|
9790
9790
|
return select$e();
|
|
9791
9791
|
}
|
|
9792
9792
|
function keyBuilder$d(luvio, params) {
|
|
9793
|
-
return keyPrefix + '::SemanticMetricCollectionOutputRepresentation:(' + '
|
|
9793
|
+
return keyPrefix + '::SemanticMetricCollectionOutputRepresentation:(' + 'metricIds:' + params.urlParams.metricIds + ')';
|
|
9794
9794
|
}
|
|
9795
9795
|
function getResponseCacheKeys$7(storeKeyMap, luvio, resourceParams, response) {
|
|
9796
9796
|
getTypeCacheKeys$4(storeKeyMap, luvio, response, () => keyBuilder$d(luvio, resourceParams));
|
|
@@ -9826,7 +9826,7 @@ function createResourceRequest$7(config) {
|
|
|
9826
9826
|
method: 'get',
|
|
9827
9827
|
body: null,
|
|
9828
9828
|
urlParams: config.urlParams,
|
|
9829
|
-
queryParams:
|
|
9829
|
+
queryParams: {},
|
|
9830
9830
|
headers,
|
|
9831
9831
|
priority: 'normal',
|
|
9832
9832
|
};
|
|
@@ -9835,8 +9835,6 @@ function createResourceRequest$7(config) {
|
|
|
9835
9835
|
const adapterName$7 = 'getSemanticMetricsByIds';
|
|
9836
9836
|
const getSemanticMetricsByIds_ConfigPropertyMetadata = [
|
|
9837
9837
|
generateParamConfigMetadata('metricIds', true, 0 /* UrlParameter */, 0 /* String */),
|
|
9838
|
-
generateParamConfigMetadata('sortBy', false, 1 /* QueryParameter */, 0 /* String */),
|
|
9839
|
-
generateParamConfigMetadata('sortOrder', false, 1 /* QueryParameter */, 0 /* String */),
|
|
9840
9838
|
];
|
|
9841
9839
|
const getSemanticMetricsByIds_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$7, getSemanticMetricsByIds_ConfigPropertyMetadata);
|
|
9842
9840
|
const createResourceParams$7 = /*#__PURE__*/ createResourceParams$d(getSemanticMetricsByIds_ConfigPropertyMetadata);
|
|
@@ -12375,4 +12373,4 @@ withDefaultLuvio((luvio) => {
|
|
|
12375
12373
|
});
|
|
12376
12374
|
|
|
12377
12375
|
export { createSemanticModel, createSemanticSubMetric, deleteSemanticSubMetric, getSemanticMetric, getSemanticMetricNotifyChange, getSemanticMetric_imperative, getSemanticMetrics, getSemanticMetricsByIds, getSemanticMetricsByIds_imperative, getSemanticMetricsToSubMetrics, getSemanticMetricsToSubMetrics_imperative, getSemanticMetrics_imperative, getSemanticModel, getSemanticModelNotifyChange, getSemanticModel_imperative, getSemanticModels, getSemanticModels_imperative, getSemanticSubMetric, getSemanticSubMetricNotifyChange, getSemanticSubMetric_imperative, getSemanticSubMetrics, getSemanticSubMetricsById, getSemanticSubMetricsById_imperative, getSemanticSubMetrics_imperative, patchSemanticModel };
|
|
12378
|
-
// version: 1.332.0-
|
|
12376
|
+
// version: 1.332.0-626b187dc6
|
package/src/raml/api.raml
CHANGED
|
@@ -108,7 +108,7 @@ types:
|
|
|
108
108
|
description: The semantic view types enum, relevant only for logicalView created by sql
|
|
109
109
|
type: string
|
|
110
110
|
enum:
|
|
111
|
-
-
|
|
111
|
+
- CustomSql
|
|
112
112
|
- HardJoin
|
|
113
113
|
- Union
|
|
114
114
|
SemanticDataTypeEnum:
|
|
@@ -301,7 +301,7 @@ types:
|
|
|
301
301
|
type: string
|
|
302
302
|
enum:
|
|
303
303
|
- Cio
|
|
304
|
-
-
|
|
304
|
+
- CustomSql
|
|
305
305
|
- Dlo
|
|
306
306
|
- Dmo
|
|
307
307
|
SemanticDisplayCategoryEnum:
|
|
@@ -1546,7 +1546,7 @@ types:
|
|
|
1546
1546
|
items:
|
|
1547
1547
|
type: SemanticFilterInputRepresentation
|
|
1548
1548
|
required: false
|
|
1549
|
-
|
|
1549
|
+
customSql:
|
|
1550
1550
|
description: Represents the custom sql query.
|
|
1551
1551
|
type: string
|
|
1552
1552
|
required: false
|
|
@@ -1609,7 +1609,7 @@ types:
|
|
|
1609
1609
|
description: The date in which the semantic entity was last modified.
|
|
1610
1610
|
type: string
|
|
1611
1611
|
required: false
|
|
1612
|
-
|
|
1612
|
+
customSql:
|
|
1613
1613
|
description: The custom sql query, relevant only for logicalView created by sql
|
|
1614
1614
|
type: string
|
|
1615
1615
|
required: false
|
|
@@ -3442,15 +3442,6 @@ types:
|
|
|
3442
3442
|
body:
|
|
3443
3443
|
application/json:
|
|
3444
3444
|
type: SemanticMetricCollectionOutputRepresentation
|
|
3445
|
-
queryParameters:
|
|
3446
|
-
sortBy:
|
|
3447
|
-
description: Represents the field to sort by.
|
|
3448
|
-
type: string
|
|
3449
|
-
required: false
|
|
3450
|
-
sortOrder:
|
|
3451
|
-
description: Sort order of the Semantic Calculated Dimension. Valid values are Ascending, Descending and None.
|
|
3452
|
-
type: SemanticSortOrderEnum
|
|
3453
|
-
required: false
|
|
3454
3445
|
uriParameters:
|
|
3455
3446
|
metricIds:
|
|
3456
3447
|
type: string
|