@salesforce/lds-adapters-commerce-extensions 1.210.0 → 1.211.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/commerce-extensions.js +452 -223
- package/dist/es/es2018/types/src/generated/adapters/createMapping.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/adapters/getProvider.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/updateMapping.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/resources/getCommerceExtensionProvidersByProviderId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postCommerceExtensionMappings.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/putCommerceExtensionMappingsByMappingId.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/MappingInputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/ProviderOutputRepresentation.d.ts +19 -4
- package/package.json +1 -1
- package/sfdc/index.js +511 -230
- package/src/raml/api.raml +31 -2
- package/src/raml/luvio.raml +7 -1
package/src/raml/api.raml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
securedBy:
|
|
3
3
|
- OAuth2
|
|
4
4
|
title: Salesforce Connect API
|
|
5
|
-
version: '
|
|
5
|
+
version: '59.0'
|
|
6
6
|
mediaType: application/json
|
|
7
7
|
protocols:
|
|
8
8
|
- https
|
|
@@ -87,7 +87,7 @@ types:
|
|
|
87
87
|
epn:
|
|
88
88
|
description: The extension this provider corresponds to.
|
|
89
89
|
type: string
|
|
90
|
-
id
|
|
90
|
+
id:
|
|
91
91
|
description: The unique mapping identifier
|
|
92
92
|
type: string
|
|
93
93
|
providerName:
|
|
@@ -157,6 +157,21 @@ types:
|
|
|
157
157
|
type:
|
|
158
158
|
description: The type of extension.
|
|
159
159
|
type: string
|
|
160
|
+
configUrl:
|
|
161
|
+
description: The URL of the administrative application used to configure the provider.
|
|
162
|
+
type: string
|
|
163
|
+
iconUri:
|
|
164
|
+
description: Representing the extension provider.
|
|
165
|
+
type: string
|
|
166
|
+
description:
|
|
167
|
+
description: Description of the provider.
|
|
168
|
+
type: string
|
|
169
|
+
isApplication:
|
|
170
|
+
description: If the extension provider is contained within a managed package.
|
|
171
|
+
type: boolean
|
|
172
|
+
id:
|
|
173
|
+
description: The unique provider identifier
|
|
174
|
+
type: string
|
|
160
175
|
/commerce/extension:
|
|
161
176
|
/extensions:
|
|
162
177
|
get:
|
|
@@ -248,3 +263,17 @@ types:
|
|
|
248
263
|
epn:
|
|
249
264
|
type: string
|
|
250
265
|
required: false
|
|
266
|
+
/providers/{providerId}:
|
|
267
|
+
get:
|
|
268
|
+
displayName: getProvider
|
|
269
|
+
description: Get an extension provider
|
|
270
|
+
responses:
|
|
271
|
+
'200':
|
|
272
|
+
description: Success
|
|
273
|
+
body:
|
|
274
|
+
application/json:
|
|
275
|
+
type: ProviderOutputRepresentation
|
|
276
|
+
uriParameters:
|
|
277
|
+
providerId:
|
|
278
|
+
type: string
|
|
279
|
+
required: true
|
package/src/raml/luvio.raml
CHANGED
|
@@ -30,7 +30,7 @@ types:
|
|
|
30
30
|
ProviderOutputRepresentation:
|
|
31
31
|
(luvio.ttl): 60000
|
|
32
32
|
(luvio.key):
|
|
33
|
-
|
|
33
|
+
id: id
|
|
34
34
|
ProviderOutputCollectionRepresentation:
|
|
35
35
|
(luvio.ttl): 60000
|
|
36
36
|
|
|
@@ -63,3 +63,9 @@ types:
|
|
|
63
63
|
get:
|
|
64
64
|
(luvio.adapter):
|
|
65
65
|
name: getProviders
|
|
66
|
+
/commerce/extension/providers/{providerId}:
|
|
67
|
+
get:
|
|
68
|
+
(luvio.adapter):
|
|
69
|
+
name: getProvider
|
|
70
|
+
(luvio.key):
|
|
71
|
+
id: urlParams.providerId
|