@salesforce/lds-adapters-analytics-unifiedanalytics 1.435.1 → 1.436.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/dist/es/es2018/analytics-unifiedanalytics.js +1456 -1165
- package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +5 -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 +5 -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/getTableauDataAssetsLineageByAssetIdOrApiName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/types/DashboardInputRepresentation.d.ts +14 -1
- package/dist/es/es2018/types/src/generated/types/DashboardRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetLineageRepresentation.d.ts +37 -0
- package/package.json +3 -3
- package/sfdc/index.js +1671 -1369
- package/src/raml/api.raml +53 -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
|
|
@@ -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
|
|
@@ -3631,6 +3669,21 @@ types:
|
|
|
3631
3669
|
assetId:
|
|
3632
3670
|
type: string
|
|
3633
3671
|
required: true
|
|
3672
|
+
/lineage:
|
|
3673
|
+
/{assetIdOrApiName}:
|
|
3674
|
+
get:
|
|
3675
|
+
displayName: getDataAssetLineage
|
|
3676
|
+
description: Get data asset lineage by asset Id or Api Name
|
|
3677
|
+
responses:
|
|
3678
|
+
'200':
|
|
3679
|
+
description: Success
|
|
3680
|
+
body:
|
|
3681
|
+
application/json:
|
|
3682
|
+
type: DataAssetLineageRepresentation
|
|
3683
|
+
uriParameters:
|
|
3684
|
+
assetIdOrApiName:
|
|
3685
|
+
type: string
|
|
3686
|
+
required: true
|
|
3634
3687
|
/follow/followers/{followerId}/follows:
|
|
3635
3688
|
post:
|
|
3636
3689
|
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):
|