@salesforce/lds-adapters-analytics-unifiedanalytics 1.428.0-dev5 → 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/dist/es/es2018/analytics-unifiedanalytics.js +1481 -1176
- package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetLineageByIdOrApiName.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsLineageByAssetIdOrApiName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/types/DashboardInputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetLineageRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/PromotionContentAssetRepresentation.d.ts +46 -0
- package/package.json +3 -3
- package/sfdc/index.js +1682 -1366
- package/src/raml/api.raml +74 -0
- package/src/raml/luvio.raml +6 -0
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
|
|
@@ -2042,6 +2066,12 @@ types:
|
|
|
2042
2066
|
description: Indicates whether the promotion request includes a DLO that is unsupported for guided promotions (e.g., non-CSV file type)
|
|
2043
2067
|
type: boolean | nil
|
|
2044
2068
|
required: false
|
|
2069
|
+
promotionContentAssets:
|
|
2070
|
+
description: List of content assets from promotion additional info
|
|
2071
|
+
type: array
|
|
2072
|
+
items:
|
|
2073
|
+
type: PromotionContentAssetRepresentation
|
|
2074
|
+
required: false
|
|
2045
2075
|
DataSpaceInfoRepresentation:
|
|
2046
2076
|
description: DataSpace Info Representation
|
|
2047
2077
|
type: object
|
|
@@ -2146,6 +2176,31 @@ types:
|
|
|
2146
2176
|
items:
|
|
2147
2177
|
type: string
|
|
2148
2178
|
required: false
|
|
2179
|
+
PromotionContentAssetRepresentation:
|
|
2180
|
+
description: Represents a content asset in a promotion request
|
|
2181
|
+
type: object
|
|
2182
|
+
properties:
|
|
2183
|
+
assetType:
|
|
2184
|
+
description: The type of the asset
|
|
2185
|
+
type: string
|
|
2186
|
+
isFirstLevelReuse:
|
|
2187
|
+
description: Indicates whether the asset is a first-level reuse
|
|
2188
|
+
type: boolean
|
|
2189
|
+
isReused:
|
|
2190
|
+
description: Indicates whether the asset is reused from another promotion
|
|
2191
|
+
type: boolean
|
|
2192
|
+
sourceDevName:
|
|
2193
|
+
description: The source developer name of the asset
|
|
2194
|
+
type: string
|
|
2195
|
+
sourceId:
|
|
2196
|
+
description: The source ID of the asset
|
|
2197
|
+
type: string
|
|
2198
|
+
targetDevName:
|
|
2199
|
+
description: The target developer name of the asset
|
|
2200
|
+
type: string
|
|
2201
|
+
targetId:
|
|
2202
|
+
description: The target ID of the asset
|
|
2203
|
+
type: string
|
|
2149
2204
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
2150
2205
|
description: Representation of tableau marketplace's listing installation progress
|
|
2151
2206
|
type: object
|
|
@@ -3604,6 +3659,10 @@ types:
|
|
|
3604
3659
|
type: boolean
|
|
3605
3660
|
required: false
|
|
3606
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
|
|
3607
3666
|
responses:
|
|
3608
3667
|
'200':
|
|
3609
3668
|
description: Success
|
|
@@ -3614,6 +3673,21 @@ types:
|
|
|
3614
3673
|
assetId:
|
|
3615
3674
|
type: string
|
|
3616
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
|
|
3617
3691
|
/follow/followers/{followerId}/follows:
|
|
3618
3692
|
post:
|
|
3619
3693
|
displayName: postFollow
|
package/src/raml/luvio.raml
CHANGED
|
@@ -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):
|