@salesforce/lds-adapters-cdp-semantic-authoring 1.353.1 → 1.354.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 (30) hide show
  1. package/dist/es/es2018/cdp-semantic-authoring.js +949 -601
  2. package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -0
  3. package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsDataObjectsByModelApiNameOrId.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsLogicalViewsByModelApiNameOrId.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsDataObjectsByDataObjectNameOrIdAndModelApiNameOrId.d.ts +1 -0
  6. package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -0
  7. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +7 -1
  8. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +7 -1
  9. package/dist/es/es2018/types/src/generated/types/SemanticDataObjectInputRepresentation.d.ts +4 -1
  10. package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts +10 -1
  11. package/dist/es/es2018/types/src/generated/types/SemanticDependencyCollectionOutputRepresentation.d.ts +5 -4
  12. package/dist/es/es2018/types/src/generated/types/SemanticDependencyInnerCollectionOutputRepresentation.d.ts +12 -3
  13. package/dist/es/es2018/types/src/generated/types/SemanticDependencyOutputRepresentation.d.ts +3 -2
  14. package/dist/es/es2018/types/src/generated/types/SemanticDimensionOutputRepresentation.d.ts +7 -1
  15. package/dist/es/es2018/types/src/generated/types/SemanticFilterInputRepresentation.d.ts +5 -2
  16. package/dist/es/es2018/types/src/generated/types/SemanticFilterOutputRepresentation.d.ts +5 -2
  17. package/dist/es/es2018/types/src/generated/types/SemanticGroupingOutputRepresentation.d.ts +7 -1
  18. package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewInputRepresentation.d.ts +4 -1
  19. package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +10 -1
  20. package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts +7 -1
  21. package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts +7 -1
  22. package/dist/es/es2018/types/src/generated/types/SemanticMetricOutputRepresentation.d.ts +7 -1
  23. package/dist/es/es2018/types/src/generated/types/SemanticModelPartialInputRepresentation.d.ts +7 -1
  24. package/dist/es/es2018/types/src/generated/types/SemanticModelPartialOutputRepresentation.d.ts +7 -1
  25. package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +7 -1
  26. package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts +7 -1
  27. package/package.json +3 -3
  28. package/sfdc/index.js +963 -614
  29. package/src/raml/api.raml +158 -2
  30. package/src/raml/luvio.raml +6 -0
@@ -1,5 +1,5 @@
1
1
  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';
2
- export declare const VERSION = "523893b84e9039115c95ec1749a47f4d";
2
+ export declare const VERSION = "e97e03944caf9f900d55ae924d662f3d";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: SemanticModelPartialInputRepresentation, existing: SemanticModelPartialInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticModelPartialInputRepresentationNormalized;
@@ -14,10 +14,14 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
14
  * (none)
15
15
  */
