@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev2 → 1.404.0-dev5

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 (23) hide show
  1. package/dist/es/es2018/analytics-unifiedanalytics.js +2875 -2393
  2. package/dist/es/es2018/types/src/generated/adapters/generateSFDrivePresignedCredentials.d.ts +16 -0
  3. package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequests.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequestsCount.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getFlows.d.ts +1 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
  7. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -1
  8. package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequests.d.ts +1 -0
  9. package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequestsCount.d.ts +1 -0
  10. package/dist/es/es2018/types/src/generated/resources/getTableauFlows.d.ts +1 -0
  11. package/dist/es/es2018/types/src/generated/resources/postSsotSfDriveActionsGeneratePresignedCredential.d.ts +11 -0
  12. package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetRepresentation.d.ts +43 -0
  13. package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetWarningsRepresentation.d.ts +28 -0
  14. package/dist/es/es2018/types/src/generated/types/AdditionalInfoDataspacesRepresentation.d.ts +31 -0
  15. package/dist/es/es2018/types/src/generated/types/DataAssetRequestAdditionalInfoRepresentation.d.ts +41 -0
  16. package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +11 -1
  17. package/dist/es/es2018/types/src/generated/types/DataSpaceInfoRepresentation.d.ts +3 -3
  18. package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialInputRepresentation.d.ts +32 -0
  19. package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialRepresentation.d.ts +48 -0
  20. package/package.json +3 -3
  21. package/sfdc/index.js +1554 -1069
  22. package/src/raml/api.raml +157 -0
  23. package/src/raml/luvio.raml +10 -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
@@ -2925,6 +3033,32 @@ types:
2925
3033
  tenantKeyId:
2926
3034
  description: Tenant Key Id
2927
3035
  type: string
3036
+ SFDrivePresignedCredentialInputRepresentation:
3037
+ description: Input representation for sf drive Presigned credentials
3038
+ type: CdpAssetBaseInputRepresentation
3039
+ properties:
3040
+ driveDirectory:
3041
+ description: The driveDirectory in sfdrive for which presigned url required
3042
+ type: string
3043
+ fileName:
3044
+ description: The fileName in sfdrive for which presigned url required
3045
+ type: string
3046
+ SFDrivePresignedCredentialRepresentation:
3047
+ description: Response representation for SFDrive Presigned Credentials Request
3048
+ type: object
3049
+ properties:
3050
+ expiryTime:
3051
+ description: presignedUrl expiry timestamp
3052
+ type: string
3053
+ headers:
3054
+ description: kms key details for byok enabled org
3055
+ type: object
3056
+ properties:
3057
+ //:
3058
+ type: string
3059
+ presignedUrl:
3060
+ description: presignedUrl of given directory and filename
3061
+ type: string
2928
3062
  /tableau:
2929
3063
  /admin/monitoring/events:
2930
3064
  post:
@@ -3221,6 +3355,9 @@ types:
3221
3355
  status:
3222
3356
  type: string
3223
3357
  required: false
3358
+ taskProgressStatus:
3359
+ type: string
3360
+ required: false
3224
3361
  workspaceIdOrApiName:
3225
3362
  type: string
3226
3363
  required: false
@@ -3264,6 +3401,9 @@ types:
3264
3401
  status:
3265
3402
  type: string
3266
3403
  required: false
3404
+ taskProgressStatus:
3405
+ type: string
3406
+ required: false
3267
3407
  taskType:
3268
3408
  type: string
3269
3409
  required: false
@@ -3863,6 +4003,9 @@ types:
3863
4003
  offset:
3864
4004
  type: integer
3865
4005
  required: false
4006
+ searchTerm:
4007
+ type: string
4008
+ required: false
3866
4009
  /flows/{flowApiName}:
3867
4010
  get:
3868
4011
  displayName: getFlowByName
@@ -3934,6 +4077,20 @@ types:
3934
4077
  application/json:
3935
4078
  type: SFDriveCredentialInputRepresentation
3936
4079
  (oas-body-name): generateSFDriveCredentialsInput
4080
+ /ssot/sf-drive/actions/generate-presigned-credential:
4081
+ post:
4082
+ displayName: postSfDrivePresignedCredentials
4083
+ description: sfdrive api to get presigned Url
4084
+ responses:
4085
+ '200':
4086
+ description: Success
4087
+ body:
4088
+ application/json:
4089
+ type: SFDrivePresignedCredentialRepresentation
4090
+ body:
4091
+ application/json:
4092
+ type: SFDrivePresignedCredentialInputRepresentation
4093
+ (oas-body-name): generateSFDrivePresignedCredentialsInput
3937
4094
 
3938
4095
  /tableau/marketplace/listings/{listingId}/install:
3939
4096
  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):