@salesforce/lds-adapters-platform-appexchange 1.404.0-dev2 → 1.404.0-dev20
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/platform-appexchange.js +3168 -1797
- package/dist/es/es2018/types/src/generated/adapters/getActionDetails.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getAssetActions.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/adapters/getAssetTopics.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/adapters/getTopicDetails.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +9 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsActions.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsListingsActionsByActionIdAndListingId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsListingsTopicsByListingIdAndTopicId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsTopics.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeActionDetailsRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeActionInfoRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAgentInfoRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetActionRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetActionsCollectionRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetListingDetailsRepresentation.d.ts +99 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetListingRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetNodeRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetTopicRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetTopicsCollectionRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeTopicDetailsRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeTopicInfoRepresentation.d.ts +34 -0
- package/package.json +3 -3
- package/sfdc/index.js +3053 -1650
- package/src/raml/api.raml +679 -0
- package/src/raml/luvio.raml +26 -0
package/src/raml/luvio.raml
CHANGED
|
@@ -16,12 +16,38 @@ types:
|
|
|
16
16
|
primaryKey: primaryKey
|
|
17
17
|
AppExchangeListingDetailsRepresentation:
|
|
18
18
|
(luvio.opaque): true
|
|
19
|
+
AppExchangeActionDetailsRepresentation:
|
|
20
|
+
(luvio.opaque): true
|
|
21
|
+
AppExchangeTopicDetailsRepresentation:
|
|
22
|
+
(luvio.opaque): true
|
|
19
23
|
AppExchangeListingPricingModelFreeToInstallRepresentation:
|
|
20
24
|
(luvio.ttl): 3000
|
|
21
25
|
AppExchangeTableauExtensionRepresentation:
|
|
22
26
|
(luvio.ttl): 3000
|
|
27
|
+
AppExchangeAssetActionsCollectionRepresentation:
|
|
28
|
+
(luvio.opaque): true
|
|
29
|
+
AppExchangeAssetTopicsCollectionRepresentation:
|
|
30
|
+
(luvio.opaque): true
|
|
23
31
|
|
|
24
32
|
/connect/appexchange:
|
|
33
|
+
/assets:
|
|
34
|
+
/actions:
|
|
35
|
+
get:
|
|
36
|
+
(luvio.adapter):
|
|
37
|
+
name: getAssetActions
|
|
38
|
+
/listings/{listingId}:
|
|
39
|
+
/actions/{actionId}:
|
|
40
|
+
get:
|
|
41
|
+
(luvio.adapter):
|
|
42
|
+
name: getActionDetails
|
|
43
|
+
/topics/{topicId}:
|
|
44
|
+
get:
|
|
45
|
+
(luvio.adapter):
|
|
46
|
+
name: getTopicDetails
|
|
47
|
+
/topics:
|
|
48
|
+
get:
|
|
49
|
+
(luvio.adapter):
|
|
50
|
+
name: getAssetTopics
|
|
25
51
|
/search-listings:
|
|
26
52
|
post:
|
|
27
53
|
(luvio.adapter):
|