@salesforce/lds-adapters-service-ecm 1.341.0 → 1.343.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.
Files changed (18) hide show
  1. package/dist/es/es2018/service-ecm.js +897 -71
  2. package/dist/es/es2018/types/src/generated/adapters/createCatalogItem.d.ts +3 -0
  3. package/dist/es/es2018/types/src/generated/adapters/updateCatalogItem.d.ts +3 -0
  4. package/dist/es/es2018/types/src/generated/resources/patchConnectServiceAutomationCatalogCatalogItemByCatalogItemId.d.ts +3 -0
  5. package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationCatalogCatalogItem.d.ts +3 -0
  6. package/dist/es/es2018/types/src/generated/types/CatalogItemCreateInputRepresentation.d.ts +8 -1
  7. package/dist/es/es2018/types/src/generated/types/CatalogItemOutputRepresentation.d.ts +8 -1
  8. package/dist/es/es2018/types/src/generated/types/CatalogItemUpdateInputRepresentation.d.ts +8 -1
  9. package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentation.d.ts +34 -0
  10. package/dist/es/es2018/types/src/generated/types/ProductDetailsOutputRepresentation.d.ts +31 -0
  11. package/dist/es/es2018/types/src/generated/types/ProductRequestCreateInputRepresentation.d.ts +43 -0
  12. package/dist/es/es2018/types/src/generated/types/ProductRequestOutputRepresentation.d.ts +47 -0
  13. package/dist/es/es2018/types/src/generated/types/ProductRequestUpdateInputRepresentation.d.ts +46 -0
  14. package/dist/es/es2018/types/src/generated/types/SectionInputRepresentation.d.ts +40 -0
  15. package/dist/es/es2018/types/src/generated/types/SectionOutputRepresentation.d.ts +4 -1
  16. package/package.json +3 -3
  17. package/sfdc/index.js +898 -72
  18. package/src/raml/api.raml +210 -2
package/src/raml/api.raml CHANGED
@@ -113,8 +113,10 @@ types:
113
113
  type: string | nil
114
114
  enum:
115
115
  - Boolean
116
+ - CheckBox
117
+ - Currency
116
118
  - Date
117
- - DateTime
119
+ - Datetime
118
120
  - Double
119
121
  - List
120
122
  - ListOfBoolean
@@ -125,6 +127,7 @@ types:
125
127
  - Lookup
126
128
  - Map
127
129
  - Number
130
+ - Percentage
128
131
  - Picklist
129
132
  - Text
130
133
  defaultValue:
@@ -189,8 +192,10 @@ types:
189
192
  type: string | nil
190
193
  enum:
191
194
  - Boolean
195
+ - CheckBox
196
+ - Currency
192
197
  - Date
193
- - DateTime
198
+ - Datetime
194
199
  - Double
195
200
  - List
196
201
  - ListOfBoolean
@@ -201,6 +206,7 @@ types:
201
206
  - Lookup
202
207
  - Map
203
208
  - Number
209
+ - Percentage
204
210
  - Picklist
205
211
  - Text
206
212
  defaultValue:
@@ -313,6 +319,18 @@ types:
313
319
  type: array
314
320
  items:
315
321
  type: PreprocessorInputRepresentation | nil
322
+ productRequests:
323
+ required: false
324
+ description: ProductRequests
325
+ type: array
326
+ items:
327
+ type: ProductRequestCreateInputRepresentation | nil
328
+ targetObject:
329
+ description: TargetObject
330
+ type: string | nil
331
+ enum:
332
+ - Case
333
+ - Incident
316
334
  usedFor:
317
335
  required: false
318
336
  description: UsedFor
@@ -387,6 +405,19 @@ types:
387
405
  type: array
388
406
  items:
389
407
  type: PreprocessorOutputRepresentation | nil
408
+ productRequests:
409
+ required: false
410
+ description: ProductRequests
411
+ type: array
412
+ items:
413
+ type: ProductRequestOutputRepresentation | nil
414
+ targetObject:
415
+ required: false
416
+ description: Target Object
417
+ type: string | nil
418
+ enum:
419
+ - Case
420
+ - Incident
390
421
  usedFor:
391
422
  required: false
392
423
  description: usedFor of the Catalog Item
@@ -459,6 +490,19 @@ types:
459
490
  type: array
460
491
  items:
461
492
  type: PreprocessorInputRepresentation | nil
493
+ productRequests:
494
+ required: false
495
+ description: ProductRequests
496
+ type: array
497
+ items:
498
+ type: ProductRequestCreateInputRepresentation | nil
499
+ targetObject:
500
+ required: false
501
+ description: Target Object
502
+ type: string | nil
503
+ enum:
504
+ - Case
505
+ - Incident
462
506
  usedFor:
463
507
  required: false
464
508
  description: UsedFor
@@ -787,6 +831,166 @@ types:
787
831
  scriptName:
