@salesforce/lds-adapters-service-ecm 1.348.1 → 1.350.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/service-ecm.js +1260 -347
- package/dist/es/es2018/types/src/generated/adapters/getAgentActions.d.ts +28 -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 +3 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectServiceAutomationGenAiActions.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/types/AgentActionAttributeOutputRepresentation.d.ts +64 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinAgentActionOutputRepresentation.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinAgentActionsOutputRepresentation.d.ts +30 -0
- package/package.json +3 -3
- package/sfdc/index.js +1196 -275
- package/src/raml/api.raml +137 -0
- package/src/raml/luvio.raml +7 -0
package/src/raml/api.raml
CHANGED
|
@@ -1241,6 +1241,126 @@ types:
|
|
|
1241
1241
|
properties:
|
|
1242
1242
|
//:
|
|
1243
1243
|
type: object
|
|
1244
|
+
AgentActionAttributeOutputRepresentation:
|
|
1245
|
+
description: Output representation for an Agent Action Attribute
|
|
1246
|
+
type: object
|
|
1247
|
+
properties:
|
|
1248
|
+
dataType:
|
|
1249
|
+
required: false
|
|
1250
|
+
description: Data type of the attribute
|
|
1251
|
+
type: string | nil
|
|
1252
|
+
description:
|
|
1253
|
+
required: false
|
|
1254
|
+
description: Description of the Attribute
|
|
1255
|
+
type: string | nil
|
|
1256
|
+
developerName:
|
|
1257
|
+
required: false
|
|
1258
|
+
description: Developer Name of the Atribute
|
|
1259
|
+
type: string | nil
|
|
1260
|
+
displayable:
|
|
1261
|
+
required: false
|
|
1262
|
+
description: Is displayable
|
|
1263
|
+
type: boolean | nil
|
|
1264
|
+
excludedFromPlanner:
|
|
1265
|
+
required: false
|
|
1266
|
+
description: Exclude from Planner
|
|
1267
|
+
type: boolean | nil
|
|
1268
|
+
isPersIdentInfo:
|
|
1269
|
+
required: false
|
|
1270
|
+
description: Is PII Information
|
|
1271
|
+
type: boolean | nil
|
|
1272
|
+
itemsDataType:
|
|
1273
|
+
required: false
|
|
1274
|
+
description: Data type of the items in the list
|
|
1275
|
+
type: string | nil
|
|
1276
|
+
label:
|
|
1277
|
+
required: false
|
|
1278
|
+
description: Label of the Attribute
|
|
1279
|
+
type: string | nil
|
|
1280
|
+
mappingType:
|
|
1281
|
+
required: false
|
|
1282
|
+
description: Mapping Type
|
|
1283
|
+
type: string | nil
|
|
1284
|
+
maxItems:
|
|
1285
|
+
required: false
|
|
1286
|
+
description: Max items
|
|
1287
|
+
type: integer | nil
|
|
1288
|
+
required:
|
|
1289
|
+
required: false
|
|
1290
|
+
description: Is Required Attribute
|
|
1291
|
+
type: boolean | nil
|
|
1292
|
+
title:
|
|
1293
|
+
required: false
|
|
1294
|
+
description: Title of the Attribute
|
|
1295
|
+
type: string | nil
|
|
1296
|
+
userInput:
|
|
1297
|
+
required: false
|
|
1298
|
+
description: Is user input
|
|
1299
|
+
type: boolean | nil
|
|
1300
|
+
EinsteinAgentActionOutputRepresentation:
|
|
1301
|
+
description: Output representation for an Agent Action
|
|
1302
|
+
type: object
|
|
1303
|
+
properties:
|
|
1304
|
+
attributes:
|
|
1305
|
+
required: false
|
|
1306
|
+
description: Attributes of the Agent Action
|
|
1307
|
+
type: array
|
|
1308
|
+
items:
|
|
1309
|
+
type: AgentActionAttributeOutputRepresentation
|
|
1310
|
+
description:
|
|
1311
|
+
required: false
|
|
1312
|
+
description: 'Description of the Agent Action '
|
|
1313
|
+
type: string | nil
|
|
1314
|
+
developerName:
|
|
1315
|
+
required: false
|
|
1316
|
+
description: 'Developer Name of the Agent Action '
|
|
1317
|
+
type: string | nil
|
|
1318
|
+
id:
|
|
1319
|
+
required: false
|
|
1320
|
+
description: 'Identifier of the Agent Action '
|
|
1321
|
+
type: string | nil
|
|
1322
|
+
includeInProgressIndicator:
|
|
1323
|
+
required: false
|
|
1324
|
+
description: Include progress indicator message
|
|
1325
|
+
type: boolean | nil
|
|
1326
|
+
invocationTarget:
|
|
1327
|
+
required: false
|
|
1328
|
+
description: Invocation Target of the Agent Action
|
|
1329
|
+
type: string | nil
|
|
1330
|
+
invocationTargetId:
|
|
1331
|
+
required: false
|
|
1332
|
+
description: Invocation Target ID of the Agent Action
|
|
1333
|
+
type: string | nil
|
|
1334
|
+
invocationTargetType:
|
|
1335
|
+
required: false
|
|
1336
|
+
description: Invocation Target Type of the Agent Action
|
|
1337
|
+
type: string | nil
|
|
1338
|
+
label:
|
|
1339
|
+
required: false
|
|
1340
|
+
description: 'Master Label of the Agent Action '
|
|
1341
|
+
type: string | nil
|
|
1342
|
+
namespace:
|
|
1343
|
+
required: false
|
|
1344
|
+
description: Namespace of the Agent Action
|
|
1345
|
+
type: string | nil
|
|
1346
|
+
progressIndicatorMessage:
|
|
1347
|
+
required: false
|
|
1348
|
+
description: Progress indicator message
|
|
1349
|
+
type: string | nil
|
|
1350
|
+
userConfirmationRequired:
|
|
1351
|
+
required: false
|
|
1352
|
+
description: Is user confirmation required for executing Action
|
|
1353
|
+
type: boolean | nil
|
|
1354
|
+
EinsteinAgentActionsOutputRepresentation:
|
|
1355
|
+
description: Output representation for Agent Actions
|
|
1356
|
+
type: object
|
|
1357
|
+
properties:
|
|
1358
|
+
actions:
|
|
1359
|
+
required: false
|
|
1360
|
+
description: Agent Actions
|
|
1361
|
+
type: array
|
|
1362
|
+
items:
|
|
1363
|
+
type: EinsteinAgentActionOutputRepresentation
|
|
1244
1364
|
/connect/service-automation:
|
|
1245
1365
|
/catalog:
|
|
1246
1366
|
/catalog-item:
|
|
@@ -1322,6 +1442,23 @@ types:
|
|
|
1322
1442
|
application/json:
|
|
1323
1443
|
type: ServiceAutomationDepReadInputRepresentation
|
|
1324
1444
|
(oas-body-name): ServiceAutomationDepInput
|
|
1445
|
+
/gen-ai/actions:
|
|
1446
|
+
get:
|
|
1447
|
+
displayName: getAgentAction
|
|
1448
|
+
description: Get a list of available Agent Actions
|
|
1449
|
+
responses:
|
|
1450
|
+
'200':
|
|
1451
|
+
description: Success
|
|
1452
|
+
body:
|
|
1453
|
+
application/json:
|
|
1454
|
+
type: EinsteinAgentActionsOutputRepresentation
|
|
1455
|
+
queryParameters:
|
|
1456
|
+
actionDevName:
|
|
1457
|
+
type: string
|
|
1458
|
+
required: false
|
|
1459
|
+
resourceType:
|
|
1460
|
+
type: string
|
|
1461
|
+
required: false
|
|
1325
1462
|
/intake-form:
|
|
1326
1463
|
/generate-intake-omni:
|
|
1327
1464
|
post:
|
package/src/raml/luvio.raml
CHANGED
|
@@ -24,6 +24,9 @@ types:
|
|
|
24
24
|
(luvio.ttl): 6000
|
|
25
25
|
(luvio.key):
|
|
26
26
|
id: id
|
|
27
|
+
EinsteinAgentActionsOutputRepresentation:
|
|
28
|
+
(luvio.ttl): 6000
|
|
29
|
+
(luvio.opaque): true
|
|
27
30
|
/connect/service-automation/query:
|
|
28
31
|
post:
|
|
29
32
|
(luvio.method): get
|
|
@@ -54,3 +57,7 @@ types:
|
|
|
54
57
|
get:
|
|
55
58
|
(luvio.adapter):
|
|
56
59
|
name: getServiceRequest
|
|
60
|
+
/connect/service-automation/gen-ai/actions:
|
|
61
|
+
get:
|
|
62
|
+
(luvio.adapter):
|
|
63
|
+
name: getAgentActions
|