@salesforce/lds-adapters-industries-cpq 0.131.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/LICENSE.txt +82 -0
- package/dist/es/es2018/industries-cpq.js +1062 -0
- package/dist/es/es2018/types/src/generated/adapters/SearchProductsList.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/es/es2018/types/src/generated/adapters/preview.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/productDetails.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/productList.d.ts +15 -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 +5 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqPreview.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqProducts.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqProductsByProductId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectCpqProductsSearch.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalFieldsOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/ApiStatusOutputRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/AttributeCategoryOutputRepresentation.d.ts +48 -0
- package/dist/es/es2018/types/src/generated/types/AttributePickListOutputRepresentation.d.ts +45 -0
- package/dist/es/es2018/types/src/generated/types/AttributePickListValueOutputRepresentation.d.ts +56 -0
- package/dist/es/es2018/types/src/generated/types/CpqBaseDetailsOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/CpqBaseListOutputRepresentation.d.ts +55 -0
- package/dist/es/es2018/types/src/generated/types/CpqMessageOutputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/PreviewInputRepresentation.d.ts +45 -0
- package/dist/es/es2018/types/src/generated/types/PreviewInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/PricingModelOutputRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/ProductAttributeOutputRepresentation.d.ts +69 -0
- package/dist/es/es2018/types/src/generated/types/ProductConfigurationInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/ProductDeltaConfigurationInputRepresentation.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsOutputRepresentation.d.ts +75 -0
- package/dist/es/es2018/types/src/generated/types/ProductListInputRepresentation.d.ts +47 -0
- package/dist/es/es2018/types/src/generated/types/ProductListInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ProductListOutputRepresentation.d.ts +65 -0
- package/dist/es/es2018/types/src/generated/types/ProductOutputRepresentation.d.ts +58 -0
- package/dist/es/es2018/types/src/generated/types/ProductPricesOutputRepresentation.d.ts +48 -0
- package/dist/es/es2018/types/src/generated/types/ProductQuantityOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SearchOffersInputRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/SearchOffersInputRepresentationWrapper.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/SearchOffersOutputRepresentation.d.ts +63 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +39 -0
- package/package.json +67 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1098 -0
- package/src/raml/api.raml +850 -0
- package/src/raml/luvio.raml +37 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
#%RAML 1.0 Overlay
|
|
2
|
+
extends: ./api.raml
|
|
3
|
+
|
|
4
|
+
uses:
|
|
5
|
+
luvio: luvio://annotations.raml
|
|
6
|
+
|
|
7
|
+
(luvio.keyPrefix): 'cpq'
|
|
8
|
+
(luvio.ttl): 1000
|
|
9
|
+
|
|
10
|
+
types:
|
|
11
|
+
CpqBaseDetailsOutputRepresentation:
|
|
12
|
+
(luvio.ttl): 1000
|
|
13
|
+
(luvio.opaque): true
|
|
14
|
+
(luvio.key):
|
|
15
|
+
message: apiStatus.statusCode
|
|
16
|
+
CpqBaseListOutputRepresentation:
|
|
17
|
+
(luvio.ttl): 1000
|
|
18
|
+
(luvio.opaque): true
|
|
19
|
+
(luvio.key):
|
|
20
|
+
message: apiStatus.statusCode
|
|
21
|
+
/connect/cpq:
|
|
22
|
+
/preview:
|
|
23
|
+
post:
|
|
24
|
+
(luvio.adapter):
|
|
25
|
+
name: preview
|
|
26
|
+
/products:
|
|
27
|
+
post:
|
|
28
|
+
(luvio.adapter):
|
|
29
|
+
name: productList
|
|
30
|
+
/search:
|
|
31
|
+
post:
|
|
32
|
+
(luvio.adapter):
|
|
33
|
+
name: SearchProductsList
|
|
34
|
+
/{productId}:
|
|
35
|
+
post:
|
|
36
|
+
(luvio.adapter):
|
|
37
|
+
name: productDetails
|