@salesforce/lds-adapters-analytics-unifiedanalytics 1.428.0-dev6 → 1.428.0-dev7

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
@@ -1057,6 +1065,22 @@ types:
1057
1065
  dataAsset:
1058
1066
  description: Represents a Data asset
1059
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
1060
1084
  DataAssetRepresentation:
1061
1085
  description: Represents a Data asset
1062
1086
  discriminator: assetId # TODO Hand-rolled W-17712133: invalid inheritance
@@ -3635,6 +3659,10 @@ types:
3635
3659
  type: boolean
3636
3660
  required: false
3637
3661
  description: Perform asset type schema mismatch validation and include schema fingerprint in the response
3662
+ includeReusedAssets:
3663
+ type: boolean
3664
+ required: false
3665
+ description: Includes assets that were reused from the production org in the dependency list
3638
3666
  responses:
3639
3667
  '200':
3640
3668
  description: Success
@@ -3645,6 +3673,21 @@ types:
3645
3673
  assetId:
3646
3674
  type: string
3647
3675
  required: true
3676
+ /lineage:
3677
+ /{assetIdOrApiName}:
3678
+ get:
3679
+ displayName: getDataAssetLineage
3680
+ description: Get data asset lineage by asset Id or Api Name
3681
+ responses:
3682
+ '200':
3683
+ description: Success
3684
+ body:
3685
+ application/json:
3686
+ type: DataAssetLineageRepresentation
3687
+ uriParameters:
3688
+ assetIdOrApiName:
3689
+ type: string
3690
+ required: true
3648
3691
  /follow/followers/{followerId}/follows:
3649
3692
  post:
3650
3693
  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):