@salesforce/lds-adapters-platform-external-services 1.174.0 → 1.175.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/package.json +1 -1
- package/sfdc/index.js +1 -1
- package/src/raml/api.raml +52 -0
- package/src/raml/luvio.raml +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-external-services",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.175.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "External Services Connect API Family",
|
|
6
6
|
"main": "dist/es/es2018/platform-external-services.js",
|
package/sfdc/index.js
CHANGED
|
@@ -2315,4 +2315,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2315
2315
|
});
|
|
2316
2316
|
|
|
2317
2317
|
export { getDataShape, getDataShape_imperative, getOpenApiSpec, getOpenApiSpec_imperative, getStatistics, getStatisticsForService, getStatisticsForService_imperative, getStatistics_imperative, validateSchema };
|
|
2318
|
-
// version: 1.
|
|
2318
|
+
// version: 1.175.0-a8d86b864
|
package/src/raml/api.raml
CHANGED
|
@@ -143,6 +143,43 @@ types:
|
|
|
143
143
|
systemVersion:
|
|
144
144
|
description: The system version of the service registration
|
|
145
145
|
type: integer
|
|
146
|
+
ExternalServiceActionOutputRepresentation:
|
|
147
|
+
description: Represents the Ext Service Action Details
|
|
148
|
+
type: object
|
|
149
|
+
properties:
|
|
150
|
+
externalServicePath:
|
|
151
|
+
description: The path for the external services edit page
|
|
152
|
+
type: string
|
|
153
|
+
method:
|
|
154
|
+
description: Http Method type of the service
|
|
155
|
+
type: string
|
|
156
|
+
parameters:
|
|
157
|
+
description: Path/query parameters details of the service
|
|
158
|
+
type: array
|
|
159
|
+
items:
|
|
160
|
+
type: ExternalServiceActionParameterRepresentation
|
|
161
|
+
path:
|
|
162
|
+
description: Url Path used by the service
|
|
163
|
+
type: string
|
|
164
|
+
registrationName:
|
|
165
|
+
description: Registration name of the action service.
|
|
166
|
+
type: string
|
|
167
|
+
ExternalServiceActionParameterRepresentation:
|
|
168
|
+
description: Input Parameter details of the external service
|
|
169
|
+
type: object
|
|
170
|
+
properties:
|
|
171
|
+
description:
|
|
172
|
+
description: Description of the parameter
|
|
173
|
+
type: string
|
|
174
|
+
location:
|
|
175
|
+
description: Type of Parameter i.e. Path/Query
|
|
176
|
+
type: string
|
|
177
|
+
name:
|
|
178
|
+
description: Name of the Parameter
|
|
179
|
+
type: string
|
|
180
|
+
required:
|
|
181
|
+
description: Is the parameter a required field
|
|
182
|
+
type: boolean
|
|
146
183
|
ExternalServiceStatisticsOutputRepresentation:
|
|
147
184
|
description: External Services statistics results for a single service or overview
|
|
148
185
|
of all services
|
|
@@ -377,6 +414,21 @@ types:
|
|
|
377
414
|
description: System version used for this schema
|
|
378
415
|
type: integer
|
|
379
416
|
/externalservices:
|
|
417
|
+
/actions/services/{actionName}:
|
|
418
|
+
get:
|
|
419
|
+
displayName: getExternalServiceAction
|
|
420
|
+
description: Get the action details of the Http Action invocable action operation
|
|
421
|
+
responses:
|
|
422
|
+
'200':
|
|
423
|
+
description: Success
|
|
424
|
+
body:
|
|
425
|
+
application/json:
|
|
426
|
+
type: ExternalServiceActionOutputRepresentation
|
|
427
|
+
uriParameters:
|
|
428
|
+
actionName:
|
|
429
|
+
description: 'The external service action name. Eg: registrationName.operationName'
|
|
430
|
+
type: string
|
|
431
|
+
required: true
|
|
380
432
|
/externalserviceschemarequest:
|
|
381
433
|
get:
|
|
382
434
|
description: Retrieves an external service schema
|