@salesforce/lds-adapters-service-ecm 1.392.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 +342 -21
- 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/EligibilityRuleDetailsRepresentation.d.ts +13 -7
- package/dist/es/es2018/types/src/generated/types/{DecisionTableParameterOutputRepresentation.d.ts → EligibilityRuleParameterRepresentation.d.ts} +11 -8
- package/package.json +3 -3
- package/sfdc/index.js +343 -22
- package/src/raml/api.raml +61 -6
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
|
|
@@ -1627,10 +1655,19 @@ types:
|
|
|
1627
1655
|
description: Representation for Decision Table Details.
|
|
1628
1656
|
type: object
|
|
1629
1657
|
properties:
|
|
1630
|
-
|
|
1658
|
+
rowLevelOverrideType:
|
|
1631
1659
|
required: true
|
|
1632
|
-
description: Indicates
|
|
1633
|
-
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
|
|
1634
1671
|
conditionCriteria:
|
|
1635
1672
|
required: true
|
|
1636
1673
|
description: The criteria for the condition
|
|
@@ -1655,12 +1692,16 @@ types:
|
|
|
1655
1692
|
required: true
|
|
1656
1693
|
description: The name of the decision table
|
|
1657
1694
|
type: string
|
|
1695
|
+
lastModifiedDate:
|
|
1696
|
+
required: true
|
|
1697
|
+
description: The date and time when the decision table was last modified
|
|
1698
|
+
type: string
|
|
1658
1699
|
parameters:
|
|
1659
1700
|
required: true
|
|
1660
1701
|
description: The description of the for the decision table parameters
|
|
1661
1702
|
type: array
|
|
1662
1703
|
items:
|
|
1663
|
-
type:
|
|
1704
|
+
type: EligibilityRuleParameterRepresentation
|
|
1664
1705
|
sourceCriteria:
|
|
1665
1706
|
required: true
|
|
1666
1707
|
description: The criteria used to filter and select a specific type rule for application
|
|
@@ -1696,10 +1737,23 @@ types:
|
|
|
1696
1737
|
- ProductQualification
|
|
1697
1738
|
- ProductCategoryQualification
|
|
1698
1739
|
- None
|
|
1699
|
-
|
|
1700
|
-
description: Represents the
|
|
1740
|
+
EligibilityRuleParameterRepresentation:
|
|
1741
|
+
description: Represents the eligibility rule parameter
|
|
1701
1742
|
type: object
|
|
1702
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
|
|
1703
1757
|
columnMapping:
|
|
1704
1758
|
description: Specifies the source object path for the mapping to the column
|
|
1705
1759
|
of an entity
|
|
@@ -1716,6 +1770,7 @@ types:
|
|
|
1716
1770
|
- Number
|
|
1717
1771
|
- Percent
|
|
1718
1772
|
- String
|
|
1773
|
+
- DateTime
|
|
1719
1774
|
decimalScale:
|
|
1720
1775
|
description: Precision of the field used
|
|
1721
1776
|
type: integer
|