@salesforce/lds-adapters-cdp-semantic-authoring 1.379.1 → 1.380.0-dev10

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 (28) hide show
  1. package/dist/es/es2018/cdp-semantic-authoring.js +723 -155
  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 +7 -1
  6. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +7 -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 +7 -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 +7 -1
  11. package/dist/es/es2018/types/src/generated/types/SemanticInsightsSettingsInputRepresentation.d.ts +5 -1
  12. package/dist/es/es2018/types/src/generated/types/SemanticInsightsSettingsOutputRepresentation.d.ts +5 -1
  13. package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +4 -1
  14. package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts +4 -1
  15. package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts +7 -1
  16. package/dist/es/es2018/types/src/generated/types/SemanticMetricForecastConfigurationInputRepresentation.d.ts +29 -0
  17. package/dist/es/es2018/types/src/generated/types/SemanticMetricForecastConfigurationOutputRepresentation.d.ts +29 -0
  18. package/dist/es/es2018/types/src/generated/types/SemanticMetricOutputRepresentation.d.ts +4 -1
  19. package/dist/es/es2018/types/src/generated/types/SemanticModelExternalConnectionOutputRepresentation.d.ts +4 -1
  20. package/dist/es/es2018/types/src/generated/types/SemanticModelOutputRepresentation.d.ts +7 -1
  21. package/dist/es/es2018/types/src/generated/types/SemanticModelPartialOutputRepresentation.d.ts +4 -1
  22. package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +7 -1
  23. package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts +4 -1
  24. package/dist/es/es2018/types/src/generated/types/SemanticSubMetricOutputRepresentation.d.ts +4 -1
  25. package/dist/es/es2018/types/src/generated/types/SemanticUnionOutputRepresentation.d.ts +4 -1
  26. package/package.json +3 -3
  27. package/sfdc/index.js +881 -313
  28. package/src/raml/api.raml +137 -1
@@ -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.379.1",
3
+ "version": "1.380.0-dev10",
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.379.1"
43
+ "@salesforce/lds-bindings": "^1.380.0-dev10"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.379.1"
46
+ "@salesforce/lds-compiler-plugins": "^1.380.0-dev10"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {