@salesforce/lds-adapters-service-ecm 1.360.0 → 1.361.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 +635 -396
- package/dist/es/es2018/types/src/generated/adapters/generateIntakeForm.d.ts +18 -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 +2 -1
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationIntakeFormGenerateIntakeForm.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/types/GenerateIntakeFormInputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/GenerateIntakeFormOutputRepresentation.d.ts +47 -0
- package/package.json +3 -3
- package/sfdc/index.js +437 -195
- package/src/raml/api.raml +59 -0
- package/src/raml/luvio.raml +8 -0
package/src/raml/api.raml
CHANGED
|
@@ -682,6 +682,51 @@ types:
|
|
|
682
682
|
required: false
|
|
683
683
|
description: Unique Name
|
|
684
684
|
type: string | nil
|
|
685
|
+
GenerateIntakeFormInputRepresentation:
|
|
686
|
+
description: 'Intake form Input Representation '
|
|
687
|
+
type: object
|
|
688
|
+
properties:
|
|
689
|
+
description:
|
|
690
|
+
required: false
|
|
691
|
+
description: Intake Form Description
|
|
692
|
+
type: string
|
|
693
|
+
name:
|
|
694
|
+
required: false
|
|
695
|
+
description: Intake Form Name
|
|
696
|
+
type: string
|
|
697
|
+
productId:
|
|
698
|
+
required: false
|
|
699
|
+
description: Product Id
|
|
700
|
+
type: string
|
|
701
|
+
type:
|
|
702
|
+
required: false
|
|
703
|
+
description: Intake Form Type
|
|
704
|
+
type: string
|
|
705
|
+
enum:
|
|
706
|
+
- Flow
|
|
707
|
+
- Omniscript
|
|
708
|
+
GenerateIntakeFormOutputRepresentation:
|
|
709
|
+
description: Output Representation of Generate Intake Form
|
|
710
|
+
type: object
|
|
711
|
+
properties:
|
|
712
|
+
description:
|
|
713
|
+
required: false
|
|
714
|
+
description: Intake Form Description
|
|
715
|
+
type: string
|
|
716
|
+
id:
|
|
717
|
+
description: Intake Form Id
|
|
718
|
+
type: string
|
|
719
|
+
name:
|
|
720
|
+
required: false
|
|
721
|
+
description: Intake Form Name
|
|
722
|
+
type: string
|
|
723
|
+
type:
|
|
724
|
+
required: false
|
|
725
|
+
description: Intake Form Type
|
|
726
|
+
type: string
|
|
727
|
+
enum:
|
|
728
|
+
- Flow
|
|
729
|
+
- Omniscript
|
|
685
730
|
IntegrationDefInputRepresentation:
|
|
686
731
|
description: Input Representation for Integration Definition.
|
|
687
732
|
type: object
|
|
@@ -1469,6 +1514,20 @@ types:
|
|
|
1469
1514
|
type: string
|
|
1470
1515
|
required: false
|
|
1471
1516
|
/intake-form:
|
|
1517
|
+
/generate-intake-form:
|
|
1518
|
+
post:
|
|
1519
|
+
displayName: postGenerateIntakeForm
|
|
1520
|
+
description: API to generate intake form for productId.
|
|
1521
|
+
body:
|
|
1522
|
+
application/json:
|
|
1523
|
+
type: GenerateIntakeFormInputRepresentation
|
|
1524
|
+
(oas-body-name): generateIntakeFormPayload
|
|
1525
|
+
responses:
|
|
1526
|
+
200:
|
|
1527
|
+
description: Success
|
|
1528
|
+
body:
|
|
1529
|
+
application/json:
|
|
1530
|
+
type: GenerateIntakeFormOutputRepresentation
|
|
1472
1531
|
/generate-intake-omniscript:
|
|
1473
1532
|
post:
|
|
1474
1533
|
displayName: postOmniIntake
|
package/src/raml/luvio.raml
CHANGED
|
@@ -24,6 +24,10 @@ types:
|
|
|
24
24
|
(luvio.ttl): 6000
|
|
25
25
|
(luvio.key):
|
|
26
26
|
id: id
|
|
27
|
+
GenerateIntakeFormOutputRepresentation:
|
|
28
|
+
(luvio.ttl): 6000
|
|
29
|
+
(luvio.key):
|
|
30
|
+
id: id
|
|
27
31
|
EinsteinAgentActionsOutputRepresentation:
|
|
28
32
|
(luvio.ttl): 6000
|
|
29
33
|
(luvio.opaque): true
|
|
@@ -53,6 +57,10 @@ types:
|
|
|
53
57
|
post:
|
|
54
58
|
(luvio.adapter):
|
|
55
59
|
name: generateOmniScript
|
|
60
|
+
/connect/service-automation/intake-form/generate-intake-form:
|
|
61
|
+
post:
|
|
62
|
+
(luvio.adapter):
|
|
63
|
+
name: generateIntakeForm
|
|
56
64
|
/connect/service-automation/service-request/service-catalog-request/{serviceRequestId}:
|
|
57
65
|
get:
|
|
58
66
|
(luvio.adapter):
|