@salesforce/lds-adapters-analytics-unifiedanalytics 1.379.1 → 1.380.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 +2663 -2507
- package/dist/es/es2018/types/src/generated/adapters/publishToMarketplace.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postTableauMarketplaceListings.d.ts +14 -0
- package/dist/es/es2018/types/src/generated/types/MarketplaceListingInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/MarketplaceListingRepresentation.d.ts +38 -0
- package/package.json +3 -3
- package/sfdc/index.js +2505 -2346
- package/src/raml/api.raml +37 -0
- package/src/raml/luvio.raml +9 -0
package/src/raml/api.raml
CHANGED
|
@@ -2075,6 +2075,29 @@ types:
|
|
|
2075
2075
|
id:
|
|
2076
2076
|
description: The ID of template
|
|
2077
2077
|
type: string
|
|
2078
|
+
MarketplaceListingInputRepresentation:
|
|
2079
|
+
description: Input representation to publish asset to Marketplace.
|
|
2080
|
+
type: object
|
|
2081
|
+
properties:
|
|
2082
|
+
assetId:
|
|
2083
|
+
description: The ID of the asset.
|
|
2084
|
+
type: string
|
|
2085
|
+
assetType:
|
|
2086
|
+
description: The type of the asset.
|
|
2087
|
+
type: string
|
|
2088
|
+
enum:
|
|
2089
|
+
- DominoTemplate
|
|
2090
|
+
assetVersion:
|
|
2091
|
+
description: The version of the asset.
|
|
2092
|
+
type: number
|
|
2093
|
+
required: false
|
|
2094
|
+
MarketplaceListingRepresentation:
|
|
2095
|
+
description: The ID of marketplace listings.
|
|
2096
|
+
type: object
|
|
2097
|
+
properties:
|
|
2098
|
+
id:
|
|
2099
|
+
description: The ID of marketplace listings.
|
|
2100
|
+
type: string
|
|
2078
2101
|
OrgCollectionRepresentation:
|
|
2079
2102
|
description: A collection of unified analytics orgs.
|
|
2080
2103
|
type: object
|
|
@@ -3723,3 +3746,17 @@ types:
|
|
|
3723
3746
|
application/json:
|
|
3724
3747
|
type: MarketplaceTemplateInputRepresentation
|
|
3725
3748
|
(oas-body-name): templateInput
|
|
3749
|
+
/tableau/marketplace/listings:
|
|
3750
|
+
post:
|
|
3751
|
+
displayName: publishToMarketplace
|
|
3752
|
+
description: Publish an asset to Tableau Marketplace.
|
|
3753
|
+
responses:
|
|
3754
|
+
'200':
|
|
3755
|
+
description: Success
|
|
3756
|
+
body:
|
|
3757
|
+
application/json:
|
|
3758
|
+
type: MarketplaceListingRepresentation
|
|
3759
|
+
body:
|
|
3760
|
+
application/json:
|
|
3761
|
+
type: MarketplaceListingInputRepresentation
|
|
3762
|
+
(oas-body-name): marketplaceListingInputRepresentation
|
package/src/raml/luvio.raml
CHANGED
|
@@ -140,6 +140,11 @@ types:
|
|
|
140
140
|
(luvio.opaque): true
|
|
141
141
|
(luvio.key):
|
|
142
142
|
id: id
|
|
143
|
+
MarketplaceListingRepresentation:
|
|
144
|
+
(luvio.ttl): 1000
|
|
145
|
+
(luvio.opaque): true
|
|
146
|
+
(luvio.key):
|
|
147
|
+
id: id
|
|
143
148
|
TableauExternalMonitoringEventItemRepresentation:
|
|
144
149
|
(luvio.ttl): 1000
|
|
145
150
|
(luvio.opaque): true
|
|
@@ -463,3 +468,7 @@ types:
|
|
|
463
468
|
get:
|
|
464
469
|
(luvio.adapter):
|
|
465
470
|
name: getDataAssetDependencies
|
|
471
|
+
/tableau/marketplace/listings:
|
|
472
|
+
post:
|
|
473
|
+
(luvio.adapter):
|
|
474
|
+
name: publishToMarketplace
|