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

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
@@ -2173,10 +2197,12 @@ types:
2173
2197
  type: string
2174
2198
  targetDevName:
2175
2199
  description: The target developer name of the asset
2176
- type: string
2200
+ type: string | nil
2201
+ required: false
2177
2202
  targetId:
2178
2203
  description: The target ID of the asset
2179
- type: string
2204
+ type: string | nil
2205
+ required: false
2180
2206
  TableauMarketplaceListingInstallationProgressResponse:
2181
2207
  description: Representation of tableau marketplace's listing installation progress
2182
2208
  type: object
@@ -3635,6 +3661,10 @@ types:
3635
3661
  type: boolean
3636
3662
  required: false
3637
3663
  description: Perform asset type schema mismatch validation and include schema fingerprint in the response
3664
+ includeReusedAssets:
3665
+ type: boolean
3666
+ required: false
3667
+ description: Includes assets that were reused from the production org in the dependency list
3638
3668
  responses:
3639
3669
  '200':
3640
3670
  description: Success
@@ -3645,6 +3675,21 @@ types:
3645
3675
  assetId:
3646
3676
  type: string
3647
3677
  required: true
3678
+ /lineage:
3679
+ /{assetIdOrApiName}:
3680
+ get:
3681
+ displayName: getDataAssetLineage
3682
+ description: Get data asset lineage by asset Id or Api Name
3683
+ responses:
3684
+ '200':
3685
+ description: Success
3686
+ body:
3687
+ application/json:
3688
+ type: DataAssetLineageRepresentation
3689
+ uriParameters:
3690
+ assetIdOrApiName:
3691
+ type: string
3692
+ required: true
3648
3693
  /follow/followers/{followerId}/follows:
3649
3694
  post:
3650
3695
  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):