@salesforce/lds-adapters-cdp-semantic-authoring 1.380.0-dev3 → 1.380.0-dev5

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.
@@ -4938,7 +4938,7 @@ function equals$m(existing, incoming) {
4938
4938
  return true;
4939
4939
  }
4940
4940
 
4941
- const VERSION$l = "e7d6a5a90b64614a1854f0b959840e50";
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 = "b994fb51ffb78d7e6fce27437cc1bd82";
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 = "da0057405dbf52ebeb39361b8d9e3301";
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 = "6e5d543fb3167341130fc5d468ef1f3b";
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)) {
@@ -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 = "e7d6a5a90b64614a1854f0b959840e50";
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 = "b994fb51ffb78d7e6fce27437cc1bd82";
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 = "64bd710a49609958affe17b8fe9f6551";
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 = "da0057405dbf52ebeb39361b8d9e3301";
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;
@@ -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 = "284ea18bc174b97006dce939bec0e7e8";
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 = "6e5d543fb3167341130fc5d468ef1f3b";
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.380.0-dev3",
3
+ "version": "1.380.0-dev5",
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.380.0-dev3"
43
+ "@salesforce/lds-bindings": "^1.380.0-dev5"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.380.0-dev3"
46
+ "@salesforce/lds-compiler-plugins": "^1.380.0-dev5"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -2803,7 +2803,7 @@ function equals$v(existing, incoming) {
2803
2803
  return true;
2804
2804
  }
2805
2805
 
2806
- const VERSION$u = "e7d6a5a90b64614a1854f0b959840e50";
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 = "b994fb51ffb78d7e6fce27437cc1bd82";
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 = "da0057405dbf52ebeb39361b8d9e3301";
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 = "6e5d543fb3167341130fc5d468ef1f3b";
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)) {
@@ -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.380.0-dev3-4d1fd7819b
15682
+ // version: 1.380.0-dev5-27c3b66ede
package/src/raml/api.raml CHANGED
@@ -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