@salesforce/lds-adapters-service-ecm 1.345.0 → 1.347.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 +399 -104
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeInputRepresentation.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeOutputRepresentation.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/SectionInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SectionOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +400 -105
- package/src/raml/api.raml +74 -2
package/src/raml/api.raml
CHANGED
|
@@ -130,7 +130,7 @@ types:
|
|
|
130
130
|
- Percentage
|
|
131
131
|
- Picklist
|
|
132
132
|
- Text
|
|
133
|
-
-
|
|
133
|
+
- Attachment
|
|
134
134
|
defaultValue:
|
|
135
135
|
required: false
|
|
136
136
|
description: Attribute Default Value
|
|
@@ -147,6 +147,9 @@ types:
|
|
|
147
147
|
required: false
|
|
148
148
|
description: Context Attribute Id
|
|
149
149
|
type: boolean | nil
|
|
150
|
+
isEditable:
|
|
151
|
+
description: Is Editable Field
|
|
152
|
+
type: boolean
|
|
150
153
|
isHidden:
|
|
151
154
|
required: false
|
|
152
155
|
description: is Hidden
|
|
@@ -155,6 +158,9 @@ types:
|
|
|
155
158
|
required: false
|
|
156
159
|
description: is Mandatory
|
|
157
160
|
type: boolean | nil
|
|
161
|
+
isMappedAnchorField:
|
|
162
|
+
description: is Mapped Anchor Field
|
|
163
|
+
type: boolean
|
|
158
164
|
isReadOnly:
|
|
159
165
|
required: false
|
|
160
166
|
description: is Read Only
|
|
@@ -175,6 +181,11 @@ types:
|
|
|
175
181
|
required: false
|
|
176
182
|
description: Attribute Parent
|
|
177
183
|
type: string | nil
|
|
184
|
+
picklistOptions:
|
|
185
|
+
description: Picklist Options
|
|
186
|
+
type: array
|
|
187
|
+
items:
|
|
188
|
+
type: PicklistAttributeTypeInputRepresentation | nil
|
|
178
189
|
sequence:
|
|
179
190
|
required: false
|
|
180
191
|
description: Sequence Number
|
|
@@ -210,7 +221,7 @@ types:
|
|
|
210
221
|
- Percentage
|
|
211
222
|
- Picklist
|
|
212
223
|
- Text
|
|
213
|
-
-
|
|
224
|
+
- Attachment
|
|
214
225
|
defaultValue:
|
|
215
226
|
required: false
|
|
216
227
|
description: Attribute Default Value
|
|
@@ -231,6 +242,9 @@ types:
|
|
|
231
242
|
required: false
|
|
232
243
|
description: Attribute Is Deleted
|
|
233
244
|
type: boolean | nil
|
|
245
|
+
isEditable:
|
|
246
|
+
description: Is Editable Field
|
|
247
|
+
type: boolean
|
|
234
248
|
isHidden:
|
|
235
249
|
required: false
|
|
236
250
|
description: Attribute Is Hidden
|
|
@@ -239,6 +253,9 @@ types:
|
|
|
239
253
|
required: false
|
|
240
254
|
description: is Mandatory
|
|
241
255
|
type: boolean | nil
|
|
256
|
+
isMappedAnchorField:
|
|
257
|
+
description: Mapped Anchor Field
|
|
258
|
+
type: boolean
|
|
242
259
|
isReadOnly:
|
|
243
260
|
required: false
|
|
244
261
|
description: Attribute isReadOnly
|
|
@@ -255,6 +272,11 @@ types:
|
|
|
255
272
|
required: false
|
|
256
273
|
description: Attribute Parent
|
|
257
274
|
type: string | nil
|
|
275
|
+
picklistOptions:
|
|
276
|
+
description: Picklist Options
|
|
277
|
+
type: array
|
|
278
|
+
items:
|
|
279
|
+
type: PicklistAttributeTypeOutputRepresentation | nil
|
|
258
280
|
sequence:
|
|
259
281
|
required: false
|
|
260
282
|
description: Attribute Sequence
|
|
@@ -706,6 +728,50 @@ types:
|
|
|
706
728
|
- Create
|
|
707
729
|
- Delete
|
|
708
730
|
- Update
|
|
731
|
+
PicklistAttributeTypeInputRepresentation:
|
|
732
|
+
description: Picklist Attribute Type
|
|
733
|
+
type: object
|
|
734
|
+
properties:
|
|
735
|
+
displayName:
|
|
736
|
+
description: Picklist Display Name
|
|
737
|
+
type: string
|
|
738
|
+
id:
|
|
739
|
+
description: Picklist Id
|
|
740
|
+
type: string
|
|
741
|
+
isDefault:
|
|
742
|
+
description: Picklist Is Default
|
|
743
|
+
type: boolean
|
|
744
|
+
isVisible:
|
|
745
|
+
description: Picklist Is Visible
|
|
746
|
+
type: boolean
|
|
747
|
+
name:
|
|
748
|
+
description: Picklist Name
|
|
749
|
+
type: string
|
|
750
|
+
sequenceNumber:
|
|
751
|
+
description: Picklist Sequence Number
|
|
752
|
+
type: integer
|
|
753
|
+
PicklistAttributeTypeOutputRepresentation:
|
|
754
|
+
description: Output representation class for the Picklist Attribute Type
|
|
755
|
+
type: object
|
|
756
|
+
properties:
|
|
757
|
+
displayName:
|
|
758
|
+
description: Picklist Option Display Name
|
|
759
|
+
type: string
|
|
760
|
+
id:
|
|
761
|
+
description: Picklist Option Id
|
|
762
|
+
type: string
|
|
763
|
+
isDefault:
|
|
764
|
+
description: Picklist Option isDefault
|
|
765
|
+
type: boolean
|
|
766
|
+
isVisible:
|
|
767
|
+
description: Picklist Option isVisible
|
|
768
|
+
type: boolean
|
|
769
|
+
name:
|
|
770
|
+
description: Picklist Option Name
|
|
771
|
+
type: string
|
|
772
|
+
sequenceNumber:
|
|
773
|
+
description: Picklist Option Sequence Number
|
|
774
|
+
type: integer
|
|
709
775
|
PreprocessorInputRepresentation:
|
|
710
776
|
description: Input Representation for Preprocessor
|
|
711
777
|
type: object
|
|
@@ -1039,6 +1105,9 @@ types:
|
|
|
1039
1105
|
- Create
|
|
1040
1106
|
- Delete
|
|
1041
1107
|
- Update
|
|
1108
|
+
sequence:
|
|
1109
|
+
description: The sequence of Section
|
|
1110
|
+
type: integer
|
|
1042
1111
|
SectionOutputRepresentation:
|
|
1043
1112
|
description: Output Representation for Section
|
|
1044
1113
|
type: object
|
|
@@ -1061,6 +1130,9 @@ types:
|
|
|
1061
1130
|
required: false
|
|
1062
1131
|
description: Id of the Section
|
|
1063
1132
|
type: string | nil
|
|
1133
|
+
sequence:
|
|
1134
|
+
description: The sequence of Section
|
|
1135
|
+
type: integer
|
|
1064
1136
|
AgentActionInputRepresentation:
|
|
1065
1137
|
description: Input Representation for Agent Action
|
|
1066
1138
|
type: object
|