@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0 → 1.409.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 +376 -115
- package/dist/es/es2018/types/src/generated/adapters/getFlows.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 +38 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/DataSpaceInfoRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +361 -100
- package/src/raml/api.raml +96 -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
|
|
@@ -1894,12 +1902,97 @@ types:
|
|
|
1894
1902
|
dataSpacePrefix:
|
|
1895
1903
|
description: DataSpace prefix.
|
|
1896
1904
|
type: string
|
|
1905
|
+
required: false
|
|
1897
1906
|
dataSpaceLabel:
|
|
1898
1907
|
description: DataSpace label.
|
|
1899
1908
|
type: string
|
|
1900
1909
|
dataSpaceDeveloperName:
|
|
1901
1910
|
description: DataSpace developer name.
|
|
1902
1911
|
type: string
|
|
1912
|
+
DataAssetRequestAdditionalInfoRepresentation:
|
|
1913
|
+
description: DataAssetRequest Additional Info Representation
|
|
1914
|
+
type: object
|
|
1915
|
+
properties:
|
|
1916
|
+
dataspaces:
|
|
1917
|
+
description: Additional Info Dataspaces Representation
|
|
1918
|
+
type: AdditionalInfoDataspacesRepresentation
|
|
1919
|
+
required: false
|
|
1920
|
+
deployedAssets:
|
|
1921
|
+
description: List of Assets Deployed
|
|
1922
|
+
type: array
|
|
1923
|
+
items:
|
|
1924
|
+
type: AdditionalInfoAssetRepresentation
|
|
1925
|
+
required: false
|
|
1926
|
+
inProgressAssets:
|
|
1927
|
+
description: List of Assets In Progress
|
|
1928
|
+
type: array
|
|
1929
|
+
items:
|
|
1930
|
+
type: AdditionalInfoAssetRepresentation
|
|
1931
|
+
required: false
|
|
1932
|
+
notStartedAssets:
|
|
1933
|
+
description: List of Assets Not Started
|
|
1934
|
+
type: array
|
|
1935
|
+
items:
|
|
1936
|
+
type: AdditionalInfoAssetRepresentation
|
|
1937
|
+
required: false
|
|
1938
|
+
AdditionalInfoDataspacesRepresentation:
|
|
1939
|
+
description: Additional Info Dataspaces Representation
|
|
1940
|
+
type: object
|
|
1941
|
+
properties:
|
|
1942
|
+
toBeCreated:
|
|
1943
|
+
description: List of dataspaces to be created
|
|
1944
|
+
type: array
|
|
1945
|
+
items:
|
|
1946
|
+
type: string
|
|
1947
|
+
required: false
|
|
1948
|
+
created:
|
|
1949
|
+
description: List of dataspaces created
|
|
1950
|
+
type: array
|
|
1951
|
+
items:
|
|
1952
|
+
type: string
|
|
1953
|
+
required: false
|
|
1954
|
+
AdditionalInfoAssetRepresentation:
|
|
1955
|
+
description: Additional Info Asset Representation
|
|
1956
|
+
type: object
|
|
1957
|
+
properties:
|
|
1958
|
+
srcName:
|
|
1959
|
+
description: Source developer name of the asset
|
|
1960
|
+
type: string
|
|
1961
|
+
required: false
|
|
1962
|
+
tgtName:
|
|
1963
|
+
description: Target developer name of the asset
|
|
1964
|
+
type: string
|
|
1965
|
+
required: false
|
|
1966
|
+
label:
|
|
1967
|
+
description: Label of the asset
|
|
1968
|
+
type: string
|
|
1969
|
+
type:
|
|
1970
|
+
description: Type of the asset
|
|
1971
|
+
type: string
|
|
1972
|
+
enum:
|
|
1973
|
+
- AnalyticsDashboard
|
|
1974
|
+
- AnalyticsVisualization
|
|
1975
|
+
- MktCalculatedInsightsObject
|
|
1976
|
+
- MktDataModelObject
|
|
1977
|
+
- MktDataLakeObject
|
|
1978
|
+
- SemanticModel
|
|
1979
|
+
warnings:
|
|
1980
|
+
description: Warnings
|
|
1981
|
+
type: AdditionalInfoAssetWarningsRepresentation | nil
|
|
1982
|
+
required: false
|
|
1983
|
+
isPrimary:
|
|
1984
|
+
description:
|
|
1985
|
+
type: boolean
|
|
1986
|
+
AdditionalInfoAssetWarningsRepresentation:
|
|
1987
|
+
description: Additional Info Asset Warnings Representation
|
|
1988
|
+
type: object
|
|
1989
|
+
properties:
|
|
1990
|
+
unmappedFields:
|
|
1991
|
+
description: List of Unmapped Fields
|
|
1992
|
+
type: array
|
|
1993
|
+
items:
|
|
1994
|
+
type: string
|
|
1995
|
+
required: false
|
|
1903
1996
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
1904
1997
|
description: Representation of tableau marketplace's listing installation progress
|
|
1905
1998
|
type: object
|
|
@@ -3863,6 +3956,9 @@ types:
|
|
|
3863
3956
|
offset:
|
|
3864
3957
|
type: integer
|
|
3865
3958
|
required: false
|
|
3959
|
+
searchTerm:
|
|
3960
|
+
type: string
|
|
3961
|
+
required: false
|
|
3866
3962
|
/flows/{flowApiName}:
|
|
3867
3963
|
get:
|
|
3868
3964
|
displayName: getFlowByName
|