@salesforce/lds-adapters-analytics-unifiedanalytics 1.428.0-dev4 → 1.428.0-dev6
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 +191 -130
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/PromotionContentAssetRepresentation.d.ts +46 -0
- package/package.json +3 -3
- package/sfdc/index.js +172 -111
- package/src/raml/api.raml +31 -0
package/src/raml/api.raml
CHANGED
|
@@ -2042,6 +2042,12 @@ types:
|
|
|
2042
2042
|
description: Indicates whether the promotion request includes a DLO that is unsupported for guided promotions (e.g., non-CSV file type)
|
|
2043
2043
|
type: boolean | nil
|
|
2044
2044
|
required: false
|
|
2045
|
+
promotionContentAssets:
|
|
2046
|
+
description: List of content assets from promotion additional info
|
|
2047
|
+
type: array
|
|
2048
|
+
items:
|
|
2049
|
+
type: PromotionContentAssetRepresentation
|
|
2050
|
+
required: false
|
|
2045
2051
|
DataSpaceInfoRepresentation:
|
|
2046
2052
|
description: DataSpace Info Representation
|
|
2047
2053
|
type: object
|
|
@@ -2146,6 +2152,31 @@ types:
|
|
|
2146
2152
|
items:
|
|
2147
2153
|
type: string
|
|
2148
2154
|
required: false
|
|
2155
|
+
PromotionContentAssetRepresentation:
|
|
2156
|
+
description: Represents a content asset in a promotion request
|
|
2157
|
+
type: object
|
|
2158
|
+
properties:
|
|
2159
|
+
assetType:
|
|
2160
|
+
description: The type of the asset
|
|
2161
|
+
type: string
|
|
2162
|
+
isFirstLevelReuse:
|
|
2163
|
+
description: Indicates whether the asset is a first-level reuse
|
|
2164
|
+
type: boolean
|
|
2165
|
+
isReused:
|
|
2166
|
+
description: Indicates whether the asset is reused from another promotion
|
|
2167
|
+
type: boolean
|
|
2168
|
+
sourceDevName:
|
|
2169
|
+
description: The source developer name of the asset
|
|
2170
|
+
type: string
|
|
2171
|
+
sourceId:
|
|
2172
|
+
description: The source ID of the asset
|
|
2173
|
+
type: string
|
|
2174
|
+
targetDevName:
|
|
2175
|
+
description: The target developer name of the asset
|
|
2176
|
+
type: string
|
|
2177
|
+
targetId:
|
|
2178
|
+
description: The target ID of the asset
|
|
2179
|
+
type: string
|
|
2149
2180
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
2150
2181
|
description: Representation of tableau marketplace's listing installation progress
|
|
2151
2182
|
type: object
|