788
832
  description: Omni Script Name
789
833
  type: string
834
+ ProductDetailsInputRepresentation:
835
+ description: Input Representation for Product Details.
836
+ type: object
837
+ properties:
838
+ id:
839
+ required: false
840
+ description: The id of the product request
841
+ type: string | nil
842
+ operationType:
843
+ required: false
844
+ description: The operation type of the catalog Item
845
+ type: string | nil
846
+ enum:
847
+ - Create
848
+ - Delete
849
+ - Update
850
+ productId:
851
+ required: false
852
+ description: The id of the product
853
+ type: string | nil
854
+ ProductDetailsOutputRepresentation:
855
+ description: Output Representation for Product Details
856
+ type: object
857
+ properties:
858
+ id:
859
+ required: false
860
+ description: The id of the product request
861
+ type: string | nil
862
+ productId:
863
+ required: false
864
+ description: The id of the product
865
+ type: string | nil
866
+ ProductRequestCreateInputRepresentation:
867
+ description: Input Representation for Product Request.
868
+ type: object
869
+ properties:
870
+ productDetails:
871
+ required: false
872
+ description: Product Details
873
+ type: array
874
+ items:
875
+ type: any
876
+ sectionDescription:
877
+ required: false
878
+ description: Section Description
879
+ type: string | nil
880
+ sectionMaxCount:
881
+ required: false
882
+ description: Section max count
883
+ type: integer | nil
884
+ sectionMinCount:
885
+ required: false
886
+ description: Section min count
887
+ type: integer | nil
888
+ sectionName:
889
+ required: false
890
+ description: Section Name
891
+ type: string | nil
892
+ sequence:
893
+ required: false
894
+ description: Sequence
895
+ type: integer | nil
896
+ ProductRequestOutputRepresentation:
897
+ description: Output Representation for Product Request
898
+ type: object
899
+ properties:
900
+ productDetails:
901
+ required: false
902
+ description: Product Details
903
+ type: array
904
+ items:
905
+ type: ProductDetailsOutputRepresentation
906
+ sectionDescription:
907
+ required: false
908
+ description: Section Description
909
+ type: string | nil
910
+ sectionId:
911
+ required: false
912
+ description: Section Id
913
+ type: string | nil
914
+ sectionMaxCount:
915
+ required: false
916
+ description: Section max count
917
+ type: integer | nil
918
+ sectionMinCount:
919
+ required: false
920
+ description: Section min count
921
+ type: integer | nil
922
+ sectionName:
923
+ required: false
924
+ description: Section Name
925
+ type: string | nil
926
+ sequence:
927
+ required: false
928
+ description: Sequence
929
+ type: integer | nil
930
+ ProductRequestUpdateInputRepresentation:
931
+ description: Input Representation for Product Request.
932
+ type: object
933
+ properties:
934
+ productDetails:
935
+ required: false
936
+ description: Product Details
937
+ type: array
938
+ items:
939
+ type: any
940
+ sectionDescription:
941
+ required: false
942
+ description: Section Description
943
+ type: string | nil
944
+ sectionId:
945
+ required: false
946
+ description: Section Id
947
+ type: string | nil
948
+ sectionMaxCount:
949
+ required: false
950
+ description: Section max count
951
+ type: integer | nil
952
+ sectionMinCount:
953
+ required: false
954
+ description: Section min count
955
+ type: integer | nil
956
+ sectionName:
957
+ required: false
958
+ description: Section Name
959
+ type: string | nil
960
+ sequence:
961
+ required: false
962
+ description: Section Sequence
963
+ type: integer | nil
964
+ SectionInputRepresentation:
965
+ description: Input Representation for Sections
966
+ type: object
967
+ properties:
968
+ attributes:
969
+ required: false
970
+ description: Attributes associated with Section
971
+ type: array
972
+ items:
973
+ type: any
974
+ description:
975
+ required: false
976
+ description: The Description of Section
977
+ type: string | nil
978
+ id:
979
+ required: false
980
+ description: The ID of Section
981
+ type: string | nil
982
+ name:
983
+ required: false
984
+ description: The Name of Section
985
+ type: string | nil
986
+ operationType:
987
+ required: false
988
+ description: The operation type of the section
989
+ type: string | nil
990
+ enum:
991
+ - Create
992
+ - Delete
993
+ - Update
790
994
  SectionOutputRepresentation:
791
995
  description: Output Representation for Section
792
996
  type: object
@@ -805,6 +1009,10 @@ types:
805
1009
  type: array
806
1010
  items:
807
1011
  type: CatalogItemAttributeOutputRepresentation | nil
1012
+ id:
1013
+ required: false
1014
+ description: Id of the Section
1015
+ type: string | nil
808
1016
  /connect/service-automation:
809
1017
  /catalog:
810
1018
  /catalog-item: