@salesforce/lds-adapters-service-ecm 1.343.0 → 1.345.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 +641 -25
- package/dist/es/es2018/types/src/generated/adapters/createCatalogItem.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/adapters/updateCatalogItem.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/resources/patchConnectServiceAutomationCatalogCatalogItemByCatalogItemId.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationCatalogCatalogItem.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/types/AgentActionInputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/AgentActionOutputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/CatalogItemCreateInputRepresentation.d.ts +9 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemOutputRepresentation.d.ts +9 -2
- package/dist/es/es2018/types/src/generated/types/CatalogItemUpdateInputRepresentation.d.ts +9 -1
- package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentation.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/ProductRequestCreateInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ProductRequestUpdateInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +642 -26
- package/src/raml/api.raml +98 -2
package/src/raml/api.raml
CHANGED
|
@@ -130,6 +130,7 @@ types:
|
|
|
130
130
|
- Percentage
|
|
131
131
|
- Picklist
|
|
132
132
|
- Text
|
|
133
|
+
- File
|
|
133
134
|
defaultValue:
|
|
134
135
|
required: false
|
|
135
136
|
description: Attribute Default Value
|
|
@@ -209,6 +210,7 @@ types:
|
|
|
209
210
|
- Percentage
|
|
210
211
|
- Picklist
|
|
211
212
|
- Text
|
|
213
|
+
- File
|
|
212
214
|
defaultValue:
|
|
213
215
|
required: false
|
|
214
216
|
description: Attribute Default Value
|
|
@@ -261,6 +263,10 @@ types:
|
|
|
261
263
|
description: Configuration of the Catalog Item.
|
|
262
264
|
type: object
|
|
263
265
|
properties:
|
|
266
|
+
agentAction:
|
|
267
|
+
required: false
|
|
268
|
+
description: Agent Action for the Catalog Item
|
|
269
|
+
type: AgentActionInputRepresentation | nil
|
|
264
270
|
associatedArticles:
|
|
265
271
|
required: false
|
|
266
272
|
description: Knowledge Articles
|
|
@@ -273,6 +279,12 @@ types:
|
|
|
273
279
|
type: array
|
|
274
280
|
items:
|
|
275
281
|
type: CatalogItemAttributeInputRepresentation | nil
|
|
282
|
+
sections:
|
|
283
|
+
required: false
|
|
284
|
+
description: Section List
|
|
285
|
+
type: array
|
|
286
|
+
items:
|
|
287
|
+
type: SectionInputRepresentation | nil
|
|
276
288
|
contextDefinitionDevNameOrId:
|
|
277
289
|
required: false
|
|
278
290
|
description: Context Definition Id
|
|
@@ -341,6 +353,10 @@ types:
|
|
|
341
353
|
description: Output Representation of Catalog Item
|
|
342
354
|
type: object
|
|
343
355
|
properties:
|
|
356
|
+
agentAction:
|
|
357
|
+
required: false
|
|
358
|
+
description: Agent Action
|
|
359
|
+
type: AgentActionOutputRepresentation | nil
|
|
344
360
|
associatedArticles:
|
|
345
361
|
required: false
|
|
346
362
|
description: Knowledge Articles
|
|
@@ -349,8 +365,14 @@ types:
|
|
|
349
365
|
type: AssociatedArticleOutputRepresentation | nil
|
|
350
366
|
section:
|
|
351
367
|
required: false
|
|
352
|
-
description:
|
|
368
|
+
description: Section
|
|
353
369
|
type: SectionOutputRepresentation | nil
|
|
370
|
+
sections:
|
|
371
|
+
required: false
|
|
372
|
+
description: Sections
|
|
373
|
+
type: array
|
|
374
|
+
items:
|
|
375
|
+
type: SectionOutputRepresentation | nil
|
|
354
376
|
catalogItemId:
|
|
355
377
|
required: true
|
|
356
378
|
description: Id of the Catalog Item
|
|
@@ -428,6 +450,10 @@ types:
|
|
|
428
450
|
description: The configuration of updates to the CatalogItem
|
|
429
451
|
type: object
|
|
430
452
|
properties:
|
|
453
|
+
agentAction:
|
|
454
|
+
required: false
|
|
455
|
+
description: Agent Action for the Catalog Item
|
|
456
|
+
type: AgentActionInputRepresentation | nil
|
|
431
457
|
productId:
|
|
432
458
|
required: false
|
|
433
459
|
description: The ID of the catalog Item
|
|
@@ -444,6 +470,12 @@ types:
|
|
|
444
470
|
type: array
|
|
445
471
|
items:
|
|
446
472
|
type: CatalogItemAttributeInputRepresentation | nil
|
|
473
|
+
sections:
|
|
474
|
+
required: false
|
|
475
|
+
description: Section List
|
|
476
|
+
type: array
|
|
477
|
+
items:
|
|
478
|
+
type: SectionInputRepresentation | nil
|
|
447
479
|
contextDefinitionDevNameOrId:
|
|
448
480
|
required: false
|
|
449
481
|
description: Context Definition Id
|
|
@@ -837,7 +869,7 @@ types:
|
|
|
837
869
|
properties:
|
|
838
870
|
id:
|
|
839
871
|
required: false
|
|
840
|
-
description: The id of the product
|
|
872
|
+
description: The id of the parent product
|
|
841
873
|
type: string | nil
|
|
842
874
|
operationType:
|
|
843
875
|
required: false
|
|
@@ -867,6 +899,14 @@ types:
|
|
|
867
899
|
description: Input Representation for Product Request.
|
|
868
900
|
type: object
|
|
869
901
|
properties:
|
|
902
|
+
operationType:
|
|
903
|
+
required: false
|
|
904
|
+
description: Operation Type of the product request section
|
|
905
|
+
type: string | nil
|
|
906
|
+
enum:
|
|
907
|
+
- Create
|
|
908
|
+
- Delete
|
|
909
|
+
- Update
|
|
870
910
|
productDetails:
|
|
871
911
|
required: false
|
|
872
912
|
description: Product Details
|
|
@@ -931,6 +971,14 @@ types:
|
|
|
931
971
|
description: Input Representation for Product Request.
|
|
932
972
|
type: object
|
|
933
973
|
properties:
|
|
974
|
+
operationType:
|
|
975
|
+
required: false
|
|
976
|
+
description: Operation Type of the product request section
|
|
977
|
+
type: string | nil
|
|
978
|
+
enum:
|
|
979
|
+
- Create
|
|
980
|
+
- Delete
|
|
981
|
+
- Update
|
|
934
982
|
productDetails:
|
|
935
983
|
required: false
|
|
936
984
|
description: Product Details
|
|
@@ -1013,6 +1061,54 @@ types:
|
|
|
1013
1061
|
required: false
|
|
1014
1062
|
description: Id of the Section
|
|
1015
1063
|
type: string | nil
|
|
1064
|
+
AgentActionInputRepresentation:
|
|
1065
|
+
description: Input Representation for Agent Action
|
|
1066
|
+
type: object
|
|
1067
|
+
properties:
|
|
1068
|
+
agentActionId:
|
|
1069
|
+
required: false
|
|
1070
|
+
description: The ID of the Agent Action
|
|
1071
|
+
type: string | nil
|
|
1072
|
+
id:
|
|
1073
|
+
required: false
|
|
1074
|
+
description: The ID of the Product Configuration Flow associated
|
|
1075
|
+
type: string | nil
|
|
1076
|
+
operationType:
|
|
1077
|
+
required: false
|
|
1078
|
+
description: The operation type for the updation or addition
|
|
1079
|
+
type: string | nil
|
|
1080
|
+
enum:
|
|
1081
|
+
- Create
|
|
1082
|
+
- Delete
|
|
1083
|
+
- Update
|
|
1084
|
+
status:
|
|
1085
|
+
required: false
|
|
1086
|
+
description: The Agent Action status for the service process
|
|
1087
|
+
type: string | nil
|
|
1088
|
+
enum:
|
|
1089
|
+
- Active
|
|
1090
|
+
- Draft
|
|
1091
|
+
- Inactive
|
|
1092
|
+
AgentActionOutputRepresentation:
|
|
1093
|
+
description: Output Representation for Agent Action
|
|
1094
|
+
type: object
|
|
1095
|
+
properties:
|
|
1096
|
+
agentActionId:
|
|
1097
|
+
required: false
|
|
1098
|
+
description: Agent Action Id
|
|
1099
|
+
type: string | nil
|
|
1100
|
+
id:
|
|
1101
|
+
required: false
|
|
1102
|
+
description: Product Configuration Flow Id
|
|
1103
|
+
type: string | nil
|
|
1104
|
+
status:
|
|
1105
|
+
required: false
|
|
1106
|
+
description: Status for the Agent Action
|
|
1107
|
+
type: string | nil
|
|
1108
|
+
enum:
|
|
1109
|
+
- Active
|
|
1110
|
+
- Draft
|
|
1111
|
+
- Inactive
|
|
1016
1112
|
/connect/service-automation:
|
|
1017
1113
|
/catalog:
|
|
1018
1114
|
/catalog-item:
|