@salesforce/lds-adapters-cdp-semantic-authoring 1.380.0-dev1 → 1.381.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/dist/es/es2018/cdp-semantic-authoring.js +358 -15
  2. package/dist/es/es2018/types/src/generated/adapters/getSemanticModel.d.ts +1 -0
  3. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsByModelApiNameOrId.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsShallowByModelApiNameOrId.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +4 -1
  6. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +4 -1
  7. package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts +4 -1
  8. package/dist/es/es2018/types/src/generated/types/SemanticDimensionOutputRepresentation.d.ts +4 -1
  9. package/dist/es/es2018/types/src/generated/types/SemanticGoalOutputRepresentation.d.ts +4 -1
  10. package/dist/es/es2018/types/src/generated/types/SemanticGroupingOutputRepresentation.d.ts +4 -1
  11. package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +4 -1
  12. package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts +4 -1
  13. package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts +4 -1
  14. package/dist/es/es2018/types/src/generated/types/SemanticMetricOutputRepresentation.d.ts +4 -1
  15. package/dist/es/es2018/types/src/generated/types/SemanticModelExternalConnectionOutputRepresentation.d.ts +4 -1
  16. package/dist/es/es2018/types/src/generated/types/SemanticModelOutputRepresentation.d.ts +7 -1
  17. package/dist/es/es2018/types/src/generated/types/SemanticModelPartialOutputRepresentation.d.ts +4 -1
  18. package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +4 -1
  19. package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts +4 -1
  20. package/dist/es/es2018/types/src/generated/types/SemanticSubMetricOutputRepresentation.d.ts +4 -1
  21. package/dist/es/es2018/types/src/generated/types/SemanticUnionOutputRepresentation.d.ts +4 -1
  22. package/package.json +3 -3
  23. package/sfdc/index.js +359 -16
  24. package/src/raml/api.raml +113 -1
@@ -8,6 +8,7 @@ export declare const getSemanticModel_ConfigPropertyNames: adapter$45$utils_Adap
8
8
  export interface GetSemanticModelConfig {
9
9
  modelApiNameOrId: string;
10
10
  fieldName?: string;
11
+ fineGrainSecurity?: boolean;
11
12
  includeModelContent?: boolean;
12
13
  includeTableKeys?: boolean;
13
14
  }
@@ -6,6 +6,7 @@ export interface ResourceRequestConfig {
6
6
  };
7
7
  queryParams: {
8
8
  fieldName?: string;
9
+ fineGrainSecurity?: boolean;
9
10
  includeModelContent?: boolean;
10
11
  includeTableKeys?: boolean;
11
12
  };
@@ -6,6 +6,7 @@ export interface ResourceRequestConfig {
6
6
  };
7
7
  queryParams: {
8
8
  fieldName?: string;
9
+ fineGrainSecurity?: boolean;
9
10
  includeModelContent?: boolean;
10
11
  };
11
12
  }
