@salesforce/lds-adapters-cdp-semantic-authoring 1.384.0 → 1.386.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 +138 -24
- 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/SemanticDimensionOutputRepresentation.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/SemanticMeasurementOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +139 -25
- package/src/raml/api.raml +25 -1
|
@@ -1593,7 +1593,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
1593
1593
|
function createResourceRequest$j(config) {
|
|
1594
1594
|
const headers = {};
|
|
1595
1595
|
return {
|
|
1596
|
-
baseUri: '/services/data/
|
|
1596
|
+
baseUri: '/services/data/v66.0',
|
|
1597
1597
|
basePath: '/ssot/semantic/metrics/' + config.urlParams.metricIds + '',
|
|
1598
1598
|
method: 'get',
|
|
1599
1599
|
body: null,
|
|
@@ -2738,7 +2738,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
2738
2738
|
function createResourceRequest$i(config) {
|
|
2739
2739
|
const headers = {};
|
|
2740
2740
|
return {
|
|
2741
|
-
baseUri: '/services/data/
|
|
2741
|
+
baseUri: '/services/data/v66.0',
|
|
2742
2742
|
basePath: '/ssot/semantic/models',
|
|
2743
2743
|
method: 'get',
|
|
2744
2744
|
body: null,
|
|
@@ -4938,7 +4938,7 @@ function equals$m(existing, incoming) {
|
|
|
4938
4938
|
return true;
|
|
4939
4939
|
}
|
|
4940
4940
|
|
|
4941
|
-
const VERSION$l = "
|
|
4941
|
+
const VERSION$l = "0ff409d003cd74094400b475d698bf15";
|
|
4942
4942
|
function validate$w(obj, path = 'SemanticCalculatedDimensionOutputRepresentation') {
|
|
4943
4943
|
const v_error = (() => {
|
|
4944
4944
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5015,6 +5015,13 @@ function validate$w(obj, path = 'SemanticCalculatedDimensionOutputRepresentation
|
|
|
5015
5015
|
return new TypeError('Expected "string" but received "' + typeof obj_externalConnectionApiName + '" (at "' + path_externalConnectionApiName + '")');
|
|
5016
5016
|
}
|
|
5017
5017
|
}
|
|
5018
|
+
if (obj.externalDataType !== undefined) {
|
|
5019
|
+
const obj_externalDataType = obj.externalDataType;
|
|
5020
|
+
const path_externalDataType = path + '.externalDataType';
|
|
5021
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
5022
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
5023
|
+
}
|
|
5024
|
+
}
|
|
5018
5025
|
if (obj.externalStorageName !== undefined) {
|
|
5019
5026
|
const obj_externalStorageName = obj.externalStorageName;
|
|
5020
5027
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -5210,6 +5217,11 @@ const select$A = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
5210
5217
|
kind: 'Scalar',
|
|
5211
5218
|
required: false
|
|
5212
5219
|
},
|
|
5220
|
+
{
|
|
5221
|
+
name: 'externalDataType',
|
|
5222
|
+
kind: 'Scalar',
|
|
5223
|
+
required: false
|
|
5224
|
+
},
|
|
5213
5225
|
{
|
|
5214
5226
|
name: 'externalStorageName',
|
|
5215
5227
|
kind: 'Scalar',
|
|
@@ -5466,6 +5478,19 @@ function equals$l(existing, incoming) {
|
|
|
5466
5478
|
return false;
|
|
5467
5479
|
}
|
|
5468
5480
|
}
|
|
5481
|
+
const existing_externalDataType = existing.externalDataType;
|
|
5482
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
5483
|
+
// if at least one of these optionals is defined
|
|
5484
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
5485
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5486
|
+
// not equal
|
|
5487
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
5488
|
+
return false;
|
|
5489
|
+
}
|
|
5490
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
5491
|
+
return false;
|
|
5492
|
+
}
|
|
5493
|
+
}
|
|
5469
5494
|
const existing_externalStorageName = existing.externalStorageName;
|
|
5470
5495
|
const incoming_externalStorageName = incoming.externalStorageName;
|
|
5471
5496
|
// if at least one of these optionals is defined
|
|
@@ -5643,7 +5668,7 @@ function getTypeCacheKeys$f(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5643
5668
|
});
|
|
5644
5669
|
}
|
|
5645
5670
|
|
|
5646
|
-
const VERSION$k = "
|
|
5671
|
+
const VERSION$k = "65b35c82c52febf0709785df41c57ac3";
|
|
5647
5672
|
function validate$v(obj, path = 'SemanticCalculatedMeasurementOutputRepresentation') {
|
|
5648
5673
|
const v_error = (() => {
|
|
5649
5674
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5734,6 +5759,13 @@ function validate$v(obj, path = 'SemanticCalculatedMeasurementOutputRepresentati
|
|
|
5734
5759
|
return new TypeError('Expected "string" but received "' + typeof obj_externalConnectionApiName + '" (at "' + path_externalConnectionApiName + '")');
|
|
5735
5760
|
}
|
|
5736
5761
|
}
|
|
5762
|
+
if (obj.externalDataType !== undefined) {
|
|
5763
|
+
const obj_externalDataType = obj.externalDataType;
|
|
5764
|
+
const path_externalDataType = path + '.externalDataType';
|
|
5765
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
5766
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
5767
|
+
}
|
|
5768
|
+
}
|
|
5737
5769
|
if (obj.externalStorageName !== undefined) {
|
|
5738
5770
|
const obj_externalStorageName = obj.externalStorageName;
|
|
5739
5771
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -5967,6 +5999,11 @@ const select$z = function SemanticCalculatedMeasurementOutputRepresentationSelec
|
|
|
5967
5999
|
kind: 'Scalar',
|
|
5968
6000
|
required: false
|
|
5969
6001
|
},
|
|
6002
|
+
{
|
|
6003
|
+
name: 'externalDataType',
|
|
6004
|
+
kind: 'Scalar',
|
|
6005
|
+
required: false
|
|
6006
|
+
},
|
|
5970
6007
|
{
|
|
5971
6008
|
name: 'externalStorageName',
|
|
5972
6009
|
kind: 'Scalar',
|
|
@@ -6295,6 +6332,19 @@ function equals$k(existing, incoming) {
|
|
|
6295
6332
|
return false;
|
|
6296
6333
|
}
|
|
6297
6334
|
}
|
|
6335
|
+
const existing_externalDataType = existing.externalDataType;
|
|
6336
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
6337
|
+
// if at least one of these optionals is defined
|
|
6338
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
6339
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
6340
|
+
// not equal
|
|
6341
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
6342
|
+
return false;
|
|
6343
|
+
}
|
|
6344
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
6345
|
+
return false;
|
|
6346
|
+
}
|
|
6347
|
+
}
|
|
6298
6348
|
const existing_externalStorageName = existing.externalStorageName;
|
|
6299
6349
|
const incoming_externalStorageName = incoming.externalStorageName;
|
|
6300
6350
|
// if at least one of these optionals is defined
|
|
@@ -6567,6 +6617,13 @@ function validate$u(obj, path = 'SemanticDimensionOutputRepresentation') {
|
|
|
6567
6617
|
return new TypeError('Expected "string" but received "' + typeof obj_displayCategory + '" (at "' + path_displayCategory + '")');
|
|
6568
6618
|
}
|
|
6569
6619
|
}
|
|
6620
|
+
if (obj.externalDataType !== undefined) {
|
|
6621
|
+
const obj_externalDataType = obj.externalDataType;
|
|
6622
|
+
const path_externalDataType = path + '.externalDataType';
|
|
6623
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
6624
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
6625
|
+
}
|
|
6626
|
+
}
|
|
6570
6627
|
if (obj.externalStorageName !== undefined) {
|
|
6571
6628
|
const obj_externalStorageName = obj.externalStorageName;
|
|
6572
6629
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -6757,6 +6814,13 @@ function validate$t(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
6757
6814
|
return new TypeError('Expected "string" but received "' + typeof obj_displayCategory + '" (at "' + path_displayCategory + '")');
|
|
6758
6815
|
}
|
|
6759
6816
|
}
|
|
6817
|
+
if (obj.externalDataType !== undefined) {
|
|
6818
|
+
const obj_externalDataType = obj.externalDataType;
|
|
6819
|
+
const path_externalDataType = path + '.externalDataType';
|
|
6820
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
6821
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
6822
|
+
}
|
|
6823
|
+
}
|
|
6760
6824
|
if (obj.externalStorageName !== undefined) {
|
|
6761
6825
|
const obj_externalStorageName = obj.externalStorageName;
|
|
6762
6826
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -7425,7 +7489,7 @@ function equals$f(existing, incoming) {
|
|
|
7425
7489
|
return true;
|
|
7426
7490
|
}
|
|
7427
7491
|
|
|
7428
|
-
const VERSION$e = "
|
|
7492
|
+
const VERSION$e = "781f9dcf8c74d2f32cce84d91cf9e6af";
|
|
7429
7493
|
function validate$n(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
7430
7494
|
const v_error = (() => {
|
|
7431
7495
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7475,6 +7539,13 @@ function validate$n(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
|
7475
7539
|
return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
|
|
7476
7540
|
}
|
|
7477
7541
|
}
|
|
7542
|
+
if (obj.externalDataType !== undefined) {
|
|
7543
|
+
const obj_externalDataType = obj.externalDataType;
|
|
7544
|
+
const path_externalDataType = path + '.externalDataType';
|
|
7545
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
7546
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
7547
|
+
}
|
|
7548
|
+
}
|
|
7478
7549
|
const obj_fieldReference = obj.fieldReference;
|
|
7479
7550
|
const path_fieldReference = path + '.fieldReference';
|
|
7480
7551
|
const referencepath_fieldReferenceValidationError = validate$1a(obj_fieldReference, path_fieldReference);
|
|
@@ -7591,6 +7662,11 @@ const select$t = function SemanticGroupingOutputRepresentationSelect() {
|
|
|
7591
7662
|
kind: 'Scalar',
|
|
7592
7663
|
required: false
|
|
7593
7664
|
},
|
|
7665
|
+
{
|
|
7666
|
+
name: 'externalDataType',
|
|
7667
|
+
kind: 'Scalar',
|
|
7668
|
+
required: false
|
|
7669
|
+
},
|
|
7594
7670
|
{
|
|
7595
7671
|
name: 'fieldReference',
|
|
7596
7672
|
kind: 'Object',
|
|
@@ -7718,6 +7794,19 @@ function equals$e(existing, incoming) {
|
|
|
7718
7794
|
return false;
|
|
7719
7795
|
}
|
|
7720
7796
|
}
|
|
7797
|
+
const existing_externalDataType = existing.externalDataType;
|
|
7798
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
7799
|
+
// if at least one of these optionals is defined
|
|
7800
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
7801
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
7802
|
+
// not equal
|
|
7803
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
7804
|
+
return false;
|
|
7805
|
+
}
|
|
7806
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
7807
|
+
return false;
|
|
7808
|
+
}
|
|
7809
|
+
}
|
|
7721
7810
|
const existing_id = existing.id;
|
|
7722
7811
|
const incoming_id = incoming.id;
|
|
7723
7812
|
if (!(existing_id === incoming_id)) {
|
|
@@ -9901,7 +9990,7 @@ function equals$8(existing, incoming) {
|
|
|
9901
9990
|
return true;
|
|
9902
9991
|
}
|
|
9903
9992
|
|
|
9904
|
-
const VERSION$7 = "
|
|
9993
|
+
const VERSION$7 = "9c342600b8e3532a417118e4e7055032";
|
|
9905
9994
|
function validate$g(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
9906
9995
|
const v_error = (() => {
|
|
9907
9996
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -9974,6 +10063,13 @@ function validate$g(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
|
9974
10063
|
return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
|
|
9975
10064
|
}
|
|
9976
10065
|
}
|
|
10066
|
+
if (obj.externalDataType !== undefined) {
|
|
10067
|
+
const obj_externalDataType = obj.externalDataType;
|
|
10068
|
+
const path_externalDataType = path + '.externalDataType';
|
|
10069
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
10070
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
10071
|
+
}
|
|
10072
|
+
}
|
|
9977
10073
|
const obj_id = obj.id;
|
|
9978
10074
|
const path_id = path + '.id';
|
|
9979
10075
|
if (typeof obj_id !== 'string') {
|
|
@@ -10130,6 +10226,11 @@ const select$m = function SemanticParameterOutputRepresentationSelect() {
|
|
|
10130
10226
|
kind: 'Scalar',
|
|
10131
10227
|
required: false
|
|
10132
10228
|
},
|
|
10229
|
+
{
|
|
10230
|
+
name: 'externalDataType',
|
|
10231
|
+
kind: 'Scalar',
|
|
10232
|
+
required: false
|
|
10233
|
+
},
|
|
10133
10234
|
{
|
|
10134
10235
|
name: 'id',
|
|
10135
10236
|
kind: 'Scalar'
|
|
@@ -10300,6 +10401,19 @@ function equals$7(existing, incoming) {
|
|
|
10300
10401
|
return false;
|
|
10301
10402
|
}
|
|
10302
10403
|
}
|
|
10404
|
+
const existing_externalDataType = existing.externalDataType;
|
|
10405
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
10406
|
+
// if at least one of these optionals is defined
|
|
10407
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
10408
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
10409
|
+
// not equal
|
|
10410
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
10411
|
+
return false;
|
|
10412
|
+
}
|
|
10413
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
10414
|
+
return false;
|
|
10415
|
+
}
|
|
10416
|
+
}
|
|
10303
10417
|
const existing_id = existing.id;
|
|
10304
10418
|
const incoming_id = incoming.id;
|
|
10305
10419
|
if (!(existing_id === incoming_id)) {
|
|
@@ -11788,7 +11902,7 @@ function ingestSuccess$e(luvio, resourceParams, response) {
|
|
|
11788
11902
|
function createResourceRequest$h(config) {
|
|
11789
11903
|
const headers = {};
|
|
11790
11904
|
return {
|
|
11791
|
-
baseUri: '/services/data/
|
|
11905
|
+
baseUri: '/services/data/v66.0',
|
|
11792
11906
|
basePath: '/ssot/semantic/models',
|
|
11793
11907
|
method: 'post',
|
|
11794
11908
|
body: config.body,
|
|
@@ -12040,7 +12154,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
12040
12154
|
function createResourceRequest$g(config) {
|
|
12041
12155
|
const headers = {};
|
|
12042
12156
|
return {
|
|
12043
|
-
baseUri: '/services/data/
|
|
12157
|
+
baseUri: '/services/data/v66.0',
|
|
12044
12158
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '',
|
|
12045
12159
|
method: 'get',
|
|
12046
12160
|
body: null,
|
|
@@ -12167,7 +12281,7 @@ function ingestSuccess$c(luvio, resourceParams, response) {
|
|
|
12167
12281
|
function createResourceRequest$f(config) {
|
|
12168
12282
|
const headers = {};
|
|
12169
12283
|
return {
|
|
12170
|
-
baseUri: '/services/data/
|
|
12284
|
+
baseUri: '/services/data/v66.0',
|
|
12171
12285
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '',
|
|
12172
12286
|
method: 'patch',
|
|
12173
12287
|
body: config.body,
|
|
@@ -12528,7 +12642,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
12528
12642
|
function createResourceRequest$e(config) {
|
|
12529
12643
|
const headers = {};
|
|
12530
12644
|
return {
|
|
12531
|
-
baseUri: '/services/data/
|
|
12645
|
+
baseUri: '/services/data/v66.0',
|
|
12532
12646
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/dependencies',
|
|
12533
12647
|
method: 'get',
|
|
12534
12648
|
body: null,
|
|
@@ -12870,7 +12984,7 @@ function evictSuccess$2(luvio, resourceParams) {
|
|
|
12870
12984
|
function createResourceRequest$d(config) {
|
|
12871
12985
|
const headers = {};
|
|
12872
12986
|
return {
|
|
12873
|
-
baseUri: '/services/data/
|
|
12987
|
+
baseUri: '/services/data/v66.0',
|
|
12874
12988
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
12875
12989
|
method: 'delete',
|
|
12876
12990
|
body: null,
|
|
@@ -12976,7 +13090,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
12976
13090
|
function createResourceRequest$c(config) {
|
|
12977
13091
|
const headers = {};
|
|
12978
13092
|
return {
|
|
12979
|
-
baseUri: '/services/data/
|
|
13093
|
+
baseUri: '/services/data/v66.0',
|
|
12980
13094
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
12981
13095
|
method: 'get',
|
|
12982
13096
|
body: null,
|
|
@@ -13176,7 +13290,7 @@ function ingestSuccess$9(luvio, resourceParams, response) {
|
|
|
13176
13290
|
function createResourceRequest$b(config) {
|
|
13177
13291
|
const headers = {};
|
|
13178
13292
|
return {
|
|
13179
|
-
baseUri: '/services/data/
|
|
13293
|
+
baseUri: '/services/data/v66.0',
|
|
13180
13294
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
13181
13295
|
method: 'post',
|
|
13182
13296
|
body: config.body,
|
|
@@ -13290,7 +13404,7 @@ function ingestSuccess$8(luvio, resourceParams, response) {
|
|
|
13290
13404
|
function createResourceRequest$a(config) {
|
|
13291
13405
|
const headers = {};
|
|
13292
13406
|
return {
|
|
13293
|
-
baseUri: '/services/data/
|
|
13407
|
+
baseUri: '/services/data/v66.0',
|
|
13294
13408
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
13295
13409
|
method: 'put',
|
|
13296
13410
|
body: config.body,
|
|
@@ -13908,7 +14022,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
13908
14022
|
function createResourceRequest$9(config) {
|
|
13909
14023
|
const headers = {};
|
|
13910
14024
|
return {
|
|
13911
|
-
baseUri: '/services/data/
|
|
14025
|
+
baseUri: '/services/data/v66.0',
|
|
13912
14026
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/metric-api-names/' + config.urlParams.metricApiNames + '/sub-metrics',
|
|
13913
14027
|
method: 'get',
|
|
13914
14028
|
body: null,
|
|
@@ -14041,7 +14155,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
14041
14155
|
function createResourceRequest$8(config) {
|
|
14042
14156
|
const headers = {};
|
|
14043
14157
|
return {
|
|
14044
|
-
baseUri: '/services/data/
|
|
14158
|
+
baseUri: '/services/data/v66.0',
|
|
14045
14159
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/metrics',
|
|
14046
14160
|
method: 'get',
|
|
14047
14161
|
body: null,
|
|
@@ -14175,7 +14289,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
14175
14289
|
function createResourceRequest$7(config) {
|
|
14176
14290
|
const headers = {};
|
|
14177
14291
|
return {
|
|
14178
|
-
baseUri: '/services/data/
|
|
14292
|
+
baseUri: '/services/data/v66.0',
|
|
14179
14293
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/metrics/' + config.urlParams.metricNameOrId + '',
|
|
14180
14294
|
method: 'get',
|
|
14181
14295
|
body: null,
|
|
@@ -14418,7 +14532,7 @@ function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
|
14418
14532
|
function createResourceRequest$6(config) {
|
|
14419
14533
|
const headers = {};
|
|
14420
14534
|
return {
|
|
14421
|
-
baseUri: '/services/data/
|
|
14535
|
+
baseUri: '/services/data/v66.0',
|
|
14422
14536
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics',
|
|
14423
14537
|
method: 'get',
|
|
14424
14538
|
body: null,
|
|
@@ -14604,7 +14718,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
14604
14718
|
function createResourceRequest$5(config) {
|
|
14605
14719
|
const headers = {};
|
|
14606
14720
|
return {
|
|
14607
|
-
baseUri: '/services/data/
|
|
14721
|
+
baseUri: '/services/data/v66.0',
|
|
14608
14722
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics',
|
|
14609
14723
|
method: 'post',
|
|
14610
14724
|
body: config.body,
|
|
@@ -14718,7 +14832,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
14718
14832
|
function createResourceRequest$4(config) {
|
|
14719
14833
|
const headers = {};
|
|
14720
14834
|
return {
|
|
14721
|
-
baseUri: '/services/data/
|
|
14835
|
+
baseUri: '/services/data/v66.0',
|
|
14722
14836
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '',
|
|
14723
14837
|
method: 'delete',
|
|
14724
14838
|
body: null,
|
|
@@ -14820,7 +14934,7 @@ function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
|
14820
14934
|
function createResourceRequest$3(config) {
|
|
14821
14935
|
const headers = {};
|
|
14822
14936
|
return {
|
|
14823
|
-
baseUri: '/services/data/
|
|
14937
|
+
baseUri: '/services/data/v66.0',
|
|
14824
14938
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '',
|
|
14825
14939
|
method: 'get',
|
|
14826
14940
|
body: null,
|
|
@@ -14938,7 +15052,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
14938
15052
|
function createResourceRequest$2(config) {
|
|
14939
15053
|
const headers = {};
|
|
14940
15054
|
return {
|
|
14941
|
-
baseUri: '/services/data/
|
|
15055
|
+
baseUri: '/services/data/v66.0',
|
|
14942
15056
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '/goal',
|
|
14943
15057
|
method: 'delete',
|
|
14944
15058
|
body: null,
|
|
@@ -15029,7 +15143,7 @@ function ingestSuccess$1(luvio, resourceParams, response) {
|
|
|
15029
15143
|
function createResourceRequest$1(config) {
|
|
15030
15144
|
const headers = {};
|
|
15031
15145
|
return {
|
|
15032
|
-
baseUri: '/services/data/
|
|
15146
|
+
baseUri: '/services/data/v66.0',
|
|
15033
15147
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '/goal',
|
|
15034
15148
|
method: 'patch',
|
|
15035
15149
|
body: config.body,
|
|
@@ -15143,7 +15257,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
15143
15257
|
function createResourceRequest(config) {
|
|
15144
15258
|
const headers = {};
|
|
15145
15259
|
return {
|
|
15146
|
-
baseUri: '/services/data/
|
|
15260
|
+
baseUri: '/services/data/v66.0',
|
|
15147
15261
|
basePath: '/ssot/semantic/sub-metrics/' + config.urlParams.subMetricIds + '',
|
|
15148
15262
|
method: 'get',
|
|
15149
15263
|
body: null,
|
|
@@ -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 = "0ff409d003cd74094400b475d698bf15";
|
|
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 {
|
|
@@ -46,6 +46,8 @@ export interface SemanticCalculatedDimensionOutputRepresentationNormalized {
|
|
|
46
46
|
expression?: string;
|
|
47
47
|
/** The api name of the origin external connection. */
|
|
48
48
|
externalConnectionApiName?: string;
|
|
49
|
+
/** the external data type. */
|
|
50
|
+
externalDataType?: string;
|
|
49
51
|
/** The name of the corresponding external entity. */
|
|
50
52
|
externalStorageName?: string;
|
|
51
53
|
/** The logic expression for generating a filter based on the list of filters. */
|
|
@@ -97,6 +99,7 @@ export interface SemanticCalculatedDimensionOutputRepresentation {
|
|
|
97
99
|
displayCategory?: string;
|
|
98
100
|
expression?: string;
|
|
99
101
|
externalConnectionApiName?: string;
|
|
102
|
+
externalDataType?: string;
|
|
100
103
|
externalStorageName?: string;
|
|
101
104
|
filterLogic?: string;
|
|
102
105
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
@@ -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 = "65b35c82c52febf0709785df41c57ac3";
|
|
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 SemanticCalculatedMeasurementOutputRepresentationNormalized {
|
|
|
50
50
|
expression?: string;
|
|
51
51
|
/** The api name of the origin external connection. */
|
|
52
52
|
externalConnectionApiName?: string;
|
|
53
|
+
/** the external data type. */
|
|
54
|
+
externalDataType?: string;
|
|
53
55
|
/** The name of the corresponding external entity. */
|
|
54
56
|
externalStorageName?: string;
|
|
55
57
|
/** The logic expression for generating a filter based on the list of filters. */
|
|
@@ -111,6 +113,7 @@ export interface SemanticCalculatedMeasurementOutputRepresentation {
|
|
|
111
113
|
displayCategory?: string;
|
|
112
114
|
expression?: string;
|
|
113
115
|
externalConnectionApiName?: string;
|
|
116
|
+
externalDataType?: string;
|
|
114
117
|
externalStorageName?: string;
|
|
115
118
|
filterLogic?: string;
|
|
116
119
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
@@ -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 = "41f2fc6532988d4bd7a9e76fbe1aa021";
|
|
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 {
|
|
@@ -43,6 +43,8 @@ export interface SemanticDimensionOutputRepresentationNormalized {
|
|
|
43
43
|
description?: string;
|
|
44
44
|
/** Controls how data is represented in visualizations of the relationships between Semantic Calculated Dimensions and other Data Cloud Objects. Valid values are Discrete and Continuous. */
|
|
45
45
|
displayCategory?: string;
|
|
46
|
+
/** the external data type. */
|
|
47
|
+
externalDataType?: string;
|
|
46
48
|
/** The name of the corresponding external entity. */
|
|
47
49
|
externalStorageName?: string;
|
|
48
50
|
/** The object ID of the semantic entity. */
|
|
@@ -91,6 +93,7 @@ export interface SemanticDimensionOutputRepresentation {
|
|
|
91
93
|
decimalPlace?: number;
|
|
92
94
|
description?: string;
|
|
93
95
|
displayCategory?: string;
|
|
96
|
+
externalDataType?: string;
|
|
94
97
|
externalStorageName?: string;
|
|
95
98
|
id: string;
|
|
96
99
|
isKeyQualifier?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SemanticGroupingConfigurationOutputRepresentation as SemanticGroupingConfigurationOutputRepresentation_SemanticGroupingConfigurationOutputRepresentation } from './SemanticGroupingConfigurationOutputRepresentation';
|
|
2
2
|
import { SemanticFieldReferenceOutputRepresentation as SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation } from './SemanticFieldReferenceOutputRepresentation';
|
|
3
3
|
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';
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "781f9dcf8c74d2f32cce84d91cf9e6af";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -39,6 +39,8 @@ export interface SemanticGroupingOutputRepresentationNormalized {
|
|
|
39
39
|
createdDate: string;
|
|
40
40
|
/** The Description of the semantic entity. */
|
|
41
41
|
description?: string;
|
|
42
|
+
/** the external data type. */
|
|
43
|
+
externalDataType?: string;
|
|
42
44
|
/** References to a specific field. */
|
|
43
45
|
fieldReference: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
|
|
44
46
|
/** The object ID of the semantic entity. */
|
|
@@ -72,6 +74,7 @@ export interface SemanticGroupingOutputRepresentation {
|
|
|
72
74
|
createdBy: string;
|
|
73
75
|
createdDate: string;
|
|
74
76
|
description?: string;
|
|
77
|
+
externalDataType?: string;
|
|
75
78
|
fieldReference: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
|
|
76
79
|
id: string;
|
|
77
80
|
isQueryable?: 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 = "181201e45db5bfb0c5947451faf543d2";
|
|
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 {
|
|
@@ -47,6 +47,8 @@ export interface SemanticMeasurementOutputRepresentationNormalized {
|
|
|
47
47
|
directionality?: string;
|
|
48
48
|
/** Controls how data is represented in visualizations of the relationships between Semantic Calculated Dimensions and other Data Cloud Objects. Valid values are Discrete and Continuous. */
|
|
49
49
|
displayCategory?: string;
|
|
50
|
+
/** the external data type. */
|
|
51
|
+
externalDataType?: string;
|
|
50
52
|
/** The name of the corresponding external entity. */
|
|
51
53
|
externalStorageName?: string;
|
|
52
54
|
/** The object ID of the semantic entity. */
|
|
@@ -103,6 +105,7 @@ export interface SemanticMeasurementOutputRepresentation {
|
|
|
103
105
|
description?: string;
|
|
104
106
|
directionality?: string;
|
|
105
107
|
displayCategory?: string;
|
|
108
|
+
externalDataType?: string;
|
|
106
109
|
externalStorageName?: string;
|
|
107
110
|
id: string;
|
|
108
111
|
isAggregatable?: boolean;
|
|
@@ -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 = "9c342600b8e3532a417118e4e7055032";
|
|
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 {
|
|
@@ -42,6 +42,8 @@ export interface SemanticParameterOutputRepresentationNormalized {
|
|
|
42
42
|
defaultValue?: string;
|
|
43
43
|
/** The Description of the semantic entity. */
|
|
44
44
|
description?: string;
|
|
45
|
+
/** the external data type. */
|
|
46
|
+
externalDataType?: string;
|
|
45
47
|
/** The object ID of the semantic entity. */
|
|
46
48
|
id: string;
|
|
47
49
|
/** Indicates if the entity can be queried in semantic query engine */
|
|
@@ -83,6 +85,7 @@ export interface SemanticParameterOutputRepresentation {
|
|
|
83
85
|
dataType?: string;
|
|
84
86
|
defaultValue?: string;
|
|
85
87
|
description?: string;
|
|
88
|
+
externalDataType?: string;
|
|
86
89
|
id: string;
|
|
87
90
|
isQueryable?: string;
|
|
88
91
|
isSystemDefinition?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-semantic-authoring",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.386.0",
|
|
4
4
|
"description": "Semantic Authoring",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-semantic-authoring.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.386.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.386.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -424,7 +424,7 @@ function ingestSuccess$g(luvio, resourceParams, response) {
|
|
|
424
424
|
function createResourceRequest$j(config) {
|
|
425
425
|
const headers = {};
|
|
426
426
|
return {
|
|
427
|
-
baseUri: '/services/data/
|
|
427
|
+
baseUri: '/services/data/v66.0',
|
|
428
428
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
429
429
|
method: 'post',
|
|
430
430
|
body: config.body,
|
|
@@ -2803,7 +2803,7 @@ function equals$v(existing, incoming) {
|
|
|
2803
2803
|
return true;
|
|
2804
2804
|
}
|
|
2805
2805
|
|
|
2806
|
-
const VERSION$u = "
|
|
2806
|
+
const VERSION$u = "0ff409d003cd74094400b475d698bf15";
|
|
2807
2807
|
function validate$B(obj, path = 'SemanticCalculatedDimensionOutputRepresentation') {
|
|
2808
2808
|
const v_error = (() => {
|
|
2809
2809
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2880,6 +2880,13 @@ function validate$B(obj, path = 'SemanticCalculatedDimensionOutputRepresentation
|
|
|
2880
2880
|
return new TypeError('Expected "string" but received "' + typeof obj_externalConnectionApiName + '" (at "' + path_externalConnectionApiName + '")');
|
|
2881
2881
|
}
|
|
2882
2882
|
}
|
|
2883
|
+
if (obj.externalDataType !== undefined) {
|
|
2884
|
+
const obj_externalDataType = obj.externalDataType;
|
|
2885
|
+
const path_externalDataType = path + '.externalDataType';
|
|
2886
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
2887
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
2888
|
+
}
|
|
2889
|
+
}
|
|
2883
2890
|
if (obj.externalStorageName !== undefined) {
|
|
2884
2891
|
const obj_externalStorageName = obj.externalStorageName;
|
|
2885
2892
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -3075,6 +3082,11 @@ const select$K = function SemanticCalculatedDimensionOutputRepresentationSelect(
|
|
|
3075
3082
|
kind: 'Scalar',
|
|
3076
3083
|
required: false
|
|
3077
3084
|
},
|
|
3085
|
+
{
|
|
3086
|
+
name: 'externalDataType',
|
|
3087
|
+
kind: 'Scalar',
|
|
3088
|
+
required: false
|
|
3089
|
+
},
|
|
3078
3090
|
{
|
|
3079
3091
|
name: 'externalStorageName',
|
|
3080
3092
|
kind: 'Scalar',
|
|
@@ -3331,6 +3343,19 @@ function equals$u(existing, incoming) {
|
|
|
3331
3343
|
return false;
|
|
3332
3344
|
}
|
|
3333
3345
|
}
|
|
3346
|
+
const existing_externalDataType = existing.externalDataType;
|
|
3347
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
3348
|
+
// if at least one of these optionals is defined
|
|
3349
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
3350
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
3351
|
+
// not equal
|
|
3352
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
3353
|
+
return false;
|
|
3354
|
+
}
|
|
3355
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
3356
|
+
return false;
|
|
3357
|
+
}
|
|
3358
|
+
}
|
|
3334
3359
|
const existing_externalStorageName = existing.externalStorageName;
|
|
3335
3360
|
const incoming_externalStorageName = incoming.externalStorageName;
|
|
3336
3361
|
// if at least one of these optionals is defined
|
|
@@ -3508,7 +3533,7 @@ function getTypeCacheKeys$h(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
3508
3533
|
});
|
|
3509
3534
|
}
|
|
3510
3535
|
|
|
3511
|
-
const VERSION$t = "
|
|
3536
|
+
const VERSION$t = "65b35c82c52febf0709785df41c57ac3";
|
|
3512
3537
|
function validate$A(obj, path = 'SemanticCalculatedMeasurementOutputRepresentation') {
|
|
3513
3538
|
const v_error = (() => {
|
|
3514
3539
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -3599,6 +3624,13 @@ function validate$A(obj, path = 'SemanticCalculatedMeasurementOutputRepresentati
|
|
|
3599
3624
|
return new TypeError('Expected "string" but received "' + typeof obj_externalConnectionApiName + '" (at "' + path_externalConnectionApiName + '")');
|
|
3600
3625
|
}
|
|
3601
3626
|
}
|
|
3627
|
+
if (obj.externalDataType !== undefined) {
|
|
3628
|
+
const obj_externalDataType = obj.externalDataType;
|
|
3629
|
+
const path_externalDataType = path + '.externalDataType';
|
|
3630
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
3631
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
3632
|
+
}
|
|
3633
|
+
}
|
|
3602
3634
|
if (obj.externalStorageName !== undefined) {
|
|
3603
3635
|
const obj_externalStorageName = obj.externalStorageName;
|
|
3604
3636
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -3832,6 +3864,11 @@ const select$J = function SemanticCalculatedMeasurementOutputRepresentationSelec
|
|
|
3832
3864
|
kind: 'Scalar',
|
|
3833
3865
|
required: false
|
|
3834
3866
|
},
|
|
3867
|
+
{
|
|
3868
|
+
name: 'externalDataType',
|
|
3869
|
+
kind: 'Scalar',
|
|
3870
|
+
required: false
|
|
3871
|
+
},
|
|
3835
3872
|
{
|
|
3836
3873
|
name: 'externalStorageName',
|
|
3837
3874
|
kind: 'Scalar',
|
|
@@ -4160,6 +4197,19 @@ function equals$t(existing, incoming) {
|
|
|
4160
4197
|
return false;
|
|
4161
4198
|
}
|
|
4162
4199
|
}
|
|
4200
|
+
const existing_externalDataType = existing.externalDataType;
|
|
4201
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
4202
|
+
// if at least one of these optionals is defined
|
|
4203
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
4204
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
4205
|
+
// not equal
|
|
4206
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
4207
|
+
return false;
|
|
4208
|
+
}
|
|
4209
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
4210
|
+
return false;
|
|
4211
|
+
}
|
|
4212
|
+
}
|
|
4163
4213
|
const existing_externalStorageName = existing.externalStorageName;
|
|
4164
4214
|
const incoming_externalStorageName = incoming.externalStorageName;
|
|
4165
4215
|
// if at least one of these optionals is defined
|
|
@@ -4432,6 +4482,13 @@ function validate$z(obj, path = 'SemanticDimensionOutputRepresentation') {
|
|
|
4432
4482
|
return new TypeError('Expected "string" but received "' + typeof obj_displayCategory + '" (at "' + path_displayCategory + '")');
|
|
4433
4483
|
}
|
|
4434
4484
|
}
|
|
4485
|
+
if (obj.externalDataType !== undefined) {
|
|
4486
|
+
const obj_externalDataType = obj.externalDataType;
|
|
4487
|
+
const path_externalDataType = path + '.externalDataType';
|
|
4488
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
4489
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
4490
|
+
}
|
|
4491
|
+
}
|
|
4435
4492
|
if (obj.externalStorageName !== undefined) {
|
|
4436
4493
|
const obj_externalStorageName = obj.externalStorageName;
|
|
4437
4494
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -4622,6 +4679,13 @@ function validate$y(obj, path = 'SemanticMeasurementOutputRepresentation') {
|
|
|
4622
4679
|
return new TypeError('Expected "string" but received "' + typeof obj_displayCategory + '" (at "' + path_displayCategory + '")');
|
|
4623
4680
|
}
|
|
4624
4681
|
}
|
|
4682
|
+
if (obj.externalDataType !== undefined) {
|
|
4683
|
+
const obj_externalDataType = obj.externalDataType;
|
|
4684
|
+
const path_externalDataType = path + '.externalDataType';
|
|
4685
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
4686
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
4687
|
+
}
|
|
4688
|
+
}
|
|
4625
4689
|
if (obj.externalStorageName !== undefined) {
|
|
4626
4690
|
const obj_externalStorageName = obj.externalStorageName;
|
|
4627
4691
|
const path_externalStorageName = path + '.externalStorageName';
|
|
@@ -5439,7 +5503,7 @@ function equals$m(existing, incoming) {
|
|
|
5439
5503
|
return true;
|
|
5440
5504
|
}
|
|
5441
5505
|
|
|
5442
|
-
const VERSION$l = "
|
|
5506
|
+
const VERSION$l = "781f9dcf8c74d2f32cce84d91cf9e6af";
|
|
5443
5507
|
function validate$q(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
5444
5508
|
const v_error = (() => {
|
|
5445
5509
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5489,6 +5553,13 @@ function validate$q(obj, path = 'SemanticGroupingOutputRepresentation') {
|
|
|
5489
5553
|
return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
|
|
5490
5554
|
}
|
|
5491
5555
|
}
|
|
5556
|
+
if (obj.externalDataType !== undefined) {
|
|
5557
|
+
const obj_externalDataType = obj.externalDataType;
|
|
5558
|
+
const path_externalDataType = path + '.externalDataType';
|
|
5559
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
5560
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
5561
|
+
}
|
|
5562
|
+
}
|
|
5492
5563
|
const obj_fieldReference = obj.fieldReference;
|
|
5493
5564
|
const path_fieldReference = path + '.fieldReference';
|
|
5494
5565
|
const referencepath_fieldReferenceValidationError = validate$r(obj_fieldReference, path_fieldReference);
|
|
@@ -5605,6 +5676,11 @@ const select$B = function SemanticGroupingOutputRepresentationSelect() {
|
|
|
5605
5676
|
kind: 'Scalar',
|
|
5606
5677
|
required: false
|
|
5607
5678
|
},
|
|
5679
|
+
{
|
|
5680
|
+
name: 'externalDataType',
|
|
5681
|
+
kind: 'Scalar',
|
|
5682
|
+
required: false
|
|
5683
|
+
},
|
|
5608
5684
|
{
|
|
5609
5685
|
name: 'fieldReference',
|
|
5610
5686
|
kind: 'Object',
|
|
@@ -5732,6 +5808,19 @@ function equals$l(existing, incoming) {
|
|
|
5732
5808
|
return false;
|
|
5733
5809
|
}
|
|
5734
5810
|
}
|
|
5811
|
+
const existing_externalDataType = existing.externalDataType;
|
|
5812
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
5813
|
+
// if at least one of these optionals is defined
|
|
5814
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
5815
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5816
|
+
// not equal
|
|
5817
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
5818
|
+
return false;
|
|
5819
|
+
}
|
|
5820
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
5821
|
+
return false;
|
|
5822
|
+
}
|
|
5823
|
+
}
|
|
5735
5824
|
const existing_id = existing.id;
|
|
5736
5825
|
const incoming_id = incoming.id;
|
|
5737
5826
|
if (!(existing_id === incoming_id)) {
|
|
@@ -8987,7 +9076,7 @@ function equals$a(existing, incoming) {
|
|
|
8987
9076
|
return true;
|
|
8988
9077
|
}
|
|
8989
9078
|
|
|
8990
|
-
const VERSION$9 = "
|
|
9079
|
+
const VERSION$9 = "9c342600b8e3532a417118e4e7055032";
|
|
8991
9080
|
function validate$e(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
8992
9081
|
const v_error = (() => {
|
|
8993
9082
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -9060,6 +9149,13 @@ function validate$e(obj, path = 'SemanticParameterOutputRepresentation') {
|
|
|
9060
9149
|
return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
|
|
9061
9150
|
}
|
|
9062
9151
|
}
|
|
9152
|
+
if (obj.externalDataType !== undefined) {
|
|
9153
|
+
const obj_externalDataType = obj.externalDataType;
|
|
9154
|
+
const path_externalDataType = path + '.externalDataType';
|
|
9155
|
+
if (typeof obj_externalDataType !== 'string') {
|
|
9156
|
+
return new TypeError('Expected "string" but received "' + typeof obj_externalDataType + '" (at "' + path_externalDataType + '")');
|
|
9157
|
+
}
|
|
9158
|
+
}
|
|
9063
9159
|
const obj_id = obj.id;
|
|
9064
9160
|
const path_id = path + '.id';
|
|
9065
9161
|
if (typeof obj_id !== 'string') {
|
|
@@ -9216,6 +9312,11 @@ const select$p = function SemanticParameterOutputRepresentationSelect() {
|
|
|
9216
9312
|
kind: 'Scalar',
|
|
9217
9313
|
required: false
|
|
9218
9314
|
},
|
|
9315
|
+
{
|
|
9316
|
+
name: 'externalDataType',
|
|
9317
|
+
kind: 'Scalar',
|
|
9318
|
+
required: false
|
|
9319
|
+
},
|
|
9219
9320
|
{
|
|
9220
9321
|
name: 'id',
|
|
9221
9322
|
kind: 'Scalar'
|
|
@@ -9386,6 +9487,19 @@ function equals$9(existing, incoming) {
|
|
|
9386
9487
|
return false;
|
|
9387
9488
|
}
|
|
9388
9489
|
}
|
|
9490
|
+
const existing_externalDataType = existing.externalDataType;
|
|
9491
|
+
const incoming_externalDataType = incoming.externalDataType;
|
|
9492
|
+
// if at least one of these optionals is defined
|
|
9493
|
+
if (existing_externalDataType !== undefined || incoming_externalDataType !== undefined) {
|
|
9494
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
9495
|
+
// not equal
|
|
9496
|
+
if (existing_externalDataType === undefined || incoming_externalDataType === undefined) {
|
|
9497
|
+
return false;
|
|
9498
|
+
}
|
|
9499
|
+
if (!(existing_externalDataType === incoming_externalDataType)) {
|
|
9500
|
+
return false;
|
|
9501
|
+
}
|
|
9502
|
+
}
|
|
9389
9503
|
const existing_id = existing.id;
|
|
9390
9504
|
const incoming_id = incoming.id;
|
|
9391
9505
|
if (!(existing_id === incoming_id)) {
|
|
@@ -10874,7 +10988,7 @@ function ingestSuccess$f(luvio, resourceParams, response) {
|
|
|
10874
10988
|
function createResourceRequest$i(config) {
|
|
10875
10989
|
const headers = {};
|
|
10876
10990
|
return {
|
|
10877
|
-
baseUri: '/services/data/
|
|
10991
|
+
baseUri: '/services/data/v66.0',
|
|
10878
10992
|
basePath: '/ssot/semantic/models',
|
|
10879
10993
|
method: 'post',
|
|
10880
10994
|
body: config.body,
|
|
@@ -11425,7 +11539,7 @@ function ingestSuccess$e(luvio, resourceParams, response) {
|
|
|
11425
11539
|
function createResourceRequest$h(config) {
|
|
11426
11540
|
const headers = {};
|
|
11427
11541
|
return {
|
|
11428
|
-
baseUri: '/services/data/
|
|
11542
|
+
baseUri: '/services/data/v66.0',
|
|
11429
11543
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics',
|
|
11430
11544
|
method: 'post',
|
|
11431
11545
|
body: config.body,
|
|
@@ -11539,7 +11653,7 @@ function evictSuccess$2(luvio, resourceParams) {
|
|
|
11539
11653
|
function createResourceRequest$g(config) {
|
|
11540
11654
|
const headers = {};
|
|
11541
11655
|
return {
|
|
11542
|
-
baseUri: '/services/data/
|
|
11656
|
+
baseUri: '/services/data/v66.0',
|
|
11543
11657
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '/goal',
|
|
11544
11658
|
method: 'delete',
|
|
11545
11659
|
body: null,
|
|
@@ -11626,7 +11740,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
11626
11740
|
function createResourceRequest$f(config) {
|
|
11627
11741
|
const headers = {};
|
|
11628
11742
|
return {
|
|
11629
|
-
baseUri: '/services/data/
|
|
11743
|
+
baseUri: '/services/data/v66.0',
|
|
11630
11744
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
11631
11745
|
method: 'delete',
|
|
11632
11746
|
body: null,
|
|
@@ -11713,7 +11827,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
11713
11827
|
function createResourceRequest$e(config) {
|
|
11714
11828
|
const headers = {};
|
|
11715
11829
|
return {
|
|
11716
|
-
baseUri: '/services/data/
|
|
11830
|
+
baseUri: '/services/data/v66.0',
|
|
11717
11831
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '',
|
|
11718
11832
|
method: 'delete',
|
|
11719
11833
|
body: null,
|
|
@@ -11923,7 +12037,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
11923
12037
|
function createResourceRequest$d(config) {
|
|
11924
12038
|
const headers = {};
|
|
11925
12039
|
return {
|
|
11926
|
-
baseUri: '/services/data/
|
|
12040
|
+
baseUri: '/services/data/v66.0',
|
|
11927
12041
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/dependencies',
|
|
11928
12042
|
method: 'get',
|
|
11929
12043
|
body: null,
|
|
@@ -12060,7 +12174,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
12060
12174
|
function createResourceRequest$c(config) {
|
|
12061
12175
|
const headers = {};
|
|
12062
12176
|
return {
|
|
12063
|
-
baseUri: '/services/data/
|
|
12177
|
+
baseUri: '/services/data/v66.0',
|
|
12064
12178
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
12065
12179
|
method: 'get',
|
|
12066
12180
|
body: null,
|
|
@@ -12236,7 +12350,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
12236
12350
|
function createResourceRequest$b(config) {
|
|
12237
12351
|
const headers = {};
|
|
12238
12352
|
return {
|
|
12239
|
-
baseUri: '/services/data/
|
|
12353
|
+
baseUri: '/services/data/v66.0',
|
|
12240
12354
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/metrics/' + config.urlParams.metricNameOrId + '',
|
|
12241
12355
|
method: 'get',
|
|
12242
12356
|
body: null,
|
|
@@ -12515,7 +12629,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
12515
12629
|
function createResourceRequest$a(config) {
|
|
12516
12630
|
const headers = {};
|
|
12517
12631
|
return {
|
|
12518
|
-
baseUri: '/services/data/
|
|
12632
|
+
baseUri: '/services/data/v66.0',
|
|
12519
12633
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/metrics',
|
|
12520
12634
|
method: 'get',
|
|
12521
12635
|
body: null,
|
|
@@ -12647,7 +12761,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
12647
12761
|
function createResourceRequest$9(config) {
|
|
12648
12762
|
const headers = {};
|
|
12649
12763
|
return {
|
|
12650
|
-
baseUri: '/services/data/
|
|
12764
|
+
baseUri: '/services/data/v66.0',
|
|
12651
12765
|
basePath: '/ssot/semantic/metrics/' + config.urlParams.metricIds + '',
|
|
12652
12766
|
method: 'get',
|
|
12653
12767
|
body: null,
|
|
@@ -13026,7 +13140,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
13026
13140
|
function createResourceRequest$8(config) {
|
|
13027
13141
|
const headers = {};
|
|
13028
13142
|
return {
|
|
13029
|
-
baseUri: '/services/data/
|
|
13143
|
+
baseUri: '/services/data/v66.0',
|
|
13030
13144
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/metric-api-names/' + config.urlParams.metricApiNames + '/sub-metrics',
|
|
13031
13145
|
method: 'get',
|
|
13032
13146
|
body: null,
|
|
@@ -13161,7 +13275,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
13161
13275
|
function createResourceRequest$7(config) {
|
|
13162
13276
|
const headers = {};
|
|
13163
13277
|
return {
|
|
13164
|
-
baseUri: '/services/data/
|
|
13278
|
+
baseUri: '/services/data/v66.0',
|
|
13165
13279
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '',
|
|
13166
13280
|
method: 'get',
|
|
13167
13281
|
body: null,
|
|
@@ -14284,7 +14398,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
14284
14398
|
function createResourceRequest$6(config) {
|
|
14285
14399
|
const headers = {};
|
|
14286
14400
|
return {
|
|
14287
|
-
baseUri: '/services/data/
|
|
14401
|
+
baseUri: '/services/data/v66.0',
|
|
14288
14402
|
basePath: '/ssot/semantic/models',
|
|
14289
14403
|
method: 'get',
|
|
14290
14404
|
body: null,
|
|
@@ -14426,7 +14540,7 @@ function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
|
14426
14540
|
function createResourceRequest$5(config) {
|
|
14427
14541
|
const headers = {};
|
|
14428
14542
|
return {
|
|
14429
|
-
baseUri: '/services/data/
|
|
14543
|
+
baseUri: '/services/data/v66.0',
|
|
14430
14544
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '',
|
|
14431
14545
|
method: 'get',
|
|
14432
14546
|
body: null,
|
|
@@ -14705,7 +14819,7 @@ function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
|
14705
14819
|
function createResourceRequest$4(config) {
|
|
14706
14820
|
const headers = {};
|
|
14707
14821
|
return {
|
|
14708
|
-
baseUri: '/services/data/
|
|
14822
|
+
baseUri: '/services/data/v66.0',
|
|
14709
14823
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics',
|
|
14710
14824
|
method: 'get',
|
|
14711
14825
|
body: null,
|
|
@@ -14837,7 +14951,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
14837
14951
|
function createResourceRequest$3(config) {
|
|
14838
14952
|
const headers = {};
|
|
14839
14953
|
return {
|
|
14840
|
-
baseUri: '/services/data/
|
|
14954
|
+
baseUri: '/services/data/v66.0',
|
|
14841
14955
|
basePath: '/ssot/semantic/sub-metrics/' + config.urlParams.subMetricIds + '',
|
|
14842
14956
|
method: 'get',
|
|
14843
14957
|
body: null,
|
|
@@ -14962,7 +15076,7 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
14962
15076
|
function createResourceRequest$2(config) {
|
|
14963
15077
|
const headers = {};
|
|
14964
15078
|
return {
|
|
14965
|
-
baseUri: '/services/data/
|
|
15079
|
+
baseUri: '/services/data/v66.0',
|
|
14966
15080
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/sub-metrics/' + config.urlParams.subMetricNameOrId + '/goal',
|
|
14967
15081
|
method: 'patch',
|
|
14968
15082
|
body: config.body,
|
|
@@ -15067,7 +15181,7 @@ function ingestSuccess$1(luvio, resourceParams, response) {
|
|
|
15067
15181
|
function createResourceRequest$1(config) {
|
|
15068
15182
|
const headers = {};
|
|
15069
15183
|
return {
|
|
15070
|
-
baseUri: '/services/data/
|
|
15184
|
+
baseUri: '/services/data/v66.0',
|
|
15071
15185
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '',
|
|
15072
15186
|
method: 'patch',
|
|
15073
15187
|
body: config.body,
|
|
@@ -15309,7 +15423,7 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
15309
15423
|
function createResourceRequest(config) {
|
|
15310
15424
|
const headers = {};
|
|
15311
15425
|
return {
|
|
15312
|
-
baseUri: '/services/data/
|
|
15426
|
+
baseUri: '/services/data/v66.0',
|
|
15313
15427
|
basePath: '/ssot/semantic/models/' + config.urlParams.modelApiNameOrId + '/goals',
|
|
15314
15428
|
method: 'put',
|
|
15315
15429
|
body: config.body,
|
|
@@ -15565,4 +15679,4 @@ withDefaultLuvio((luvio) => {
|
|
|
15565
15679
|
});
|
|
15566
15680
|
|
|
15567
15681
|
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 };
|
|
15568
|
-
// version: 1.
|
|
15682
|
+
// version: 1.386.0-521094e838
|
package/src/raml/api.raml
CHANGED
|
@@ -6,7 +6,7 @@ version: '65.0'
|
|
|
6
6
|
mediaType: application/json
|
|
7
7
|
protocols:
|
|
8
8
|
- https
|
|
9
|
-
baseUri: /services/data/
|
|
9
|
+
baseUri: /services/data/v66.0
|
|
10
10
|
securitySchemes:
|
|
11
11
|
OAuth2:
|
|
12
12
|
type: OAuth 2.0
|
|
@@ -713,6 +713,10 @@ types:
|
|
|
713
713
|
description: The unmapped property indicates whether a semantic definition is based on an unmapped field
|
|
714
714
|
type: boolean
|
|
715
715
|
required: false
|
|
716
|
+
externalDataType:
|
|
717
|
+
description: the external data type.
|
|
718
|
+
type: string
|
|
719
|
+
required: false
|
|
716
720
|
SemanticCalculatedMeasurementCollectionOutputRepresentation:
|
|
717
721
|
description: A collection of Semantic Calculated Measurements.
|
|
718
722
|
type: object
|
|
@@ -943,6 +947,10 @@ types:
|
|
|
943
947
|
description: The unmapped property indicates whether a semantic definition is based on an unmapped field
|
|
944
948
|
type: boolean
|
|
945
949
|
required: false
|
|
950
|
+
externalDataType:
|
|
951
|
+
description: the external data type.
|
|
952
|
+
type: string
|
|
953
|
+
required: false
|
|
946
954
|
SemanticModelExternalConnectionInputRepresentation:
|
|
947
955
|
description: Represents a semantic model external connection.
|
|
948
956
|
type: object
|
|
@@ -1464,6 +1472,10 @@ types:
|
|
|
1464
1472
|
description: The unmapped property indicates whether a semantic definition is based on an unmapped field
|
|
1465
1473
|
type: boolean
|
|
1466
1474
|
required: false
|
|
1475
|
+
externalDataType:
|
|
1476
|
+
description: the external data type.
|
|
1477
|
+
type: string
|
|
1478
|
+
required: false
|
|
1467
1479
|
SemanticFieldReferenceInputRepresentation:
|
|
1468
1480
|
description: Input representation field reference
|
|
1469
1481
|
type: object
|
|
@@ -1832,6 +1844,10 @@ types:
|
|
|
1832
1844
|
description: The unmapped property indicates whether a semantic definition is based on an unmapped field
|
|
1833
1845
|
type: boolean
|
|
1834
1846
|
required: false
|
|
1847
|
+
externalDataType:
|
|
1848
|
+
description: the external data type.
|
|
1849
|
+
type: string
|
|
1850
|
+
required: false
|
|
1835
1851
|
SemanticIdentifyingDimensionInputRepresentation:
|
|
1836
1852
|
description: Input representation for creating relationship between identifier and name dimensions
|
|
1837
1853
|
type: object
|
|
@@ -2480,6 +2496,10 @@ types:
|
|
|
2480
2496
|
description: The unmapped property indicates whether a semantic definition is based on an unmapped field
|
|
2481
2497
|
type: boolean
|
|
2482
2498
|
required: false
|
|
2499
|
+
externalDataType:
|
|
2500
|
+
description: the external data type.
|
|
2501
|
+
type: string
|
|
2502
|
+
required: false
|
|
2483
2503
|
SemanticMetricAdditionalDimensionInputRepresentation:
|
|
2484
2504
|
description: Input representation for updating semantic metric with additional dimensions
|
|
2485
2505
|
type: object
|
|
@@ -3513,6 +3533,10 @@ types:
|
|
|
3513
3533
|
description: The unmapped property indicates whether a semantic definition is based on an unmapped field
|
|
3514
3534
|
type: boolean
|
|
3515
3535
|
required: false
|
|
3536
|
+
externalDataType:
|
|
3537
|
+
description: the external data type.
|
|
3538
|
+
type: string
|
|
3539
|
+
required: false
|
|
3516
3540
|
SemanticParameterListValueInputRepresentation:
|
|
3517
3541
|
description: Input representation of an allowed list value for a semantic parameter .
|
|
3518
3542
|
type: object
|