@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev2 → 1.404.0-dev4
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 +425 -117
- 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/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/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/DataAssetRequestAdditionalInfoRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/types/DataSpaceInfoRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +410 -102
- package/src/raml/api.raml +117 -0
package/src/raml/api.raml
CHANGED
|
@@ -1769,6 +1769,10 @@ types:
|
|
|
1769
1769
|
acknowledgedDate:
|
|
1770
1770
|
description: Acknowledged date
|
|
1771
1771
|
type: string | nil
|
|
1772
|
+
additionalInfo:
|
|
1773
|
+
description: Additional Info
|
|
1774
|
+
type: DataAssetRequestAdditionalInfoRepresentation | nil
|
|
1775
|
+
required: false
|
|
1772
1776
|
assetId:
|
|
1773
1777
|
description: assetId associated with the request
|
|
1774
1778
|
type: string
|
|
@@ -1787,6 +1791,10 @@ types:
|
|
|
1787
1791
|
completedDate:
|
|
1788
1792
|
description: Completed date
|
|
1789
1793
|
type: string | nil
|
|
1794
|
+
errorCode:
|
|
1795
|
+
description: Error Code
|
|
1796
|
+
type: string | nil
|
|
1797
|
+
required: false
|
|
1790
1798
|
failedDate:
|
|
1791
1799
|
description: Failed date
|
|
1792
1800
|
type: string | nil
|
|
@@ -1887,6 +1895,15 @@ types:
|
|
|
1887
1895
|
packageExportedDate:
|
|
1888
1896
|
description: Date and time the metadata package was exported
|
|
1889
1897
|
type: string | nil
|
|
1898
|
+
taskProgressStatus:
|
|
1899
|
+
description: Overall progress status of a task
|
|
1900
|
+
type: string | nil
|
|
1901
|
+
enum:
|
|
1902
|
+
- InProgress
|
|
1903
|
+
- InReview
|
|
1904
|
+
- NotStarted
|
|
1905
|
+
- Terminal
|
|
1906
|
+
required: false
|
|
1890
1907
|
DataSpaceInfoRepresentation:
|
|
1891
1908
|
description: DataSpace Info Representation
|
|
1892
1909
|
type: object
|
|
@@ -1894,12 +1911,103 @@ types:
|
|
|
1894
1911
|
dataSpacePrefix:
|
|
1895
1912
|
description: DataSpace prefix.
|
|
1896
1913
|
type: string
|
|
1914
|
+
required: false
|
|
1897
1915
|
dataSpaceLabel:
|
|
1898
1916
|
description: DataSpace label.
|
|
1899
1917
|
type: string
|
|
1900
1918
|
dataSpaceDeveloperName:
|
|
1901
1919
|
description: DataSpace developer name.
|
|
1902
1920
|
type: string
|
|
1921
|
+
DataAssetRequestAdditionalInfoRepresentation:
|
|
1922
|
+
description: DataAssetRequest Additional Info Representation
|
|
1923
|
+
type: object
|
|
1924
|
+
properties:
|
|
1925
|
+
dataspaces:
|
|
1926
|
+
description: Additional Info Dataspaces Representation
|
|
1927
|
+
type: AdditionalInfoDataspacesRepresentation
|
|
1928
|
+
required: false
|
|
1929
|
+
deployedAssets:
|
|
1930
|
+
description: List of Assets Deployed
|
|
1931
|
+
type: array
|
|
1932
|
+
items:
|
|
1933
|
+
type: AdditionalInfoAssetRepresentation
|
|
1934
|
+
required: false
|
|
1935
|
+
inProgressAssets:
|
|
1936
|
+
description: List of Assets In Progress
|
|
1937
|
+
type: array
|
|
1938
|
+
items:
|
|
1939
|
+
type: AdditionalInfoAssetRepresentation
|
|
1940
|
+
required: false
|
|
1941
|
+
notStartedAssets:
|
|
1942
|
+
description: List of Assets Not Started
|
|
1943
|
+
type: array
|
|
1944
|
+
items:
|
|
1945
|
+
type: AdditionalInfoAssetRepresentation
|
|
1946
|
+
required: false
|
|
1947
|
+
failedAssets:
|
|
1948
|
+
description: List of Failed Assets
|
|
1949
|
+
type: array
|
|
1950
|
+
items:
|
|
1951
|
+
type: AdditionalInfoAssetRepresentation
|
|
1952
|
+
required: false
|
|
1953
|
+
AdditionalInfoDataspacesRepresentation:
|
|
1954
|
+
description: Additional Info Dataspaces Representation
|
|
1955
|
+
type: object
|
|
1956
|
+
properties:
|
|
1957
|
+
toBeCreated:
|
|
1958
|
+
description: List of dataspaces to be created
|
|
1959
|
+
type: array
|
|
1960
|
+
items:
|
|
1961
|
+
type: string
|
|
1962
|
+
required: false
|
|
1963
|
+
created:
|
|
1964
|
+
description: List of dataspaces created
|
|
1965
|
+
type: array
|
|
1966
|
+
items:
|
|
1967
|
+
type: string
|
|
1968
|
+
required: false
|
|
1969
|
+
AdditionalInfoAssetRepresentation:
|
|
1970
|
+
description: Additional Info Asset Representation
|
|
1971
|
+
type: object
|
|
1972
|
+
properties:
|
|
1973
|
+
srcName:
|
|
1974
|
+
description: Source developer name of the asset
|
|
1975
|
+
type: string
|
|
1976
|
+
required: false
|
|
1977
|
+
tgtName:
|
|
1978
|
+
description: Target developer name of the asset
|
|
1979
|
+
type: string
|
|
1980
|
+
required: false
|
|
1981
|
+
label:
|
|
1982
|
+
description: Label of the asset
|
|
1983
|
+
type: string
|
|
1984
|
+
type:
|
|
1985
|
+
description: Type of the asset
|
|
1986
|
+
type: string
|
|
1987
|
+
enum:
|
|
1988
|
+
- AnalyticsDashboard
|
|
1989
|
+
- AnalyticsVisualization
|
|
1990
|
+
- MktCalculatedInsightsObject
|
|
1991
|
+
- MktDataModelObject
|
|
1992
|
+
- MktDataLakeObject
|
|
1993
|
+
- SemanticModel
|
|
1994
|
+
warnings:
|
|
1995
|
+
description: Warnings
|
|
1996
|
+
type: AdditionalInfoAssetWarningsRepresentation | nil
|
|
1997
|
+
required: false
|
|
1998
|
+
isPrimary:
|
|
1999
|
+
description:
|
|
2000
|
+
type: boolean
|
|
2001
|
+
AdditionalInfoAssetWarningsRepresentation:
|
|
2002
|
+
description: Additional Info Asset Warnings Representation
|
|
2003
|
+
type: object
|
|
2004
|
+
properties:
|
|
2005
|
+
unmappedFields:
|
|
2006
|
+
description: List of Unmapped Fields
|
|
2007
|
+
type: array
|
|
2008
|
+
items:
|
|
2009
|
+
type: string
|
|
2010
|
+
required: false
|
|
1903
2011
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
1904
2012
|
description: Representation of tableau marketplace's listing installation progress
|
|
1905
2013
|
type: object
|
|
@@ -3221,6 +3329,9 @@ types:
|
|
|
3221
3329
|
status:
|
|
3222
3330
|
type: string
|
|
3223
3331
|
required: false
|
|
3332
|
+
taskProgressStatus:
|
|
3333
|
+
type: string
|
|
3334
|
+
required: false
|
|
3224
3335
|
workspaceIdOrApiName:
|
|
3225
3336
|
type: string
|
|
3226
3337
|
required: false
|
|
@@ -3264,6 +3375,9 @@ types:
|
|
|
3264
3375
|
status:
|
|
3265
3376
|
type: string
|
|
3266
3377
|
required: false
|
|
3378
|
+
taskProgressStatus:
|
|
3379
|
+
type: string
|
|
3380
|
+
required: false
|
|
3267
3381
|
taskType:
|
|
3268
3382
|
type: string
|
|
3269
3383
|
required: false
|
|
@@ -3863,6 +3977,9 @@ types:
|
|
|
3863
3977
|
offset:
|
|
3864
3978
|
type: integer
|
|
3865
3979
|
required: false
|
|
3980
|
+
searchTerm:
|
|
3981
|
+
type: string
|
|
3982
|
+
required: false
|
|
3866
3983
|
/flows/{flowApiName}:
|
|
3867
3984
|
get:
|
|
3868
3985
|
displayName: getFlowByName
|