@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev1 → 1.404.0-dev10

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.
Files changed (33) hide show
  1. package/dist/es/es2018/analytics-unifiedanalytics.js +2948 -2396
  2. package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +3 -0
  3. package/dist/es/es2018/types/src/generated/adapters/generateSFDrivePresignedCredentials.d.ts +16 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequests.d.ts +1 -0
  6. package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequestsCount.d.ts +1 -0
  7. package/dist/es/es2018/types/src/generated/adapters/getFlows.d.ts +1 -0
  8. package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +3 -0
  9. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
  10. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -1
  11. package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +1 -0
  12. package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequests.d.ts +1 -0
  13. package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequestsCount.d.ts +1 -0
  14. package/dist/es/es2018/types/src/generated/resources/getTableauFlows.d.ts +1 -0
  15. package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +3 -0
  16. package/dist/es/es2018/types/src/generated/resources/postSsotSfDriveActionsGeneratePresignedCredential.d.ts +11 -0
  17. package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +3 -0
  18. package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetRepresentation.d.ts +43 -0
  19. package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetWarningsRepresentation.d.ts +28 -0
  20. package/dist/es/es2018/types/src/generated/types/AdditionalInfoDataspacesRepresentation.d.ts +31 -0
  21. package/dist/es/es2018/types/src/generated/types/DashboardInputRepresentation.d.ts +8 -1
  22. package/dist/es/es2018/types/src/generated/types/DashboardRepresentation.d.ts +8 -1
  23. package/dist/es/es2018/types/src/generated/types/DataAssetDependentCollectionRepresentation.d.ts +4 -1
  24. package/dist/es/es2018/types/src/generated/types/DataAssetRepresentation.d.ts +7 -1
  25. package/dist/es/es2018/types/src/generated/types/DataAssetRequestAdditionalInfoRepresentation.d.ts +41 -0
  26. package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +11 -1
  27. package/dist/es/es2018/types/src/generated/types/DataSpaceInfoRepresentation.d.ts +3 -3
  28. package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialInputRepresentation.d.ts +32 -0
  29. package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialRepresentation.d.ts +48 -0
  30. package/package.json +3 -3
  31. package/sfdc/index.js +1622 -1067
  32. package/src/raml/api.raml +191 -0
  33. package/src/raml/luvio.raml +10 -0
package/src/raml/api.raml CHANGED
@@ -949,6 +949,13 @@ types:
949
949
  properties:
950
950
  //:
951
951
  type: any
952
+ backgroundSource:
953
+ description: Dashboard level background image source.
954
+ type: object
955
+ required: false
956
+ properties:
957
+ //:
958
+ type: any
952
959
  DashboardRepresentation:
953
960
  description: Unified analytics dashboard representation.
954
961
  discriminator: id
@@ -1006,6 +1013,13 @@ types:
1006
1013
  properties:
1007
1014
  //:
1008
1015
  type: any
1016
+ backgroundSource:
1017
+ description: Dashboard level background image source.
1018
+ type: object
1019
+ required: false
1020
+ properties:
1021
+ //:
1022
+ type: any
1009
1023
  DataAssetDependentCollectionRepresentation:
1010
1024
  description: Represents a List of dependent assets for a given asset
1011
1025
  type: object
@@ -1015,6 +1029,13 @@ types:
1015
1029
  type: array
1016
1030
  items:
1017
1031
  type: DataAssetDependentRepresentation
1032
+ sourceOrgType:
1033
+ description: Type of the org from which the request originates
1034
+ type: string
1035
+ required: false
1036
+ enum:
1037
+ - Companion
1038
+ - Home
1018
1039
  DataAssetDependentRepresentation:
1019
1040
  description: Represents a Dependent asset
1020
1041
  type: object
@@ -1087,6 +1108,14 @@ types:
1087
1108
  items:
1088
1109
  type: DataSpaceInfoRepresentation
1089
1110
  required: false
1111
+ isPrimaryAsset:
1112
+ description: Whether the DataAsset is the primary asset in a list of data asset dependencies
1113
+ type: boolean
1114
+ required: false
1115
+ assetTypeFingerprint:
1116
+ description: Schema fingerprint of the asset type of the DataAsset
1117
+ type: string
1118
+ required: false
1090
1119
  DataAssetRequestCollectionRepresentation:
1091
1120
  description: Collection of Data Asset Requests
