@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev2 → 1.404.0-dev20
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 +3052 -2394
- package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/generateSFDrivePresignedCredentials.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequests.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequestsCount.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getFlows.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +1 -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 +2 -1
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequests.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequestsCount.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauFlows.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSfDriveActionsGeneratePresignedCredential.d.ts +11 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetWarningsRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalInfoDataspacesRepresentation.d.ts +31 -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/DataAlertInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetDependentCollectionRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestAdditionalInfoRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +17 -1
- package/dist/es/es2018/types/src/generated/types/DataSpaceInfoRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialRepresentation.d.ts +48 -0
- package/package.json +3 -3
- package/sfdc/index.js +1716 -1055
- package/src/raml/api.raml +217 -0
- package/src/raml/luvio.raml +10 -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
|
|
@@ -949,6 +957,13 @@ types:
|
|
|
949
957
|
properties:
|
|
950
958
|
//:
|
|
951
959
|
type: any
|
|
960
|
+
backgroundSource:
|
|
961
|
+
description: Dashboard level background image source.
|
|
962
|
+
type: object
|
|
963
|
+
required: false
|
|
964
|
+
properties:
|
|
965
|
+
//:
|
|
966
|
+
type: any
|
|
952
967
|
DashboardRepresentation:
|
|
953
968
|
description: Unified analytics dashboard representation.
|
|
954
969
|
discriminator: id
|
|
@@ -1006,6 +1021,13 @@ types:
|
|
|
1006
1021
|
properties:
|
|
1007
1022
|
//:
|
|
1008
1023
|
type: any
|
|
1024
|
+
backgroundSource:
|
|
1025
|
+
description: Dashboard level background image source.
|
|
1026
|
+
type: object
|
|
1027
|
+
required: false
|
|
1028
|
+
properties:
|
|
1029
|
+
//:
|
|
1030
|
+
type: any
|
|
1009
1031
|
DataAssetDependentCollectionRepresentation:
|
|
1010
1032
|
description: Represents a List of dependent assets for a given asset
|
|
1011
1033
|
type: object
|
|
@@ -1015,6 +1037,13 @@ types:
|
|
|
1015
1037
|
type: array
|
|
1016
1038
|
items:
|
|
1017
1039
|
type: DataAssetDependentRepresentation
|
|
1040
|
+
sourceOrgType:
|
|
1041
|
+
description: Type of the org from which the request originates
|
|
1042
|
+
type: string
|
|
1043
|
+
required: false
|
|
1044
|
+
enum:
|
|
1045
|
+
- Companion
|
|
1046
|
+
- Home
|
|
1018
1047
|
DataAssetDependentRepresentation:
|
|
1019
1048
|
description: Represents a Dependent asset
|
|
1020
1049
|
type: object
|
|
@@ -1087,6 +1116,14 @@ types:
|
|
|
1087
1116
|
items:
|
|
1088
1117
|
type: DataSpaceInfoRepresentation
|
|
1089
1118
|
required: false
|
|
1119
|
+
isPrimaryAsset:
|
|
1120
|
+
description: Whether the DataAsset is the primary asset in a list of data asset dependencies
|
|
1121
|
+
type: boolean
|
|
1122
|
+
required: false
|
|
1123
|
+
assetTypeFingerprint:
|
|
1124
|
+
description: Schema fingerprint of the asset type of the DataAsset
|
|
1125
|
+
type: string
|
|
1126
|
+
required: false
|
|
1090
1127
|
DataAssetRequestCollectionRepresentation:
|
|
1091
1128
|
description: Collection of Data Asset Requests
|
|
1092
1129
|
type: object
|
|
@@ -1381,6 +1418,10 @@ types:
|
|
|
1381
1418
|
utterance:
|
|
1382
1419
|
description: user entered utterance
|
|
1383
1420
|
type: string
|
|
1421
|
+
agent:
|
|
1422
|
+
description: ID of the associated BotDefinition agent.
|
|
1423
|
+
type: string | nil
|
|
1424
|
+
required: false
|
|
1384
1425
|
DataAlertNotificationRecipientsInputRepresentation:
|
|
1385
1426
|
description: 'List of UNS recipients for Data alerts. May contain user or group
|
|
1386
1427
|
Ids. '
|
|
@@ -1625,6 +1666,10 @@ types:
|
|
|
1625
1666
|
thresholds:
|
|
1626
1667
|
description: Thresholds to be evaluated.
|
|
1627
1668
|
type: DataAlertThresholdsRepresentation
|
|
1669
|
+
agent:
|
|
1670
|
+
description: ID of the associated BotDefinition agent.
|
|
1671
|
+
type: string | nil
|
|
1672
|
+
required: false
|
|
1628
1673
|
DataAlertScheduleRepresentation:
|
|
1629
1674
|
description: Represents the schedule for a data alert
|
|
1630
1675
|
type: object
|
|
@@ -1769,6 +1814,10 @@ types:
|
|
|
1769
1814
|
acknowledgedDate:
|
|
1770
1815
|
description: Acknowledged date
|
|
1771
1816
|
type: string | nil
|
|
1817
|
+
additionalInfo:
|
|
1818
|
+
description: Additional Info
|
|
1819
|
+
type: DataAssetRequestAdditionalInfoRepresentation | nil
|
|
1820
|
+
required: false
|
|
1772
1821
|
assetId:
|
|
1773
1822
|
description: assetId associated with the request
|
|
1774
1823
|
type: string
|
|
@@ -1787,6 +1836,10 @@ types:
|
|
|
1787
1836
|
completedDate:
|
|
1788
1837
|
description: Completed date
|
|
1789
1838
|
type: string | nil
|
|
1839
|
+
errorCode:
|
|
1840
|
+
description: Error Code
|
|
1841
|
+
type: string | nil
|
|
1842
|
+
required: false
|
|
1790
1843
|
failedDate:
|
|
1791
1844
|
description: Failed date
|
|
1792
1845
|
type: string | nil
|
|
@@ -1887,6 +1940,26 @@ types:
|
|
|
1887
1940
|
packageExportedDate:
|
|
1888
1941
|
description: Date and time the metadata package was exported
|
|
1889
1942
|
type: string | nil
|
|
1943
|
+
taskProgressStatus:
|
|
1944
|
+
description: Overall progress status of a task
|
|
1945
|
+
type: string | nil
|
|
1946
|
+
enum:
|
|
1947
|
+
- CreationInProgress
|
|
1948
|
+
- InReview
|
|
1949
|
+
- MigrationInProgress
|
|
1950
|
+
- NotStarted
|
|
1951
|
+
- Terminal
|
|
1952
|
+
required: false
|
|
1953
|
+
promotionApprovalFlow:
|
|
1954
|
+
description: Promotion Approval Flow of the request
|
|
1955
|
+
type: string | nil
|
|
1956
|
+
enum:
|
|
1957
|
+
- Bespoke
|
|
1958
|
+
- Cli
|
|
1959
|
+
hasUnsupportedDloForGuidedPromotions:
|
|
1960
|
+
description: Indicates whether the promotion request includes a DLO that is unsupported for guided promotions (e.g., non-CSV file type)
|
|
1961
|
+
type: boolean | nil
|
|
1962
|
+
required: false
|
|
1890
1963
|
DataSpaceInfoRepresentation:
|
|
1891
1964
|
description: DataSpace Info Representation
|
|
1892
1965
|
type: object
|
|
@@ -1894,12 +1967,103 @@ types:
|
|
|
1894
1967
|
dataSpacePrefix:
|
|
1895
1968
|
description: DataSpace prefix.
|
|
1896
1969
|
type: string
|
|
1970
|
+
required: false
|
|
1897
1971
|
dataSpaceLabel:
|
|
1898
1972
|
description: DataSpace label.
|
|
1899
1973
|
type: string
|
|
1900
1974
|
dataSpaceDeveloperName:
|
|
1901
1975
|
description: DataSpace developer name.
|
|
1902
1976
|
type: string
|
|
1977
|
+
DataAssetRequestAdditionalInfoRepresentation:
|
|
1978
|
+
description: DataAssetRequest Additional Info Representation
|
|
1979
|
+
type: object
|
|
1980
|
+
properties:
|
|
1981
|
+
dataspaces:
|
|
1982
|
+
description: Additional Info Dataspaces Representation
|
|
1983
|
+
type: AdditionalInfoDataspacesRepresentation
|
|
1984
|
+
required: false
|
|
1985
|
+
deployedAssets:
|
|
1986
|
+
description: List of Assets Deployed
|
|
1987
|
+
type: array
|
|
1988
|
+
items:
|
|
1989
|
+
type: AdditionalInfoAssetRepresentation
|
|
1990
|
+
required: false
|
|
1991
|
+
inProgressAssets:
|
|
1992
|
+
description: List of Assets In Progress
|
|
1993
|
+
type: array
|
|
1994
|
+
items:
|
|
1995
|
+
type: AdditionalInfoAssetRepresentation
|
|
1996
|
+
required: false
|
|
1997
|
+
notStartedAssets:
|
|
1998
|
+
description: List of Assets Not Started
|
|
1999
|
+
type: array
|
|
2000
|
+
items:
|
|
2001
|
+
type: AdditionalInfoAssetRepresentation
|
|
2002
|
+
required: false
|
|
2003
|
+
failedAssets:
|
|
2004
|
+
description: List of Failed Assets
|
|
2005
|
+
type: array
|
|
2006
|
+
items:
|
|
2007
|
+
type: AdditionalInfoAssetRepresentation
|
|
2008
|
+
required: false
|
|
2009
|
+
AdditionalInfoDataspacesRepresentation:
|
|
2010
|
+
description: Additional Info Dataspaces Representation
|
|
2011
|
+
type: object
|
|
2012
|
+
properties:
|
|
2013
|
+
toBeCreated:
|
|
2014
|
+
description: List of dataspaces to be created
|
|
2015
|
+
type: array
|
|
2016
|
+
items:
|
|
2017
|
+
type: string
|
|
2018
|
+
required: false
|
|
2019
|
+
created:
|
|
2020
|
+
description: List of dataspaces created
|
|
2021
|
+
type: array
|
|
2022
|
+
items:
|
|
2023
|
+
type: string
|
|
2024
|
+
required: false
|
|
2025
|
+
AdditionalInfoAssetRepresentation:
|
|
2026
|
+
description: Additional Info Asset Representation
|
|
2027
|
+
type: object
|
|
2028
|
+
properties:
|
|
2029
|
+
srcName:
|
|
2030
|
+
description: Source developer name of the asset
|
|
2031
|
+
type: string
|
|
2032
|
+
required: false
|
|
2033
|
+
tgtName:
|
|
2034
|
+
description: Target developer name of the asset
|
|
2035
|
+
type: string
|
|
2036
|
+
required: false
|
|
2037
|
+
label:
|
|
2038
|
+
description: Label of the asset
|
|
2039
|
+
type: string
|
|
2040
|
+
type:
|
|
2041
|
+
description: Type of the asset
|
|
2042
|
+
type: string
|
|
2043
|
+
enum:
|
|
2044
|
+
- AnalyticsDashboard
|
|
2045
|
+
- AnalyticsVisualization
|
|
2046
|
+
- MktCalculatedInsightsObject
|
|
2047
|
+
- MktDataModelObject
|
|
2048
|
+
- MktDataLakeObject
|
|
2049
|
+
- SemanticModel
|
|
2050
|
+
warnings:
|
|
2051
|
+
description: Warnings
|
|
2052
|
+
type: AdditionalInfoAssetWarningsRepresentation | nil
|
|
2053
|
+
required: false
|
|
2054
|
+
isPrimary:
|
|
2055
|
+
description:
|
|
2056
|
+
type: boolean
|
|
2057
|
+
AdditionalInfoAssetWarningsRepresentation:
|
|
2058
|
+
description: Additional Info Asset Warnings Representation
|
|
2059
|
+
type: object
|
|
2060
|
+
properties:
|
|
2061
|
+
unmappedFields:
|
|
2062
|
+
description: List of Unmapped Fields
|
|
2063
|
+
type: array
|
|
2064
|
+
items:
|
|
2065
|
+
type: string
|
|
2066
|
+
required: false
|
|
1903
2067
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
1904
2068
|
description: Representation of tableau marketplace's listing installation progress
|
|
1905
2069
|
type: object
|
|
@@ -2925,6 +3089,32 @@ types:
|
|
|
2925
3089
|
tenantKeyId:
|
|
2926
3090
|
description: Tenant Key Id
|
|
2927
3091
|
type: string
|
|
3092
|
+
SFDrivePresignedCredentialInputRepresentation:
|
|
3093
|
+
description: Input representation for sf drive Presigned credentials
|
|
3094
|
+
type: CdpAssetBaseInputRepresentation
|
|
3095
|
+
properties:
|
|
3096
|
+
driveDirectory:
|
|
3097
|
+
description: The driveDirectory in sfdrive for which presigned url required
|
|
3098
|
+
type: string
|
|
3099
|
+
fileName:
|
|
3100
|
+
description: The fileName in sfdrive for which presigned url required
|
|
3101
|
+
type: string
|
|
3102
|
+
SFDrivePresignedCredentialRepresentation:
|
|
3103
|
+
description: Response representation for SFDrive Presigned Credentials Request
|
|
3104
|
+
type: object
|
|
3105
|
+
properties:
|
|
3106
|
+
expiryTime:
|
|
3107
|
+
description: presignedUrl expiry timestamp
|
|
3108
|
+
type: string
|
|
3109
|
+
headers:
|
|
3110
|
+
description: kms key details for byok enabled org
|
|
3111
|
+
type: object
|
|
3112
|
+
properties:
|
|
3113
|
+
//:
|
|
3114
|
+
type: string
|
|
3115
|
+
presignedUrl:
|
|
3116
|
+
description: presignedUrl of given directory and filename
|
|
3117
|
+
type: string
|
|
2928
3118
|
/tableau:
|
|
2929
3119
|
/admin/monitoring/events:
|
|
2930
3120
|
post:
|
|
@@ -3221,6 +3411,9 @@ types:
|
|
|
3221
3411
|
status:
|
|
3222
3412
|
type: string
|
|
3223
3413
|
required: false
|
|
3414
|
+
taskProgressStatus:
|
|
3415
|
+
type: string
|
|
3416
|
+
required: false
|
|
3224
3417
|
workspaceIdOrApiName:
|
|
3225
3418
|
type: string
|
|
3226
3419
|
required: false
|
|
@@ -3264,6 +3457,9 @@ types:
|
|
|
3264
3457
|
status:
|
|
3265
3458
|
type: string
|
|
3266
3459
|
required: false
|
|
3460
|
+
taskProgressStatus:
|
|
3461
|
+
type: string
|
|
3462
|
+
required: false
|
|
3267
3463
|
taskType:
|
|
3268
3464
|
type: string
|
|
3269
3465
|
required: false
|
|
@@ -3307,6 +3503,10 @@ types:
|
|
|
3307
3503
|
type: boolean
|
|
3308
3504
|
required: false
|
|
3309
3505
|
description: Include synchronization information in the response
|
|
3506
|
+
failOnSchemaMismatch:
|
|
3507
|
+
type: boolean
|
|
3508
|
+
required: false
|
|
3509
|
+
description: Perform asset type schema mismatch validation and include schema fingerprint in the response
|
|
3310
3510
|
responses:
|
|
3311
3511
|
'200':
|
|
3312
3512
|
description: Success
|
|
@@ -3863,6 +4063,9 @@ types:
|
|
|
3863
4063
|
offset:
|
|
3864
4064
|
type: integer
|
|
3865
4065
|
required: false
|
|
4066
|
+
searchTerm:
|
|
4067
|
+
type: string
|
|
4068
|
+
required: false
|
|
3866
4069
|
/flows/{flowApiName}:
|
|
3867
4070
|
get:
|
|
3868
4071
|
displayName: getFlowByName
|
|
@@ -3934,6 +4137,20 @@ types:
|
|
|
3934
4137
|
application/json:
|
|
3935
4138
|
type: SFDriveCredentialInputRepresentation
|
|
3936
4139
|
(oas-body-name): generateSFDriveCredentialsInput
|
|
4140
|
+
/ssot/sf-drive/actions/generate-presigned-credential:
|
|
4141
|
+
post:
|
|
4142
|
+
displayName: postSfDrivePresignedCredentials
|
|
4143
|
+
description: sfdrive api to get presigned Url
|
|
4144
|
+
responses:
|
|
4145
|
+
'200':
|
|
4146
|
+
description: Success
|
|
4147
|
+
body:
|
|
4148
|
+
application/json:
|
|
4149
|
+
type: SFDrivePresignedCredentialRepresentation
|
|
4150
|
+
body:
|
|
4151
|
+
application/json:
|
|
4152
|
+
type: SFDrivePresignedCredentialInputRepresentation
|
|
4153
|
+
(oas-body-name): generateSFDrivePresignedCredentialsInput
|
|
3937
4154
|
|
|
3938
4155
|
/tableau/marketplace/listings/{listingId}/install:
|
|
3939
4156
|
get:
|
package/src/raml/luvio.raml
CHANGED
|
@@ -193,6 +193,11 @@ types:
|
|
|
193
193
|
(luvio.opaque): true
|
|
194
194
|
(luvio.key):
|
|
195
195
|
fullyQualifiedLocationInDrive: fullyQualifiedLocationInDrive
|
|
196
|
+
SFDrivePresignedCredentialRepresentation:
|
|
197
|
+
(luvio.ttl): 1000
|
|
198
|
+
(luvio.opaque): true
|
|
199
|
+
(luvio.key):
|
|
200
|
+
presignedUrl: presignedUrl
|
|
196
201
|
|
|
197
202
|
/tableau/admin/monitoring/events:
|
|
198
203
|
post:
|
|
@@ -425,6 +430,11 @@ types:
|
|
|
425
430
|
(luvio.adapter):
|
|
426
431
|
name: generateSFDriveCredentials
|
|
427
432
|
|
|
433
|
+
/ssot/sf-drive/actions/generate-presigned-credential:
|
|
434
|
+
post:
|
|
435
|
+
(luvio.adapter):
|
|
436
|
+
name: generateSFDrivePresignedCredentials
|
|
437
|
+
|
|
428
438
|
/tableau/marketplace/listings/{listingId}/install:
|
|
429
439
|
get:
|
|
430
440
|
(luvio.adapter):
|