16
16
  export interface SemanticModelPartialInputRepresentationNormalized {
17
+ /** Indicates whether agent features are enabled for this model. */
18
+ agentEnabled?: boolean;
17
19
  /** The API name of the semantic entity. */
18
20
  apiName?: string;
19
21
  /** App to which the Semantic Model belongs. */
20
22
  app?: string;
23
+ /** Allow Analysts to include business-specific preferences or context. */
24
+ businessPreferences?: string;
21
25
  /** Product category of the Semantic Model. Valid values are Marketing, Commerce, Sales, Service, and Other. */
22
26
  categories?: Array<string>;
23
27
  /** Required. Dataspace in which the Semantic Model is located. */
@@ -40,8 +44,10 @@ export interface SemanticModelPartialInputRepresentationNormalized {
40
44
  * (none)
41
45
  */
42
46
  export interface SemanticModelPartialInputRepresentation {
47
+ agentEnabled?: boolean;
43
48
  apiName?: string;
44
49
  app?: string;
50
+ businessPreferences?: string;
45
51
  categories?: Array<string>;
46
52
  dataspace?: string;
47
53
  description?: 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 = "c9079354cd8127a37c0c13ea6686383c";
3
+ export declare const VERSION = "1014ce27a42cdfd4801e0ee44a71ca8d";
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;
@@ -15,6 +15,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
15
15
  * (none)
16
16
  */
17
17
  export interface SemanticModelPartialOutputRepresentationNormalized {
18
+ /** Indicates whether agent features are enabled for this model. */
19
+ agentEnabled?: boolean;
18
20
  /** The API name of the semantic entity. */
19
21
  apiName: string;
20
22
  /** App to which the Semantic Model belongs. */
@@ -23,6 +25,8 @@ export interface SemanticModelPartialOutputRepresentationNormalized {
23
25
  baseModelApiName?: string;
24
26
  /** List of base models, the current model is extending. */
25
27
  baseModels?: Array<SemanticBaseModelOutputRepresentation_SemanticBaseModelOutputRepresentation>;
28
+ /** Allow Analysts to include business-specific preferences or context. */
29
+ businessPreferences?: string;
26
30
  /** The Canonical URL of the collection for caching purposes only. */
27
31
  cacheKey?: string;
28
32
  /** Product category of the Semantic Model. Valid values are Marketing, Commerce, Sales, Service, and Other. */
@@ -71,10 +75,12 @@ export interface SemanticModelPartialOutputRepresentationNormalized {
71
75
  * (none)
72
76
  */
73
77
  export interface SemanticModelPartialOutputRepresentation {
78
+ agentEnabled?: boolean;
74
79
  apiName: string;
75
80
  app?: string;
76
81
  baseModelApiName?: string;
77
82
  baseModels?: Array<SemanticBaseModelOutputRepresentation_SemanticBaseModelOutputRepresentation>;
83
+ businessPreferences?: string;
78
84
  cacheKey?: string;
79
85
  categories?: Array<string>;
80
86
  createdBy: 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 = "6ed89c4ce77235d13ce6bb395ae49d8e";
3
+ export declare const VERSION = "1463471c69296e6727623faee2cbfe0c";
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
+ /** 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
+ isSystemDefinition?: boolean;
47
49
  /** The display name of the semantic entity to be used in the ui. */
48
50
  label?: string;
49
51
  /** The user who last modified the semantic entity. */
@@ -58,6 +60,8 @@ export interface SemanticParameterOutputRepresentationNormalized {
58
60
  stepSize?: string;
59
61
  /** The semantic parameter type. */
60
62
  type?: string;
63
+ /** The unmapped property indicates whether a semantic definition is based on an unmapped field */
64
+ unmapped?: boolean;
61
65
  /** The list values of the semantic parameter. */
62
66
  values?: Array<string>;
63
67
  }
@@ -78,6 +82,7 @@ export interface SemanticParameterOutputRepresentation {
78
82
  defaultValue?: string;
79
83
  description?: string;
80
84
  id: string;
85
+ isSystemDefinition?: boolean;
81
86
  label?: string;
82
87
  lastModifiedBy?: string;
83
88
  lastModifiedDate?: string;
@@ -85,5 +90,6 @@ export interface SemanticParameterOutputRepresentation {
85
90
  minValue?: string;
86
91
  stepSize?: string;
87
92
  type?: string;
93
+ unmapped?: boolean;
88
94
  values?: Array<string>;
89
95
  }
@@ -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 = "b9778dace5726fcb57804d3afd529246";
3
+ export declare const VERSION = "8c02af844319b9d5bd1c08e30e3ca8dd";
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
+ /** 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
+ isSystemDefinition?: boolean;
47
49
  /** the join type of the semantic relationship. */
48
50
  joinType?: string;
49
51
  /** The display name of the semantic entity to be used in the ui. */
@@ -58,6 +60,8 @@ export interface SemanticRelationshipOutputRepresentationNormalized {
58
60
  logicalViewId?: string;
59
61
  /** The api name of the right Semantic definition. */
60
62
  rightSemanticDefinitionApiName?: string;
63
+ /** The unmapped property indicates whether a semantic definition is based on an unmapped field */
64
+ unmapped?: boolean;
61
65
  }
62
66
  /**
63
67
  * The output representation of a semantic relationship.
@@ -76,6 +80,7 @@ export interface SemanticRelationshipOutputRepresentation {
76
80
  description?: string;
77
81
  id: string;
78
82
  isEnabled?: boolean;
83
+ isSystemDefinition?: boolean;
79
84
  joinType?: string;
80
85
  label?: string;
81
86
  lastModifiedBy?: string;
@@ -83,4 +88,5 @@ export interface SemanticRelationshipOutputRepresentation {
83
88
  leftSemanticDefinitionApiName?: string;
84
89
  logicalViewId?: string;
85
90
  rightSemanticDefinitionApiName?: string;
91
+ unmapped?: boolean;
86
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-cdp-semantic-authoring",
3
- "version": "1.353.1",
3
+ "version": "1.354.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.353.1"
43
+ "@salesforce/lds-bindings": "^1.354.0-dev10"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.353.1"
46
+ "@salesforce/lds-compiler-plugins": "^1.354.0-dev10"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {