@salesforce/lds-adapters-industries-decisiontable 1.280.0 → 1.282.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/industries-decisiontable.js +602 -25
- package/dist/es/es2018/types/src/generated/adapters/getDecisionTableTemplate.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getDecisionTableTemplateList.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectBusinessRulesDecisionTableTemplates.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectBusinessRulesDecisionTableTemplatesByTemplateName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/types/DecisionTableTemplateDefinitionOutputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/DecisionTableTemplateOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/DecisionTableTemplatesListOutputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/ErrorOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/ErrorParametersOutputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/ErrorTargetsOutputRepresentation.d.ts +32 -0
- package/package.json +3 -3
- package/sfdc/index.js +631 -27
- package/src/raml/api.raml +129 -0
- package/src/raml/luvio.raml +26 -0
package/src/raml/api.raml
CHANGED
|
@@ -290,6 +290,107 @@ types:
|
|
|
290
290
|
- Lookup
|
|
291
291
|
- Parameter
|
|
292
292
|
- PickList
|
|
293
|
+
DecisionTableTemplateDefinitionOutputRepresentation:
|
|
294
|
+
description: Represents the decision table template fetch response
|
|
295
|
+
type: object
|
|
296
|
+
properties:
|
|
297
|
+
decisionTableTemplate:
|
|
298
|
+
description: Represents the Decision Table Definition Output Representation
|
|
299
|
+
type
|
|
300
|
+
type: DecisionTableDefinitionOutputRepresentation
|
|
301
|
+
required: false
|
|
302
|
+
errors:
|
|
303
|
+
description: Represents the Errors if Decision Table Definition creation failed
|
|
304
|
+
for any reason.
|
|
305
|
+
type: array
|
|
306
|
+
required: false
|
|
307
|
+
items:
|
|
308
|
+
type: ErrorOutputRepresentation
|
|
309
|
+
DecisionTableTemplateOutputRepresentation:
|
|
310
|
+
description: Representation of a Decision Table Template
|
|
311
|
+
type: object
|
|
312
|
+
properties:
|
|
313
|
+
location:
|
|
314
|
+
description: location /namespace of the template
|
|
315
|
+
type: string
|
|
316
|
+
required: false
|
|
317
|
+
templateName:
|
|
318
|
+
description: Display name of template
|
|
319
|
+
type: string
|
|
320
|
+
required: false
|
|
321
|
+
usageType:
|
|
322
|
+
description: Usage type used for the template
|
|
323
|
+
type: string
|
|
324
|
+
required: false
|
|
325
|
+
ErrorParametersOutputRepresentation:
|
|
326
|
+
description: Representation of parameters part of the error
|
|
327
|
+
type: object
|
|
328
|
+
properties:
|
|
329
|
+
name:
|
|
330
|
+
description: Represents the name of the error parameter
|
|
331
|
+
type: string
|
|
332
|
+
required: false
|
|
333
|
+
value:
|
|
334
|
+
description: Represents the value of the error parameter
|
|
335
|
+
type: string
|
|
336
|
+
required: false
|
|
337
|
+
ErrorTargetsOutputRepresentation:
|
|
338
|
+
description: Representation of targets part of the error
|
|
339
|
+
type: object
|
|
340
|
+
properties:
|
|
341
|
+
reference:
|
|
342
|
+
description: Represents the reference to the error target
|
|
343
|
+
type: string
|
|
344
|
+
required: false
|
|
345
|
+
type:
|
|
346
|
+
description: Represents the type of the error target
|
|
347
|
+
type: string
|
|
348
|
+
required: false
|
|
349
|
+
ErrorOutputRepresentation:
|
|
350
|
+
description: Representation of error as per salesforce standardised template
|
|
351
|
+
type: object
|
|
352
|
+
properties:
|
|
353
|
+
errorCode:
|
|
354
|
+
description: Represents the error code
|
|
355
|
+
type: string
|
|
356
|
+
required: false
|
|
357
|
+
message:
|
|
358
|
+
description: Represents the message for the error
|
|
359
|
+
type: string
|
|
360
|
+
required: false
|
|
361
|
+
messageCode:
|
|
362
|
+
description: Represents the message code for the error
|
|
363
|
+
type: string
|
|
364
|
+
required: false
|
|
365
|
+
parameters:
|
|
366
|
+
description: Represents the parameters of the error
|
|
367
|
+
type: array
|
|
368
|
+
required: false
|
|
369
|
+
items:
|
|
370
|
+
type: ErrorParametersOutputRepresentation
|
|
371
|
+
targets:
|
|
372
|
+
description: Represents the targets of the error
|
|
373
|
+
type: array
|
|
374
|
+
required: false
|
|
375
|
+
items:
|
|
376
|
+
type: ErrorTargetsOutputRepresentation
|
|
377
|
+
DecisionTableTemplatesListOutputRepresentation:
|
|
378
|
+
description: Representation of a List of Decision Table Templates
|
|
379
|
+
type: object
|
|
380
|
+
properties:
|
|
381
|
+
decisionTableTemplates:
|
|
382
|
+
description: Represents the Decision Table Template Output Representation
|
|
383
|
+
type: array
|
|
384
|
+
required: false
|
|
385
|
+
items:
|
|
386
|
+
type: DecisionTableTemplateOutputRepresentation
|
|
387
|
+
errors:
|
|
388
|
+
description: Represents the Errors if Decision Table Template List retrieval
|
|
389
|
+
failed for any reason.
|
|
390
|
+
type: array
|
|
391
|
+
required: false
|
|
392
|
+
items:
|
|
393
|
+
type: ErrorOutputRepresentation
|
|
293
394
|
/connect:
|
|
294
395
|
/business-rules/decision-table:
|
|
295
396
|
/definitions/{decisionTableId}:
|
|
@@ -307,3 +408,31 @@ types:
|
|
|
307
408
|
decisionTableId:
|
|
308
409
|
type: string
|
|
309
410
|
required: true
|
|
411
|
+
/templates:
|
|
412
|
+
get:
|
|
413
|
+
displayName: getDecisionTableTemplateList
|
|
414
|
+
description: Get the decision table templates list
|
|
415
|
+
responses:
|
|
416
|
+
'200':
|
|
417
|
+
description: Success
|
|
418
|
+
body:
|
|
419
|
+
application/json:
|
|
420
|
+
type: DecisionTableTemplatesListOutputRepresentation
|
|
421
|
+
queryParameters:
|
|
422
|
+
usageType:
|
|
423
|
+
type: string
|
|
424
|
+
required: false
|
|
425
|
+
/{templateName}:
|
|
426
|
+
get:
|
|
427
|
+
displayName: getDecisionTableTemplate
|
|
428
|
+
description: Get the decision table template definition
|
|
429
|
+
responses:
|
|
430
|
+
'200':
|
|
431
|
+
description: Success
|
|
432
|
+
body:
|
|
433
|
+
application/json:
|
|
434
|
+
type: DecisionTableTemplateDefinitionOutputRepresentation
|
|
435
|
+
uriParameters:
|
|
436
|
+
templateName:
|
|
437
|
+
type: string
|
|
438
|
+
required: true
|
package/src/raml/luvio.raml
CHANGED
|
@@ -20,9 +20,35 @@ types:
|
|
|
20
20
|
DecisionTableSourceCriteriaOutputRepresentation:
|
|
21
21
|
(luvio.ttl): 1000
|
|
22
22
|
(luvio.opaque): true
|
|
23
|
+
DecisionTableTemplateDefinitionOutputRepresentation:
|
|
24
|
+
(luvio.ttl): 1000
|
|
25
|
+
(luvio.opaque): true
|
|
26
|
+
DecisionTableTemplateOutputRepresentation:
|
|
27
|
+
(luvio.ttl): 1000
|
|
28
|
+
(luvio.opaque): true
|
|
29
|
+
ErrorParametersOutputRepresentation:
|
|
30
|
+
(luvio.ttl): 1000
|
|
31
|
+
(luvio.opaque): true
|
|
32
|
+
ErrorTargetsOutputRepresentation:
|
|
33
|
+
(luvio.ttl): 1000
|
|
34
|
+
(luvio.opaque): true
|
|
35
|
+
ErrorOutputRepresentation:
|
|
36
|
+
(luvio.ttl): 1000
|
|
37
|
+
(luvio.opaque): true
|
|
38
|
+
DecisionTableTemplatesListOutputRepresentation:
|
|
39
|
+
(luvio.ttl): 1000
|
|
40
|
+
(luvio.opaque): true
|
|
23
41
|
/connect:
|
|
24
42
|
/business-rules/decision-table:
|
|
25
43
|
/definitions/{decisionTableId}:
|
|
26
44
|
get:
|
|
27
45
|
(luvio.adapter):
|
|
28
46
|
name: getDecisionTable
|
|
47
|
+
/templates:
|
|
48
|
+
get:
|
|
49
|
+
(luvio.adapter):
|
|
50
|
+
name: getDecisionTableTemplate
|
|
51
|
+
/templates/{templateName}:
|
|
52
|
+
get:
|
|
53
|
+
(luvio.adapter):
|
|
54
|
+
name: getDecisionTableTemplateList
|