@salesforce/lds-adapters-service-ecm 1.323.0 → 1.325.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 +101 -209
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemCreateInputRepresentation.d.ts +1 -37
- package/dist/es/es2018/types/src/generated/types/CatalogItemInputRepresentation.d.ts +61 -0
- package/dist/es/es2018/types/src/generated/types/CatalogItemOutputRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/CatalogItemUpdateInputRepresentation.d.ts +1 -37
- package/dist/es/es2018/types/src/generated/types/FulfillmentFlowOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/FulfillmentFowInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/PreprocessorInputRepresentation.d.ts +31 -0
- package/package.json +3 -3
- package/sfdc/index.js +102 -210
- package/src/raml/api.raml +63 -60
package/src/raml/api.raml
CHANGED
|
@@ -110,6 +110,9 @@ types:
|
|
|
110
110
|
description:
|
|
111
111
|
description: Attribute Description
|
|
112
112
|
type: string
|
|
113
|
+
id:
|
|
114
|
+
description: Attribute Name
|
|
115
|
+
type: string
|
|
113
116
|
isHidden:
|
|
114
117
|
description: is Hidden
|
|
115
118
|
type: boolean
|
|
@@ -168,6 +171,10 @@ types:
|
|
|
168
171
|
CatalogItemCreateInputRepresentation:
|
|
169
172
|
description: Configuration of the Catalog Item.
|
|
170
173
|
type: object
|
|
174
|
+
properties: {}
|
|
175
|
+
CatalogItemInputRepresentation:
|
|
176
|
+
description: Input Representation for Catalog Item.
|
|
177
|
+
type: object
|
|
171
178
|
properties:
|
|
172
179
|
associatedArticles:
|
|
173
180
|
description: Knowledge Articles
|
|
@@ -190,9 +197,9 @@ types:
|
|
|
190
197
|
type: array
|
|
191
198
|
items:
|
|
192
199
|
type: object
|
|
193
|
-
|
|
194
|
-
description: Fulfillment Flow
|
|
195
|
-
type:
|
|
200
|
+
fulfillmentFlow:
|
|
201
|
+
description: Fulfillment Flow
|
|
202
|
+
type: object
|
|
196
203
|
intakeForm:
|
|
197
204
|
description: Intake Form
|
|
198
205
|
type: object
|
|
@@ -207,16 +214,17 @@ types:
|
|
|
207
214
|
name:
|
|
208
215
|
description: Name
|
|
209
216
|
type: string
|
|
210
|
-
|
|
211
|
-
description: Pre-Processor
|
|
212
|
-
type:
|
|
217
|
+
preProcessors:
|
|
218
|
+
description: Pre-Processor
|
|
219
|
+
type: array
|
|
220
|
+
items:
|
|
221
|
+
type: object
|
|
213
222
|
type:
|
|
214
223
|
description: Type
|
|
215
224
|
type: string
|
|
216
225
|
enum:
|
|
217
226
|
- Product
|
|
218
227
|
- Service
|
|
219
|
-
|
|
220
228
|
CatalogItemOutputRepresentation:
|
|
221
229
|
description: Output Representation of Catalog Item
|
|
222
230
|
type: object
|
|
@@ -245,9 +253,9 @@ types:
|
|
|
245
253
|
type: array
|
|
246
254
|
items:
|
|
247
255
|
type: string
|
|
248
|
-
|
|
249
|
-
description: Fulfillment
|
|
250
|
-
type:
|
|
256
|
+
fulfillmentFlow:
|
|
257
|
+
description: Fulfillment Flows
|
|
258
|
+
type: FulfillmentFlowOutputRepresentation
|
|
251
259
|
intakeForm:
|
|
252
260
|
description: Intake Form
|
|
253
261
|
type: IntakeFormOutputRepresentation
|
|
@@ -262,9 +270,11 @@ types:
|
|
|
262
270
|
name:
|
|
263
271
|
description: Name of the Catalog Item
|
|
264
272
|
type: string
|
|
265
|
-
|
|
266
|
-
description: Pre Processor
|
|
267
|
-
type:
|
|
273
|
+
preProcessors:
|
|
274
|
+
description: Pre Processor Ids
|
|
275
|
+
type: array
|
|
276
|
+
items:
|
|
277
|
+
type: string
|
|
268
278
|
type:
|
|
269
279
|
description: Type of the Catalog Item
|
|
270
280
|
type: string
|
|
@@ -278,53 +288,6 @@ types:
|
|
|
278
288
|
id:
|
|
279
289
|
description: The ID of the catalog Item
|
|
280
290
|
type: string
|
|
281
|
-
associatedArticles:
|
|
282
|
-
description: Knowledge Articles
|
|
283
|
-
type: array
|
|
284
|
-
items:
|
|
285
|
-
type: object
|
|
286
|
-
attributes:
|
|
287
|
-
description: Attribute List
|
|
288
|
-
type: array
|
|
289
|
-
items:
|
|
290
|
-
type: object
|
|
291
|
-
contextDefinitionId:
|
|
292
|
-
description: Context Definition Id
|
|
293
|
-
type: string
|
|
294
|
-
description:
|
|
295
|
-
description: Description
|
|
296
|
-
type: string
|
|
297
|
-
eligibilityRules:
|
|
298
|
-
description: Eligibility Rules
|
|
299
|
-
type: array
|
|
300
|
-
items:
|
|
301
|
-
type: object
|
|
302
|
-
fulfillmentFlowId:
|
|
303
|
-
description: Fulfillment Flow Id
|
|
304
|
-
type: string
|
|
305
|
-
intakeForm:
|
|
306
|
-
description: Intake Form
|
|
307
|
-
type: object
|
|
308
|
-
integrations:
|
|
309
|
-
description: Integrations
|
|
310
|
-
type: array
|
|
311
|
-
items:
|
|
312
|
-
type: object
|
|
313
|
-
isActive:
|
|
314
|
-
description: is Active
|
|
315
|
-
type: boolean
|
|
316
|
-
name:
|
|
317
|
-
description: Name
|
|
318
|
-
type: string
|
|
319
|
-
preProcessorId:
|
|
320
|
-
description: Pre-Processor Id
|
|
321
|
-
type: string
|
|
322
|
-
type:
|
|
323
|
-
description: Type
|
|
324
|
-
type: string
|
|
325
|
-
enum:
|
|
326
|
-
- Product
|
|
327
|
-
- Service
|
|
328
291
|
IntakeFormInputRepresentation:
|
|
329
292
|
description: Input Representation for Intake Forms.
|
|
330
293
|
type: object
|
|
@@ -365,6 +328,46 @@ types:
|
|
|
365
328
|
catalogItemUpdateInput:
|
|
366
329
|
description: Input Representation for Catalog Item Update
|
|
367
330
|
type: CatalogItemUpdateInputRepresentation
|
|
331
|
+
PreprocessorInputRepresentation:
|
|
332
|
+
description: Input Representation for Preprocessor
|
|
333
|
+
type: object
|
|
334
|
+
properties:
|
|
335
|
+
id:
|
|
336
|
+
description: The ID of the catalog Item
|
|
337
|
+
type: string
|
|
338
|
+
operationType:
|
|
339
|
+
description: The operation type of the catalog Item
|
|
340
|
+
type: string
|
|
341
|
+
enum:
|
|
342
|
+
- Create
|
|
343
|
+
- Delete
|
|
344
|
+
FulfillmentFlowOutputRepresentation:
|
|
345
|
+
description: Output Representation for Fulfillment Flow
|
|
346
|
+
type: object
|
|
347
|
+
properties:
|
|
348
|
+
id:
|
|
349
|
+
description: FulfillmentFlow Id
|
|
350
|
+
type: string
|
|
351
|
+
type:
|
|
352
|
+
description: FulfillmentFlow Type
|
|
353
|
+
type: string
|
|
354
|
+
enum:
|
|
355
|
+
- Flow
|
|
356
|
+
- FlowOrchestrator
|
|
357
|
+
FulfillmentFowInputRepresentation:
|
|
358
|
+
description: Input Representation for Fulfillment Flow
|
|
359
|
+
type: object
|
|
360
|
+
properties:
|
|
361
|
+
id:
|
|
362
|
+
description: The ID of the catalog Item
|
|
363
|
+
type: string
|
|
364
|
+
type:
|
|
365
|
+
description: The Type of the catalog Item
|
|
366
|
+
type: string
|
|
367
|
+
enum:
|
|
368
|
+
- Flow
|
|
369
|
+
- FlowOrchestrator
|
|
370
|
+
|
|
368
371
|
/connect:
|
|
369
372
|
/catalog/catalog-item:
|
|
370
373
|
post:
|