@salesforce/lds-adapters-analytics-unifiedanalytics 1.435.1 → 1.437.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/raml/api.raml CHANGED
@@ -931,6 +931,14 @@ types:
931
931
  description: Unique developer name.
932
932
  type: string
933
933
  required: false
934
+ lastModifiedBy:
935
+ description: Last modified by of the asset.
936
+ type: any
937
+ required: false
938
+ lastModifiedDate:
939
+ description: Last modified date of the asset.
940
+ type: string
941
+ required: false
934
942
  layouts:
935
943
  description: List of layouts in the dashboard.
936
944
  type: array
@@ -956,6 +964,13 @@ types:
956
964
  properties:
957
965
  //:
958
966
  type: any
967
+ customConfig:
968
+ description: Dashboard level custom configuration
969
+ type: object
970
+ required: false
971
+ properties:
972
+ //:
973
+ type: any
959
974
  DashboardRepresentation:
960
975
  description: Unified analytics dashboard representation.
961
976
  discriminator: id
@@ -1020,6 +1035,13 @@ types:
1020
1035
  properties:
1021
1036
  //:
1022
1037
  type: any
1038
+ customConfig:
1039
+ description: Dashboard level custom configuration
1040
+ type: object
1041
+ required: false
1042
+ properties:
1043
+ //:
1044
+ type: any
1023
1045
  DataAssetDependentCollectionRepresentation:
1024
1046
  description: Represents a List of dependent assets for a given asset
1025
1047
  type: object
@@ -1043,6 +1065,22 @@ types:
1043
1065
  dataAsset:
1044
1066
  description: Represents a Data asset
1045
1067
  type: DataAssetRepresentation
1068
+ DataAssetLineageRepresentation:
1069
+ description: Data Asset Lineage
1070
+ type: object
1071
+ properties:
1072
+ sourceDeveloperName:
1073
+ description: Source Developer Name
1074
+ type: string
1075
+ sourceRecordId:
1076
+ description: Source Record Id
1077
+ type: string
1078
+ targetDeveloperName:
1079
+ description: Target Developer Name
1080
+ type: string
1081
+ targetRecordId:
1082
+ description: Target Record Id
1083
+ type: string
1046
1084
  DataAssetRepresentation:
1047
1085
  description: Represents a Data asset
1048
1086
  discriminator: assetId # TODO Hand-rolled W-17712133: invalid inheritance
@@ -2159,10 +2197,12 @@ types:
2159
2197
  type: string
2160
2198
  targetDevName:
2161
2199
  description: The target developer name of the asset
2162
- type: string
2200
+ type: string | nil
2201
+ required: false
2163
2202
  targetId:
2164
2203
  description: The target ID of the asset
2165
- type: string
2204
+ type: string | nil
2205
+ required: false
2166
2206
  TableauMarketplaceListingInstallationProgressResponse:
2167
2207
  description: Representation of tableau marketplace's listing installation progress
2168
2208
  type: object
@@ -3631,6 +3671,21 @@ types:
3631
3671
  assetId:
3632
3672
  type: string
3633
3673
  required: true
3674
+ /lineage:
3675
+ /{assetIdOrApiName}:
3676
+ get:
3677
+ displayName: getDataAssetLineage
3678
+ description: Get data asset lineage by asset Id or Api Name
3679
+ responses:
3680
+ '200':
3681
+ description: Success
3682
+ body:
3683
+ application/json:
3684
+ type: DataAssetLineageRepresentation
3685
+ uriParameters:
3686
+ assetIdOrApiName:
3687
+ type: string
3688
+ required: true
3634
3689
  /follow/followers/{followerId}/follows:
3635
3690
  post:
3636
3691
  displayName: postFollow
@@ -512,6 +512,12 @@ types:
512
512
  get:
513
513
  (luvio.adapter):
514
514
  name: getDataAssetDependencies
515
+
516
+ /tableau/data-assets/lineage/{assetIdOrApiName}:
517
+ get:
518
+ (luvio.adapter):
519
+ name: getDataAssetLineageByIdOrApiName
520
+
515
521
  /tableau/marketplace/listings:
516
522
  post:
517
523
  (luvio.adapter):