@salesforce/lds-adapters-service-ecm 1.391.0 → 1.393.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 +463 -93
- 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/CatalogItemAttributeInputRepresentation.d.ts +10 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeOutputRepresentation.d.ts +13 -1
- package/dist/es/es2018/types/src/generated/types/DependencyDetails.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/EligibilityRuleDetailsRepresentation.d.ts +13 -7
- package/dist/es/es2018/types/src/generated/types/{DecisionTableParameterOutputRepresentation.d.ts → EligibilityRuleParameterRepresentation.d.ts} +11 -8
- 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 +479 -109
- package/src/raml/api.raml +95 -7
package/src/raml/api.raml
CHANGED
|
@@ -193,6 +193,18 @@ types:
|
|
|
193
193
|
required: false
|
|
194
194
|
description: Sequence Number
|
|
195
195
|
type: integer | nil
|
|
196
|
+
referenceObject:
|
|
197
|
+
required: false
|
|
198
|
+
description: Reference Object for lookup
|
|
199
|
+
type: string | nil
|
|
200
|
+
referenceField:
|
|
201
|
+
required: false
|
|
202
|
+
description: Reference Field for lookup
|
|
203
|
+
type: string | nil
|
|
204
|
+
contextDefinitionId:
|
|
205
|
+
required: false
|
|
206
|
+
description: Context Definition Id
|
|
207
|
+
type: string | nil
|
|
196
208
|
CatalogItemAttributeOutputRepresentation:
|
|
197
209
|
description: Output representation class for the Attributes of Catalog Item
|
|
198
210
|
type: object
|
|
@@ -233,6 +245,10 @@ types:
|
|
|
233
245
|
required: false
|
|
234
246
|
description: Attribute Description
|
|
235
247
|
type: string | nil
|
|
248
|
+
fieldType:
|
|
249
|
+
required: false
|
|
250
|
+
description: Type of the attribute field
|
|
251
|
+
type: string | nil
|
|
236
252
|
id:
|
|
237
253
|
required: false
|
|
238
254
|
description: Attribute Id
|
|
@@ -287,6 +303,18 @@ types:
|
|
|
287
303
|
required: false
|
|
288
304
|
description: Attribute Sequence
|
|
289
305
|
type: integer | nil
|
|
306
|
+
referenceObject:
|
|
307
|
+
required: false
|
|
308
|
+
description: Reference Object for lookup
|
|
309
|
+
type: string | nil
|
|
310
|
+
referenceField:
|
|
311
|
+
required: false
|
|
312
|
+
description: Reference Field for lookup
|
|
313
|
+
type: string | nil
|
|
314
|
+
baseObject:
|
|
315
|
+
required: false
|
|
316
|
+
description: Attribute base object
|
|
317
|
+
type: string | nil
|
|
290
318
|
CatalogItemCreateInputRepresentation:
|
|
291
319
|
description: Configuration of the Catalog Item.
|
|
292
320
|
type: object
|
|
@@ -1312,6 +1340,29 @@ types:
|
|
|
1312
1340
|
message:
|
|
1313
1341
|
description: Message stating the reason for error, if any.
|
|
1314
1342
|
type: string
|
|
1343
|
+
DependencyDetails:
|
|
1344
|
+
description: Dependency details for service process templates
|
|
1345
|
+
type: object
|
|
1346
|
+
properties:
|
|
1347
|
+
templateType:
|
|
1348
|
+
description: Template type
|
|
1349
|
+
type: string
|
|
1350
|
+
enum:
|
|
1351
|
+
- Intake
|
|
1352
|
+
- Fulfillment
|
|
1353
|
+
templateDependencyType:
|
|
1354
|
+
description: Template dependency type
|
|
1355
|
+
type: string
|
|
1356
|
+
enum:
|
|
1357
|
+
- Flow
|
|
1358
|
+
templateApiName:
|
|
1359
|
+
description: Template API name
|
|
1360
|
+
type: string
|
|
1361
|
+
dependencyDeploymentMedium:
|
|
1362
|
+
description: Template dependency medium
|
|
1363
|
+
type: string
|
|
1364
|
+
enum:
|
|
1365
|
+
- AppFramework
|
|
1315
1366
|
ServiceProcessTemplateOutputRepresentation:
|
|
1316
1367
|
description: Output Representation of Service Process Template
|
|
1317
1368
|
type: object
|
|
@@ -1334,6 +1385,11 @@ types:
|
|
|
1334
1385
|
type:
|
|
1335
1386
|
description: Template type
|
|
1336
1387
|
type: string
|
|
1388
|
+
templateDependencyMetadata:
|
|
1389
|
+
description: Template dependency metadata with detailed information
|
|
1390
|
+
type: array
|
|
1391
|
+
items:
|
|
1392
|
+
type: DependencyDetails
|
|
1337
1393
|
ServiceProcessTemplatesOutputRepresentation:
|
|
1338
1394
|
description: Output Representation of Service Process Templates
|
|
1339
1395
|
type: object
|
|
@@ -1533,6 +1589,11 @@ types:
|
|
|
1533
1589
|
required: true
|
|
1534
1590
|
description: API name of the template
|
|
1535
1591
|
type: string
|
|
1592
|
+
dependencyDeploymentMedium:
|
|
1593
|
+
description: Template dependency medium
|
|
1594
|
+
type: string
|
|
1595
|
+
enum:
|
|
1596
|
+
- AppFramework
|
|
1536
1597
|
templateVariables:
|
|
1537
1598
|
required: false
|
|
1538
1599
|
description: Template variables for deployment
|
|
@@ -1545,7 +1606,7 @@ types:
|
|
|
1545
1606
|
type: object
|
|
1546
1607
|
properties:
|
|
1547
1608
|
flowTemplates:
|
|
1548
|
-
required:
|
|
1609
|
+
required: false
|
|
1549
1610
|
description: Flow template configurations with type-specific variables
|
|
1550
1611
|
type: array
|
|
1551
1612
|
items:
|
|
@@ -1594,10 +1655,19 @@ types:
|
|
|
1594
1655
|
description: Representation for Decision Table Details.
|
|
1595
1656
|
type: object
|
|
1596
1657
|
properties:
|
|
1597
|
-
|
|
1658
|
+
rowLevelOverrideType:
|
|
1598
1659
|
required: true
|
|
1599
|
-
description: Indicates
|
|
1600
|
-
type:
|
|
1660
|
+
description: Indicates the override type at the row level
|
|
1661
|
+
type: string
|
|
1662
|
+
enum:
|
|
1663
|
+
- None
|
|
1664
|
+
- Condition
|
|
1665
|
+
- Operator
|
|
1666
|
+
- Both
|
|
1667
|
+
createdDate:
|
|
1668
|
+
required: true
|
|
1669
|
+
description: The date and time when the decision table was created
|
|
1670
|
+
type: string
|
|
1601
1671
|
conditionCriteria:
|
|
1602
1672
|
required: true
|
|
1603
1673
|
description: The criteria for the condition
|
|
@@ -1622,12 +1692,16 @@ types:
|
|
|
1622
1692
|
required: true
|
|
1623
1693
|
description: The name of the decision table
|
|
1624
1694
|
type: string
|
|
1695
|
+
lastModifiedDate:
|
|
1696
|
+
required: true
|
|
1697
|
+
description: The date and time when the decision table was last modified
|
|
1698
|
+
type: string
|
|
1625
1699
|
parameters:
|
|
1626
1700
|
required: true
|
|
1627
1701
|
description: The description of the for the decision table parameters
|
|
1628
1702
|
type: array
|
|
1629
1703
|
items:
|
|
1630
|
-
type:
|
|
1704
|
+
type: EligibilityRuleParameterRepresentation
|
|
1631
1705
|
sourceCriteria:
|
|
1632
1706
|
required: true
|
|
1633
1707
|
description: The criteria used to filter and select a specific type rule for application
|
|
@@ -1663,10 +1737,23 @@ types:
|
|
|
1663
1737
|
- ProductQualification
|
|
1664
1738
|
- ProductCategoryQualification
|
|
1665
1739
|
- None
|
|
1666
|
-
|
|
1667
|
-
description: Represents the
|
|
1740
|
+
EligibilityRuleParameterRepresentation:
|
|
1741
|
+
description: Represents the eligibility rule parameter
|
|
1668
1742
|
type: object
|
|
1669
1743
|
properties:
|
|
1744
|
+
columnDataType:
|
|
1745
|
+
description: Data Type of the field used
|
|
1746
|
+
type: string
|
|
1747
|
+
required: false
|
|
1748
|
+
enum:
|
|
1749
|
+
- Boolean
|
|
1750
|
+
- Currency
|
|
1751
|
+
- Date
|
|
1752
|
+
- Number
|
|
1753
|
+
- Percent
|
|
1754
|
+
- String
|
|
1755
|
+
- DateTime
|
|
1756
|
+
- PickList
|
|
1670
1757
|
columnMapping:
|
|
1671
1758
|
description: Specifies the source object path for the mapping to the column
|
|
1672
1759
|
of an entity
|
|
@@ -1683,6 +1770,7 @@ types:
|
|
|
1683
1770
|
- Number
|
|
1684
1771
|
- Percent
|
|
1685
1772
|
- String
|
|
1773
|
+
- DateTime
|
|
1686
1774
|
decimalScale:
|
|
1687
1775
|
description: Precision of the field used
|
|
1688
1776
|
type: integer
|