1092
1121
  type: object
@@ -1769,6 +1798,10 @@ types:
1769
1798
  acknowledgedDate:
1770
1799
  description: Acknowledged date
1771
1800
  type: string | nil
1801
+ additionalInfo:
1802
+ description: Additional Info
1803
+ type: DataAssetRequestAdditionalInfoRepresentation | nil
1804
+ required: false
1772
1805
  assetId:
1773
1806
  description: assetId associated with the request
1774
1807
  type: string
@@ -1787,6 +1820,10 @@ types:
1787
1820
  completedDate:
1788
1821
  description: Completed date
1789
1822
  type: string | nil
1823
+ errorCode:
1824
+ description: Error Code
1825
+ type: string | nil
1826
+ required: false
1790
1827
  failedDate:
1791
1828
  description: Failed date
1792
1829
  type: string | nil
@@ -1887,6 +1924,16 @@ types:
1887
1924
  packageExportedDate:
1888
1925
  description: Date and time the metadata package was exported
1889
1926
  type: string | nil
1927
+ taskProgressStatus:
1928
+ description: Overall progress status of a task
1929
+ type: string | nil
1930
+ enum:
1931
+ - CreationInProgress
1932
+ - InReview
1933
+ - MigrationInProgress
1934
+ - NotStarted
1935
+ - Terminal
1936
+ required: false
1890
1937
  DataSpaceInfoRepresentation:
1891
1938
  description: DataSpace Info Representation
1892
1939
  type: object
@@ -1894,12 +1941,103 @@ types:
1894
1941
  dataSpacePrefix:
1895
1942
  description: DataSpace prefix.
1896
1943
  type: string
1944
+ required: false
1897
1945
  dataSpaceLabel:
1898
1946
  description: DataSpace label.
1899
1947
  type: string
1900
1948
  dataSpaceDeveloperName:
1901
1949
  description: DataSpace developer name.
1902
1950
  type: string
1951
+ DataAssetRequestAdditionalInfoRepresentation:
1952
+ description: DataAssetRequest Additional Info Representation
1953
+ type: object
1954
+ properties:
1955
+ dataspaces:
1956
+ description: Additional Info Dataspaces Representation
1957
+ type: AdditionalInfoDataspacesRepresentation
1958
+ required: false
1959
+ deployedAssets:
1960
+ description: List of Assets Deployed
1961
+ type: array
1962
+ items:
1963
+ type: AdditionalInfoAssetRepresentation
1964
+ required: false
1965
+ inProgressAssets:
1966
+ description: List of Assets In Progress
1967
+ type: array
1968
+ items:
1969
+ type: AdditionalInfoAssetRepresentation
1970
+ required: false
1971
+ notStartedAssets:
1972
+ description: List of Assets Not Started
1973
+ type: array
1974
+ items:
1975
+ type: AdditionalInfoAssetRepresentation
1976
+ required: false
1977
+ failedAssets:
1978
+ description: List of Failed Assets
1979
+ type: array
1980
+ items:
1981
+ type: AdditionalInfoAssetRepresentation
1982
+ required: false
1983
+ AdditionalInfoDataspacesRepresentation:
1984
+ description: Additional Info Dataspaces Representation
1985
+ type: object
1986
+ properties:
1987
+ toBeCreated:
1988
+ description: List of dataspaces to be created
1989
+ type: array
1990
+ items:
1991
+ type: string
1992
+ required: false
1993
+ created:
1994
+ description: List of dataspaces created
1995
+ type: array
1996
+ items:
1997
+ type: string
1998
+ required: false
1999
+ AdditionalInfoAssetRepresentation:
2000
+ description: Additional Info Asset Representation
2001
+ type: object
2002
+ properties:
2003
+ srcName:
2004
+ description: Source developer name of the asset
2005
+ type: string
2006
+ required: false
2007
+ tgtName:
2008
+ description: Target developer name of the asset
2009
+ type: string
2010
+ required: false
2011
+ label:
2012
+ description: Label of the asset
2013
+ type: string
2014
+ type:
2015
+ description: Type of the asset
2016
+ type: string
2017
+ enum:
2018
+ - AnalyticsDashboard
2019
+ - AnalyticsVisualization
2020
+ - MktCalculatedInsightsObject
2021
+ - MktDataModelObject
2022
+ - MktDataLakeObject
2023
+ - SemanticModel
2024
+ warnings:
2025
+ description: Warnings
2026
+ type: AdditionalInfoAssetWarningsRepresentation | nil
2027
+ required: false
2028
+ isPrimary:
2029
+ description:
2030
+ type: boolean
2031
+ AdditionalInfoAssetWarningsRepresentation:
2032
+ description: Additional Info Asset Warnings Representation
2033
+ type: object
2034
+ properties:
2035
+ unmappedFields:
2036
+ description: List of Unmapped Fields
2037
+ type: array
2038
+ items:
2039
+ type: string
2040
+ required: false
1903
2041
  TableauMarketplaceListingInstallationProgressResponse:
