@salesforce/lds-adapters-cdp-semantic-authoring 1.332.0-dev22 → 1.332.0-dev24
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 +170 -7
- package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsDataObjectsByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsLogicalViewsByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsDataObjectsByDataObjectNameOrIdAndModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDataObjectInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDimensionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +171 -8
- package/src/raml/api.raml +60 -0
|
@@ -3072,6 +3072,11 @@ function validate$P(obj, path = 'SemanticDataObjectInputRepresentation') {
|
|
|
3072
3072
|
return new TypeError('Expected "string" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
3073
3073
|
}
|
|
3074
3074
|
}
|
|
3075
|
+
const obj_autoCreateRowCountSystemCalc = obj.autoCreateRowCountSystemCalc;
|
|
3076
|
+
const path_autoCreateRowCountSystemCalc = path + '.autoCreateRowCountSystemCalc';
|
|
3077
|
+
if (typeof obj_autoCreateRowCountSystemCalc !== 'boolean') {
|
|
3078
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_autoCreateRowCountSystemCalc + '" (at "' + path_autoCreateRowCountSystemCalc + '")');
|
|
3079
|
+
}
|
|
3075
3080
|
if (obj.dataObjectName !== undefined) {
|
|
3076
3081
|
const obj_dataObjectName = obj.dataObjectName;
|
|
3077
3082
|
const path_dataObjectName = path + '.dataObjectName';
|
|
@@ -3676,6 +3681,11 @@ function validate$D(obj, path = 'SemanticLogicalViewInputRepresentation') {
|
|
|
3676
3681
|
return new TypeError('Expected "string" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
3677
3682
|
}
|
|
3678
3683
|
}
|
|
3684
|
+
const obj_autoCreateRowCountSystemCalc = obj.autoCreateRowCountSystemCalc;
|
|
3685
|
+
const path_autoCreateRowCountSystemCalc = path + '.autoCreateRowCountSystemCalc';
|
|
3686
|
+
if (typeof obj_autoCreateRowCountSystemCalc !== 'boolean') {
|
|
3687
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_autoCreateRowCountSystemCalc + '" (at "' + path_autoCreateRowCountSystemCalc + '")');
|
|
3688
|
+
}
|
|
3679
3689
|
if (obj.customSQL !== undefined) {
|
|
3680
3690
|
const obj_customSQL = obj.customSQL;
|
|
3681
3691
|
const path_customSQL = path + '.customSQL';
|
|
@@ -4138,7 +4148,7 @@ function validate$y(obj, path = 'SemanticParameterInputRepresentation') {
|
|
|
4138
4148
|
return v_error === undefined ? null : v_error;
|
|
4139
4149
|
}
|
|
4140
4150
|
|
|
4141
|
-
const VERSION$n = "
|
|
4151
|
+
const VERSION$n = "3536a3e5bb36dae84bb2f90328635705";
|
|
4142
4152
|
function validate$x(obj, path = 'SemanticCalculatedDimensionOutputRepresentation') {
|
|
4143
4153
|
const v_error = (() => {
|
|
4144
4154
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4237,6 +4247,13 @@ function validate$x(obj, path = 'SemanticCalculatedDimensionOutputRepresentation
|
|
|
4237
4247
|
if (typeof obj_id !== 'string') {
|
|
4238
4248
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
4239
4249
|
}
|
|
4250
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
4251
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
4252
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
4253
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
4254
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
4255
|
+
}
|
|
4256
|
+
}
|
|
4240
4257
|
if (obj.isVisible !== undefined) {
|
|
4241
4258
|
const obj_isVisible = obj.isVisible;
|
|
4242
4259
|
const path_isVisible = path + '.isVisible';
|
|
@@ -4379,6 +4396,11 @@ const select$C = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
4379
4396
|
name: 'id',
|
|
4380
4397
|
kind: 'Scalar'
|
|
4381
4398
|
},
|
|
4399
|
+
{
|
|
4400
|
+
name: 'isSystemDefinition',
|
|
4401
|
+
kind: 'Scalar',
|
|
4402
|
+
required: false
|
|
4403
|
+
},
|
|
4382
4404
|
{
|
|
4383
4405
|
name: 'isVisible',
|
|
4384
4406
|
kind: 'Scalar',
|
|
@@ -4423,6 +4445,19 @@ const select$C = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
4423
4445
|
};
|
|
4424
4446
|
};
|
|
4425
4447
|
function equals$n(existing, incoming) {
|
|
4448
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
4449
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
4450
|
+
// if at least one of these optionals is defined
|
|
4451
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
4452
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
4453
|
+
// not equal
|
|
4454
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
4455
|
+
return false;
|
|
4456
|
+
}
|
|
4457
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
4458
|
+
return false;
|
|
4459
|
+
}
|
|
4460
|
+
}
|
|
4426
4461
|
const existing_isVisible = existing.isVisible;
|
|
4427
4462
|
const incoming_isVisible = incoming.isVisible;
|
|
4428
4463
|
// if at least one of these optionals is defined
|
|
@@ -4693,7 +4728,7 @@ function getTypeCacheKeys$f(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
4693
4728
|
});
|
|
4694
4729
|
}
|
|
4695
4730
|
|
|
4696
|
-
const VERSION$m = "
|
|
4731
|
+
const VERSION$m = "8a43364da2bbf9a7636662f415b287d9";
|
|
4697
4732
|
function validate$w(obj, path = 'SemanticCalculatedMeasurementOutputRepresentation') {
|
|
4698
4733
|
const v_error = (() => {
|
|
4699
4734
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4813,6 +4848,13 @@ function validate$w(obj, path = 'SemanticCalculatedMeasurementOutputRepresentati
|
|
|
4813
4848
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isAggregatable + '" (at "' + path_isAggregatable + '")');
|
|
4814
4849
|
}
|
|
4815
4850
|
}
|
|
4851
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
4852
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
4853
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
4854
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
4855
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
4856
|
+
}
|
|
4857
|
+
}
|
|
4816
4858
|
if (obj.isVisible !== undefined) {
|
|
4817
4859
|
const obj_isVisible = obj.isVisible;
|
|
4818
4860
|
const path_isVisible = path + '.isVisible';
|
|
@@ -4991,6 +5033,11 @@ const select$B = function SemanticCalculatedMeasurementOutputRepresentationSelec
|
|
|
4991
5033
|
kind: 'Scalar',
|
|
4992
5034
|
required: false
|
|
4993
5035
|
},
|
|
5036
|
+
{
|
|
5037
|
+
name: 'isSystemDefinition',
|
|
5038
|
+
kind: 'Scalar',
|
|
5039
|
+
required: false
|
|
5040
|
+
},
|
|
4994
5041
|
{
|
|
4995
5042
|
name: 'isVisible',
|
|
4996
5043
|
kind: 'Scalar',
|
|
@@ -5063,6 +5110,19 @@ function equals$m(existing, incoming) {
|
|
|
5063
5110
|
return false;
|
|
5064
5111
|
}
|
|
5065
5112
|
}
|
|
5113
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
5114
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
5115
|
+
// if at least one of these optionals is defined
|
|
5116
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
5117
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5118
|
+
// not equal
|
|
5119
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
5120
|
+
return false;
|
|
5121
|
+
}
|
|
5122
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
5123
|
+
return false;
|
|
5124
|
+
}
|
|
5125
|
+
}
|
|
5066
5126
|
const existing_isVisible = existing.isVisible;
|
|
5067
5127
|
const incoming_isVisible = incoming.isVisible;
|
|
5068
5128
|
// if at least one of these optionals is defined
|
|
@@ -5486,6 +5546,13 @@ function validate$v(obj, path = 'SemanticDimensionOutputRepresentation') {
|
|
|
5486
5546
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
5487
5547
|
}
|
|
5488
5548
|
}
|
|
5549
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
5550
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
5551
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
5552
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
5553
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
5554
|
+
}
|
|
5555
|
+
}
|
|
5489
5556
|
if (obj.isVisible !== undefined) {
|
|
5490
5557
|
const obj_isVisible = obj.isVisible;
|
|
5491
5558
|
const path_isVisible = path + '.isVisible';
|
|
@@ -5655,6 +5722,13 @@ function validate$u(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
5655
5722
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
5656
5723
|
}
|
|
5657
5724
|
}
|
|
5725
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
5726
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
5727
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
5728
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
5729
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
5730
|
+
}
|
|
5731
|
+
}
|
|
5658
5732
|
if (obj.isVisible !== undefined) {
|
|
5659
5733
|
const obj_isVisible = obj.isVisible;
|
|
5660
5734
|
const path_isVisible = path + '.isVisible';
|
|
@@ -5729,7 +5803,7 @@ function validate$u(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
5729
5803
|
return v_error === undefined ? null : v_error;
|
|
5730
5804
|
}
|
|
5731
5805
|
|
|
5732
|
-
const VERSION$l = "
|
|
5806
|
+
const VERSION$l = "7d6bcdce2dbb2aff07ea54a0a3573751";
|
|
5733
5807
|
function validate$t(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
5734
5808
|
const v_error = (() => {
|
|
5735
5809
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5814,6 +5888,13 @@ function validate$t(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
|
5814
5888
|
if (typeof obj_id !== 'string') {
|
|
5815
5889
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
5816
5890
|
}
|
|
5891
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
5892
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
5893
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
5894
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
5895
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
5896
|
+
}
|
|
5897
|
+
}
|
|
5817
5898
|
if (obj.label !== undefined) {
|
|
5818
5899
|
const obj_label = obj.label;
|
|
5819
5900
|
const path_label = path + '.label';
|
|
@@ -6695,7 +6776,7 @@ function equals$f(existing, incoming) {
|
|
|
6695
6776
|
return true;
|
|
6696
6777
|
}
|
|
6697
6778
|
|
|
6698
|
-
const VERSION$e = "
|
|
6779
|
+
const VERSION$e = "062f4bcfd995ad7919070f93b6bab18e";
|
|
6699
6780
|
function validate$m(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
6700
6781
|
const v_error = (() => {
|
|
6701
6782
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -6773,6 +6854,13 @@ function validate$m(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
|
6773
6854
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
|
|
6774
6855
|
}
|
|
6775
6856
|
}
|
|
6857
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
6858
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6859
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
6860
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
6861
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
6862
|
+
}
|
|
6863
|
+
}
|
|
6776
6864
|
if (obj.joinType !== undefined) {
|
|
6777
6865
|
const obj_joinType = obj.joinType;
|
|
6778
6866
|
const path_joinType = path + '.joinType';
|
|
@@ -6893,6 +6981,11 @@ const select$t = function SemanticRelationshipOutputRepresentationSelect() {
|
|
|
6893
6981
|
kind: 'Scalar',
|
|
6894
6982
|
required: false
|
|
6895
6983
|
},
|
|
6984
|
+
{
|
|
6985
|
+
name: 'isSystemDefinition',
|
|
6986
|
+
kind: 'Scalar',
|
|
6987
|
+
required: false
|
|
6988
|
+
},
|
|
6896
6989
|
{
|
|
6897
6990
|
name: 'joinType',
|
|
6898
6991
|
kind: 'Scalar',
|
|
@@ -6945,6 +7038,19 @@ function equals$e(existing, incoming) {
|
|
|
6945
7038
|
return false;
|
|
6946
7039
|
}
|
|
6947
7040
|
}
|
|
7041
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
7042
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
7043
|
+
// if at least one of these optionals is defined
|
|
7044
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
7045
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7046
|
+
// not equal
|
|
7047
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
7048
|
+
return false;
|
|
7049
|
+
}
|
|
7050
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
7051
|
+
return false;
|
|
7052
|
+
}
|
|
7053
|
+
}
|
|
6948
7054
|
const existing_apiName = existing.apiName;
|
|
6949
7055
|
const incoming_apiName = incoming.apiName;
|
|
6950
7056
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -7150,7 +7256,7 @@ function getTypeCacheKeys$b(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
7150
7256
|
});
|
|
7151
7257
|
}
|
|
7152
7258
|
|
|
7153
|
-
const VERSION$d = "
|
|
7259
|
+
const VERSION$d = "3d12153b600a5c971299e81be2ea7598";
|
|
7154
7260
|
function validate$l(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
7155
7261
|
const v_error = (() => {
|
|
7156
7262
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7214,6 +7320,13 @@ function validate$l(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
|
7214
7320
|
if (typeof obj_id !== 'string') {
|
|
7215
7321
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
7216
7322
|
}
|
|
7323
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
7324
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
7325
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
7326
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
7327
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
7328
|
+
}
|
|
7329
|
+
}
|
|
7217
7330
|
if (obj.label !== undefined) {
|
|
7218
7331
|
const obj_label = obj.label;
|
|
7219
7332
|
const path_label = path + '.label';
|
|
@@ -7748,7 +7861,7 @@ function getTypeCacheKeys$9(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
7748
7861
|
}
|
|
7749
7862
|
}
|
|
7750
7863
|
|
|
7751
|
-
const VERSION$b = "
|
|
7864
|
+
const VERSION$b = "d44ed1fabce3d9bc44cec83dca1fd070";
|
|
7752
7865
|
function validate$j(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
7753
7866
|
const v_error = (() => {
|
|
7754
7867
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7826,6 +7939,13 @@ function validate$j(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
|
7826
7939
|
if (typeof obj_id !== 'string') {
|
|
7827
7940
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
7828
7941
|
}
|
|
7942
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
7943
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
7944
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
7945
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
7946
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
7947
|
+
}
|
|
7948
|
+
}
|
|
7829
7949
|
if (obj.label !== undefined) {
|
|
7830
7950
|
const obj_label = obj.label;
|
|
7831
7951
|
const path_label = path + '.label';
|
|
@@ -8028,6 +8148,11 @@ const select$q = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
8028
8148
|
name: 'id',
|
|
8029
8149
|
kind: 'Scalar'
|
|
8030
8150
|
},
|
|
8151
|
+
{
|
|
8152
|
+
name: 'isSystemDefinition',
|
|
8153
|
+
kind: 'Scalar',
|
|
8154
|
+
required: false
|
|
8155
|
+
},
|
|
8031
8156
|
{
|
|
8032
8157
|
name: 'label',
|
|
8033
8158
|
kind: 'Scalar',
|
|
@@ -8078,6 +8203,19 @@ const select$q = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
8078
8203
|
};
|
|
8079
8204
|
};
|
|
8080
8205
|
function equals$b(existing, incoming) {
|
|
8206
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
8207
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
8208
|
+
// if at least one of these optionals is defined
|
|
8209
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
8210
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
8211
|
+
// not equal
|
|
8212
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
8213
|
+
return false;
|
|
8214
|
+
}
|
|
8215
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
8216
|
+
return false;
|
|
8217
|
+
}
|
|
8218
|
+
}
|
|
8081
8219
|
const existing_apiName = existing.apiName;
|
|
8082
8220
|
const incoming_apiName = incoming.apiName;
|
|
8083
8221
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -8414,7 +8552,7 @@ function equals$a(existing, incoming) {
|
|
|
8414
8552
|
return true;
|
|
8415
8553
|
}
|
|
8416
8554
|
|
|
8417
|
-
const VERSION$9 = "
|
|
8555
|
+
const VERSION$9 = "bccec6c920f402972316a137a8711604";
|
|
8418
8556
|
function validate$h(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
8419
8557
|
const v_error = (() => {
|
|
8420
8558
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -8492,6 +8630,13 @@ function validate$h(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
|
8492
8630
|
if (typeof obj_id !== 'string') {
|
|
8493
8631
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
8494
8632
|
}
|
|
8633
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
8634
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
8635
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
8636
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
8637
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
8638
|
+
}
|
|
8639
|
+
}
|
|
8495
8640
|
if (obj.label !== undefined) {
|
|
8496
8641
|
const obj_label = obj.label;
|
|
8497
8642
|
const path_label = path + '.label';
|
|
@@ -8626,6 +8771,11 @@ const select$o = function SemanticParameterOutputRepresentationSelect() {
|
|
|
8626
8771
|
name: 'id',
|
|
8627
8772
|
kind: 'Scalar'
|
|
8628
8773
|
},
|
|
8774
|
+
{
|
|
8775
|
+
name: 'isSystemDefinition',
|
|
8776
|
+
kind: 'Scalar',
|
|
8777
|
+
required: false
|
|
8778
|
+
},
|
|
8629
8779
|
{
|
|
8630
8780
|
name: 'label',
|
|
8631
8781
|
kind: 'Scalar',
|
|
@@ -8671,6 +8821,19 @@ const select$o = function SemanticParameterOutputRepresentationSelect() {
|
|
|
8671
8821
|
};
|
|
8672
8822
|
};
|
|
8673
8823
|
function equals$9(existing, incoming) {
|
|
8824
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
8825
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
8826
|
+
// if at least one of these optionals is defined
|
|
8827
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
8828
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
8829
|
+
// not equal
|
|
8830
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
8831
|
+
return false;
|
|
8832
|
+
}
|
|
8833
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
8834
|
+
return false;
|
|
8835
|
+
}
|
|
8836
|
+
}
|
|
8674
8837
|
const existing_apiName = existing.apiName;
|
|
8675
8838
|
const incoming_apiName = incoming.apiName;
|
|
8676
8839
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -20,6 +20,7 @@ export interface ResourceRequestConfig {
|
|
|
20
20
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
21
21
|
semanticRelationships?: Array<types_SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation>;
|
|
22
22
|
semanticUnions?: Array<types_SemanticUnionInputRepresentation_SemanticUnionInputRepresentation>;
|
|
23
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
23
24
|
};
|
|
24
25
|
}
|
|
25
26
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -19,6 +19,7 @@ export interface ResourceRequestConfig {
|
|
|
19
19
|
semanticDimensions?: Array<types_SemanticDimensionInputRepresentation_SemanticDimensionInputRepresentation>;
|
|
20
20
|
semanticMeasurements?: Array<types_SemanticMeasurementInputRepresentation_SemanticMeasurementInputRepresentation>;
|
|
21
21
|
shouldIncludeAllFields?: boolean;
|
|
22
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
22
23
|
tableType?: string;
|
|
23
24
|
};
|
|
24
25
|
}
|
|
@@ -19,6 +19,7 @@ export interface ResourceRequestConfig {
|
|
|
19
19
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
20
20
|
semanticRelationships?: Array<types_SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation>;
|
|
21
21
|
semanticUnions?: Array<types_SemanticUnionInputRepresentation_SemanticUnionInputRepresentation>;
|
|
22
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
22
23
|
};
|
|
23
24
|
}
|
|
24
25
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -20,6 +20,7 @@ export interface ResourceRequestConfig {
|
|
|
20
20
|
semanticDimensions?: Array<types_SemanticDimensionInputRepresentation_SemanticDimensionInputRepresentation>;
|
|
21
21
|
semanticMeasurements?: Array<types_SemanticMeasurementInputRepresentation_SemanticMeasurementInputRepresentation>;
|
|
22
22
|
shouldIncludeAllFields?: boolean;
|
|
23
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
23
24
|
tableType?: string;
|
|
24
25
|
};
|
|
25
26
|
}
|
|
@@ -20,6 +20,7 @@ export interface ResourceRequestConfig {
|
|
|
20
20
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
21
21
|
semanticRelationships?: Array<types_SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation>;
|
|
22
22
|
semanticUnions?: Array<types_SemanticUnionInputRepresentation_SemanticUnionInputRepresentation>;
|
|
23
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
23
24
|
};
|
|
24
25
|
}
|
|
25
26
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
|
|
2
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
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "3536a3e5bb36dae84bb2f90328635705";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -50,6 +50,8 @@ export interface SemanticCalculatedDimensionOutputRepresentationNormalized {
|
|
|
50
50
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
51
51
|
/** The object ID of the semantic entity. */
|
|
52
52
|
id: string;
|
|
53
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
54
|
+
isSystemDefinition?: boolean;
|
|
53
55
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
54
56
|
isVisible?: boolean;
|
|
55
57
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -87,6 +89,7 @@ export interface SemanticCalculatedDimensionOutputRepresentation {
|
|
|
87
89
|
filterLogic?: string;
|
|
88
90
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
89
91
|
id: string;
|
|
92
|
+
isSystemDefinition?: boolean;
|
|
90
93
|
isVisible?: boolean;
|
|
91
94
|
label?: string;
|
|
92
95
|
lastModifiedBy?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
|
|
2
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
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "8a43364da2bbf9a7636662f415b287d9";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -56,6 +56,8 @@ export interface SemanticCalculatedMeasurementOutputRepresentationNormalized {
|
|
|
56
56
|
id: string;
|
|
57
57
|
/** Indicates if the measurement can be aggregated or not */
|
|
58
58
|
isAggregatable?: boolean;
|
|
59
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
60
|
+
isSystemDefinition?: boolean;
|
|
59
61
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
60
62
|
isVisible?: boolean;
|
|
61
63
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -102,6 +104,7 @@ export interface SemanticCalculatedMeasurementOutputRepresentation {
|
|
|
102
104
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
103
105
|
id: string;
|
|
104
106
|
isAggregatable?: boolean;
|
|
107
|
+
isSystemDefinition?: boolean;
|
|
105
108
|
isVisible?: boolean;
|
|
106
109
|
label?: string;
|
|
107
110
|
lastModifiedBy?: string;
|
|
@@ -2,7 +2,7 @@ import { SemanticFilterInputRepresentation as SemanticFilterInputRepresentation_
|
|
|
2
2
|
import { SemanticDimensionInputRepresentation as SemanticDimensionInputRepresentation_SemanticDimensionInputRepresentation } from './SemanticDimensionInputRepresentation';
|
|
3
3
|
import { SemanticMeasurementInputRepresentation as SemanticMeasurementInputRepresentation_SemanticMeasurementInputRepresentation } from './SemanticMeasurementInputRepresentation';
|
|
4
4
|
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';
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "b2850325cc5f6f2f9ee75dfcee269a84";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export declare function normalize(input: SemanticDataObjectInputRepresentation, existing: SemanticDataObjectInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticDataObjectInputRepresentationNormalized;
|
|
@@ -19,6 +19,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
19
19
|
export interface SemanticDataObjectInputRepresentationNormalized {
|
|
20
20
|
/** The API name of the semantic entity. */
|
|
21
21
|
apiName?: string;
|
|
22
|
+
/** Indicates whether to automatically create row-count system calc */
|
|
23
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
22
24
|
/** Required. Object ID that references the Semantic Data Object Field. */
|
|
23
25
|
dataObjectName?: string;
|
|
24
26
|
/** Required. Data type stored in a specific Semantic Data Object Field. Valid values are Text, Date, DateTime, Image, Boolean, Geo, Currency, Number, Duration and Percentage. */
|
|
@@ -50,6 +52,7 @@ export interface SemanticDataObjectInputRepresentationNormalized {
|
|
|
50
52
|
*/
|
|
51
53
|
export interface SemanticDataObjectInputRepresentation {
|
|
52
54
|
apiName?: string;
|
|
55
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
53
56
|
dataObjectName?: string;
|
|
54
57
|
dataObjectType?: string;
|
|
55
58
|
description?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentatio
|
|
|
2
2
|
import { SemanticDimensionOutputRepresentation as SemanticDimensionOutputRepresentation_SemanticDimensionOutputRepresentation } from './SemanticDimensionOutputRepresentation';
|
|
3
3
|
import { SemanticMeasurementOutputRepresentation as SemanticMeasurementOutputRepresentation_SemanticMeasurementOutputRepresentation } from './SemanticMeasurementOutputRepresentation';
|
|
4
4
|
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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "7d6bcdce2dbb2aff07ea54a0a3573751";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -48,6 +48,8 @@ export interface SemanticDataObjectOutputRepresentationNormalized {
|
|
|
48
48
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
49
49
|
/** The object ID of the semantic entity. */
|
|
50
50
|
id: string;
|
|
51
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
52
|
+
isSystemDefinition?: boolean;
|
|
51
53
|
/** The display name of the semantic entity to be used in the ui. */
|
|
52
54
|
label?: string;
|
|
53
55
|
/** The user who last modified the semantic entity. */
|
|
@@ -87,6 +89,7 @@ export interface SemanticDataObjectOutputRepresentation {
|
|
|
87
89
|
filterLogic?: string;
|
|
88
90
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
89
91
|
id: string;
|
|
92
|
+
isSystemDefinition?: boolean;
|
|
90
93
|
label?: string;
|
|
91
94
|
lastModifiedBy?: string;
|
|
92
95
|
lastModifiedDate?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "ea8fef7804be4821010ed379e4de6095";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -49,6 +49,8 @@ export interface SemanticDimensionOutputRepresentationNormalized {
|
|
|
49
49
|
isKeyQualifier?: boolean;
|
|
50
50
|
/** Indicates whether the field is a primary key. */
|
|
51
51
|
isPrimaryKey?: boolean;
|
|
52
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
53
|
+
isSystemDefinition?: boolean;
|
|
52
54
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
53
55
|
isVisible?: boolean;
|
|
54
56
|
/** The key qualifier name of this field in data object in data cloud, if exists. */
|
|
@@ -86,6 +88,7 @@ export interface SemanticDimensionOutputRepresentation {
|
|
|
86
88
|
id: string;
|
|
87
89
|
isKeyQualifier?: boolean;
|
|
88
90
|
isPrimaryKey?: boolean;
|
|
91
|
+
isSystemDefinition?: boolean;
|
|
89
92
|
isVisible?: boolean;
|
|
90
93
|
keyQualifierName?: string;
|
|
91
94
|
label?: string;
|
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 = "40e48534c57c526eb526f41cfa6557e7";
|
|
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;
|
|
@@ -20,6 +20,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
20
20
|
export interface SemanticLogicalViewInputRepresentationNormalized {
|
|
21
21
|
/** The API name of the semantic entity. */
|
|
22
22
|
apiName?: string;
|
|
23
|
+
/** Indicates whether to automatically create row-count system calc */
|
|
24
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
23
25
|
/** Represents the custom sql query. */
|
|
24
26
|
customSQL?: string;
|
|
25
27
|
/** An optional description of the semantic entity. */
|
|
@@ -47,6 +49,7 @@ export interface SemanticLogicalViewInputRepresentationNormalized {
|
|
|
47
49
|
*/
|
|
48
50
|
export interface SemanticLogicalViewInputRepresentation {
|
|
49
51
|
apiName?: string;
|
|
52
|
+
autoCreateRowCountSystemCalc: boolean;
|
|
50
53
|
customSQL?: string;
|
|
51
54
|
description?: string;
|
|
52
55
|
filterLogic?: string;
|
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 = "d44ed1fabce3d9bc44cec83dca1fd070";
|
|
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 {
|
|
@@ -60,6 +60,8 @@ export interface SemanticLogicalViewOutputRepresentationNormalized {
|
|
|
60
60
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
61
61
|
/** The object ID of the semantic entity. */
|
|
62
62
|
id: string;
|
|
63
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
64
|
+
isSystemDefinition?: boolean;
|
|
63
65
|
/** The display name of the semantic entity to be used in the ui. */
|
|
64
66
|
label?: string;
|
|
65
67
|
/** The user who last modified the semantic entity. */
|
|
@@ -94,6 +96,7 @@ export interface SemanticLogicalViewOutputRepresentation {
|
|
|
94
96
|
filterLogic?: string;
|
|
95
97
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
96
98
|
id: string;
|
|
99
|
+
isSystemDefinition?: boolean;
|
|
97
100
|
label?: string;
|
|
98
101
|
lastModifiedBy?: string;
|
|
99
102
|
lastModifiedDate?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { SemanticTableFieldReferenceOutputRepresentation as SemanticTableFieldRe
|
|
|
2
2
|
import { SemanticDimensionOutputRepresentation as SemanticDimensionOutputRepresentation_SemanticDimensionOutputRepresentation } from './SemanticDimensionOutputRepresentation';
|
|
3
3
|
import { SemanticMeasurementOutputRepresentation as SemanticMeasurementOutputRepresentation_SemanticMeasurementOutputRepresentation } from './SemanticMeasurementOutputRepresentation';
|
|
4
4
|
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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "3d12153b600a5c971299e81be2ea7598";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -42,6 +42,8 @@ export interface SemanticMappedFieldOutputRepresentationNormalized {
|
|
|
42
42
|
fields?: Array<SemanticTableFieldReferenceOutputRepresentation_SemanticTableFieldReferenceOutputRepresentation>;
|
|
43
43
|
/** The object ID of the semantic entity. */
|
|
44
44
|
id: string;
|
|
45
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
46
|
+
isSystemDefinition?: boolean;
|
|
45
47
|
/** The display name of the semantic entity to be used in the ui. */
|
|
46
48
|
label?: string;
|
|
47
49
|
/** The user who last modified the semantic entity. */
|
|
@@ -69,6 +71,7 @@ export interface SemanticMappedFieldOutputRepresentation {
|
|
|
69
71
|
description?: string;
|
|
70
72
|
fields?: Array<SemanticTableFieldReferenceOutputRepresentation_SemanticTableFieldReferenceOutputRepresentation>;
|
|
71
73
|
id: string;
|
|
74
|
+
isSystemDefinition?: boolean;
|
|
72
75
|
label?: string;
|
|
73
76
|
lastModifiedBy?: string;
|
|
74
77
|
lastModifiedDate?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "2e9f7984df33295fcbc456918fbdb9e0";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -55,6 +55,8 @@ export interface SemanticMeasurementOutputRepresentationNormalized {
|
|
|
55
55
|
isKeyQualifier?: boolean;
|
|
56
56
|
/** Indicates whether the field is a primary key. */
|
|
57
57
|
isPrimaryKey?: boolean;
|
|
58
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
59
|
+
isSystemDefinition?: boolean;
|
|
58
60
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
59
61
|
isVisible?: boolean;
|
|
60
62
|
/** The key qualifier name of this field in data object in data cloud, if exists. */
|
|
@@ -99,6 +101,7 @@ export interface SemanticMeasurementOutputRepresentation {
|
|
|
99
101
|
isAggregatable?: boolean;
|
|
100
102
|
isKeyQualifier?: boolean;
|
|
101
103
|
isPrimaryKey?: boolean;
|
|
104
|
+
isSystemDefinition?: boolean;
|
|
102
105
|
isVisible?: boolean;
|
|
103
106
|
keyQualifierName?: string;
|
|
104
107
|
label?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticParameterListValueOutputRepresentation as SemanticParameterListValueOutputRepresentation_SemanticParameterListValueOutputRepresentation } from './SemanticParameterListValueOutputRepresentation';
|
|
2
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
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "bccec6c920f402972316a137a8711604";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -44,6 +44,8 @@ export interface SemanticParameterOutputRepresentationNormalized {
|
|
|
44
44
|
description?: string;
|
|
45
45
|
/** The object ID of the semantic entity. */
|
|
46
46
|
id: string;
|
|
47
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
48
|
+
isSystemDefinition?: boolean;
|
|
47
49
|
/** The display name of the semantic entity to be used in the ui. */
|
|
48
50
|
label?: string;
|
|
49
51
|
/** The user who last modified the semantic entity. */
|
|
@@ -78,6 +80,7 @@ export interface SemanticParameterOutputRepresentation {
|
|
|
78
80
|
defaultValue?: string;
|
|
79
81
|
description?: string;
|
|
80
82
|
id: string;
|
|
83
|
+
isSystemDefinition?: boolean;
|
|
81
84
|
label?: string;
|
|
82
85
|
lastModifiedBy?: string;
|
|
83
86
|
lastModifiedDate?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticRelationshipCriteriaOutputRepresentation as SemanticRelationshipCriteriaOutputRepresentation_SemanticRelationshipCriteriaOutputRepresentation } from './SemanticRelationshipCriteriaOutputRepresentation';
|
|
2
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
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "062f4bcfd995ad7919070f93b6bab18e";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -44,6 +44,8 @@ export interface SemanticRelationshipOutputRepresentationNormalized {
|
|
|
44
44
|
id: string;
|
|
45
45
|
/** Indicates whether the relationship is currently enabled */
|
|
46
46
|
isEnabled?: boolean;
|
|
47
|
+
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
48
|
+
isSystemDefinition?: boolean;
|
|
47
49
|
/** the join type of the semantic relationship. */
|
|
48
50
|
joinType?: string;
|
|
49
51
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -76,6 +78,7 @@ export interface SemanticRelationshipOutputRepresentation {
|
|
|
76
78
|
description?: string;
|
|
77
79
|
id: string;
|
|
78
80
|
isEnabled?: boolean;
|
|
81
|
+
isSystemDefinition?: boolean;
|
|
79
82
|
joinType?: string;
|
|
80
83
|
label?: string;
|
|
81
84
|
lastModifiedBy?: string;
|
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-dev24",
|
|
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-dev24"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.332.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.332.0-dev24"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1004,6 +1004,11 @@ function validate$V(obj, path = 'SemanticDataObjectInputRepresentation') {
|
|
|
1004
1004
|
return new TypeError('Expected "string" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
1005
1005
|
}
|
|
1006
1006
|
}
|
|
1007
|
+
const obj_autoCreateRowCountSystemCalc = obj.autoCreateRowCountSystemCalc;
|
|
1008
|
+
const path_autoCreateRowCountSystemCalc = path + '.autoCreateRowCountSystemCalc';
|
|
1009
|
+
if (typeof obj_autoCreateRowCountSystemCalc !== 'boolean') {
|
|
1010
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_autoCreateRowCountSystemCalc + '" (at "' + path_autoCreateRowCountSystemCalc + '")');
|
|
1011
|
+
}
|
|
1007
1012
|
if (obj.dataObjectName !== undefined) {
|
|
1008
1013
|
const obj_dataObjectName = obj.dataObjectName;
|
|
1009
1014
|
const path_dataObjectName = path + '.dataObjectName';
|
|
@@ -1608,6 +1613,11 @@ function validate$J(obj, path = 'SemanticLogicalViewInputRepresentation') {
|
|
|
1608
1613
|
return new TypeError('Expected "string" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
1609
1614
|
}
|
|
1610
1615
|
}
|
|
1616
|
+
const obj_autoCreateRowCountSystemCalc = obj.autoCreateRowCountSystemCalc;
|
|
1617
|
+
const path_autoCreateRowCountSystemCalc = path + '.autoCreateRowCountSystemCalc';
|
|
1618
|
+
if (typeof obj_autoCreateRowCountSystemCalc !== 'boolean') {
|
|
1619
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_autoCreateRowCountSystemCalc + '" (at "' + path_autoCreateRowCountSystemCalc + '")');
|
|
1620
|
+
}
|
|
1611
1621
|
if (obj.customSQL !== undefined) {
|
|
1612
1622
|
const obj_customSQL = obj.customSQL;
|
|
1613
1623
|
const path_customSQL = path + '.customSQL';
|
|
@@ -2228,7 +2238,7 @@ function equals$w(existing, incoming) {
|
|
|
2228
2238
|
return true;
|
|
2229
2239
|
}
|
|
2230
2240
|
|
|
2231
|
-
const VERSION$v = "
|
|
2241
|
+
const VERSION$v = "3536a3e5bb36dae84bb2f90328635705";
|
|
2232
2242
|
function validate$B(obj, path = 'SemanticCalculatedDimensionOutputRepresentation') {
|
|
2233
2243
|
const v_error = (() => {
|
|
2234
2244
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2327,6 +2337,13 @@ function validate$B(obj, path = 'SemanticCalculatedDimensionOutputRepresentation
|
|
|
2327
2337
|
if (typeof obj_id !== 'string') {
|
|
2328
2338
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
2329
2339
|
}
|
|
2340
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
2341
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
2342
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
2343
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
2344
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2330
2347
|
if (obj.isVisible !== undefined) {
|
|
2331
2348
|
const obj_isVisible = obj.isVisible;
|
|
2332
2349
|
const path_isVisible = path + '.isVisible';
|
|
@@ -2469,6 +2486,11 @@ const select$L = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
2469
2486
|
name: 'id',
|
|
2470
2487
|
kind: 'Scalar'
|
|
2471
2488
|
},
|
|
2489
|
+
{
|
|
2490
|
+
name: 'isSystemDefinition',
|
|
2491
|
+
kind: 'Scalar',
|
|
2492
|
+
required: false
|
|
2493
|
+
},
|
|
2472
2494
|
{
|
|
2473
2495
|
name: 'isVisible',
|
|
2474
2496
|
kind: 'Scalar',
|
|
@@ -2513,6 +2535,19 @@ const select$L = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
2513
2535
|
};
|
|
2514
2536
|
};
|
|
2515
2537
|
function equals$v(existing, incoming) {
|
|
2538
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
2539
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
2540
|
+
// if at least one of these optionals is defined
|
|
2541
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
2542
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2543
|
+
// not equal
|
|
2544
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
2545
|
+
return false;
|
|
2546
|
+
}
|
|
2547
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
2548
|
+
return false;
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2516
2551
|
const existing_isVisible = existing.isVisible;
|
|
2517
2552
|
const incoming_isVisible = incoming.isVisible;
|
|
2518
2553
|
// if at least one of these optionals is defined
|
|
@@ -2783,7 +2818,7 @@ function getTypeCacheKeys$h(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
2783
2818
|
});
|
|
2784
2819
|
}
|
|
2785
2820
|
|
|
2786
|
-
const VERSION$u = "
|
|
2821
|
+
const VERSION$u = "8a43364da2bbf9a7636662f415b287d9";
|
|
2787
2822
|
function validate$A(obj, path = 'SemanticCalculatedMeasurementOutputRepresentation') {
|
|
2788
2823
|
const v_error = (() => {
|
|
2789
2824
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2903,6 +2938,13 @@ function validate$A(obj, path = 'SemanticCalculatedMeasurementOutputRepresentati
|
|
|
2903
2938
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isAggregatable + '" (at "' + path_isAggregatable + '")');
|
|
2904
2939
|
}
|
|
2905
2940
|
}
|
|
2941
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
2942
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
2943
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
2944
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
2945
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
2946
|
+
}
|
|
2947
|
+
}
|
|
2906
2948
|
if (obj.isVisible !== undefined) {
|
|
2907
2949
|
const obj_isVisible = obj.isVisible;
|
|
2908
2950
|
const path_isVisible = path + '.isVisible';
|
|
@@ -3081,6 +3123,11 @@ const select$K = function SemanticCalculatedMeasurementOutputRepresentationSelec
|
|
|
3081
3123
|
kind: 'Scalar',
|
|
3082
3124
|
required: false
|
|
3083
3125
|
},
|
|
3126
|
+
{
|
|
3127
|
+
name: 'isSystemDefinition',
|
|
3128
|
+
kind: 'Scalar',
|
|
3129
|
+
required: false
|
|
3130
|
+
},
|
|
3084
3131
|
{
|
|
3085
3132
|
name: 'isVisible',
|
|
3086
3133
|
kind: 'Scalar',
|
|
@@ -3153,6 +3200,19 @@ function equals$u(existing, incoming) {
|
|
|
3153
3200
|
return false;
|
|
3154
3201
|
}
|
|
3155
3202
|
}
|
|
3203
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
3204
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
3205
|
+
// if at least one of these optionals is defined
|
|
3206
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
3207
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
3208
|
+
// not equal
|
|
3209
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
3210
|
+
return false;
|
|
3211
|
+
}
|
|
3212
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
3213
|
+
return false;
|
|
3214
|
+
}
|
|
3215
|
+
}
|
|
3156
3216
|
const existing_isVisible = existing.isVisible;
|
|
3157
3217
|
const incoming_isVisible = incoming.isVisible;
|
|
3158
3218
|
// if at least one of these optionals is defined
|
|
@@ -3576,6 +3636,13 @@ function validate$z(obj, path = 'SemanticDimensionOutputRepresentation') {
|
|
|
3576
3636
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
3577
3637
|
}
|
|
3578
3638
|
}
|
|
3639
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
3640
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
3641
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
3642
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
3643
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
3644
|
+
}
|
|
3645
|
+
}
|
|
3579
3646
|
if (obj.isVisible !== undefined) {
|
|
3580
3647
|
const obj_isVisible = obj.isVisible;
|
|
3581
3648
|
const path_isVisible = path + '.isVisible';
|
|
@@ -3745,6 +3812,13 @@ function validate$y(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
3745
3812
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
3746
3813
|
}
|
|
3747
3814
|
}
|
|
3815
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
3816
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
3817
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
3818
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
3819
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
3820
|
+
}
|
|
3821
|
+
}
|
|
3748
3822
|
if (obj.isVisible !== undefined) {
|
|
3749
3823
|
const obj_isVisible = obj.isVisible;
|
|
3750
3824
|
const path_isVisible = path + '.isVisible';
|
|
@@ -3819,7 +3893,7 @@ function validate$y(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
3819
3893
|
return v_error === undefined ? null : v_error;
|
|
3820
3894
|
}
|
|
3821
3895
|
|
|
3822
|
-
const VERSION$t = "
|
|
3896
|
+
const VERSION$t = "7d6bcdce2dbb2aff07ea54a0a3573751";
|
|
3823
3897
|
function validate$x(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
3824
3898
|
const v_error = (() => {
|
|
3825
3899
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -3904,6 +3978,13 @@ function validate$x(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
|
3904
3978
|
if (typeof obj_id !== 'string') {
|
|
3905
3979
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
3906
3980
|
}
|
|
3981
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
3982
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
3983
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
3984
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
3985
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
3986
|
+
}
|
|
3987
|
+
}
|
|
3907
3988
|
if (obj.label !== undefined) {
|
|
3908
3989
|
const obj_label = obj.label;
|
|
3909
3990
|
const path_label = path + '.label';
|
|
@@ -4934,7 +5015,7 @@ function equals$l(existing, incoming) {
|
|
|
4934
5015
|
return true;
|
|
4935
5016
|
}
|
|
4936
5017
|
|
|
4937
|
-
const VERSION$k = "
|
|
5018
|
+
const VERSION$k = "062f4bcfd995ad7919070f93b6bab18e";
|
|
4938
5019
|
function validate$o(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
4939
5020
|
const v_error = (() => {
|
|
4940
5021
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5012,6 +5093,13 @@ function validate$o(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
|
5012
5093
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
|
|
5013
5094
|
}
|
|
5014
5095
|
}
|
|
5096
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
5097
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
5098
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
5099
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
5100
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
5101
|
+
}
|
|
5102
|
+
}
|
|
5015
5103
|
if (obj.joinType !== undefined) {
|
|
5016
5104
|
const obj_joinType = obj.joinType;
|
|
5017
5105
|
const path_joinType = path + '.joinType';
|
|
@@ -5132,6 +5220,11 @@ const select$A = function SemanticRelationshipOutputRepresentationSelect() {
|
|
|
5132
5220
|
kind: 'Scalar',
|
|
5133
5221
|
required: false
|
|
5134
5222
|
},
|
|
5223
|
+
{
|
|
5224
|
+
name: 'isSystemDefinition',
|
|
5225
|
+
kind: 'Scalar',
|
|
5226
|
+
required: false
|
|
5227
|
+
},
|
|
5135
5228
|
{
|
|
5136
5229
|
name: 'joinType',
|
|
5137
5230
|
kind: 'Scalar',
|
|
@@ -5184,6 +5277,19 @@ function equals$k(existing, incoming) {
|
|
|
5184
5277
|
return false;
|
|
5185
5278
|
}
|
|
5186
5279
|
}
|
|
5280
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
5281
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
5282
|
+
// if at least one of these optionals is defined
|
|
5283
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
5284
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5285
|
+
// not equal
|
|
5286
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
5287
|
+
return false;
|
|
5288
|
+
}
|
|
5289
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
5290
|
+
return false;
|
|
5291
|
+
}
|
|
5292
|
+
}
|
|
5187
5293
|
const existing_apiName = existing.apiName;
|
|
5188
5294
|
const incoming_apiName = incoming.apiName;
|
|
5189
5295
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -5389,7 +5495,7 @@ function getTypeCacheKeys$d(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5389
5495
|
});
|
|
5390
5496
|
}
|
|
5391
5497
|
|
|
5392
|
-
const VERSION$j = "
|
|
5498
|
+
const VERSION$j = "3d12153b600a5c971299e81be2ea7598";
|
|
5393
5499
|
function validate$n(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
5394
5500
|
const v_error = (() => {
|
|
5395
5501
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5453,6 +5559,13 @@ function validate$n(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
|
5453
5559
|
if (typeof obj_id !== 'string') {
|
|
5454
5560
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
5455
5561
|
}
|
|
5562
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
5563
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
5564
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
5565
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
5566
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
5567
|
+
}
|
|
5568
|
+
}
|
|
5456
5569
|
if (obj.label !== undefined) {
|
|
5457
5570
|
const obj_label = obj.label;
|
|
5458
5571
|
const path_label = path + '.label';
|
|
@@ -5987,7 +6100,7 @@ function getTypeCacheKeys$b(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5987
6100
|
}
|
|
5988
6101
|
}
|
|
5989
6102
|
|
|
5990
|
-
const VERSION$h = "
|
|
6103
|
+
const VERSION$h = "d44ed1fabce3d9bc44cec83dca1fd070";
|
|
5991
6104
|
function validate$l(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
5992
6105
|
const v_error = (() => {
|
|
5993
6106
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -6065,6 +6178,13 @@ function validate$l(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
|
6065
6178
|
if (typeof obj_id !== 'string') {
|
|
6066
6179
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
6067
6180
|
}
|
|
6181
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
6182
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6183
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
6184
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
6185
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
6186
|
+
}
|
|
6187
|
+
}
|
|
6068
6188
|
if (obj.label !== undefined) {
|
|
6069
6189
|
const obj_label = obj.label;
|
|
6070
6190
|
const path_label = path + '.label';
|
|
@@ -6267,6 +6387,11 @@ const select$x = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
6267
6387
|
name: 'id',
|
|
6268
6388
|
kind: 'Scalar'
|
|
6269
6389
|
},
|
|
6390
|
+
{
|
|
6391
|
+
name: 'isSystemDefinition',
|
|
6392
|
+
kind: 'Scalar',
|
|
6393
|
+
required: false
|
|
6394
|
+
},
|
|
6270
6395
|
{
|
|
6271
6396
|
name: 'label',
|
|
6272
6397
|
kind: 'Scalar',
|
|
@@ -6317,6 +6442,19 @@ const select$x = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
6317
6442
|
};
|
|
6318
6443
|
};
|
|
6319
6444
|
function equals$h(existing, incoming) {
|
|
6445
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
6446
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
6447
|
+
// if at least one of these optionals is defined
|
|
6448
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
6449
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
6450
|
+
// not equal
|
|
6451
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
6452
|
+
return false;
|
|
6453
|
+
}
|
|
6454
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
6455
|
+
return false;
|
|
6456
|
+
}
|
|
6457
|
+
}
|
|
6320
6458
|
const existing_apiName = existing.apiName;
|
|
6321
6459
|
const incoming_apiName = incoming.apiName;
|
|
6322
6460
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -7568,7 +7706,7 @@ function equals$c(existing, incoming) {
|
|
|
7568
7706
|
return true;
|
|
7569
7707
|
}
|
|
7570
7708
|
|
|
7571
|
-
const VERSION$b = "
|
|
7709
|
+
const VERSION$b = "bccec6c920f402972316a137a8711604";
|
|
7572
7710
|
function validate$f(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
7573
7711
|
const v_error = (() => {
|
|
7574
7712
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7646,6 +7784,13 @@ function validate$f(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
|
7646
7784
|
if (typeof obj_id !== 'string') {
|
|
7647
7785
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
7648
7786
|
}
|
|
7787
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
7788
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
7789
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
7790
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
7791
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
7792
|
+
}
|
|
7793
|
+
}
|
|
7649
7794
|
if (obj.label !== undefined) {
|
|
7650
7795
|
const obj_label = obj.label;
|
|
7651
7796
|
const path_label = path + '.label';
|
|
@@ -7780,6 +7925,11 @@ const select$r = function SemanticParameterOutputRepresentationSelect() {
|
|
|
7780
7925
|
name: 'id',
|
|
7781
7926
|
kind: 'Scalar'
|
|
7782
7927
|
},
|
|
7928
|
+
{
|
|
7929
|
+
name: 'isSystemDefinition',
|
|
7930
|
+
kind: 'Scalar',
|
|
7931
|
+
required: false
|
|
7932
|
+
},
|
|
7783
7933
|
{
|
|
7784
7934
|
name: 'label',
|
|
7785
7935
|
kind: 'Scalar',
|
|
@@ -7825,6 +7975,19 @@ const select$r = function SemanticParameterOutputRepresentationSelect() {
|
|
|
7825
7975
|
};
|
|
7826
7976
|
};
|
|
7827
7977
|
function equals$b(existing, incoming) {
|
|
7978
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
7979
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
7980
|
+
// if at least one of these optionals is defined
|
|
7981
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
7982
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7983
|
+
// not equal
|
|
7984
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
7985
|
+
return false;
|
|
7986
|
+
}
|
|
7987
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
7988
|
+
return false;
|
|
7989
|
+
}
|
|
7990
|
+
}
|
|
7828
7991
|
const existing_apiName = existing.apiName;
|
|
7829
7992
|
const incoming_apiName = incoming.apiName;
|
|
7830
7993
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -14006,4 +14169,4 @@ withDefaultLuvio((luvio) => {
|
|
|
14006
14169
|
});
|
|
14007
14170
|
|
|
14008
14171
|
export { createSemanticGoal, createSemanticModel, createSemanticSubMetric, deleteGoalFromSubMetric, deleteSemanticGoal, deleteSemanticSubMetric, getLeafDependenciesByTypes, getLeafDependenciesByTypes_imperative, getSemanticGoal, getSemanticGoalNotifyChange, getSemanticGoal_imperative, 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, patchSemanticMetricGoal, patchSemanticModel, updateSemanticGoal };
|
|
14009
|
-
// version: 1.332.0-
|
|
14172
|
+
// version: 1.332.0-dev24-53f8301ac1
|
package/src/raml/api.raml
CHANGED
|
@@ -707,6 +707,12 @@ types:
|
|
|
707
707
|
description: The syntax of the semantic expression.
|
|
708
708
|
type: SemanticExpressionSyntaxTypeEnum
|
|
709
709
|
required: false
|
|
710
|
+
isSystemDefinition:
|
|
711
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
712
|
+
definition is an automatically generated one. These semantic definitions
|
|
713
|
+
cannot be modified or deleted.Default is false.
|
|
714
|
+
type: boolean
|
|
715
|
+
required: false
|
|
710
716
|
SemanticCalculatedMeasurementCollectionOutputRepresentation:
|
|
711
717
|
description: A collection of Semantic Calculated Measurements.
|
|
712
718
|
type: object
|
|
@@ -913,6 +919,12 @@ types:
|
|
|
913
919
|
description: Function that computes numerical calculations on data, allowing the query to return summarized information about the expression results. Valid values are Sum, Average, Min, Max, Median, Count Distinct, Count, Stddev, Stddevp, Var, Varp, Last, First, UserAgg and None.
|
|
914
920
|
type: SemanticAggregationTypeEnum
|
|
915
921
|
required: false
|
|
922
|
+
isSystemDefinition:
|
|
923
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
924
|
+
definition is an automatically generated one. These semantic definitions
|
|
925
|
+
cannot be modified or deleted.Default is false.
|
|
926
|
+
type: boolean
|
|
927
|
+
required: false
|
|
916
928
|
SemanticDataObjectCollectionInputRepresentation:
|
|
917
929
|
description: Represents a collection of Semantic Data Objects.
|
|
918
930
|
type: object
|
|
@@ -992,6 +1004,9 @@ types:
|
|
|
992
1004
|
description: Indicates whether all fields or only specific fields of the referenced data object should be included.
|
|
993
1005
|
type: boolean
|
|
994
1006
|
required: false
|
|
1007
|
+
autoCreateRowCountSystemCalc:
|
|
1008
|
+
description: Indicates whether to automatically create row-count system calc
|
|
1009
|
+
type: boolean
|
|
995
1010
|
tableType:
|
|
996
1011
|
description: 'Table Types for SDM query interpretation, Valid values are: SHARED or STANDARD'
|
|
997
1012
|
type: SemanticDataObjectTableTypeEnum
|
|
@@ -1083,6 +1098,12 @@ types:
|
|
|
1083
1098
|
description: Indicates whether all fields or only specific fields of the referenced data object should be included.
|
|
1084
1099
|
type: boolean
|
|
1085
1100
|
required: false
|
|
1101
|
+
isSystemDefinition:
|
|
1102
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
1103
|
+
definition is an automatically generated one. These semantic definitions
|
|
1104
|
+
cannot be modified or deleted.Default is false.
|
|
1105
|
+
type: boolean
|
|
1106
|
+
required: false
|
|
1086
1107
|
tableType:
|
|
1087
1108
|
description: Table Types for SDM query interpretation.
|
|
1088
1109
|
type: SemanticDataObjectTableTypeEnum
|
|
@@ -1295,6 +1316,12 @@ types:
|
|
|
1295
1316
|
description: The key qualifier name of this field in data object in data cloud, if exists.
|
|
1296
1317
|
type: string
|
|
1297
1318
|
required: false
|
|
1319
|
+
isSystemDefinition:
|
|
1320
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
1321
|
+
definition is an automatically generated one. These semantic definitions
|
|
1322
|
+
cannot be modified or deleted.Default is false.
|
|
1323
|
+
type: boolean
|
|
1324
|
+
required: false
|
|
1298
1325
|
storageDataType:
|
|
1299
1326
|
description: The storage type of data stored in the Data Cloud.
|
|
1300
1327
|
type: SemanticDimensionStorageDataTypeEnum
|
|
@@ -1815,6 +1842,9 @@ types:
|
|
|
1815
1842
|
items:
|
|
1816
1843
|
type: SemanticUnionInputRepresentation
|
|
1817
1844
|
required: false
|
|
1845
|
+
autoCreateRowCountSystemCalc:
|
|
1846
|
+
description: Indicates whether to automatically create row-count system calc
|
|
1847
|
+
type: boolean
|
|
1818
1848
|
SemanticLogicalViewOutputRepresentation:
|
|
1819
1849
|
description: A semantic logical view.
|
|
1820
1850
|
type: object
|
|
@@ -1892,6 +1922,12 @@ types:
|
|
|
1892
1922
|
description: The semantic view types enum, relevant only for logicalView created by sql
|
|
1893
1923
|
type: SemanticViewTypeEnum
|
|
1894
1924
|
required: false
|
|
1925
|
+
isSystemDefinition:
|
|
1926
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
1927
|
+
definition is an automatically generated one. These semantic definitions
|
|
1928
|
+
cannot be modified or deleted.Default is false.
|
|
1929
|
+
type: boolean
|
|
1930
|
+
required: false
|
|
1895
1931
|
tableType:
|
|
1896
1932
|
description: Table Types for SDM query interpretation.
|
|
1897
1933
|
type: SemanticLogicalViewTableTypeEnum
|
|
@@ -2030,6 +2066,12 @@ types:
|
|
|
2030
2066
|
description: The configuration for a unified field of type measurement.
|
|
2031
2067
|
type: SemanticMeasurementOutputRepresentation
|
|
2032
2068
|
required: false
|
|
2069
|
+
isSystemDefinition:
|
|
2070
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
2071
|
+
definition is an automatically generated one. These semantic definitions
|
|
2072
|
+
cannot be modified or deleted.Default is false.
|
|
2073
|
+
type: boolean
|
|
2074
|
+
required: false
|
|
2033
2075
|
SemanticMeasurementCollectionOutputRepresentation:
|
|
2034
2076
|
description: Semantic measurement collection representation.
|
|
2035
2077
|
type: object
|
|
@@ -2202,6 +2244,12 @@ types:
|
|
|
2202
2244
|
description: The key qualifier name of this field in data object in data cloud, if exists.
|
|
2203
2245
|
type: string
|
|
2204
2246
|
required: false
|
|
2247
|
+
isSystemDefinition:
|
|
2248
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
2249
|
+
definition is an automatically generated one. These semantic definitions
|
|
2250
|
+
cannot be modified or deleted.Default is false.
|
|
2251
|
+
type: boolean
|
|
2252
|
+
required: false
|
|
2205
2253
|
storageDataType:
|
|
2206
2254
|
description: The type of data stored in DC.
|
|
2207
2255
|
type: SemanticMeasurementStorageDataTypeEnum
|
|
@@ -3159,6 +3207,12 @@ types:
|
|
|
3159
3207
|
required: false
|
|
3160
3208
|
items:
|
|
3161
3209
|
type: string
|
|
3210
|
+
isSystemDefinition:
|
|
3211
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
3212
|
+
definition is an automatically generated one. These semantic definitions
|
|
3213
|
+
cannot be modified or deleted.Default is false.
|
|
3214
|
+
type: boolean
|
|
3215
|
+
required: false
|
|
3162
3216
|
SemanticParameterListValueInputRepresentation:
|
|
3163
3217
|
description: Input representation of an allowed list value for a semantic parameter .
|
|
3164
3218
|
type: object
|
|
@@ -3358,6 +3412,12 @@ types:
|
|
|
3358
3412
|
description: The api name of the right Semantic definition.
|
|
3359
3413
|
type: string
|
|
3360
3414
|
required: false
|
|
3415
|
+
isSystemDefinition:
|
|
3416
|
+
description: The isSystemDefinition property indicates whether a semantic
|
|
3417
|
+
definition is an automatically generated one. These semantic definitions
|
|
3418
|
+
cannot be modified or deleted.Default is false.
|
|
3419
|
+
type: boolean
|
|
3420
|
+
required: false
|
|
3361
3421
|
SemanticResourceValidationOutputRepresentation:
|
|
3362
3422
|
description: The output representation of a semantic resource validation response.
|
|
3363
3423
|
type: object
|