@@ -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 = "2ad1227d8439240d2dfe130b651f8a81";
3
+ export declare const VERSION = "e7d6a5a90b64614a1854f0b959840e50";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -56,6 +56,8 @@ export interface SemanticCalculatedDimensionOutputRepresentationNormalized {
56
56
  id: string;
57
57
  /** The isOverrideBase property indicates whether a dimension from the base model is being overridden in the extended model during SDM Extensibility, allowing customization of existing semantic definitions.Default is false. */
58
58
  isOverrideBase?: boolean;
59
+ /** Indicates if the entity can be queried in semantic query engine */
60
+ isQueryable?: string;
59
61
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
60
62
  isSystemDefinition?: boolean;
61
63
  /** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
@@ -100,6 +102,7 @@ export interface SemanticCalculatedDimensionOutputRepresentation {
100
102
  filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
101
103
  id: string;
102
104
  isOverrideBase?: boolean;
105
+ isQueryable?: string;
103
106
  isSystemDefinition?: boolean;
104
107
  isVisible?: boolean;
105
108
  label?: string;
@@ -1,6 +1,6 @@
1
1
  import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
- export declare const VERSION = "f905fd3431f6d5d1f883c03af48eb1b3";
3
+ export declare const VERSION = "b994fb51ffb78d7e6fce27437cc1bd82";
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 {
@@ -62,6 +62,8 @@ export interface SemanticCalculatedMeasurementOutputRepresentationNormalized {
62
62
  isAggregatable?: boolean;
63
63
  /** The isOverrideBase property indicates whether a measurement from the base model is being overridden in the extended model during SDM Extensibility, allowing customization of existing semantic definitions.Default is false. */
64
64
  isOverrideBase?: boolean;
65
+ /** Indicates if the entity can be queried in semantic query engine */
66
+ isQueryable?: string;
65
67
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
66
68
  isSystemDefinition?: boolean;
67
69
  /** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
@@ -115,6 +117,7 @@ export interface SemanticCalculatedMeasurementOutputRepresentation {
115
117
  id: string;
116
118
  isAggregatable?: boolean;
117
119
  isOverrideBase?: boolean;
120
+ isQueryable?: string;
118
121
  isSystemDefinition?: boolean;
119
122
  isVisible?: boolean;
120
123
  label?: string;
@@ -2,7 +2,7 @@ import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentatio
2
2
  import { SemanticDimensionOutputRepresentation as SemanticDimensionOutputRepresentation_SemanticDimensionOutputRepresentation } from './SemanticDimensionOutputRepresentation';
3
3
  import { SemanticMeasurementOutputRepresentation as SemanticMeasurementOutputRepresentation_SemanticMeasurementOutputRepresentation } from './SemanticMeasurementOutputRepresentation';
4
4
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
5
- export declare const VERSION = "9792f3ddcf625ff2ab200ce7b653e1f4";
5
+ export declare const VERSION = "7804fea5e1a3894ad9c1e89a2ce17ab9";
6
6
  export declare function validate(obj: any, path?: string): TypeError | null;
7
7
  export declare const RepresentationType: string;
8
8
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -50,6 +50,8 @@ export interface SemanticDataObjectOutputRepresentationNormalized {
50
50
  filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
51
51
  /** The object ID of the semantic entity. */
52
52
  id: string;
53
+ /** Indicates if the entity can be queried in semantic query engine */
54
+ isQueryable?: string;
53
55
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
54
56
  isSystemDefinition?: boolean;
55
57
  /** The display name of the semantic entity to be used in the ui. */
@@ -96,6 +98,7 @@ export interface SemanticDataObjectOutputRepresentation {
96
98
  filterLogic?: string;
97
99
  filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
98
100
  id: string;
101
+ isQueryable?: string;
99
102
  isSystemDefinition?: boolean;
100
103
  label?: string;
101
104
  lastModifiedBy?: 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 = "cb2646c21e4abd1bee8fd04f7ed682e2";
2
+ export declare const VERSION = "64bd710a49609958affe17b8fe9f6551";
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 {
@@ -51,6 +51,8 @@ export interface SemanticDimensionOutputRepresentationNormalized {
51
51
  isKeyQualifier?: boolean;
52
52
  /** Indicates whether the field is a primary key. */
53
53
  isPrimaryKey?: boolean;
54
+ /** Indicates if the entity can be queried in semantic query engine */
55
+ isQueryable?: string;
54
56
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
55
57
  isSystemDefinition?: boolean;
56
58
  /** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
@@ -93,6 +95,7 @@ export interface SemanticDimensionOutputRepresentation {
93
95
  id: string;
94
96
  isKeyQualifier?: boolean;
95
97
  isPrimaryKey?: boolean;
98
+ isQueryable?: string;
96
99
  isSystemDefinition?: boolean;
97
100
  isVisible?: boolean;
98
101
  keyQualifierName?: string;
@@ -1,7 +1,7 @@
1
1
  import { SemanticGoalDateRangeOutputRepresentation as SemanticGoalDateRangeOutputRepresentation_SemanticGoalDateRangeOutputRepresentation } from './SemanticGoalDateRangeOutputRepresentation';
2
2
  import { SemanticGoalStatusConditionOutputRepresentation as SemanticGoalStatusConditionOutputRepresentation_SemanticGoalStatusConditionOutputRepresentation } from './SemanticGoalStatusConditionOutputRepresentation';
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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
4
- export declare const VERSION = "a6367e92be7c02cf72fcdd9bad3cf81d";
4
+ export declare const VERSION = "8ade9728ba6d188b7fa9237cf944576e";
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 {
@@ -47,6 +47,8 @@ export interface SemanticGoalOutputRepresentationNormalized {
47
47
  forecasting: boolean;
48
48
  /** The object ID of the semantic entity. */
49
49
  id: string;
50
+ /** Indicates if the entity can be queried in semantic query engine */
51
+ isQueryable?: string;
50
52
  /** The display name of the semantic entity to be used in the ui. */
51
53
  label?: string;
52
54
  /** The user who last modified the semantic entity. */
@@ -76,6 +78,7 @@ export interface SemanticGoalOutputRepresentation {
76
78
  description?: string;
77
79
  forecasting: boolean;
78
80
  id: string;
81
+ isQueryable?: string;
79
82
  label?: string;
80
83
  lastModifiedBy?: string;
81
84
  lastModifiedDate?: string;
@@ -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 = "5ea5deda92fee8aa624509290ef6cf1c";
4
+ export declare const VERSION = "da0057405dbf52ebeb39361b8d9e3301";
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 {
@@ -43,6 +43,8 @@ export interface SemanticGroupingOutputRepresentationNormalized {
43
43
  fieldReference: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
44
44
  /** The object ID of the semantic entity. */
45
45
  id: string;
46
+ /** Indicates if the entity can be queried in semantic query engine */
47
+ isQueryable?: string;
46
48
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
47
49
  isSystemDefinition?: boolean;
48
50
  /** The display name of the semantic entity to be used in the ui. */
@@ -72,6 +74,7 @@ export interface SemanticGroupingOutputRepresentation {
72
74
  description?: string;
73
75
  fieldReference: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
74
76
  id: string;
77
+ isQueryable?: string;
75
78
  isSystemDefinition?: boolean;
76
79
  label?: string;
77
80
  lastModifiedBy?: string;
@@ -3,7 +3,7 @@ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $
3
3
  import { SemanticDataObjectOutputRepresentation as SemanticDataObjectOutputRepresentation_SemanticDataObjectOutputRepresentation } from './SemanticDataObjectOutputRepresentation';
4
4
  import { SemanticRelationshipOutputRepresentation as SemanticRelationshipOutputRepresentation_SemanticRelationshipOutputRepresentation } from './SemanticRelationshipOutputRepresentation';
5
5
  import { SemanticUnionOutputRepresentation as SemanticUnionOutputRepresentation_SemanticUnionOutputRepresentation } from './SemanticUnionOutputRepresentation';
6
- export declare const VERSION = "666dcffd7f5590243626d818d9fa8c18";
6
+ export declare const VERSION = "deed87abd43631c27a6067ac00a1a018";
7
7
  export declare function validate(obj: any, path?: string): TypeError | null;
8
8
  export declare const RepresentationType: string;
9
9
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -60,6 +60,8 @@ export interface SemanticLogicalViewOutputRepresentationNormalized {
60
60
  filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
61
61
  /** The object ID of the semantic entity. */
62
62
  id: string;
63
+ /** Indicates if the entity can be queried in semantic query engine */
64
+ isQueryable?: string;
63
65
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
64
66
  isSystemDefinition?: boolean;
65
67
  /** The display name of the semantic entity to be used in the ui. */
@@ -100,6 +102,7 @@ export interface SemanticLogicalViewOutputRepresentation {
100
102
  filterLogic?: string;
101
103
  filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
102
104
  id: string;
105
+ isQueryable?: string;
103
106
  isSystemDefinition?: boolean;
104
107
  label?: string;
105
108
  lastModifiedBy?: string;
@@ -2,7 +2,7 @@ import { SemanticTableFieldReferenceOutputRepresentation as SemanticTableFieldRe
2
2
  import { SemanticDimensionOutputRepresentation as SemanticDimensionOutputRepresentation_SemanticDimensionOutputRepresentation } from './SemanticDimensionOutputRepresentation';
3
3
  import { SemanticMeasurementOutputRepresentation as SemanticMeasurementOutputRepresentation_SemanticMeasurementOutputRepresentation } from './SemanticMeasurementOutputRepresentation';
4
4
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
5
- export declare const VERSION = "fddfb9284fc64c70f7d0debf4af30c95";
5
+ export declare const VERSION = "35088fced8f6d5a9595954736caf0ea9";
6
6
  export declare function validate(obj: any, path?: string): TypeError | null;
7
7
  export declare const RepresentationType: string;
8
8
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -42,6 +42,8 @@ export interface SemanticMappedFieldOutputRepresentationNormalized {
42
42
  fields?: Array<SemanticTableFieldReferenceOutputRepresentation_SemanticTableFieldReferenceOutputRepresentation>;
43
43
  /** The object ID of the semantic entity. */
44
44
  id: string;
45
+ /** Indicates if the entity can be queried in semantic query engine */
46
+ isQueryable?: string;
45
47
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
46
48
  isSystemDefinition?: boolean;
47
49
  /** The display name of the semantic entity to be used in the ui. */
@@ -73,6 +75,7 @@ export interface SemanticMappedFieldOutputRepresentation {
73
75
  description?: string;
74
76
  fields?: Array<SemanticTableFieldReferenceOutputRepresentation_SemanticTableFieldReferenceOutputRepresentation>;
75
77
  id: string;
78
+ isQueryable?: string;
76
79
  isSystemDefinition?: boolean;
77
80
  label?: string;
78
81
  lastModifiedBy?: 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 = "a1889c78e50ecbee4e484ec74f17cbe5";
2
+ export declare const VERSION = "284ea18bc174b97006dce939bec0e7e8";
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 {
@@ -57,6 +57,8 @@ export interface SemanticMeasurementOutputRepresentationNormalized {
57
57
  isKeyQualifier?: boolean;
58
58
  /** Indicates whether the field is a primary key. */
59
59
  isPrimaryKey?: boolean;
60
+ /** Indicates if the entity can be queried in semantic query engine */
61
+ isQueryable?: string;
60
62
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
61
63
  isSystemDefinition?: boolean;
62
64
  /** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
@@ -106,6 +108,7 @@ export interface SemanticMeasurementOutputRepresentation {
106
108
  isAggregatable?: boolean;
107
109
  isKeyQualifier?: boolean;
108
110
  isPrimaryKey?: boolean;
111
+ isQueryable?: string;
109
112
  isSystemDefinition?: boolean;
110
113
  isVisible?: boolean;
111
114
  keyQualifierName?: string;
@@ -2,7 +2,7 @@ import { SemanticFieldReferenceOutputRepresentation as SemanticFieldReferenceOut
2
2
  import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
3
3
  import { SemanticInsightsSettingsOutputRepresentation as SemanticInsightsSettingsOutputRepresentation_SemanticInsightsSettingsOutputRepresentation } from './SemanticInsightsSettingsOutputRepresentation';
4
4
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
5
- export declare const VERSION = "a9c4c21f041ebd0ad373f8e53e345e6a";
5
+ export declare const VERSION = "3800a2eb703d5a4964899b4e067ee1d8";
6
6
  export declare function validate(obj: any, path?: string): TypeError | null;
7
7
  export declare const RepresentationType: string;
8
8
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -52,6 +52,8 @@ export interface SemanticMetricOutputRepresentationNormalized {
52
52
  insightsSettings?: SemanticInsightsSettingsOutputRepresentation_SemanticInsightsSettingsOutputRepresentation;
53
53
  /** Indicate if the aggregation is cumulative or not. */
54
54
  isCumulative?: boolean;
55
+ /** Indicates if the entity can be queried in semantic query engine */
56
+ isQueryable?: string;
55
57
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
56
58
  isSystemDefinition?: boolean;
57
59
  /** The display name of the semantic entity to be used in the ui. */
@@ -89,6 +91,7 @@ export interface SemanticMetricOutputRepresentation {
89
91
  id: string;
90
92
  insightsSettings?: SemanticInsightsSettingsOutputRepresentation_SemanticInsightsSettingsOutputRepresentation;
91
93
  isCumulative?: boolean;
94
+ isQueryable?: string;
92
95
  isSystemDefinition?: boolean;
93
96
  label?: string;
94
97
  lastModifiedBy?: string;
@@ -1,6 +1,6 @@
1
1
  import { SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation as SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation_SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation } from './SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation';
2
2
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
- export declare const VERSION = "e760a2becca995f7bd15e714d50c088c";
3
+ export declare const VERSION = "d39ef07b537fde1ac49a10bfc73d7db1";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export declare function normalize(input: SemanticModelExternalConnectionOutputRepresentation, existing: SemanticModelExternalConnectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticModelExternalConnectionOutputRepresentationNormalized;
@@ -21,6 +21,8 @@ export interface SemanticModelExternalConnectionOutputRepresentationNormalized {
21
21
  baseModelApiName?: string;
22
22
  /** The object ID of the semantic entity. */
23
23
  id: string;
24
+ /** Indicates if the entity can be queried in semantic query engine */
25
+ isQueryable?: string;
24
26
  /** The display name of the semantic entity to be used in the ui. */
25
27
  label?: string;
26
28
  tableauPublishedDataSource?: SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation_SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation;
@@ -37,6 +39,7 @@ export interface SemanticModelExternalConnectionOutputRepresentation {
37
39
  apiName: string;
38
40
  baseModelApiName?: string;
39
41
  id: string;
42
+ isQueryable?: string;
40
43
  label?: string;
41
44
  tableauPublishedDataSource?: SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation_SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation;
42
45
  type: string;
@@ -10,7 +10,7 @@ import { SemanticLogicalViewOutputRepresentation as SemanticLogicalViewOutputRep
10
10
  import { SemanticMetricOutputRepresentation as SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation } from './SemanticMetricOutputRepresentation';
11
11
  import { SemanticParameterOutputRepresentation as SemanticParameterOutputRepresentation_SemanticParameterOutputRepresentation } from './SemanticParameterOutputRepresentation';
12
12
  import { SemanticRelationshipOutputRepresentation as SemanticRelationshipOutputRepresentation_SemanticRelationshipOutputRepresentation } from './SemanticRelationshipOutputRepresentation';
13
- export declare const VERSION = "384950eda90c1492434fc4519368df85";
13
+ export declare const VERSION = "56b6e81346b63674fb571a55fe7128bc";
14
14
  export declare function validate(obj: any, path?: string): TypeError | null;
15
15
  export declare const RepresentationType: string;
16
16
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -85,6 +85,10 @@ export interface SemanticModelOutputRepresentationNormalized {
85
85
  id: string;
86
86
  /** Is the model locked for edit/ delete. */
87
87
  isLocked?: boolean;
88
+ /** Indicates if the model is partial because of Data Gov. */
89
+ isPartialSdm?: boolean;
90
+ /** Indicates if the entity can be queried in semantic query engine */
91
+ isQueryable?: string;
88
92
  /** The display name of the semantic entity to be used in the ui. */
89
93
  label?: string;
90
94
  /** The user who last modified the semantic entity. */
@@ -147,6 +151,8 @@ export interface SemanticModelOutputRepresentation {
147
151
  fieldsOverrides?: Array<SemanticOverrideOutputRepresentation_SemanticOverrideOutputRepresentation>;
148
152
  id: string;
149
153
  isLocked?: boolean;
154
+ isPartialSdm?: boolean;
155
+ isQueryable?: string;
150
156
  label?: string;
151
157
  lastModifiedBy?: string;
152
158
  lastModifiedDate?: string;
@@ -1,6 +1,6 @@
1
1
  import { SemanticBaseModelOutputRepresentation as SemanticBaseModelOutputRepresentation_SemanticBaseModelOutputRepresentation } from './SemanticBaseModelOutputRepresentation';
2
2
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
- export declare const VERSION = "1014ce27a42cdfd4801e0ee44a71ca8d";
3
+ export declare const VERSION = "fbfcf3d65a4ca4d916f66efc9208f1cb";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export declare function normalize(input: SemanticModelPartialOutputRepresentation, existing: SemanticModelPartialOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticModelPartialOutputRepresentationNormalized;
@@ -43,6 +43,8 @@ export interface SemanticModelPartialOutputRepresentationNormalized {
43
43
  id: string;
44
44
  /** Is the model locked for edit/ delete. */
45
45
  isLocked?: boolean;
46
+ /** Indicates if the entity can be queried in semantic query engine */
47
+ isQueryable?: string;
46
48
  /** The display name of the semantic entity to be used in the ui. */
47
49
  label?: string;
48
50
  /** The user who last modified the semantic entity. */
@@ -89,6 +91,7 @@ export interface SemanticModelPartialOutputRepresentation {
89
91
  description?: string;
90
92
  id: string;
91
93
  isLocked?: boolean;
94
+ isQueryable?: string;
92
95
  label?: string;
93
96
  lastModifiedBy?: string;
94
97
  lastModifiedDate?: string;
@@ -1,6 +1,6 @@
1
1
  import { SemanticParameterListValueOutputRepresentation as SemanticParameterListValueOutputRepresentation_SemanticParameterListValueOutputRepresentation } from './SemanticParameterListValueOutputRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
- export declare const VERSION = "1463471c69296e6727623faee2cbfe0c";
3
+ export declare const VERSION = "6e5d543fb3167341130fc5d468ef1f3b";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -44,6 +44,8 @@ export interface SemanticParameterOutputRepresentationNormalized {
44
44
  description?: string;
45
45
  /** The object ID of the semantic entity. */
46
46
  id: string;
47
+ /** Indicates if the entity can be queried in semantic query engine */
48
+ isQueryable?: string;
47
49
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
48
50
  isSystemDefinition?: boolean;
49
51
  /** The display name of the semantic entity to be used in the ui. */
@@ -82,6 +84,7 @@ export interface SemanticParameterOutputRepresentation {
82
84
  defaultValue?: string;
83
85
  description?: string;
84
86
  id: string;
87
+ isQueryable?: string;
85
88
  isSystemDefinition?: boolean;
86
89
  label?: string;
87
90
  lastModifiedBy?: string;
@@ -1,6 +1,6 @@
1
1
  import { SemanticRelationshipCriteriaOutputRepresentation as SemanticRelationshipCriteriaOutputRepresentation_SemanticRelationshipCriteriaOutputRepresentation } from './SemanticRelationshipCriteriaOutputRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
- export declare const VERSION = "8c02af844319b9d5bd1c08e30e3ca8dd";
3
+ export declare const VERSION = "b54e564b71d26e8ac89b5649db876f6f";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -44,6 +44,8 @@ export interface SemanticRelationshipOutputRepresentationNormalized {
44
44
  id: string;
45
45
  /** Indicates whether the relationship is currently enabled */
46
46
  isEnabled?: boolean;
47
+ /** Indicates if the entity can be queried in semantic query engine */
48
+ isQueryable?: string;
47
49
  /** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
48
50
  isSystemDefinition?: boolean;
49
51
  /** the join type of the semantic relationship. */
@@ -80,6 +82,7 @@ export interface SemanticRelationshipOutputRepresentation {
80
82
  description?: string;
81
83
  id: string;
82
84
  isEnabled?: boolean;
85
+ isQueryable?: string;
83
86
  isSystemDefinition?: boolean;
84
87
  joinType?: string;
85
88
  label?: string;
@@ -3,7 +3,7 @@ import { SemanticMetricGoalOutputRepresentation as SemanticMetricGoalOutputRepre
3
3
  import { SemanticMetricOutputRepresentation as SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation } from './SemanticMetricOutputRepresentation';
4
4
  import { SemanticTimeRangeOutputRepresentation as SemanticTimeRangeOutputRepresentation_SemanticTimeRangeOutputRepresentation } from './SemanticTimeRangeOutputRepresentation';
5
5
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
6
- export declare const VERSION = "34ece37408ddd80874097c87b829ae97";
6
+ export declare const VERSION = "aa72fa1a282334d9eedca9b6500fb0d9";
7
7
  export declare function validate(obj: any, path?: string): TypeError | null;
8
8
  export declare const RepresentationType: string;
9
9
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -47,6 +47,8 @@ export interface SemanticSubMetricOutputRepresentationNormalized {
47
47
  goal?: SemanticMetricGoalOutputRepresentation_SemanticMetricGoalOutputRepresentation;
48
48
  /** The object ID of the semantic entity. */
49
49
  id: string;
50
+ /** Indicates if the entity can be queried in semantic query engine */
51
+ isQueryable?: string;
50
52
  /** The display name of the semantic entity to be used in the ui. */
51
53
  label?: string;
52
54
  /** The user who last modified the semantic entity. */
@@ -76,6 +78,7 @@ export interface SemanticSubMetricOutputRepresentation {
76
78
  filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
77
79
  goal?: SemanticMetricGoalOutputRepresentation_SemanticMetricGoalOutputRepresentation;
78
80
  id: string;
81
+ isQueryable?: string;
79
82
  label?: string;
80
83
  lastModifiedBy?: string;
81
84
  lastModifiedDate?: string;
@@ -1,7 +1,7 @@
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
2
  import { SemanticDataObjectOutputRepresentation as SemanticDataObjectOutputRepresentation_SemanticDataObjectOutputRepresentation } from './SemanticDataObjectOutputRepresentation';
3
3
  import { SemanticMappedFieldOutputRepresentation as SemanticMappedFieldOutputRepresentation_SemanticMappedFieldOutputRepresentation } from './SemanticMappedFieldOutputRepresentation';
4
- export declare const VERSION = "69fe23112140e9fae50135dcb15c24c2";
4
+ export declare const VERSION = "98b8b40b3bc74aaa0644e303d378db60";
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 {
@@ -50,6 +50,8 @@ export interface SemanticUnionOutputRepresentationNormalized {
50
50
  description?: string;
51
51
  /** The object ID of the semantic entity. */
52
52
  id: string;
53
+ /** Indicates if the entity can be queried in semantic query engine */
54
+ isQueryable?: string;
53
55
  /** The display name of the semantic entity to be used in the ui. */
54
56
  label?: string;
55
57
  /** The user who last modified the semantic entity. */
@@ -77,6 +79,7 @@ export interface SemanticUnionOutputRepresentation {
77
79
  createdDate: string;
78
80
  description?: string;
79
81
  id: string;
82
+ isQueryable?: string;
80
83
  label?: string;
81
84
  lastModifiedBy?: string;
82
85
  lastModifiedDate?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-cdp-semantic-authoring",
3
- "version": "1.380.0-dev1",
3
+ "version": "1.381.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.380.0-dev1"
43
+ "@salesforce/lds-bindings": "^1.381.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.380.0-dev1"
46
+ "@salesforce/lds-compiler-plugins": "^1.381.0"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {