@salesforce/lds-adapters-service-ecm 1.390.0 → 1.392.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 +121 -72
- package/dist/es/es2018/types/src/generated/adapters/deployTemplate.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationTemplateDeployByTemplateId.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/DependencyDetails.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/ServiceProcessTemplateOutputRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/TemplateDependencyConfiguration.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/TemplateDeploymentInputRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +137 -88
- package/src/raml/api.raml +34 -1
package/src/raml/api.raml
CHANGED
|
@@ -1312,6 +1312,29 @@ types:
|
|
|
1312
1312
|
message:
|
|
1313
1313
|
description: Message stating the reason for error, if any.
|
|
1314
1314
|
type: string
|
|
1315
|
+
DependencyDetails:
|
|
1316
|
+
description: Dependency details for service process templates
|
|
1317
|
+
type: object
|
|
1318
|
+
properties:
|
|
1319
|
+
templateType:
|
|
1320
|
+
description: Template type
|
|
1321
|
+
type: string
|
|
1322
|
+
enum:
|
|
1323
|
+
- Intake
|
|
1324
|
+
- Fulfillment
|
|
1325
|
+
templateDependencyType:
|
|
1326
|
+
description: Template dependency type
|
|
1327
|
+
type: string
|
|
1328
|
+
enum:
|
|
1329
|
+
- Flow
|
|
1330
|
+
templateApiName:
|
|
1331
|
+
description: Template API name
|
|
1332
|
+
type: string
|
|
1333
|
+
dependencyDeploymentMedium:
|
|
1334
|
+
description: Template dependency medium
|
|
1335
|
+
type: string
|
|
1336
|
+
enum:
|
|
1337
|
+
- AppFramework
|
|
1315
1338
|
ServiceProcessTemplateOutputRepresentation:
|
|
1316
1339
|
description: Output Representation of Service Process Template
|
|
1317
1340
|
type: object
|
|
@@ -1334,6 +1357,11 @@ types:
|
|
|
1334
1357
|
type:
|
|
1335
1358
|
description: Template type
|
|
1336
1359
|
type: string
|
|
1360
|
+
templateDependencyMetadata:
|
|
1361
|
+
description: Template dependency metadata with detailed information
|
|
1362
|
+
type: array
|
|
1363
|
+
items:
|
|
1364
|
+
type: DependencyDetails
|
|
1337
1365
|
ServiceProcessTemplatesOutputRepresentation:
|
|
1338
1366
|
description: Output Representation of Service Process Templates
|
|
1339
1367
|
type: object
|
|
@@ -1533,6 +1561,11 @@ types:
|
|
|
1533
1561
|
required: true
|
|
1534
1562
|
description: API name of the template
|
|
1535
1563
|
type: string
|
|
1564
|
+
dependencyDeploymentMedium:
|
|
1565
|
+
description: Template dependency medium
|
|
1566
|
+
type: string
|
|
1567
|
+
enum:
|
|
1568
|
+
- AppFramework
|
|
1536
1569
|
templateVariables:
|
|
1537
1570
|
required: false
|
|
1538
1571
|
description: Template variables for deployment
|
|
@@ -1545,7 +1578,7 @@ types:
|
|
|
1545
1578
|
type: object
|
|
1546
1579
|
properties:
|
|
1547
1580
|
flowTemplates:
|
|
1548
|
-
required:
|
|
1581
|
+
required: false
|
|
1549
1582
|
description: Flow template configurations with type-specific variables
|
|
1550
1583
|
type: array
|
|
1551
1584
|
items:
|