@salesforce/lds-adapters-service-ecm 1.343.0 → 1.344.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 +407 -25
- package/dist/es/es2018/types/src/generated/adapters/createCatalogItem.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/updateCatalogItem.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/patchConnectServiceAutomationCatalogCatalogItemByCatalogItemId.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationCatalogCatalogItem.d.ts +2 -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 +5 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemOutputRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemUpdateInputRepresentation.d.ts +5 -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 +408 -26
- package/src/raml/api.raml +77 -1
package/src/raml/api.raml
CHANGED
|
@@ -261,6 +261,10 @@ types:
|
|
|
261
261
|
description: Configuration of the Catalog Item.
|
|
262
262
|
type: object
|
|
263
263
|
properties:
|
|
264
|
+
agentAction:
|
|
265
|
+
required: false
|
|
266
|
+
description: Agent Action for the Catalog Item
|
|
267
|
+
type: AgentActionInputRepresentation | nil
|
|
264
268
|
associatedArticles:
|
|
265
269
|
required: false
|
|
266
270
|
description: Knowledge Articles
|
|
@@ -341,6 +345,10 @@ types:
|
|
|
341
345
|
description: Output Representation of Catalog Item
|
|
342
346
|
type: object
|
|
343
347
|
properties:
|
|
348
|
+
agentAction:
|
|
349
|
+
required: false
|
|
350
|
+
description: Agent Action
|
|
351
|
+
type: AgentActionOutputRepresentation | nil
|
|
344
352
|
associatedArticles:
|
|
345
353
|
required: false
|
|
346
354
|
description: Knowledge Articles
|
|
@@ -428,6 +436,10 @@ types:
|
|
|
428
436
|
description: The configuration of updates to the CatalogItem
|
|
429
437
|
type: object
|
|
430
438
|
properties:
|
|
439
|
+
agentAction:
|
|
440
|
+
required: false
|
|
441
|
+
description: Agent Action for the Catalog Item
|
|
442
|
+
type: AgentActionInputRepresentation | nil
|
|
431
443
|
productId:
|
|
432
444
|
required: false
|
|
433
445
|
description: The ID of the catalog Item
|
|
@@ -837,7 +849,7 @@ types:
|
|
|
837
849
|
properties:
|
|
838
850
|
id:
|
|
839
851
|
required: false
|
|
840
|
-
description: The id of the product
|
|
852
|
+
description: The id of the parent product
|
|
841
853
|
type: string | nil
|
|
842
854
|
operationType:
|
|
843
855
|
required: false
|
|
@@ -867,6 +879,14 @@ types:
|
|
|
867
879
|
description: Input Representation for Product Request.
|
|
868
880
|
type: object
|
|
869
881
|
properties:
|
|
882
|
+
operationType:
|
|
883
|
+
required: false
|
|
884
|
+
description: Operation Type of the product request section
|
|
885
|
+
type: string | nil
|
|
886
|
+
enum:
|
|
887
|
+
- Create
|
|
888
|
+
- Delete
|
|
889
|
+
- Update
|
|
870
890
|
productDetails:
|
|
871
891
|
required: false
|
|
872
892
|
description: Product Details
|
|
@@ -931,6 +951,14 @@ types:
|
|
|
931
951
|
description: Input Representation for Product Request.
|
|
932
952
|
type: object
|
|
933
953
|
properties:
|
|
954
|
+
operationType:
|
|
955
|
+
required: false
|
|
956
|
+
description: Operation Type of the product request section
|
|
957
|
+
type: string | nil
|
|
958
|
+
enum:
|
|
959
|
+
- Create
|
|
960
|
+
- Delete
|
|
961
|
+
- Update
|
|
934
962
|
productDetails:
|
|
935
963
|
required: false
|
|
936
964
|
description: Product Details
|
|
@@ -1013,6 +1041,54 @@ types:
|
|
|
1013
1041
|
required: false
|
|
1014
1042
|
description: Id of the Section
|
|
1015
1043
|
type: string | nil
|
|
1044
|
+
AgentActionInputRepresentation:
|
|
1045
|
+
description: Input Representation for Agent Action
|
|
1046
|
+
type: object
|
|
1047
|
+
properties:
|
|
1048
|
+
agentActionId:
|
|
1049
|
+
required: false
|
|
1050
|
+
description: The ID of the Agent Action
|
|
1051
|
+
type: string | nil
|
|
1052
|
+
id:
|
|
1053
|
+
required: false
|
|
1054
|
+
description: The ID of the Product Configuration Flow associated
|
|
1055
|
+
type: string | nil
|
|
1056
|
+
operationType:
|
|
1057
|
+
required: false
|
|
1058
|
+
description: The operation type for the updation or addition
|
|
1059
|
+
type: string | nil
|
|
1060
|
+
enum:
|
|
1061
|
+
- Create
|
|
1062
|
+
- Delete
|
|
1063
|
+
- Update
|
|
1064
|
+
status:
|
|
1065
|
+
required: false
|
|
1066
|
+
description: The Agent Action status for the service process
|
|
1067
|
+
type: string | nil
|
|
1068
|
+
enum:
|
|
1069
|
+
- Active
|
|
1070
|
+
- Draft
|
|
1071
|
+
- Inactive
|
|
1072
|
+
AgentActionOutputRepresentation:
|
|
1073
|
+
description: Output Representation for Agent Action
|
|
1074
|
+
type: object
|
|
1075
|
+
properties:
|
|
1076
|
+
agentActionId:
|
|
1077
|
+
required: false
|
|
1078
|
+
description: Agent Action Id
|
|
1079
|
+
type: string | nil
|
|
1080
|
+
id:
|
|
1081
|
+
required: false
|
|
1082
|
+
description: Product Configuration Flow Id
|
|
1083
|
+
type: string | nil
|
|
1084
|
+
status:
|
|
1085
|
+
required: false
|
|
1086
|
+
description: Status for the Agent Action
|
|
1087
|
+
type: string | nil
|
|
1088
|
+
enum:
|
|
1089
|
+
- Active
|
|
1090
|
+
- Draft
|
|
1091
|
+
- Inactive
|
|
1016
1092
|
/connect/service-automation:
|
|
1017
1093
|
/catalog:
|
|
1018
1094
|
/catalog-item:
|