@salesforce/lds-adapters-cdp-semantic-authoring 1.354.0-dev2 → 1.354.0-dev4
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 +415 -9
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDimensionOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticGroupingOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMetricOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts +7 -1
- package/package.json +3 -3
- package/sfdc/index.js +416 -10
- package/src/raml/api.raml +110 -0
|
@@ -704,7 +704,7 @@ function equals$w(existing, incoming) {
|
|
|
704
704
|
return true;
|
|
705
705
|
}
|
|
706
706
|
|
|
707
|
-
const VERSION$v = "
|
|
707
|
+
const VERSION$v = "a9c4c21f041ebd0ad373f8e53e345e6a";
|
|
708
708
|
function validate$14(obj, path = 'SemanticMetricOutputRepresentation') {
|
|
709
709
|
const v_error = (() => {
|
|
710
710
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -816,6 +816,13 @@ function validate$14(obj, path = 'SemanticMetricOutputRepresentation') {
|
|
|
816
816
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isCumulative + '" (at "' + path_isCumulative + '")');
|
|
817
817
|
}
|
|
818
818
|
}
|
|
819
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
820
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
821
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
822
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
823
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
824
|
+
}
|
|
825
|
+
}
|
|
819
826
|
if (obj.label !== undefined) {
|
|
820
827
|
const obj_label = obj.label;
|
|
821
828
|
const path_label = path + '.label';
|
|
@@ -871,6 +878,13 @@ function validate$14(obj, path = 'SemanticMetricOutputRepresentation') {
|
|
|
871
878
|
}
|
|
872
879
|
}
|
|
873
880
|
}
|
|
881
|
+
if (obj.unmapped !== undefined) {
|
|
882
|
+
const obj_unmapped = obj.unmapped;
|
|
883
|
+
const path_unmapped = path + '.unmapped';
|
|
884
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
885
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
886
|
+
}
|
|
887
|
+
}
|
|
874
888
|
})();
|
|
875
889
|
return v_error === undefined ? null : v_error;
|
|
876
890
|
}
|
|
@@ -962,6 +976,11 @@ const select$M = function SemanticMetricOutputRepresentationSelect() {
|
|
|
962
976
|
kind: 'Scalar',
|
|
963
977
|
required: false
|
|
964
978
|
},
|
|
979
|
+
{
|
|
980
|
+
name: 'isSystemDefinition',
|
|
981
|
+
kind: 'Scalar',
|
|
982
|
+
required: false
|
|
983
|
+
},
|
|
965
984
|
{
|
|
966
985
|
name: 'label',
|
|
967
986
|
kind: 'Scalar',
|
|
@@ -994,6 +1013,11 @@ const select$M = function SemanticMetricOutputRepresentationSelect() {
|
|
|
994
1013
|
kind: 'Scalar',
|
|
995
1014
|
plural: true,
|
|
996
1015
|
required: false
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
name: 'unmapped',
|
|
1019
|
+
kind: 'Scalar',
|
|
1020
|
+
required: false
|
|
997
1021
|
}
|
|
998
1022
|
]
|
|
999
1023
|
};
|
|
@@ -1012,6 +1036,32 @@ function equals$v(existing, incoming) {
|
|
|
1012
1036
|
return false;
|
|
1013
1037
|
}
|
|
1014
1038
|
}
|
|
1039
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
1040
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
1041
|
+
// if at least one of these optionals is defined
|
|
1042
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
1043
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
1044
|
+
// not equal
|
|
1045
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
1046
|
+
return false;
|
|
1047
|
+
}
|
|
1048
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
1049
|
+
return false;
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1052
|
+
const existing_unmapped = existing.unmapped;
|
|
1053
|
+
const incoming_unmapped = incoming.unmapped;
|
|
1054
|
+
// if at least one of these optionals is defined
|
|
1055
|
+
if (existing_unmapped !== undefined || incoming_unmapped !== undefined) {
|
|
1056
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
1057
|
+
// not equal
|
|
1058
|
+
if (existing_unmapped === undefined || incoming_unmapped === undefined) {
|
|
1059
|
+
return false;
|
|
1060
|
+
}
|
|
1061
|
+
if (!(existing_unmapped === incoming_unmapped)) {
|
|
1062
|
+
return false;
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1015
1065
|
const existing_aggregationType = existing.aggregationType;
|
|
1016
1066
|
const incoming_aggregationType = incoming.aggregationType;
|
|
1017
1067
|
// if at least one of these optionals is defined
|
|
@@ -4586,7 +4636,7 @@ function equals$o(existing, incoming) {
|
|
|
4586
4636
|
return true;
|
|
4587
4637
|
}
|
|
4588
4638
|
|
|
4589
|
-
const VERSION$n = "
|
|
4639
|
+
const VERSION$n = "2ad1227d8439240d2dfe130b651f8a81";
|
|
4590
4640
|
function validate$x(obj, path = 'SemanticCalculatedDimensionOutputRepresentation') {
|
|
4591
4641
|
const v_error = (() => {
|
|
4592
4642
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4706,6 +4756,13 @@ function validate$x(obj, path = 'SemanticCalculatedDimensionOutputRepresentation
|
|
|
4706
4756
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isOverrideBase + '" (at "' + path_isOverrideBase + '")');
|
|
4707
4757
|
}
|
|
4708
4758
|
}
|
|
4759
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
4760
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
4761
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
4762
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
4763
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
4764
|
+
}
|
|
4765
|
+
}
|
|
4709
4766
|
if (obj.isVisible !== undefined) {
|
|
4710
4767
|
const obj_isVisible = obj.isVisible;
|
|
4711
4768
|
const path_isVisible = path + '.isVisible';
|
|
@@ -4762,6 +4819,13 @@ function validate$x(obj, path = 'SemanticCalculatedDimensionOutputRepresentation
|
|
|
4762
4819
|
return new TypeError('Expected "string" but received "' + typeof obj_syntax + '" (at "' + path_syntax + '")');
|
|
4763
4820
|
}
|
|
4764
4821
|
}
|
|
4822
|
+
if (obj.unmapped !== undefined) {
|
|
4823
|
+
const obj_unmapped = obj.unmapped;
|
|
4824
|
+
const path_unmapped = path + '.unmapped';
|
|
4825
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
4826
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
4827
|
+
}
|
|
4828
|
+
}
|
|
4765
4829
|
})();
|
|
4766
4830
|
return v_error === undefined ? null : v_error;
|
|
4767
4831
|
}
|
|
@@ -4863,6 +4927,11 @@ const select$C = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
4863
4927
|
kind: 'Scalar',
|
|
4864
4928
|
required: false
|
|
4865
4929
|
},
|
|
4930
|
+
{
|
|
4931
|
+
name: 'isSystemDefinition',
|
|
4932
|
+
kind: 'Scalar',
|
|
4933
|
+
required: false
|
|
4934
|
+
},
|
|
4866
4935
|
{
|
|
4867
4936
|
name: 'isVisible',
|
|
4868
4937
|
kind: 'Scalar',
|
|
@@ -4902,6 +4971,11 @@ const select$C = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
4902
4971
|
name: 'syntax',
|
|
4903
4972
|
kind: 'Scalar',
|
|
4904
4973
|
required: false
|
|
4974
|
+
},
|
|
4975
|
+
{
|
|
4976
|
+
name: 'unmapped',
|
|
4977
|
+
kind: 'Scalar',
|
|
4978
|
+
required: false
|
|
4905
4979
|
}
|
|
4906
4980
|
]
|
|
4907
4981
|
};
|
|
@@ -4920,6 +4994,19 @@ function equals$n(existing, incoming) {
|
|
|
4920
4994
|
return false;
|
|
4921
4995
|
}
|
|
4922
4996
|
}
|
|
4997
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
4998
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
4999
|
+
// if at least one of these optionals is defined
|
|
5000
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
5001
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5002
|
+
// not equal
|
|
5003
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
5004
|
+
return false;
|
|
5005
|
+
}
|
|
5006
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
5007
|
+
return false;
|
|
5008
|
+
}
|
|
5009
|
+
}
|
|
4923
5010
|
const existing_isVisible = existing.isVisible;
|
|
4924
5011
|
const incoming_isVisible = incoming.isVisible;
|
|
4925
5012
|
// if at least one of these optionals is defined
|
|
@@ -4933,6 +5020,19 @@ function equals$n(existing, incoming) {
|
|
|
4933
5020
|
return false;
|
|
4934
5021
|
}
|
|
4935
5022
|
}
|
|
5023
|
+
const existing_unmapped = existing.unmapped;
|
|
5024
|
+
const incoming_unmapped = incoming.unmapped;
|
|
5025
|
+
// if at least one of these optionals is defined
|
|
5026
|
+
if (existing_unmapped !== undefined || incoming_unmapped !== undefined) {
|
|
5027
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5028
|
+
// not equal
|
|
5029
|
+
if (existing_unmapped === undefined || incoming_unmapped === undefined) {
|
|
5030
|
+
return false;
|
|
5031
|
+
}
|
|
5032
|
+
if (!(existing_unmapped === incoming_unmapped)) {
|
|
5033
|
+
return false;
|
|
5034
|
+
}
|
|
5035
|
+
}
|
|
4936
5036
|
const existing_decimalPlace = existing.decimalPlace;
|
|
4937
5037
|
const incoming_decimalPlace = incoming.decimalPlace;
|
|
4938
5038
|
// if at least one of these optionals is defined
|
|
@@ -5216,7 +5316,7 @@ function getTypeCacheKeys$f(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5216
5316
|
});
|
|
5217
5317
|
}
|
|
5218
5318
|
|
|
5219
|
-
const VERSION$m = "
|
|
5319
|
+
const VERSION$m = "f905fd3431f6d5d1f883c03af48eb1b3";
|
|
5220
5320
|
function validate$w(obj, path = 'SemanticCalculatedMeasurementOutputRepresentation') {
|
|
5221
5321
|
const v_error = (() => {
|
|
5222
5322
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5357,6 +5457,13 @@ function validate$w(obj, path = 'SemanticCalculatedMeasurementOutputRepresentati
|
|
|
5357
5457
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isOverrideBase + '" (at "' + path_isOverrideBase + '")');
|
|
5358
5458
|
}
|
|
5359
5459
|
}
|
|
5460
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
5461
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
5462
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
5463
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
5464
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
5465
|
+
}
|
|
5466
|
+
}
|
|
5360
5467
|
if (obj.isVisible !== undefined) {
|
|
5361
5468
|
const obj_isVisible = obj.isVisible;
|
|
5362
5469
|
const path_isVisible = path + '.isVisible';
|
|
@@ -5434,6 +5541,13 @@ function validate$w(obj, path = 'SemanticCalculatedMeasurementOutputRepresentati
|
|
|
5434
5541
|
return new TypeError('Expected "string" but received "' + typeof obj_totalAggregationType + '" (at "' + path_totalAggregationType + '")');
|
|
5435
5542
|
}
|
|
5436
5543
|
}
|
|
5544
|
+
if (obj.unmapped !== undefined) {
|
|
5545
|
+
const obj_unmapped = obj.unmapped;
|
|
5546
|
+
const path_unmapped = path + '.unmapped';
|
|
5547
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
5548
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
5549
|
+
}
|
|
5550
|
+
}
|
|
5437
5551
|
})();
|
|
5438
5552
|
return v_error === undefined ? null : v_error;
|
|
5439
5553
|
}
|
|
@@ -5550,6 +5664,11 @@ const select$B = function SemanticCalculatedMeasurementOutputRepresentationSelec
|
|
|
5550
5664
|
kind: 'Scalar',
|
|
5551
5665
|
required: false
|
|
5552
5666
|
},
|
|
5667
|
+
{
|
|
5668
|
+
name: 'isSystemDefinition',
|
|
5669
|
+
kind: 'Scalar',
|
|
5670
|
+
required: false
|
|
5671
|
+
},
|
|
5553
5672
|
{
|
|
5554
5673
|
name: 'isVisible',
|
|
5555
5674
|
kind: 'Scalar',
|
|
@@ -5604,6 +5723,11 @@ const select$B = function SemanticCalculatedMeasurementOutputRepresentationSelec
|
|
|
5604
5723
|
name: 'totalAggregationType',
|
|
5605
5724
|
kind: 'Scalar',
|
|
5606
5725
|
required: false
|
|
5726
|
+
},
|
|
5727
|
+
{
|
|
5728
|
+
name: 'unmapped',
|
|
5729
|
+
kind: 'Scalar',
|
|
5730
|
+
required: false
|
|
5607
5731
|
}
|
|
5608
5732
|
]
|
|
5609
5733
|
};
|
|
@@ -5635,6 +5759,19 @@ function equals$m(existing, incoming) {
|
|
|
5635
5759
|
return false;
|
|
5636
5760
|
}
|
|
5637
5761
|
}
|
|
5762
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
5763
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
5764
|
+
// if at least one of these optionals is defined
|
|
5765
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
5766
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5767
|
+
// not equal
|
|
5768
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
5769
|
+
return false;
|
|
5770
|
+
}
|
|
5771
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
5772
|
+
return false;
|
|
5773
|
+
}
|
|
5774
|
+
}
|
|
5638
5775
|
const existing_isVisible = existing.isVisible;
|
|
5639
5776
|
const incoming_isVisible = incoming.isVisible;
|
|
5640
5777
|
// if at least one of these optionals is defined
|
|
@@ -5661,6 +5798,19 @@ function equals$m(existing, incoming) {
|
|
|
5661
5798
|
return false;
|
|
5662
5799
|
}
|
|
5663
5800
|
}
|
|
5801
|
+
const existing_unmapped = existing.unmapped;
|
|
5802
|
+
const incoming_unmapped = incoming.unmapped;
|
|
5803
|
+
// if at least one of these optionals is defined
|
|
5804
|
+
if (existing_unmapped !== undefined || incoming_unmapped !== undefined) {
|
|
5805
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5806
|
+
// not equal
|
|
5807
|
+
if (existing_unmapped === undefined || incoming_unmapped === undefined) {
|
|
5808
|
+
return false;
|
|
5809
|
+
}
|
|
5810
|
+
if (!(existing_unmapped === incoming_unmapped)) {
|
|
5811
|
+
return false;
|
|
5812
|
+
}
|
|
5813
|
+
}
|
|
5664
5814
|
const existing_decimalPlace = existing.decimalPlace;
|
|
5665
5815
|
const incoming_decimalPlace = incoming.decimalPlace;
|
|
5666
5816
|
// if at least one of these optionals is defined
|
|
@@ -6091,6 +6241,13 @@ function validate$v(obj, path = 'SemanticDimensionOutputRepresentation') {
|
|
|
6091
6241
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
6092
6242
|
}
|
|
6093
6243
|
}
|
|
6244
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
6245
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6246
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
6247
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
6248
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
6249
|
+
}
|
|
6250
|
+
}
|
|
6094
6251
|
if (obj.isVisible !== undefined) {
|
|
6095
6252
|
const obj_isVisible = obj.isVisible;
|
|
6096
6253
|
const path_isVisible = path + '.isVisible';
|
|
@@ -6147,6 +6304,13 @@ function validate$v(obj, path = 'SemanticDimensionOutputRepresentation') {
|
|
|
6147
6304
|
return new TypeError('Expected "string" but received "' + typeof obj_storageDataType + '" (at "' + path_storageDataType + '")');
|
|
6148
6305
|
}
|
|
6149
6306
|
}
|
|
6307
|
+
if (obj.unmapped !== undefined) {
|
|
6308
|
+
const obj_unmapped = obj.unmapped;
|
|
6309
|
+
const path_unmapped = path + '.unmapped';
|
|
6310
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
6311
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
6312
|
+
}
|
|
6313
|
+
}
|
|
6150
6314
|
})();
|
|
6151
6315
|
return v_error === undefined ? null : v_error;
|
|
6152
6316
|
}
|
|
@@ -6267,6 +6431,13 @@ function validate$u(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
6267
6431
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isPrimaryKey + '" (at "' + path_isPrimaryKey + '")');
|
|
6268
6432
|
}
|
|
6269
6433
|
}
|
|
6434
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
6435
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6436
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
6437
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
6438
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
6439
|
+
}
|
|
6440
|
+
}
|
|
6270
6441
|
if (obj.isVisible !== undefined) {
|
|
6271
6442
|
const obj_isVisible = obj.isVisible;
|
|
6272
6443
|
const path_isVisible = path + '.isVisible';
|
|
@@ -6337,11 +6508,18 @@ function validate$u(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
6337
6508
|
return new TypeError('Expected "string" but received "' + typeof obj_storageDataType + '" (at "' + path_storageDataType + '")');
|
|
6338
6509
|
}
|
|
6339
6510
|
}
|
|
6511
|
+
if (obj.unmapped !== undefined) {
|
|
6512
|
+
const obj_unmapped = obj.unmapped;
|
|
6513
|
+
const path_unmapped = path + '.unmapped';
|
|
6514
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
6515
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
6516
|
+
}
|
|
6517
|
+
}
|
|
6340
6518
|
})();
|
|
6341
6519
|
return v_error === undefined ? null : v_error;
|
|
6342
6520
|
}
|
|
6343
6521
|
|
|
6344
|
-
const VERSION$l = "
|
|
6522
|
+
const VERSION$l = "c33583da925793f049a2e6e5269d7846";
|
|
6345
6523
|
function validate$t(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
6346
6524
|
const v_error = (() => {
|
|
6347
6525
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -6433,6 +6611,13 @@ function validate$t(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
|
6433
6611
|
if (typeof obj_id !== 'string') {
|
|
6434
6612
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
6435
6613
|
}
|
|
6614
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
6615
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
6616
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
6617
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
6618
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
6619
|
+
}
|
|
6620
|
+
}
|
|
6436
6621
|
if (obj.label !== undefined) {
|
|
6437
6622
|
const obj_label = obj.label;
|
|
6438
6623
|
const path_label = path + '.label';
|
|
@@ -6523,6 +6708,13 @@ function validate$t(obj, path = 'SemanticDataObjectOutputRepresentation') {
|
|
|
6523
6708
|
return new TypeError('Expected "string" but received "' + typeof obj_tableType + '" (at "' + path_tableType + '")');
|
|
6524
6709
|
}
|
|
6525
6710
|
}
|
|
6711
|
+
if (obj.unmapped !== undefined) {
|
|
6712
|
+
const obj_unmapped = obj.unmapped;
|
|
6713
|
+
const path_unmapped = path + '.unmapped';
|
|
6714
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
6715
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
6716
|
+
}
|
|
6717
|
+
}
|
|
6526
6718
|
})();
|
|
6527
6719
|
return v_error === undefined ? null : v_error;
|
|
6528
6720
|
}
|
|
@@ -6853,7 +7045,7 @@ function equals$h(existing, incoming) {
|
|
|
6853
7045
|
return true;
|
|
6854
7046
|
}
|
|
6855
7047
|
|
|
6856
|
-
const VERSION$g = "
|
|
7048
|
+
const VERSION$g = "5ea5deda92fee8aa624509290ef6cf1c";
|
|
6857
7049
|
function validate$o(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
6858
7050
|
const v_error = (() => {
|
|
6859
7051
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -6916,6 +7108,13 @@ function validate$o(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
|
6916
7108
|
if (typeof obj_id !== 'string') {
|
|
6917
7109
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
6918
7110
|
}
|
|
7111
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
7112
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
7113
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
7114
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
7115
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
7116
|
+
}
|
|
7117
|
+
}
|
|
6919
7118
|
if (obj.label !== undefined) {
|
|
6920
7119
|
const obj_label = obj.label;
|
|
6921
7120
|
const path_label = path + '.label';
|
|
@@ -6942,6 +7141,13 @@ function validate$o(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
|
6942
7141
|
if (typeof obj_type !== 'string') {
|
|
6943
7142
|
return new TypeError('Expected "string" but received "' + typeof obj_type + '" (at "' + path_type + '")');
|
|
6944
7143
|
}
|
|
7144
|
+
if (obj.unmapped !== undefined) {
|
|
7145
|
+
const obj_unmapped = obj.unmapped;
|
|
7146
|
+
const path_unmapped = path + '.unmapped';
|
|
7147
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
7148
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
7149
|
+
}
|
|
7150
|
+
}
|
|
6945
7151
|
})();
|
|
6946
7152
|
return v_error === undefined ? null : v_error;
|
|
6947
7153
|
}
|
|
@@ -7007,6 +7213,11 @@ const select$v = function SemanticGroupingOutputRepresentationSelect() {
|
|
|
7007
7213
|
name: 'id',
|
|
7008
7214
|
kind: 'Scalar'
|
|
7009
7215
|
},
|
|
7216
|
+
{
|
|
7217
|
+
name: 'isSystemDefinition',
|
|
7218
|
+
kind: 'Scalar',
|
|
7219
|
+
required: false
|
|
7220
|
+
},
|
|
7010
7221
|
{
|
|
7011
7222
|
name: 'label',
|
|
7012
7223
|
kind: 'Scalar',
|
|
@@ -7025,11 +7236,42 @@ const select$v = function SemanticGroupingOutputRepresentationSelect() {
|
|
|
7025
7236
|
{
|
|
7026
7237
|
name: 'type',
|
|
7027
7238
|
kind: 'Scalar'
|
|
7239
|
+
},
|
|
7240
|
+
{
|
|
7241
|
+
name: 'unmapped',
|
|
7242
|
+
kind: 'Scalar',
|
|
7243
|
+
required: false
|
|
7028
7244
|
}
|
|
7029
7245
|
]
|
|
7030
7246
|
};
|
|
7031
7247
|
};
|
|
7032
7248
|
function equals$g(existing, incoming) {
|
|
7249
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
7250
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
7251
|
+
// if at least one of these optionals is defined
|
|
7252
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
7253
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7254
|
+
// not equal
|
|
7255
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
7256
|
+
return false;
|
|
7257
|
+
}
|
|
7258
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
7259
|
+
return false;
|
|
7260
|
+
}
|
|
7261
|
+
}
|
|
7262
|
+
const existing_unmapped = existing.unmapped;
|
|
7263
|
+
const incoming_unmapped = incoming.unmapped;
|
|
7264
|
+
// if at least one of these optionals is defined
|
|
7265
|
+
if (existing_unmapped !== undefined || incoming_unmapped !== undefined) {
|
|
7266
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7267
|
+
// not equal
|
|
7268
|
+
if (existing_unmapped === undefined || incoming_unmapped === undefined) {
|
|
7269
|
+
return false;
|
|
7270
|
+
}
|
|
7271
|
+
if (!(existing_unmapped === incoming_unmapped)) {
|
|
7272
|
+
return false;
|
|
7273
|
+
}
|
|
7274
|
+
}
|
|
7033
7275
|
const existing_apiName = existing.apiName;
|
|
7034
7276
|
const incoming_apiName = incoming.apiName;
|
|
7035
7277
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -7314,7 +7556,7 @@ function equals$f(existing, incoming) {
|
|
|
7314
7556
|
return true;
|
|
7315
7557
|
}
|
|
7316
7558
|
|
|
7317
|
-
const VERSION$e = "
|
|
7559
|
+
const VERSION$e = "8c02af844319b9d5bd1c08e30e3ca8dd";
|
|
7318
7560
|
function validate$m(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
7319
7561
|
const v_error = (() => {
|
|
7320
7562
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7392,6 +7634,13 @@ function validate$m(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
|
7392
7634
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
|
|
7393
7635
|
}
|
|
7394
7636
|
}
|
|
7637
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
7638
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
7639
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
7640
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
7641
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
7642
|
+
}
|
|
7643
|
+
}
|
|
7395
7644
|
if (obj.joinType !== undefined) {
|
|
7396
7645
|
const obj_joinType = obj.joinType;
|
|
7397
7646
|
const path_joinType = path + '.joinType';
|
|
@@ -7441,6 +7690,13 @@ function validate$m(obj, path = 'SemanticRelationshipOutputRepresentation') {
|
|
|
7441
7690
|
return new TypeError('Expected "string" but received "' + typeof obj_rightSemanticDefinitionApiName + '" (at "' + path_rightSemanticDefinitionApiName + '")');
|
|
7442
7691
|
}
|
|
7443
7692
|
}
|
|
7693
|
+
if (obj.unmapped !== undefined) {
|
|
7694
|
+
const obj_unmapped = obj.unmapped;
|
|
7695
|
+
const path_unmapped = path + '.unmapped';
|
|
7696
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
7697
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
7698
|
+
}
|
|
7699
|
+
}
|
|
7444
7700
|
})();
|
|
7445
7701
|
return v_error === undefined ? null : v_error;
|
|
7446
7702
|
}
|
|
@@ -7512,6 +7768,11 @@ const select$t = function SemanticRelationshipOutputRepresentationSelect() {
|
|
|
7512
7768
|
kind: 'Scalar',
|
|
7513
7769
|
required: false
|
|
7514
7770
|
},
|
|
7771
|
+
{
|
|
7772
|
+
name: 'isSystemDefinition',
|
|
7773
|
+
kind: 'Scalar',
|
|
7774
|
+
required: false
|
|
7775
|
+
},
|
|
7515
7776
|
{
|
|
7516
7777
|
name: 'joinType',
|
|
7517
7778
|
kind: 'Scalar',
|
|
@@ -7546,6 +7807,11 @@ const select$t = function SemanticRelationshipOutputRepresentationSelect() {
|
|
|
7546
7807
|
name: 'rightSemanticDefinitionApiName',
|
|
7547
7808
|
kind: 'Scalar',
|
|
7548
7809
|
required: false
|
|
7810
|
+
},
|
|
7811
|
+
{
|
|
7812
|
+
name: 'unmapped',
|
|
7813
|
+
kind: 'Scalar',
|
|
7814
|
+
required: false
|
|
7549
7815
|
}
|
|
7550
7816
|
]
|
|
7551
7817
|
};
|
|
@@ -7564,6 +7830,32 @@ function equals$e(existing, incoming) {
|
|
|
7564
7830
|
return false;
|
|
7565
7831
|
}
|
|
7566
7832
|
}
|
|
7833
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
7834
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
7835
|
+
// if at least one of these optionals is defined
|
|
7836
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
7837
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7838
|
+
// not equal
|
|
7839
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
7840
|
+
return false;
|
|
7841
|
+
}
|
|
7842
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
7843
|
+
return false;
|
|
7844
|
+
}
|
|
7845
|
+
}
|
|
7846
|
+
const existing_unmapped = existing.unmapped;
|
|
7847
|
+
const incoming_unmapped = incoming.unmapped;
|
|
7848
|
+
// if at least one of these optionals is defined
|
|
7849
|
+
if (existing_unmapped !== undefined || incoming_unmapped !== undefined) {
|
|
7850
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7851
|
+
// not equal
|
|
7852
|
+
if (existing_unmapped === undefined || incoming_unmapped === undefined) {
|
|
7853
|
+
return false;
|
|
7854
|
+
}
|
|
7855
|
+
if (!(existing_unmapped === incoming_unmapped)) {
|
|
7856
|
+
return false;
|
|
7857
|
+
}
|
|
7858
|
+
}
|
|
7567
7859
|
const existing_apiName = existing.apiName;
|
|
7568
7860
|
const incoming_apiName = incoming.apiName;
|
|
7569
7861
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -7769,7 +8061,7 @@ function getTypeCacheKeys$b(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
7769
8061
|
});
|
|
7770
8062
|
}
|
|
7771
8063
|
|
|
7772
|
-
const VERSION$d = "
|
|
8064
|
+
const VERSION$d = "fddfb9284fc64c70f7d0debf4af30c95";
|
|
7773
8065
|
function validate$l(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
7774
8066
|
const v_error = (() => {
|
|
7775
8067
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7833,6 +8125,13 @@ function validate$l(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
|
7833
8125
|
if (typeof obj_id !== 'string') {
|
|
7834
8126
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
7835
8127
|
}
|
|
8128
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
8129
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
8130
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
8131
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
8132
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
8133
|
+
}
|
|
8134
|
+
}
|
|
7836
8135
|
if (obj.label !== undefined) {
|
|
7837
8136
|
const obj_label = obj.label;
|
|
7838
8137
|
const path_label = path + '.label';
|
|
@@ -7881,6 +8180,13 @@ function validate$l(obj, path = 'SemanticMappedFieldOutputRepresentation') {
|
|
|
7881
8180
|
return new TypeError(message);
|
|
7882
8181
|
}
|
|
7883
8182
|
}
|
|
8183
|
+
if (obj.unmapped !== undefined) {
|
|
8184
|
+
const obj_unmapped = obj.unmapped;
|
|
8185
|
+
const path_unmapped = path + '.unmapped';
|
|
8186
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
8187
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
8188
|
+
}
|
|
8189
|
+
}
|
|
7884
8190
|
})();
|
|
7885
8191
|
return v_error === undefined ? null : v_error;
|
|
7886
8192
|
}
|
|
@@ -8367,7 +8673,7 @@ function getTypeCacheKeys$9(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
8367
8673
|
}
|
|
8368
8674
|
}
|
|
8369
8675
|
|
|
8370
|
-
const VERSION$b = "
|
|
8676
|
+
const VERSION$b = "5056fdb7575699f2bc25f1d504ec499a";
|
|
8371
8677
|
function validate$j(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
8372
8678
|
const v_error = (() => {
|
|
8373
8679
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -8445,6 +8751,13 @@ function validate$j(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
|
8445
8751
|
if (typeof obj_id !== 'string') {
|
|
8446
8752
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
8447
8753
|
}
|
|
8754
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
8755
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
8756
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
8757
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
8758
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
8759
|
+
}
|
|
8760
|
+
}
|
|
8448
8761
|
if (obj.label !== undefined) {
|
|
8449
8762
|
const obj_label = obj.label;
|
|
8450
8763
|
const path_label = path + '.label';
|
|
@@ -8522,6 +8835,13 @@ function validate$j(obj, path = 'SemanticLogicalViewOutputRepresentation') {
|
|
|
8522
8835
|
return new TypeError('Expected "string" but received "' + typeof obj_tableType + '" (at "' + path_tableType + '")');
|
|
8523
8836
|
}
|
|
8524
8837
|
}
|
|
8838
|
+
if (obj.unmapped !== undefined) {
|
|
8839
|
+
const obj_unmapped = obj.unmapped;
|
|
8840
|
+
const path_unmapped = path + '.unmapped';
|
|
8841
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
8842
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
8843
|
+
}
|
|
8844
|
+
}
|
|
8525
8845
|
})();
|
|
8526
8846
|
return v_error === undefined ? null : v_error;
|
|
8527
8847
|
}
|
|
@@ -8647,6 +8967,11 @@ const select$q = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
8647
8967
|
name: 'id',
|
|
8648
8968
|
kind: 'Scalar'
|
|
8649
8969
|
},
|
|
8970
|
+
{
|
|
8971
|
+
name: 'isSystemDefinition',
|
|
8972
|
+
kind: 'Scalar',
|
|
8973
|
+
required: false
|
|
8974
|
+
},
|
|
8650
8975
|
{
|
|
8651
8976
|
name: 'label',
|
|
8652
8977
|
kind: 'Scalar',
|
|
@@ -8692,11 +9017,42 @@ const select$q = function SemanticLogicalViewOutputRepresentationSelect() {
|
|
|
8692
9017
|
name: 'tableType',
|
|
8693
9018
|
kind: 'Scalar',
|
|
8694
9019
|
required: false
|
|
9020
|
+
},
|
|
9021
|
+
{
|
|
9022
|
+
name: 'unmapped',
|
|
9023
|
+
kind: 'Scalar',
|
|
9024
|
+
required: false
|
|
8695
9025
|
}
|
|
8696
9026
|
]
|
|
8697
9027
|
};
|
|
8698
9028
|
};
|
|
8699
9029
|
function equals$b(existing, incoming) {
|
|
9030
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
9031
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
9032
|
+
// if at least one of these optionals is defined
|
|
9033
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
9034
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
9035
|
+
// not equal
|
|
9036
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
9037
|
+
return false;
|
|
9038
|
+
}
|
|
9039
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
9040
|
+
return false;
|
|
9041
|
+
}
|
|
9042
|
+
}
|
|
9043
|
+
const existing_unmapped = existing.unmapped;
|
|
9044
|
+
const incoming_unmapped = incoming.unmapped;
|
|
9045
|
+
// if at least one of these optionals is defined
|
|
9046
|
+
if (existing_unmapped !== undefined || incoming_unmapped !== undefined) {
|
|
9047
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
9048
|
+
// not equal
|
|
9049
|
+
if (existing_unmapped === undefined || incoming_unmapped === undefined) {
|
|
9050
|
+
return false;
|
|
9051
|
+
}
|
|
9052
|
+
if (!(existing_unmapped === incoming_unmapped)) {
|
|
9053
|
+
return false;
|
|
9054
|
+
}
|
|
9055
|
+
}
|
|
8700
9056
|
const existing_apiName = existing.apiName;
|
|
8701
9057
|
const incoming_apiName = incoming.apiName;
|
|
8702
9058
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -9033,7 +9389,7 @@ function equals$a(existing, incoming) {
|
|
|
9033
9389
|
return true;
|
|
9034
9390
|
}
|
|
9035
9391
|
|
|
9036
|
-
const VERSION$9 = "
|
|
9392
|
+
const VERSION$9 = "1463471c69296e6727623faee2cbfe0c";
|
|
9037
9393
|
function validate$h(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
9038
9394
|
const v_error = (() => {
|
|
9039
9395
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -9111,6 +9467,13 @@ function validate$h(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
|
9111
9467
|
if (typeof obj_id !== 'string') {
|
|
9112
9468
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
9113
9469
|
}
|
|
9470
|
+
if (obj.isSystemDefinition !== undefined) {
|
|
9471
|
+
const obj_isSystemDefinition = obj.isSystemDefinition;
|
|
9472
|
+
const path_isSystemDefinition = path + '.isSystemDefinition';
|
|
9473
|
+
if (typeof obj_isSystemDefinition !== 'boolean') {
|
|
9474
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSystemDefinition + '" (at "' + path_isSystemDefinition + '")');
|
|
9475
|
+
}
|
|
9476
|
+
}
|
|
9114
9477
|
if (obj.label !== undefined) {
|
|
9115
9478
|
const obj_label = obj.label;
|
|
9116
9479
|
const path_label = path + '.label';
|
|
@@ -9160,6 +9523,13 @@ function validate$h(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
|
9160
9523
|
return new TypeError('Expected "string" but received "' + typeof obj_type + '" (at "' + path_type + '")');
|
|
9161
9524
|
}
|
|
9162
9525
|
}
|
|
9526
|
+
if (obj.unmapped !== undefined) {
|
|
9527
|
+
const obj_unmapped = obj.unmapped;
|
|
9528
|
+
const path_unmapped = path + '.unmapped';
|
|
9529
|
+
if (typeof obj_unmapped !== 'boolean') {
|
|
9530
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_unmapped + '" (at "' + path_unmapped + '")');
|
|
9531
|
+
}
|
|
9532
|
+
}
|
|
9163
9533
|
if (obj.values !== undefined) {
|
|
9164
9534
|
const obj_values = obj.values;
|
|
9165
9535
|
const path_values = path + '.values';
|
|
@@ -9245,6 +9615,11 @@ const select$o = function SemanticParameterOutputRepresentationSelect() {
|
|
|
9245
9615
|
name: 'id',
|
|
9246
9616
|
kind: 'Scalar'
|
|
9247
9617
|
},
|
|
9618
|
+
{
|
|
9619
|
+
name: 'isSystemDefinition',
|
|
9620
|
+
kind: 'Scalar',
|
|
9621
|
+
required: false
|
|
9622
|
+
},
|
|
9248
9623
|
{
|
|
9249
9624
|
name: 'label',
|
|
9250
9625
|
kind: 'Scalar',
|
|
@@ -9280,6 +9655,11 @@ const select$o = function SemanticParameterOutputRepresentationSelect() {
|
|
|
9280
9655
|
kind: 'Scalar',
|
|
9281
9656
|
required: false
|
|
9282
9657
|
},
|
|
9658
|
+
{
|
|
9659
|
+
name: 'unmapped',
|
|
9660
|
+
kind: 'Scalar',
|
|
9661
|
+
required: false
|
|
9662
|
+
},
|
|
9283
9663
|
{
|
|
9284
9664
|
name: 'values',
|
|
9285
9665
|
kind: 'Scalar',
|
|
@@ -9290,6 +9670,32 @@ const select$o = function SemanticParameterOutputRepresentationSelect() {
|
|
|
9290
9670
|
};
|
|
9291
9671
|
};
|
|
9292
9672
|
function equals$9(existing, incoming) {
|
|
9673
|
+
const existing_isSystemDefinition = existing.isSystemDefinition;
|
|
9674
|
+
const incoming_isSystemDefinition = incoming.isSystemDefinition;
|
|
9675
|
+
// if at least one of these optionals is defined
|
|
9676
|
+
if (existing_isSystemDefinition !== undefined || incoming_isSystemDefinition !== undefined) {
|
|
9677
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
9678
|
+
// not equal
|
|
9679
|
+
if (existing_isSystemDefinition === undefined || incoming_isSystemDefinition === undefined) {
|
|
9680
|
+
return false;
|
|
9681
|
+
}
|
|
9682
|
+
if (!(existing_isSystemDefinition === incoming_isSystemDefinition)) {
|
|
9683
|
+
return false;
|
|
9684
|
+
}
|
|
9685
|
+
}
|
|
9686
|
+
const existing_unmapped = existing.unmapped;
|
|
9687
|
+
const incoming_unmapped = incoming.unmapped;
|
|
9688
|
+
// if at least one of these optionals is defined
|
|
9689
|
+
if (existing_unmapped !== undefined || incoming_unmapped !== undefined) {
|
|
9690
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
9691
|
+
// not equal
|
|
9692
|
+
if (existing_unmapped === undefined || incoming_unmapped === undefined) {
|
|
9693
|
+
return false;
|
|
9694
|
+
}
|
|
9695
|
+
if (!(existing_unmapped === incoming_unmapped)) {
|
|
9696
|
+
return false;
|
|
9697
|
+
}
|
|
9698
|
+
}
|
|
9293
9699
|
const existing_apiName = existing.apiName;
|
|
9294
9700
|
const incoming_apiName = incoming.apiName;
|
|
9295
9701
|
if (!(existing_apiName === incoming_apiName)) {
|