@salesforce/lds-adapters-cdp-semantic-authoring 1.380.0-dev1 → 1.381.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 +358 -15
- package/dist/es/es2018/types/src/generated/adapters/getSemanticModel.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsShallowByModelApiNameOrId.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/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/SemanticGoalOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticGroupingOutputRepresentation.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/SemanticMetricOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelExternalConnectionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelPartialOutputRepresentation.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/dist/es/es2018/types/src/generated/types/SemanticSubMetricOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticUnionOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +359 -16
- package/src/raml/api.raml +113 -1
|
@@ -742,7 +742,7 @@ function equals$u(existing, incoming) {
|
|
|
742
742
|
return true;
|
|
743
743
|
}
|
|
744
744
|
|
|
745
|
-
const VERSION$t = "
|
|
745
|
+
const VERSION$t = "3800a2eb703d5a4964899b4e067ee1d8";
|
|
746
746
|
function validate$13(obj, path = 'SemanticMetricOutputRepresentation') {
|
|
747
747
|
const v_error = (() => {
|
|
748
748
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -854,6 +854,13 @@ function validate$13(obj, path = 'SemanticMetricOutputRepresentation') {
|
|
|
854
854
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isCumulative + '" (at "' + path_isCumulative + '")');
|
|
855
855
|
}
|
|
856
856
|
}
|
|
857
|
+
if (obj.isQueryable !== undefined) {
|
|
858
|
+
const obj_isQueryable = obj.isQueryable;
|
|
859
|
+
const path_isQueryable = path + '.isQueryable';
|
|
860
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
861
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
862
|
+
}
|
|
863
|
+
}
|
|
857
864
|
if (obj.isSystemDefinition !== undefined) {
|
|
858
865
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
859
866
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -1014,6 +1021,11 @@ const select$K = function SemanticMetricOutputRepresentationSelect() {
|
|
|
1014
1021
|
kind: 'Scalar',
|
|
1015
1022
|
required: false
|
|
1016
1023
|
},
|
|
1024
|
+
{
|
|
1025
|
+
name: 'isQueryable',
|
|
1026
|
+
kind: 'Scalar',
|
|
1027
|
+
required: false
|
|
1028
|
+
},
|
|
1017
1029
|
{
|
|
1018
1030
|
name: 'isSystemDefinition',
|
|
1019
1031
|
kind: 'Scalar',
|
|
@@ -1185,6 +1197,19 @@ function equals$t(existing, incoming) {
|
|
|
1185
1197
|
if (!(existing_id === incoming_id)) {
|
|
1186
1198
|
return false;
|
|
1187
1199
|
}
|
|
1200
|
+
const existing_isQueryable = existing.isQueryable;
|
|
1201
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
1202
|
+
// if at least one of these optionals is defined
|
|
1203
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
1204
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
1205
|
+
// not equal
|
|
1206
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
1207
|
+
return false;
|
|
1208
|
+
}
|
|
1209
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
1210
|
+
return false;
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1188
1213
|
const existing_label = existing.label;
|
|
1189
1214
|
const incoming_label = incoming.label;
|
|
1190
1215
|
// if at least one of these optionals is defined
|
|
@@ -1646,7 +1671,7 @@ function equals$r(existing, incoming) {
|
|
|
1646
1671
|
return true;
|
|
1647
1672
|
}
|
|
1648
1673
|
|
|
1649
|
-
const VERSION$q = "
|
|
1674
|
+
const VERSION$q = "fbfcf3d65a4ca4d916f66efc9208f1cb";
|
|
1650
1675
|
function validate$10(obj, path = 'SemanticModelPartialOutputRepresentation') {
|
|
1651
1676
|
const v_error = (() => {
|
|
1652
1677
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -1757,6 +1782,13 @@ function validate$10(obj, path = 'SemanticModelPartialOutputRepresentation') {
|
|
|
1757
1782
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isLocked + '" (at "' + path_isLocked + '")');
|
|
1758
1783
|
}
|
|
1759
1784
|
}
|
|
1785
|
+
if (obj.isQueryable !== undefined) {
|
|
1786
|
+
const obj_isQueryable = obj.isQueryable;
|
|
1787
|
+
const path_isQueryable = path + '.isQueryable';
|
|
1788
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
1789
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1760
1792
|
if (obj.label !== undefined) {
|
|
1761
1793
|
const obj_label = obj.label;
|
|
1762
1794
|
const path_label = path + '.label';
|
|
@@ -1940,6 +1972,11 @@ const select$G = function SemanticModelPartialOutputRepresentationSelect() {
|
|
|
1940
1972
|
kind: 'Scalar',
|
|
1941
1973
|
required: false
|
|
1942
1974
|
},
|
|
1975
|
+
{
|
|
1976
|
+
name: 'isQueryable',
|
|
1977
|
+
kind: 'Scalar',
|
|
1978
|
+
required: false
|
|
1979
|
+
},
|
|
1943
1980
|
{
|
|
1944
1981
|
name: 'label',
|
|
1945
1982
|
kind: 'Scalar',
|
|
@@ -2120,6 +2157,19 @@ function equals$q(existing, incoming) {
|
|
|
2120
2157
|
if (!(existing_id === incoming_id)) {
|
|
2121
2158
|
return false;
|
|
2122
2159
|
}
|
|
2160
|
+
const existing_isQueryable = existing.isQueryable;
|
|
2161
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
2162
|
+
// if at least one of these optionals is defined
|
|
2163
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
2164
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2165
|
+
// not equal
|
|
2166
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
2167
|
+
return false;
|
|
2168
|
+
}
|
|
2169
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
2170
|
+
return false;
|
|
2171
|
+
}
|
|
2172
|
+
}
|
|
2123
2173
|
const existing_label = existing.label;
|
|
2124
2174
|
const incoming_label = incoming.label;
|
|
2125
2175
|
// if at least one of these optionals is defined
|
|
@@ -4491,7 +4541,7 @@ function equals$o(existing, incoming) {
|
|
|
4491
4541
|
return true;
|
|
4492
4542
|
}
|
|
4493
4543
|
|
|
4494
|
-
const VERSION$n = "
|
|
4544
|
+
const VERSION$n = "d39ef07b537fde1ac49a10bfc73d7db1";
|
|
4495
4545
|
function validate$y(obj, path = 'SemanticModelExternalConnectionOutputRepresentation') {
|
|
4496
4546
|
const v_error = (() => {
|
|
4497
4547
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4514,6 +4564,13 @@ function validate$y(obj, path = 'SemanticModelExternalConnectionOutputRepresenta
|
|
|
4514
4564
|
if (typeof obj_id !== 'string') {
|
|
4515
4565
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
4516
4566
|
}
|
|
4567
|
+
if (obj.isQueryable !== undefined) {
|
|
4568
|
+
const obj_isQueryable = obj.isQueryable;
|
|
4569
|
+
const path_isQueryable = path + '.isQueryable';
|
|
4570
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
4571
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
4572
|
+
}
|
|
4573
|
+
}
|
|
4517
4574
|
if (obj.label !== undefined) {
|
|
4518
4575
|
const obj_label = obj.label;
|
|
4519
4576
|
const path_label = path + '.label';
|
|
@@ -4559,6 +4616,11 @@ const select$C = function SemanticModelExternalConnectionOutputRepresentationSel
|
|
|
4559
4616
|
name: 'id',
|
|
4560
4617
|
kind: 'Scalar'
|
|
4561
4618
|
},
|
|
4619
|
+
{
|
|
4620
|
+
name: 'isQueryable',
|
|
4621
|
+
kind: 'Scalar',
|
|
4622
|
+
required: false
|
|
4623
|
+
},
|
|
4562
4624
|
{
|
|
4563
4625
|
name: 'label',
|
|
4564
4626
|
kind: 'Scalar',
|
|
@@ -4601,6 +4663,19 @@ function equals$n(existing, incoming) {
|
|
|
4601
4663
|
if (!(existing_id === incoming_id)) {
|
|
4602
4664
|
return false;
|
|
4603
4665
|
}
|
|
4666
|
+
const existing_isQueryable = existing.isQueryable;
|
|
4667
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
4668
|
+
// if at least one of these optionals is defined
|
|
4669
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
4670
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
4671
|
+
// not equal
|
|
4672
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
4673
|
+
return false;
|
|
4674
|
+
}
|
|
4675
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
4676
|
+
return false;
|
|
4677
|
+
}
|
|
4678
|
+
}
|
|
4604
4679
|
const existing_label = existing.label;
|
|
4605
4680
|
const incoming_label = incoming.label;
|
|
4606
4681
|
// if at least one of these optionals is defined
|
|
@@ -4752,7 +4827,7 @@ function equals$m(existing, incoming) {
|
|
|
4752
4827
|
return true;
|
|
4753
4828
|
}
|
|
4754
4829
|
|
|
4755
|
-
const VERSION$l = "
|
|
4830
|
+
const VERSION$l = "e7d6a5a90b64614a1854f0b959840e50";
|
|
4756
4831
|
function validate$w(obj, path = 'SemanticCalculatedDimensionOutputRepresentation') {
|
|
4757
4832
|
const v_error = (() => {
|
|
4758
4833
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4872,6 +4947,13 @@ function validate$w(obj, path = 'SemanticCalculatedDimensionOutputRepresentation
|
|
|
4872
4947
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isOverrideBase + '" (at "' + path_isOverrideBase + '")');
|
|
4873
4948
|
}
|
|
4874
4949
|
}
|
|
4950
|
+
if (obj.isQueryable !== undefined) {
|
|
4951
|
+
const obj_isQueryable = obj.isQueryable;
|
|
4952
|
+
const path_isQueryable = path + '.isQueryable';
|
|
4953
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
4954
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4875
4957
|
if (obj.isSystemDefinition !== undefined) {
|
|
4876
4958
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
4877
4959
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -5043,6 +5125,11 @@ const select$A = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
5043
5125
|
kind: 'Scalar',
|
|
5044
5126
|
required: false
|
|
5045
5127
|
},
|
|
5128
|
+
{
|
|
5129
|
+
name: 'isQueryable',
|
|
5130
|
+
kind: 'Scalar',
|
|
5131
|
+
required: false
|
|
5132
|
+
},
|
|
5046
5133
|
{
|
|
5047
5134
|
name: 'isSystemDefinition',
|
|
5048
5135
|
kind: 'Scalar',
|
|
@@ -5299,6 +5386,19 @@ function equals$l(existing, incoming) {
|
|
|
5299
5386
|
if (!(existing_id === incoming_id)) {
|
|
5300
5387
|
return false;
|
|
5301
5388
|
}
|
|
5389
|
+
const existing_isQueryable = existing.isQueryable;
|
|
5390
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
5391
|
+
// if at least one of these optionals is defined
|
|
5392
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
5393
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5394
|
+
// not equal
|
|
5395
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
5396
|
+
return false;
|
|
5397
|
+
}
|
|
5398
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
5399
|
+
return false;
|
|
5400
|
+
}
|
|
5401
|
+
}
|
|
5302
5402
|
const existing_label = existing.label;
|
|
5303
5403
|
const incoming_label = incoming.label;
|
|
5304
5404
|
// if at least one of these optionals is defined
|
|
@@ -5432,7 +5532,7 @@ function getTypeCacheKeys$f(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5432
5532
|
});
|
|
5433
5533
|
}
|
|
5434
5534
|
|
|
5435
|
-
const VERSION$k = "
|
|
5535
|
+
const VERSION$k = "b994fb51ffb78d7e6fce27437cc1bd82";
|
|
5436
5536
|
function validate$v(obj, path = 'SemanticCalculatedMeasurementOutputRepresentation') {
|
|
5437
5537
|
const v_error = (() => {
|
|
5438
5538
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5573,6 +5673,13 @@ function validate$v(obj, path = 'SemanticCalculatedMeasurementOutputRepresentati
|
|
|
5573
5673
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isOverrideBase + '" (at "' + path_isOverrideBase + '")');
|
|
5574
5674
|
}
|
|
5575
5675
|
}
|
|
5676
|
+
if (obj.isQueryable !== undefined) {
|
|
5677
|
+
const obj_isQueryable = obj.isQueryable;
|
|
5678
|
+
const path_isQueryable = path + '.isQueryable';
|
|
5679
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
5680
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
5681
|
+
}
|
|
5682
|
+
}
|
|
5576
5683
|
if (obj.isSystemDefinition !== undefined) {
|
|
5577
5684
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
5578
5685
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -5780,6 +5887,11 @@ const select$z = function SemanticCalculatedMeasurementOutputRepresentationSelec
|
|
|
5780
5887
|
kind: 'Scalar',
|
|
5781
5888
|
required: false
|
|
5782
5889
|
},
|
|
5890
|
+
{
|
|
5891
|
+
name: 'isQueryable',
|
|
5892
|
+
kind: 'Scalar',
|
|
5893
|
+
required: false
|
|
5894
|
+
},
|
|
5783
5895
|
{
|
|
5784
5896
|
name: 'isSystemDefinition',
|
|
5785
5897
|
kind: 'Scalar',
|
|
@@ -6103,6 +6215,19 @@ function equals$k(existing, incoming) {
|
|
|
6103
6215
|
if (!(existing_id === incoming_id)) {
|
|
6104
6216
|
return false;
|
|
6105
6217
|
}
|
|
6218
|
+
const existing_isQueryable = existing.isQueryable;
|
|
6219
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
6220
|
+
// if at least one of these optionals is defined
|
|
6221
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
6222
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
6223
|
+
// not equal
|
|
6224
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
6225
|
+
return false;
|
|
6226
|
+
}
|
|
6227
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
6228
|
+
return false;
|
|
6229
|
+
}
|
|
6230
|
+
}
|
|
6106
6231
|
const existing_label = existing.label;
|
|
6107
6232
|
const incoming_label = incoming.label;
|
|
6108
6233
|
// if at least one of these optionals is defined
|
|
@@ -6357,6 +6482,13 @@ function validate$u(obj, path = 'SemanticDimensionOutputRepresentation') {
|
|
|
6357
6482
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
6358
6483
|
}
|
|
6359
6484
|
}
|
|
6485
|
+
if (obj.isQueryable !== undefined) {
|
|
6486
|
+
const obj_isQueryable = obj.isQueryable;
|
|
6487
|
+
const path_isQueryable = path + '.isQueryable';
|
|
6488
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
6489
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
6490
|
+
}
|
|
6491
|
+
}
|
|
6360
6492
|
if (obj.isSystemDefinition !== undefined) {
|
|
6361
6493
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6362
6494
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -6547,6 +6679,13 @@ function validate$t(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
6547
6679
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
6548
6680
|
}
|
|
6549
6681
|
}
|
|
6682
|
+
if (obj.isQueryable !== undefined) {
|
|
6683
|
+
const obj_isQueryable = obj.isQueryable;
|
|
6684
|
+
const path_isQueryable = path + '.isQueryable';
|
|
6685
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
6686
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
6687
|
+
}
|
|
6688
|
+
}
|
|
6550
6689
|
if (obj.isSystemDefinition !== undefined) {
|
|
6551
6690
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6552
6691
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -6635,7 +6774,7 @@ function validate$t(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
6635
6774
|
return v_error === undefined ? null : v_error;
|
|
6636
6775
|
}
|
|
6637
6776
|
|
|
6638
|
-
const VERSION$j = "
|
|
6777
|
+
const VERSION$j = "7804fea5e1a3894ad9c1e89a2ce17ab9";
|
|
6639
6778
|
function validate$s(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
6640
6779
|
const v_error = (() => {
|
|
6641
6780
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -6727,6 +6866,13 @@ function validate$s(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
|
6727
6866
|
if (typeof obj_id !== 'string') {
|
|
6728
6867
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
6729
6868
|
}
|
|
6869
|
+
if (obj.isQueryable !== undefined) {
|
|
6870
|
+
const obj_isQueryable = obj.isQueryable;
|
|
6871
|
+
const path_isQueryable = path + '.isQueryable';
|
|
6872
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
6873
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
6874
|
+
}
|
|
6875
|
+
}
|
|
6730
6876
|
if (obj.isSystemDefinition !== undefined) {
|
|
6731
6877
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6732
6878
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -7168,7 +7314,7 @@ function equals$f(existing, incoming) {
|
|
|
7168
7314
|
return true;
|
|
7169
7315
|
}
|
|
7170
7316
|
|
|
7171
|
-
const VERSION$e = "
|
|
7317
|
+
const VERSION$e = "da0057405dbf52ebeb39361b8d9e3301";
|
|
7172
7318
|
function validate$n(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
7173
7319
|
const v_error = (() => {
|
|
7174
7320
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7231,6 +7377,13 @@ function validate$n(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
|
7231
7377
|
if (typeof obj_id !== 'string') {
|
|
7232
7378
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
7233
7379
|
}
|
|
7380
|
+
if (obj.isQueryable !== undefined) {
|
|
7381
|
+
const obj_isQueryable = obj.isQueryable;
|
|
7382
|
+
const path_isQueryable = path + '.isQueryable';
|
|
7383
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
7384
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
7385
|
+
}
|
|
7386
|
+
}
|
|
7234
7387
|
if (obj.isSystemDefinition !== undefined) {
|
|
7235
7388
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
7236
7389
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -7336,6 +7489,11 @@ const select$t = function SemanticGroupingOutputRepresentationSelect() {
|
|
|
7336
7489
|
name: 'id',
|
|
7337
7490
|
kind: 'Scalar'
|
|
7338
7491
|
},
|
|
7492
|
+
{
|
|
7493
|
+
name: 'isQueryable',
|
|
7494
|
+
kind: 'Scalar',
|
|
7495
|
+
required: false
|
|
7496
|
+
},
|
|
7339
7497
|
{
|
|
7340
7498
|
name: 'isSystemDefinition',
|
|
7341
7499
|
kind: 'Scalar',
|
|
@@ -7454,6 +7612,19 @@ function equals$e(existing, incoming) {
|
|
|
7454
7612
|
if (!(existing_id === incoming_id)) {
|
|
7455
7613
|
return false;
|
|
7456
7614
|
}
|
|
7615
|
+
const existing_isQueryable = existing.isQueryable;
|
|
7616
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
7617
|
+
// if at least one of these optionals is defined
|
|
7618
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
7619
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7620
|
+
// not equal
|
|
7621
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
7622
|
+
return false;
|
|
7623
|
+
}
|
|
7624
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
7625
|
+
return false;
|
|
7626
|
+
}
|
|
7627
|
+
}
|
|
7457
7628
|
const existing_label = existing.label;
|
|
7458
7629
|
const incoming_label = incoming.label;
|
|
7459
7630
|
// if at least one of these optionals is defined
|
|
@@ -7679,7 +7850,7 @@ function equals$d(existing, incoming) {
|
|
|
7679
7850
|
return true;
|
|
7680
7851
|
}
|
|
7681
7852
|
|
|
7682
|
-
const VERSION$c = "
|
|
7853
|
+
const VERSION$c = "b54e564b71d26e8ac89b5649db876f6f";
|
|
7683
7854
|
function validate$l(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
7684
7855
|
const v_error = (() => {
|
|
7685
7856
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7757,6 +7928,13 @@ function validate$l(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
|
7757
7928
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
|
|
7758
7929
|
}
|
|
7759
7930
|
}
|
|
7931
|
+
if (obj.isQueryable !== undefined) {
|
|
7932
|
+
const obj_isQueryable = obj.isQueryable;
|
|
7933
|
+
const path_isQueryable = path + '.isQueryable';
|
|
7934
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
7935
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
7936
|
+
}
|
|
7937
|
+
}
|
|
7760
7938
|
if (obj.isSystemDefinition !== undefined) {
|
|
7761
7939
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
7762
7940
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -7891,6 +8069,11 @@ const select$r = function SemanticRelationshipOutputRepresentationSelect() {
|
|
|
7891
8069
|
kind: 'Scalar',
|
|
7892
8070
|
required: false
|
|
7893
8071
|
},
|
|
8072
|
+
{
|
|
8073
|
+
name: 'isQueryable',
|
|
8074
|
+
kind: 'Scalar',
|
|
8075
|
+
required: false
|
|
8076
|
+
},
|
|
7894
8077
|
{
|
|
7895
8078
|
name: 'isSystemDefinition',
|
|
7896
8079
|
kind: 'Scalar',
|
|
@@ -8051,6 +8234,19 @@ function equals$c(existing, incoming) {
|
|
|
8051
8234
|
if (!(existing_id === incoming_id)) {
|
|
8052
8235
|
return false;
|
|
8053
8236
|
}
|
|
8237
|
+
const existing_isQueryable = existing.isQueryable;
|
|
8238
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
8239
|
+
// if at least one of these optionals is defined
|
|
8240
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
8241
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
8242
|
+
// not equal
|
|
8243
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
8244
|
+
return false;
|
|
8245
|
+
}
|
|
8246
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
8247
|
+
return false;
|
|
8248
|
+
}
|
|
8249
|
+
}
|
|
8054
8250
|
const existing_joinType = existing.joinType;
|
|
8055
8251
|
const incoming_joinType = incoming.joinType;
|
|
8056
8252
|
// if at least one of these optionals is defined
|
|
@@ -8184,7 +8380,7 @@ function getTypeCacheKeys$b(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
8184
8380
|
});
|
|
8185
8381
|
}
|
|
8186
8382
|
|
|
8187
|
-
const VERSION$b = "
|
|
8383
|
+
const VERSION$b = "35088fced8f6d5a9595954736caf0ea9";
|
|
8188
8384
|
function validate$k(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
8189
8385
|
const v_error = (() => {
|
|
8190
8386
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -8248,6 +8444,13 @@ function validate$k(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
|
8248
8444
|
if (typeof obj_id !== 'string') {
|
|
8249
8445
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
8250
8446
|
}
|
|
8447
|
+
if (obj.isQueryable !== undefined) {
|
|
8448
|
+
const obj_isQueryable = obj.isQueryable;
|
|
8449
|
+
const path_isQueryable = path + '.isQueryable';
|
|
8450
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
8451
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
8452
|
+
}
|
|
8453
|
+
}
|
|
8251
8454
|
if (obj.isSystemDefinition !== undefined) {
|
|
8252
8455
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
8253
8456
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -8362,7 +8565,7 @@ function getTypeCacheKeys$a(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
8362
8565
|
});
|
|
8363
8566
|
}
|
|
8364
8567
|
|
|
8365
|
-
const VERSION$a = "
|
|
8568
|
+
const VERSION$a = "98b8b40b3bc74aaa0644e303d378db60";
|
|
8366
8569
|
function validate$j(obj, path = 'SemanticUnionOutputRepresentation') {
|
|
8367
8570
|
const v_error = (() => {
|
|
8368
8571
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -8409,6 +8612,13 @@ function validate$j(obj, path = 'SemanticUnionOutputRepresentation') {
|
|
|
8409
8612
|
if (typeof obj_id !== 'string') {
|
|
8410
8613
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
8411
8614
|
}
|
|
8615
|
+
if (obj.isQueryable !== undefined) {
|
|
8616
|
+
const obj_isQueryable = obj.isQueryable;
|
|
8617
|
+
const path_isQueryable = path + '.isQueryable';
|
|
8618
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
8619
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
8620
|
+
}
|
|
8621
|
+
}
|
|
8412
8622
|
if (obj.label !== undefined) {
|
|
8413
8623
|
const obj_label = obj.label;
|
|
8414
8624
|
const path_label = path + '.label';
|
|
@@ -8575,6 +8785,11 @@ const select$p = function SemanticUnionOutputRepresentationSelect() {
|
|
|
8575
8785
|
name: 'id',
|
|
8576
8786
|
kind: 'Scalar'
|
|
8577
8787
|
},
|
|
8788
|
+
{
|
|
8789
|
+
name: 'isQueryable',
|
|
8790
|
+
kind: 'Scalar',
|
|
8791
|
+
required: false
|
|
8792
|
+
},
|
|
8578
8793
|
{
|
|
8579
8794
|
name: 'label',
|
|
8580
8795
|
kind: 'Scalar',
|
|
@@ -8672,6 +8887,19 @@ function equals$a(existing, incoming) {
|
|
|
8672
8887
|
if (!(existing_id === incoming_id)) {
|
|
8673
8888
|
return false;
|
|
8674
8889
|
}
|
|
8890
|
+
const existing_isQueryable = existing.isQueryable;
|
|
8891
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
8892
|
+
// if at least one of these optionals is defined
|
|
8893
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
8894
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
8895
|
+
// not equal
|
|
8896
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
8897
|
+
return false;
|
|
8898
|
+
}
|
|
8899
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
8900
|
+
return false;
|
|
8901
|
+
}
|
|
8902
|
+
}
|
|
8675
8903
|
const existing_label = existing.label;
|
|
8676
8904
|
const incoming_label = incoming.label;
|
|
8677
8905
|
// if at least one of these optionals is defined
|
|
@@ -8796,7 +9024,7 @@ function getTypeCacheKeys$9(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
8796
9024
|
}
|
|
8797
9025
|
}
|
|
8798
9026
|
|
|
8799
|
-
const VERSION$9 = "
|
|
9027
|
+
const VERSION$9 = "deed87abd43631c27a6067ac00a1a018";
|
|
8800
9028
|
function validate$i(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
8801
9029
|
const v_error = (() => {
|
|
8802
9030
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -8874,6 +9102,13 @@ function validate$i(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
|
8874
9102
|
if (typeof obj_id !== 'string') {
|
|
8875
9103
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
8876
9104
|
}
|
|
9105
|
+
if (obj.isQueryable !== undefined) {
|
|
9106
|
+
const obj_isQueryable = obj.isQueryable;
|
|
9107
|
+
const path_isQueryable = path + '.isQueryable';
|
|
9108
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
9109
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
9110
|
+
}
|
|
9111
|
+
}
|
|
8877
9112
|
if (obj.isSystemDefinition !== undefined) {
|
|
8878
9113
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
8879
9114
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -9097,6 +9332,11 @@ const select$o = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
9097
9332
|
name: 'id',
|
|
9098
9333
|
kind: 'Scalar'
|
|
9099
9334
|
},
|
|
9335
|
+
{
|
|
9336
|
+
name: 'isQueryable',
|
|
9337
|
+
kind: 'Scalar',
|
|
9338
|
+
required: false
|
|
9339
|
+
},
|
|
9100
9340
|
{
|
|
9101
9341
|
name: 'isSystemDefinition',
|
|
9102
9342
|
kind: 'Scalar',
|
|
@@ -9273,6 +9513,19 @@ function equals$9(existing, incoming) {
|
|
|
9273
9513
|
if (!(existing_id === incoming_id)) {
|
|
9274
9514
|
return false;
|
|
9275
9515
|
}
|
|
9516
|
+
const existing_isQueryable = existing.isQueryable;
|
|
9517
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
9518
|
+
// if at least one of these optionals is defined
|
|
9519
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
9520
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
9521
|
+
// not equal
|
|
9522
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
9523
|
+
return false;
|
|
9524
|
+
}
|
|
9525
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
9526
|
+
return false;
|
|
9527
|
+
}
|
|
9528
|
+
}
|
|
9276
9529
|
const existing_label = existing.label;
|
|
9277
9530
|
const incoming_label = incoming.label;
|
|
9278
9531
|
// if at least one of these optionals is defined
|
|
@@ -9537,7 +9790,7 @@ function equals$8(existing, incoming) {
|
|
|
9537
9790
|
return true;
|
|
9538
9791
|
}
|
|
9539
9792
|
|
|
9540
|
-
const VERSION$7 = "
|
|
9793
|
+
const VERSION$7 = "6e5d543fb3167341130fc5d468ef1f3b";
|
|
9541
9794
|
function validate$g(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
9542
9795
|
const v_error = (() => {
|
|
9543
9796
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -9615,6 +9868,13 @@ function validate$g(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
|
9615
9868
|
if (typeof obj_id !== 'string') {
|
|
9616
9869
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
9617
9870
|
}
|
|
9871
|
+
if (obj.isQueryable !== undefined) {
|
|
9872
|
+
const obj_isQueryable = obj.isQueryable;
|
|
9873
|
+
const path_isQueryable = path + '.isQueryable';
|
|
9874
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
9875
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
9876
|
+
}
|
|
9877
|
+
}
|
|
9618
9878
|
if (obj.isSystemDefinition !== undefined) {
|
|
9619
9879
|
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
9620
9880
|
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
@@ -9763,6 +10023,11 @@ const select$m = function SemanticParameterOutputRepresentationSelect() {
|
|
|
9763
10023
|
name: 'id',
|
|
9764
10024
|
kind: 'Scalar'
|
|
9765
10025
|
},
|
|
10026
|
+
{
|
|
10027
|
+
name: 'isQueryable',
|
|
10028
|
+
kind: 'Scalar',
|
|
10029
|
+
required: false
|
|
10030
|
+
},
|
|
9766
10031
|
{
|
|
9767
10032
|
name: 'isSystemDefinition',
|
|
9768
10033
|
kind: 'Scalar',
|
|
@@ -9929,6 +10194,19 @@ function equals$7(existing, incoming) {
|
|
|
9929
10194
|
if (!(existing_id === incoming_id)) {
|
|
9930
10195
|
return false;
|
|
9931
10196
|
}
|
|
10197
|
+
const existing_isQueryable = existing.isQueryable;
|
|
10198
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
10199
|
+
// if at least one of these optionals is defined
|
|
10200
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
10201
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
10202
|
+
// not equal
|
|
10203
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
10204
|
+
return false;
|
|
10205
|
+
}
|
|
10206
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
10207
|
+
return false;
|
|
10208
|
+
}
|
|
10209
|
+
}
|
|
9932
10210
|
const existing_label = existing.label;
|
|
9933
10211
|
const incoming_label = incoming.label;
|
|
9934
10212
|
// if at least one of these optionals is defined
|
|
@@ -10080,7 +10358,7 @@ function getTypeCacheKeys$7(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
10080
10358
|
});
|
|
10081
10359
|
}
|
|
10082
10360
|
|
|
10083
|
-
const VERSION$6 = "
|
|
10361
|
+
const VERSION$6 = "56b6e81346b63674fb571a55fe7128bc";
|
|
10084
10362
|
function validate$f(obj, path = 'SemanticModelOutputRepresentation') {
|
|
10085
10363
|
const v_error = (() => {
|
|
10086
10364
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -10211,6 +10489,20 @@ function validate$f(obj, path = 'SemanticModelOutputRepresentation') {
|
|
|
10211
10489
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isLocked + '" (at "' + path_isLocked + '")');
|
|
10212
10490
|
}
|
|
10213
10491
|
}
|
|
10492
|
+
if (obj.isPartialSdm !== undefined) {
|
|
10493
|
+
const obj_isPartialSdm = obj.isPartialSdm;
|
|
10494
|
+
const path_isPartialSdm = path + '.isPartialSdm';
|
|
10495
|
+
if (typeof obj_isPartialSdm !== 'boolean') {
|
|
10496
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isPartialSdm + '" (at "' + path_isPartialSdm + '")');
|
|
10497
|
+
}
|
|
10498
|
+
}
|
|
10499
|
+
if (obj.isQueryable !== undefined) {
|
|
10500
|
+
const obj_isQueryable = obj.isQueryable;
|
|
10501
|
+
const path_isQueryable = path + '.isQueryable';
|
|
10502
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
10503
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
10504
|
+
}
|
|
10505
|
+
}
|
|
10214
10506
|
if (obj.label !== undefined) {
|
|
10215
10507
|
const obj_label = obj.label;
|
|
10216
10508
|
const path_label = path + '.label';
|
|
@@ -10669,6 +10961,16 @@ const select$l = function SemanticModelOutputRepresentationSelect() {
|
|
|
10669
10961
|
kind: 'Scalar',
|
|
10670
10962
|
required: false
|
|
10671
10963
|
},
|
|
10964
|
+
{
|
|
10965
|
+
name: 'isPartialSdm',
|
|
10966
|
+
kind: 'Scalar',
|
|
10967
|
+
required: false
|
|
10968
|
+
},
|
|
10969
|
+
{
|
|
10970
|
+
name: 'isQueryable',
|
|
10971
|
+
kind: 'Scalar',
|
|
10972
|
+
required: false
|
|
10973
|
+
},
|
|
10672
10974
|
{
|
|
10673
10975
|
name: 'label',
|
|
10674
10976
|
kind: 'Scalar',
|
|
@@ -10802,6 +11104,19 @@ function equals$6(existing, incoming) {
|
|
|
10802
11104
|
return false;
|
|
10803
11105
|
}
|
|
10804
11106
|
}
|
|
11107
|
+
const existing_isPartialSdm = existing.isPartialSdm;
|
|
11108
|
+
const incoming_isPartialSdm = incoming.isPartialSdm;
|
|
11109
|
+
// if at least one of these optionals is defined
|
|
11110
|
+
if (existing_isPartialSdm !== undefined || incoming_isPartialSdm !== undefined) {
|
|
11111
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
11112
|
+
// not equal
|
|
11113
|
+
if (existing_isPartialSdm === undefined || incoming_isPartialSdm === undefined) {
|
|
11114
|
+
return false;
|
|
11115
|
+
}
|
|
11116
|
+
if (!(existing_isPartialSdm === incoming_isPartialSdm)) {
|
|
11117
|
+
return false;
|
|
11118
|
+
}
|
|
11119
|
+
}
|
|
10805
11120
|
const existing_apiName = existing.apiName;
|
|
10806
11121
|
const incoming_apiName = incoming.apiName;
|
|
10807
11122
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -10879,6 +11194,19 @@ function equals$6(existing, incoming) {
|
|
|
10879
11194
|
if (!(existing_id === incoming_id)) {
|
|
10880
11195
|
return false;
|
|
10881
11196
|
}
|
|
11197
|
+
const existing_isQueryable = existing.isQueryable;
|
|
11198
|
+
const incoming_isQueryable = incoming.isQueryable;
|
|
11199
|
+
// if at least one of these optionals is defined
|
|
11200
|
+
if (existing_isQueryable !== undefined || incoming_isQueryable !== undefined) {
|
|
11201
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
11202
|
+
// not equal
|
|
11203
|
+
if (existing_isQueryable === undefined || incoming_isQueryable === undefined) {
|
|
11204
|
+
return false;
|
|
11205
|
+
}
|
|
11206
|
+
if (!(existing_isQueryable === incoming_isQueryable)) {
|
|
11207
|
+
return false;
|
|
11208
|
+
}
|
|
11209
|
+
}
|
|
10882
11210
|
const existing_label = existing.label;
|
|
10883
11211
|
const incoming_label = incoming.label;
|
|
10884
11212
|
// if at least one of these optionals is defined
|
|
@@ -11616,6 +11944,7 @@ const adapterName$g = 'getSemanticModel';
|
|
|
11616
11944
|
const getSemanticModel_ConfigPropertyMetadata = [
|
|
11617
11945
|
generateParamConfigMetadata('modelApiNameOrId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
11618
11946
|
generateParamConfigMetadata('fieldName', false, 1 /* QueryParameter */, 0 /* String */),
|
|
11947
|
+
generateParamConfigMetadata('fineGrainSecurity', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
11619
11948
|
generateParamConfigMetadata('includeModelContent', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
11620
11949
|
generateParamConfigMetadata('includeTableKeys', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
11621
11950
|
];
|
|
@@ -12246,7 +12575,7 @@ function validate$b(obj, path = 'SemanticGoalStatusConditionOutputRepresentation
|
|
|
12246
12575
|
return v_error === undefined ? null : v_error;
|
|
12247
12576
|
}
|
|
12248
12577
|
|
|
12249
|
-
const VERSION$4 = "
|
|
12578
|
+
const VERSION$4 = "8ade9728ba6d188b7fa9237cf944576e";
|
|
12250
12579
|
function validate$a(obj, path = 'SemanticGoalOutputRepresentation') {
|
|
12251
12580
|
const v_error = (() => {
|
|
12252
12581
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -12306,6 +12635,13 @@ function validate$a(obj, path = 'SemanticGoalOutputRepresentation') {
|
|
|
12306
12635
|
if (typeof obj_id !== 'string') {
|
|
12307
12636
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
12308
12637
|
}
|
|
12638
|
+
if (obj.isQueryable !== undefined) {
|
|
12639
|
+
const obj_isQueryable = obj.isQueryable;
|
|
12640
|
+
const path_isQueryable = path + '.isQueryable';
|
|
12641
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
12642
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
12643
|
+
}
|
|
12644
|
+
}
|
|
12309
12645
|
if (obj.label !== undefined) {
|
|
12310
12646
|
const obj_label = obj.label;
|
|
12311
12647
|
const path_label = path + '.label';
|
|
@@ -12993,7 +13329,7 @@ function validate$6(obj, path = 'SemanticTimeRangeOutputRepresentation') {
|
|
|
12993
13329
|
return v_error === undefined ? null : v_error;
|
|
12994
13330
|
}
|
|
12995
13331
|
|
|
12996
|
-
const VERSION$3 = "
|
|
13332
|
+
const VERSION$3 = "aa72fa1a282334d9eedca9b6500fb0d9";
|
|
12997
13333
|
function validate$5(obj, path = 'SemanticSubMetricOutputRepresentation') {
|
|
12998
13334
|
const v_error = (() => {
|
|
12999
13335
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -13074,6 +13410,13 @@ function validate$5(obj, path = 'SemanticSubMetricOutputRepresentation') {
|
|
|
13074
13410
|
if (typeof obj_id !== 'string') {
|
|
13075
13411
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
13076
13412
|
}
|
|
13413
|
+
if (obj.isQueryable !== undefined) {
|
|
13414
|
+
const obj_isQueryable = obj.isQueryable;
|
|
13415
|
+
const path_isQueryable = path + '.isQueryable';
|
|
13416
|
+
if (typeof obj_isQueryable !== 'string') {
|
|
13417
|
+
return new TypeError('Expected "string" but received "' + typeof obj_isQueryable + '" (at "' + path_isQueryable + '")');
|
|
13418
|
+
}
|
|
13419
|
+
}
|
|
13077
13420
|
if (obj.label !== undefined) {
|
|
13078
13421
|
const obj_label = obj.label;
|
|
13079
13422
|
const path_label = path + '.label';
|