@salesforce/lds-adapters-analytics-unifiedanalytics 1.433.0 → 1.435.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 +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
|
@@ -2028,6 +2028,12 @@ types:
|
|
|
2028
2028
|
description: Indicates whether the promotion request includes a DLO that is unsupported for guided promotions (e.g., non-CSV file type)
|
|
2029
2029
|
type: boolean | nil
|
|
2030
2030
|
required: false
|
|
2031
|
+
promotionContentAssets:
|
|
2032
|
+
description: List of content assets from promotion additional info
|
|
2033
|
+
type: array
|
|
2034
|
+
items:
|
|
2035
|
+
type: PromotionContentAssetRepresentation
|
|
2036
|
+
required: false
|
|
2031
2037
|
DataSpaceInfoRepresentation:
|
|
2032
2038
|
description: DataSpace Info Representation
|
|
2033
2039
|
type: object
|
|
@@ -2132,6 +2138,31 @@ types:
|
|
|
2132
2138
|
items:
|
|
2133
2139
|
type: string
|
|
2134
2140
|
required: false
|
|
2141
|
+
PromotionContentAssetRepresentation:
|
|
2142
|
+
description: Represents a content asset in a promotion request
|
|
2143
|
+
type: object
|
|
2144
|
+
properties:
|
|
2145
|
+
assetType:
|
|
2146
|
+
description: The type of the asset
|
|
2147
|
+
type: string
|
|
2148
|
+
isFirstLevelReuse:
|
|
2149
|
+
description: Indicates whether the asset is a first-level reuse
|
|
2150
|
+
type: boolean
|
|
2151
|
+
isReused:
|
|
2152
|
+
description: Indicates whether the asset is reused from another promotion
|
|
2153
|
+
type: boolean
|
|
2154
|
+
sourceDevName:
|
|
2155
|
+
description: The source developer name of the asset
|
|
2156
|
+
type: string
|
|
2157
|
+
sourceId:
|
|
2158
|
+
description: The source ID of the asset
|
|
2159
|
+
type: string
|
|
2160
|
+
targetDevName:
|
|
2161
|
+
description: The target developer name of the asset
|
|
2162
|
+
type: string
|
|
2163
|
+
targetId:
|
|
2164
|
+
description: The target ID of the asset
|
|
2165
|
+
type: string
|
|
2135
2166
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
2136
2167
|
description: Representation of tableau marketplace's listing installation progress
|
|
2137
2168
|
type: object
|