1904
2042
  description: Representation of tableau marketplace's listing installation progress
1905
2043
  type: object
@@ -2925,6 +3063,32 @@ types:
2925
3063
  tenantKeyId:
2926
3064
  description: Tenant Key Id
2927
3065
  type: string
3066
+ SFDrivePresignedCredentialInputRepresentation:
3067
+ description: Input representation for sf drive Presigned credentials
3068
+ type: CdpAssetBaseInputRepresentation
3069
+ properties:
3070
+ driveDirectory:
3071
+ description: The driveDirectory in sfdrive for which presigned url required
3072
+ type: string
3073
+ fileName:
3074
+ description: The fileName in sfdrive for which presigned url required
3075
+ type: string
3076
+ SFDrivePresignedCredentialRepresentation:
3077
+ description: Response representation for SFDrive Presigned Credentials Request
3078
+ type: object
3079
+ properties:
3080
+ expiryTime:
3081
+ description: presignedUrl expiry timestamp
3082
+ type: string
3083
+ headers:
3084
+ description: kms key details for byok enabled org
3085
+ type: object
3086
+ properties:
3087
+ //:
3088
+ type: string
3089
+ presignedUrl:
3090
+ description: presignedUrl of given directory and filename
3091
+ type: string
2928
3092
  /tableau:
2929
3093
  /admin/monitoring/events:
2930
3094
  post:
@@ -3221,6 +3385,9 @@ types:
3221
3385
  status:
3222
3386
  type: string
3223
3387
  required: false
3388
+ taskProgressStatus:
3389
+ type: string
3390
+ required: false
3224
3391
  workspaceIdOrApiName:
3225
3392
  type: string
3226
3393
  required: false
@@ -3264,6 +3431,9 @@ types:
3264
3431
  status:
3265
3432
  type: string
3266
3433
  required: false
3434
+ taskProgressStatus:
3435
+ type: string
3436
+ required: false
3267
3437
  taskType:
3268
3438
  type: string
3269
3439
  required: false
@@ -3307,6 +3477,10 @@ types:
3307
3477
  type: boolean
3308
3478
  required: false
3309
3479
  description: Include synchronization information in the response
3480
+ failOnSchemaMismatch:
3481
+ type: boolean
3482
+ required: false
3483
+ description: Perform asset type schema mismatch validation and include schema fingerprint in the response
3310
3484
  responses:
3311
3485
  '200':
3312
3486
  description: Success
@@ -3863,6 +4037,9 @@ types:
3863
4037
  offset:
3864
4038
  type: integer
3865
4039
  required: false
4040
+ searchTerm:
4041
+ type: string
4042
+ required: false
3866
4043
  /flows/{flowApiName}:
3867
4044
  get:
3868
4045
  displayName: getFlowByName
@@ -3934,6 +4111,20 @@ types:
3934
4111
  application/json:
3935
4112
  type: SFDriveCredentialInputRepresentation
3936
4113
  (oas-body-name): generateSFDriveCredentialsInput
4114
+ /ssot/sf-drive/actions/generate-presigned-credential:
4115
+ post:
4116
+ displayName: postSfDrivePresignedCredentials
4117
+ description: sfdrive api to get presigned Url
4118
+ responses:
4119
+ '200':
4120
+ description: Success
4121
+ body:
4122
+ application/json:
4123
+ type: SFDrivePresignedCredentialRepresentation
4124
+ body:
4125
+ application/json:
4126
+ type: SFDrivePresignedCredentialInputRepresentation
4127
+ (oas-body-name): generateSFDrivePresignedCredentialsInput
3937
4128
 
3938
4129
  /tableau/marketplace/listings/{listingId}/install:
3939
4130
  get:
@@ -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):