@gofynd/fdk-client-javascript 1.0.2 → 1.0.4

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 (346) hide show
  1. package/README.md +31 -2
  2. package/index.d.ts +4 -4
  3. package/index.js +9 -10
  4. package/package.json +14 -14
  5. package/sdk/APIClient.d.ts +11 -0
  6. package/sdk/APIClient.js +35 -0
  7. package/sdk/Client.d.ts +6 -0
  8. package/sdk/Client.js +17 -0
  9. package/sdk/Config.d.ts +9 -0
  10. package/sdk/Config.js +17 -0
  11. package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
  12. package/sdk/application/Cart/CartApplicationClient.js +595 -594
  13. package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
  14. package/sdk/application/Cart/CartApplicationModel.js +490 -885
  15. package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
  16. package/sdk/application/Cart/CartApplicationValidator.js +98 -98
  17. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
  18. package/sdk/application/Catalog/CatalogApplicationClient.js +1079 -1078
  19. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
  20. package/sdk/application/Catalog/CatalogApplicationModel.js +683 -1249
  21. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
  22. package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
  23. package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
  24. package/sdk/application/Common/CommonApplicationClient.js +43 -42
  25. package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
  26. package/sdk/application/Common/CommonApplicationModel.js +83 -160
  27. package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
  28. package/sdk/application/Common/CommonApplicationValidator.js +6 -6
  29. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
  30. package/sdk/application/Communication/CommunicationApplicationClient.js +32 -31
  31. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
  32. package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
  33. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
  34. package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
  35. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
  36. package/sdk/application/Configuration/ConfigurationApplicationClient.js +350 -349
  37. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
  38. package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
  39. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
  40. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
  41. package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
  42. package/sdk/application/Content/ContentApplicationClient.js +216 -215
  43. package/sdk/application/Content/ContentApplicationModel.d.ts +76 -76
  44. package/sdk/application/Content/ContentApplicationModel.js +468 -884
  45. package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
  46. package/sdk/application/Content/ContentApplicationValidator.js +24 -24
  47. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
  48. package/sdk/application/FileStorage/FileStorageApplicationClient.js +65 -64
  49. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
  50. package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
  51. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
  52. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
  53. package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
  54. package/sdk/application/Lead/LeadApplicationClient.js +109 -108
  55. package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
  56. package/sdk/application/Lead/LeadApplicationModel.js +267 -474
  57. package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
  58. package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
  59. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +31 -22
  60. package/sdk/application/Logistic/LogisticApplicationClient.js +115 -49
  61. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
  62. package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
  63. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
  64. package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -9
  65. package/sdk/application/Order/OrderApplicationClient.d.ts +85 -85
  66. package/sdk/application/Order/OrderApplicationClient.js +247 -246
  67. package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
  68. package/sdk/application/Order/OrderApplicationModel.js +361 -656
  69. package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
  70. package/sdk/application/Order/OrderApplicationValidator.js +28 -28
  71. package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
  72. package/sdk/application/Payment/PaymentApplicationClient.js +781 -780
  73. package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
  74. package/sdk/application/Payment/PaymentApplicationModel.js +570 -1038
  75. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
  76. package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
  77. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
  78. package/sdk/application/PosCart/PosCartApplicationClient.js +646 -645
  79. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +64 -63
  80. package/sdk/application/PosCart/PosCartApplicationModel.js +476 -870
  81. package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
  82. package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
  83. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
  84. package/sdk/application/Rewards/RewardsApplicationClient.js +122 -121
  85. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
  86. package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
  87. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
  88. package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
  89. package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
  90. package/sdk/application/Share/ShareApplicationClient.js +94 -93
  91. package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
  92. package/sdk/application/Share/ShareApplicationModel.js +63 -123
  93. package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
  94. package/sdk/application/Share/ShareApplicationValidator.js +12 -12
  95. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  96. package/sdk/application/Theme/ThemeApplicationClient.js +38 -37
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
  98. package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
  99. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
  100. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
  101. package/sdk/application/User/UserApplicationClient.d.ts +280 -280
  102. package/sdk/application/User/UserApplicationClient.js +619 -618
  103. package/sdk/application/User/UserApplicationModel.d.ts +79 -72
  104. package/sdk/application/User/UserApplicationModel.js +440 -689
  105. package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
  106. package/sdk/application/User/UserApplicationValidator.js +89 -89
  107. package/sdk/common/AxiosHelper.js +18 -7
  108. package/sdk/constructUrl.d.ts +5 -0
  109. package/sdk/constructUrl.js +13 -0
  110. package/sdk/index.d.ts +3 -0
  111. package/sdk/index.js +5 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +51 -51
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +182 -180
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
  115. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +21 -21
  116. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +5 -4
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
  118. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
  119. package/sdk/platform/Analytics/AnalyticsPlatformValidator.js +1 -0
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +10 -10
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +44 -43
  122. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
  123. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
  124. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +7 -6
  126. package/sdk/platform/Billing/BillingPlatformClient.d.ts +60 -60
  127. package/sdk/platform/Billing/BillingPlatformClient.js +184 -183
  128. package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
  129. package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
  130. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
  131. package/sdk/platform/Billing/BillingPlatformValidator.js +26 -25
  132. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +192 -165
  133. package/sdk/platform/Cart/CartPlatformApplicationClient.js +686 -510
  134. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +14 -11
  135. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +77 -61
  136. package/sdk/platform/Cart/CartPlatformModel.d.ts +84 -83
  137. package/sdk/platform/Cart/CartPlatformModel.js +676 -1206
  138. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +632 -632
  139. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1558 -1556
  140. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
  142. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +688 -688
  143. package/sdk/platform/Catalog/CatalogPlatformClient.js +1556 -1559
  144. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +291 -291
  145. package/sdk/platform/Catalog/CatalogPlatformModel.js +2133 -3910
  146. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -66
  147. package/sdk/platform/Catalog/CatalogPlatformValidator.js +229 -228
  148. package/sdk/platform/Common/CommonPlatformClient.d.ts +12 -12
  149. package/sdk/platform/Common/CommonPlatformClient.js +40 -51
  150. package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
  151. package/sdk/platform/Common/CommonPlatformModel.js +83 -160
  152. package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
  153. package/sdk/platform/Common/CommonPlatformValidator.js +7 -6
  154. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +326 -326
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +945 -943
  156. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
  157. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +88 -88
  158. package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -3
  159. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
  160. package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
  161. package/sdk/platform/Communication/CommunicationPlatformValidator.js +1 -0
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +55 -55
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +217 -216
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +27 -27
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +279 -542
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -24
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +163 -153
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +617 -552
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +70 -64
  172. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +125 -125
  173. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +348 -347
  174. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
  175. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
  176. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
  177. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +39 -38
  178. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +524 -534
  179. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1287 -1346
  180. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +49 -50
  181. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +153 -159
  182. package/sdk/platform/Content/ContentPlatformModel.d.ts +78 -78
  183. package/sdk/platform/Content/ContentPlatformModel.js +485 -907
  184. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +65 -65
  185. package/sdk/platform/Discount/DiscountPlatformClient.js +219 -218
  186. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
  187. package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
  188. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
  189. package/sdk/platform/Discount/DiscountPlatformValidator.js +30 -29
  190. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +25 -25
  191. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +83 -61
  192. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
  193. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +9 -9
  194. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +53 -53
  195. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +147 -125
  196. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
  197. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
  198. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
  199. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +12 -11
  200. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +63 -63
  201. package/sdk/platform/Inventory/InventoryPlatformClient.js +231 -230
  202. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
  203. package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
  204. package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
  205. package/sdk/platform/Inventory/InventoryPlatformValidator.js +29 -28
  206. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +73 -73
  207. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +203 -201
  208. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
  209. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +29 -29
  210. package/sdk/platform/Lead/LeadPlatformClient.d.ts +80 -80
  211. package/sdk/platform/Lead/LeadPlatformClient.js +215 -214
  212. package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
  213. package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
  214. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
  215. package/sdk/platform/Lead/LeadPlatformValidator.js +25 -24
  216. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +10 -10
  217. package/sdk/platform/Order/OrderPlatformApplicationClient.js +68 -66
  218. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
  219. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +7 -7
  220. package/sdk/platform/Order/OrderPlatformClient.d.ts +357 -357
  221. package/sdk/platform/Order/OrderPlatformClient.js +1046 -1033
  222. package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -196
  223. package/sdk/platform/Order/OrderPlatformModel.js +1575 -2861
  224. package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
  225. package/sdk/platform/Order/OrderPlatformValidator.js +161 -160
  226. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +3 -1
  227. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +1 -1
  228. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  229. package/sdk/platform/Partner/PartnerPlatformModel.js +10 -26
  230. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +58 -58
  231. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +178 -178
  232. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
  233. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +24 -24
  234. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +42 -42
  235. package/sdk/platform/Payment/PaymentPlatformClient.js +156 -155
  236. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
  237. package/sdk/platform/Payment/PaymentPlatformModel.js +222 -410
  238. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
  239. package/sdk/platform/Payment/PaymentPlatformValidator.js +22 -21
  240. package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10325
  241. package/sdk/platform/PlatformApplicationClient.js +1584 -13899
  242. package/sdk/platform/PlatformClient.d.ts +7972 -7888
  243. package/sdk/platform/PlatformClient.js +8678 -10107
  244. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +85 -85
  245. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +299 -280
  246. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
  247. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +35 -35
  248. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
  249. package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
  250. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
  251. package/sdk/platform/Share/SharePlatformApplicationClient.js +62 -60
  252. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
  253. package/sdk/platform/Share/SharePlatformApplicationValidator.js +7 -7
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
  255. package/sdk/platform/Share/SharePlatformModel.js +60 -118
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +132 -132
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +314 -312
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +45 -45
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
  261. package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +136 -69
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +507 -166
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +62 -24
  266. package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
  267. package/sdk/platform/User/UserPlatformModel.js +440 -689
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +31 -31
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +91 -90
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +15 -14
  274. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
  275. package/sdk/public/Configuration/ConfigurationPublicClient.js +40 -38
  276. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
  277. package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
  278. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
  279. package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
  280. package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
  281. package/sdk/public/Inventory/InventoryPublicClient.js +115 -113
  282. package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
  283. package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
  284. package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
  285. package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
  286. package/sdk/public/Webhook/WebhookPublicClient.js +2 -0
  287. package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
  288. package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
  289. package/.github/workflows/on_create_release.yml +0 -23
  290. package/.github/workflows/on_merge_main.yml +0 -38
  291. package/.github/workflows/on_pull_request.yml +0 -35
  292. package/.prettierrc +0 -5
  293. package/documentation/application/CART.md +0 -7339
  294. package/documentation/application/CATALOG.md +0 -9597
  295. package/documentation/application/COMMON.md +0 -452
  296. package/documentation/application/COMMUNICATION.md +0 -467
  297. package/documentation/application/CONFIGURATION.md +0 -2906
  298. package/documentation/application/CONTENT.md +0 -3351
  299. package/documentation/application/FILESTORAGE.md +0 -578
  300. package/documentation/application/LEAD.md +0 -1895
  301. package/documentation/application/LOGISTIC.md +0 -765
  302. package/documentation/application/ORDER.md +0 -3432
  303. package/documentation/application/PAYMENT.md +0 -5221
  304. package/documentation/application/POSCART.md +0 -7938
  305. package/documentation/application/README.md +0 -21
  306. package/documentation/application/REWARDS.md +0 -708
  307. package/documentation/application/SHARE.md +0 -733
  308. package/documentation/application/THEME.md +0 -5800
  309. package/documentation/application/USER.md +0 -4335
  310. package/documentation/platform/ANALYTICS.md +0 -1154
  311. package/documentation/platform/AUDITTRAIL.md +0 -576
  312. package/documentation/platform/BILLING.md +0 -2400
  313. package/documentation/platform/CART.md +0 -5559
  314. package/documentation/platform/CATALOG.md +0 -23261
  315. package/documentation/platform/COMMON.md +0 -452
  316. package/documentation/platform/COMMUNICATION.md +0 -5718
  317. package/documentation/platform/COMPANYPROFILE.md +0 -2031
  318. package/documentation/platform/CONFIGURATION.md +0 -7339
  319. package/documentation/platform/CONTENT.md +0 -9098
  320. package/documentation/platform/DISCOUNT.md +0 -863
  321. package/documentation/platform/FILESTORAGE.md +0 -1081
  322. package/documentation/platform/INVENTORY.md +0 -1779
  323. package/documentation/platform/LEAD.md +0 -4740
  324. package/documentation/platform/ORDER.md +0 -8486
  325. package/documentation/platform/PARTNER.md +0 -220
  326. package/documentation/platform/PAYMENT.md +0 -3448
  327. package/documentation/platform/README.md +0 -27
  328. package/documentation/platform/REWARDS.md +0 -1083
  329. package/documentation/platform/SHARE.md +0 -606
  330. package/documentation/platform/THEME.md +0 -35729
  331. package/documentation/platform/USER.md +0 -2319
  332. package/documentation/platform/WEBHOOK.md +0 -591
  333. package/documentation/public/CONFIGURATION.md +0 -452
  334. package/documentation/public/INVENTORY.md +0 -690
  335. package/documentation/public/WEBHOOK.md +0 -352
  336. package/jest.config.d.ts +0 -4
  337. package/jest.config.js +0 -6
  338. package/tests/application/catalog.spec.js +0 -47
  339. package/tests/common/action-url.spec.js +0 -35
  340. package/tests/common/schema/action-url.json +0 -178
  341. package/tests/common/schema/url-action.json +0 -683
  342. package/tests/common/url-action.spec.js +0 -48
  343. package/tests/helpers/cookie.helper.js +0 -31
  344. package/tests/helpers/oauth.helper.js +0 -43
  345. package/tests/platform/catalog.spec.js +0 -49
  346. package/tests/public/location.spec.js +0 -39
@@ -1,1779 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
- ##### [Back to Platform docs](./README.md)
7
-
8
- ## Inventory Methods
9
-
10
-
11
- * [getJobsByCompany](#getjobsbycompany)
12
- * [updateJob](#updatejob)
13
- * [createJob](#createjob)
14
- * [suppressStores](#suppressstores)
15
- * [getConfigByCompany](#getconfigbycompany)
16
- * [getJobSteps](#getjobsteps)
17
- * [getJobByCompanyAndIntegration](#getjobbycompanyandintegration)
18
- * [disable](#disable)
19
- * [getJobConfigDefaults](#getjobconfigdefaults)
20
- * [getJobByCode](#getjobbycode)
21
- * [getJobCodeMetrics](#getjobcodemetrics)
22
- * [getJobCodesByCompanyAndIntegration](#getjobcodesbycompanyandintegration)
23
-
24
-
25
-
26
- ## Methods with example and description
27
-
28
-
29
-
30
-
31
- ### getJobsByCompany
32
- Get Job Configs For A Company
33
-
34
-
35
-
36
- ```javascript
37
- // Promise
38
- const promise = client.inventory.getJobsByCompany({ pageNo : value,
39
- pageSize : value });
40
-
41
- // Async/Await
42
- const data = await client.inventory.getJobsByCompany({ pageNo : value,
43
- pageSize : value });
44
- ```
45
-
46
-
47
-
48
-
49
-
50
- | Argument | Type | Required | Description |
51
- | --------- | ----- | -------- | ----------- |
52
- | pageNo | number | no | Page Number |
53
- | pageSize | number | no | Page Size |
54
-
55
-
56
-
57
- REST Endpoint that returns all job configs for a company
58
-
59
- *Returned Response:*
60
-
61
-
62
-
63
-
64
- [ResponseEnvelopeListJobConfigRawDTO](#ResponseEnvelopeListJobConfigRawDTO)
65
-
66
- Successful operation
67
-
68
-
69
-
70
-
71
- <details>
72
- <summary><i>&nbsp; Example:</i></summary>
73
-
74
- ```json
75
-
76
- ```
77
- </details>
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
- ---
88
-
89
-
90
- ### updateJob
91
- Updates An Existing Job Config
92
-
93
-
94
-
95
- ```javascript
96
- // Promise
97
- const promise = client.inventory.updateJob({ body : value });
98
-
99
- // Async/Await
100
- const data = await client.inventory.updateJob({ body : value });
101
- ```
102
-
103
-
104
-
105
-
106
-
107
- | Argument | Type | Required | Description |
108
- | --------- | ----- | -------- | ----------- |
109
- | body | [JobConfigDTO](#JobConfigDTO) | yes | Request body |
110
-
111
-
112
- REST Endpoint that updates a job config
113
-
114
- *Returned Response:*
115
-
116
-
117
-
118
-
119
- [ResponseEnvelopeString](#ResponseEnvelopeString)
120
-
121
- Job Config Updated Successfully
122
-
123
-
124
-
125
-
126
- <details>
127
- <summary><i>&nbsp; Example:</i></summary>
128
-
129
- ```json
130
-
131
- ```
132
- </details>
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
- ---
143
-
144
-
145
- ### createJob
146
- Creates A New Job Config
147
-
148
-
149
-
150
- ```javascript
151
- // Promise
152
- const promise = client.inventory.createJob({ body : value });
153
-
154
- // Async/Await
155
- const data = await client.inventory.createJob({ body : value });
156
- ```
157
-
158
-
159
-
160
-
161
-
162
- | Argument | Type | Required | Description |
163
- | --------- | ----- | -------- | ----------- |
164
- | body | [JobConfigDTO](#JobConfigDTO) | yes | Request body |
165
-
166
-
167
- REST Endpoint that creates a new job config
168
-
169
- *Returned Response:*
170
-
171
-
172
-
173
-
174
- [ResponseEnvelopeString](#ResponseEnvelopeString)
175
-
176
- Job Config Created Successfully
177
-
178
-
179
-
180
-
181
- <details>
182
- <summary><i>&nbsp; Example:</i></summary>
183
-
184
- ```json
185
-
186
- ```
187
- </details>
188
-
189
-
190
-
191
-
192
-
193
-
194
-
195
-
196
-
197
- ---
198
-
199
-
200
- ### suppressStores
201
- Get Slingshot Configuration Of A Company
202
-
203
-
204
-
205
- ```javascript
206
- // Promise
207
- const promise = client.inventory.suppressStores({ body : value });
208
-
209
- // Async/Await
210
- const data = await client.inventory.suppressStores({ body : value });
211
- ```
212
-
213
-
214
-
215
-
216
-
217
- | Argument | Type | Required | Description |
218
- | --------- | ----- | -------- | ----------- |
219
- | body | [SuppressStorePayload](#SuppressStorePayload) | yes | Request body |
220
-
221
-
222
- REST Endpoint that returns all configuration detail of a company
223
-
224
- *Returned Response:*
225
-
226
-
227
-
228
-
229
- [ResponseEnvelopeKafkaResponse](#ResponseEnvelopeKafkaResponse)
230
-
231
- Successful operation
232
-
233
-
234
-
235
-
236
- <details>
237
- <summary><i>&nbsp; Example:</i></summary>
238
-
239
- ```json
240
-
241
- ```
242
- </details>
243
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252
- ---
253
-
254
-
255
- ### getConfigByCompany
256
- Get Slingshot Configuration Of A Company
257
-
258
-
259
-
260
- ```javascript
261
- // Promise
262
- const promise = client.inventory.getConfigByCompany();
263
-
264
- // Async/Await
265
- const data = await client.inventory.getConfigByCompany();
266
- ```
267
-
268
-
269
-
270
-
271
-
272
-
273
- REST Endpoint that returns all configuration detail of a company
274
-
275
- *Returned Response:*
276
-
277
-
278
-
279
-
280
- [ResponseEnvelopeListSlingshotConfigurationDetail](#ResponseEnvelopeListSlingshotConfigurationDetail)
281
-
282
- Successful operation
283
-
284
-
285
-
286
-
287
- <details>
288
- <summary><i>&nbsp; Example:</i></summary>
289
-
290
- ```json
291
-
292
- ```
293
- </details>
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
- ---
304
-
305
-
306
- ### getJobSteps
307
- Get Job Code Steps
308
-
309
-
310
-
311
- ```javascript
312
- // Promise
313
- const promise = client.inventory.getJobSteps({ jobId : value });
314
-
315
- // Async/Await
316
- const data = await client.inventory.getJobSteps({ jobId : value });
317
- ```
318
-
319
-
320
-
321
-
322
-
323
- | Argument | Type | Required | Description |
324
- | --------- | ----- | -------- | ----------- |
325
- | jobId | number | yes | Job Id |
326
-
327
-
328
-
329
- REST Endpoint that returns Inventory Job Steps
330
-
331
- *Returned Response:*
332
-
333
-
334
-
335
-
336
- [ResponseEnvelopeListJobStepsDTO](#ResponseEnvelopeListJobStepsDTO)
337
-
338
- Successful operation
339
-
340
-
341
-
342
-
343
- <details>
344
- <summary><i>&nbsp; Example:</i></summary>
345
-
346
- ```json
347
-
348
- ```
349
- </details>
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
- ---
360
-
361
-
362
- ### getJobByCompanyAndIntegration
363
- Get Job Configs By Company And Integration
364
-
365
-
366
-
367
- ```javascript
368
- // Promise
369
- const promise = client.inventory.getJobByCompanyAndIntegration({ integrationId : value,
370
- pageNo : value,
371
- pageSize : value });
372
-
373
- // Async/Await
374
- const data = await client.inventory.getJobByCompanyAndIntegration({ integrationId : value,
375
- pageNo : value,
376
- pageSize : value });
377
- ```
378
-
379
-
380
-
381
-
382
-
383
- | Argument | Type | Required | Description |
384
- | --------- | ----- | -------- | ----------- |
385
- | integrationId | string | yes | Integration Id |
386
- | pageNo | number | no | Page Number |
387
- | pageSize | number | no | Page Size |
388
-
389
-
390
-
391
- REST Endpoint that returns all job configs by company And integration
392
-
393
- *Returned Response:*
394
-
395
-
396
-
397
-
398
- [ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
399
-
400
- Successful operation
401
-
402
-
403
-
404
-
405
- <details>
406
- <summary><i>&nbsp; Example:</i></summary>
407
-
408
- ```json
409
-
410
- ```
411
- </details>
412
-
413
-
414
-
415
-
416
-
417
-
418
-
419
-
420
-
421
- ---
422
-
423
-
424
- ### disable
425
- Disable Job Config
426
-
427
-
428
-
429
- ```javascript
430
- // Promise
431
- const promise = client.inventory.disable({ integrationId : value });
432
-
433
- // Async/Await
434
- const data = await client.inventory.disable({ integrationId : value });
435
- ```
436
-
437
-
438
-
439
-
440
-
441
- | Argument | Type | Required | Description |
442
- | --------- | ----- | -------- | ----------- |
443
- | integrationId | string | yes | IntegrationId |
444
-
445
-
446
-
447
- REST Endpoint that disables Inventory Job Config
448
-
449
- *Returned Response:*
450
-
451
-
452
-
453
-
454
- [ResponseEnvelopeString](#ResponseEnvelopeString)
455
-
456
- Successful operation
457
-
458
-
459
-
460
-
461
- <details>
462
- <summary><i>&nbsp; Example:</i></summary>
463
-
464
- ```json
465
-
466
- ```
467
- </details>
468
-
469
-
470
-
471
-
472
-
473
-
474
-
475
-
476
-
477
- ---
478
-
479
-
480
- ### getJobConfigDefaults
481
- Get Job Configs Defaults
482
-
483
-
484
-
485
- ```javascript
486
- // Promise
487
- const promise = client.inventory.getJobConfigDefaults();
488
-
489
- // Async/Await
490
- const data = await client.inventory.getJobConfigDefaults();
491
- ```
492
-
493
-
494
-
495
-
496
-
497
-
498
- REST Endpoint that returns default fields job configs by company And integration
499
-
500
- *Returned Response:*
501
-
502
-
503
-
504
-
505
- [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
506
-
507
- Successful operation
508
-
509
-
510
-
511
-
512
- <details>
513
- <summary><i>&nbsp; Example:</i></summary>
514
-
515
- ```json
516
-
517
- ```
518
- </details>
519
-
520
-
521
-
522
-
523
-
524
-
525
-
526
-
527
-
528
- ---
529
-
530
-
531
- ### getJobByCode
532
- Get Job Config By Code
533
-
534
-
535
-
536
- ```javascript
537
- // Promise
538
- const promise = client.inventory.getJobByCode({ code : value });
539
-
540
- // Async/Await
541
- const data = await client.inventory.getJobByCode({ code : value });
542
- ```
543
-
544
-
545
-
546
-
547
-
548
- | Argument | Type | Required | Description |
549
- | --------- | ----- | -------- | ----------- |
550
- | code | string | yes | Job Code |
551
-
552
-
553
-
554
- REST Endpoint that returns job config by code
555
-
556
- *Returned Response:*
557
-
558
-
559
-
560
-
561
- [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
562
-
563
- Successful operation
564
-
565
-
566
-
567
-
568
- <details>
569
- <summary><i>&nbsp; Example:</i></summary>
570
-
571
- ```json
572
-
573
- ```
574
- </details>
575
-
576
-
577
-
578
-
579
-
580
-
581
-
582
-
583
-
584
- ---
585
-
586
-
587
- ### getJobCodeMetrics
588
- Get Job Metrics
589
-
590
-
591
-
592
- ```javascript
593
- // Promise
594
- const promise = client.inventory.getJobCodeMetrics({ code : value,
595
- pageNo : value,
596
- pageSize : value,
597
- status : value,
598
- date : value });
599
-
600
- // Async/Await
601
- const data = await client.inventory.getJobCodeMetrics({ code : value,
602
- pageNo : value,
603
- pageSize : value,
604
- status : value,
605
- date : value });
606
- ```
607
-
608
-
609
-
610
-
611
-
612
- | Argument | Type | Required | Description |
613
- | --------- | ----- | -------- | ----------- |
614
- | code | string | yes | Code |
615
- | pageNo | number | no | Page Number |
616
- | pageSize | number | no | Page Size |
617
- | status | string | no | Status |
618
- | date | string | no | From Date |
619
-
620
-
621
-
622
- REST Endpoint that returns Inventory Run History For A Job Code
623
-
624
- *Returned Response:*
625
-
626
-
627
-
628
-
629
- [ResponseEnvelopeJobMetricsDto](#ResponseEnvelopeJobMetricsDto)
630
-
631
- Successful operation
632
-
633
-
634
-
635
-
636
- <details>
637
- <summary><i>&nbsp; Example:</i></summary>
638
-
639
- ```json
640
-
641
- ```
642
- </details>
643
-
644
-
645
-
646
-
647
-
648
-
649
-
650
-
651
-
652
- ---
653
-
654
-
655
- ### getJobCodesByCompanyAndIntegration
656
- Get Job Codes By Company And Integration
657
-
658
-
659
-
660
- ```javascript
661
- // Promise
662
- const promise = client.inventory.getJobCodesByCompanyAndIntegration({ integrationId : value,
663
- pageNo : value,
664
- pageSize : value });
665
-
666
- // Async/Await
667
- const data = await client.inventory.getJobCodesByCompanyAndIntegration({ integrationId : value,
668
- pageNo : value,
669
- pageSize : value });
670
- ```
671
-
672
-
673
-
674
-
675
-
676
- | Argument | Type | Required | Description |
677
- | --------- | ----- | -------- | ----------- |
678
- | integrationId | string | yes | Integration Id |
679
- | pageNo | number | no | Page Number |
680
- | pageSize | number | no | Page Size |
681
-
682
-
683
-
684
- REST Endpoint that returns all job codes by company And integration
685
-
686
- *Returned Response:*
687
-
688
-
689
-
690
-
691
- [ResponseEnvelopeListJobConfigListDTO](#ResponseEnvelopeListJobConfigListDTO)
692
-
693
- Successful operation
694
-
695
-
696
-
697
-
698
- <details>
699
- <summary><i>&nbsp; Example:</i></summary>
700
-
701
- ```json
702
-
703
- ```
704
- </details>
705
-
706
-
707
-
708
-
709
-
710
-
711
-
712
-
713
-
714
- ---
715
-
716
-
717
-
718
- ### Schemas
719
-
720
-
721
-
722
- #### [DataTresholdDTO](#DataTresholdDTO)
723
-
724
- | Properties | Type | Nullable | Description |
725
- | ---------- | ---- | -------- | ----------- |
726
- | min_price | number | no | |
727
- | safe_stock | number | no | |
728
- | period_threshold | number | no | |
729
- | period_threshold_type | string | no | |
730
- | period_type_list | [[GenericDTO](#GenericDTO)] | no | |
731
-
732
- ---
733
-
734
-
735
-
736
-
737
- #### [GenericDTO](#GenericDTO)
738
-
739
- | Properties | Type | Nullable | Description |
740
- | ---------- | ---- | -------- | ----------- |
741
- | text | string | no | |
742
- | value | string | no | |
743
-
744
- ---
745
-
746
-
747
-
748
-
749
- #### [JobConfigDTO](#JobConfigDTO)
750
-
751
- | Properties | Type | Nullable | Description |
752
- | ---------- | ---- | -------- | ----------- |
753
- | integration_data | string | no | |
754
- | company_name | string | no | |
755
- | integration | string | yes | |
756
- | company_id | number | yes | |
757
- | task_details | [TaskDTO](#TaskDTO) | no | |
758
- | threshold_details | [DataTresholdDTO](#DataTresholdDTO) | no | |
759
- | job_code | string | no | |
760
- | alias | string | no | |
761
-
762
- ---
763
-
764
-
765
-
766
-
767
- #### [TaskDTO](#TaskDTO)
768
-
769
- | Properties | Type | Nullable | Description |
770
- | ---------- | ---- | -------- | ----------- |
771
- | type | number | no | |
772
- | group_list | [[GenericDTO](#GenericDTO)] | no | |
773
-
774
- ---
775
-
776
-
777
-
778
-
779
- #### [Page](#Page)
780
-
781
- | Properties | Type | Nullable | Description |
782
- | ---------- | ---- | -------- | ----------- |
783
- | type | string | yes | |
784
- | size | number | no | |
785
- | current | number | no | |
786
- | has_next | boolean | no | |
787
- | item_total | number | no | |
788
- | next_id | string | no | |
789
- | has_previous | boolean | no | |
790
-
791
- ---
792
-
793
-
794
-
795
-
796
- #### [ResponseEnvelopeString](#ResponseEnvelopeString)
797
-
798
- | Properties | Type | Nullable | Description |
799
- | ---------- | ---- | -------- | ----------- |
800
- | timestamp | string | no | |
801
- | status | number | no | |
802
- | error | string | no | |
803
- | exception | string | no | |
804
- | message | string | no | |
805
- | total_time_taken_in_millis | number | no | |
806
- | http_status | string | no | |
807
- | items | string | no | |
808
- | payload | string | no | |
809
- | trace_id | string | no | |
810
- | page | [Page](#Page) | no | |
811
-
812
- ---
813
-
814
-
815
-
816
-
817
- #### [KafkaMetaModel](#KafkaMetaModel)
818
-
819
- | Properties | Type | Nullable | Description |
820
- | ---------- | ---- | -------- | ----------- |
821
- | job_type | string | no | |
822
- | batch_id | number | no | |
823
- | action | string | no | |
824
- | trace | [string] | no | |
825
- | created_on | string | no | |
826
- | created_timestamp | number | no | |
827
-
828
- ---
829
-
830
-
831
-
832
-
833
- #### [SuppressStoreModel](#SuppressStoreModel)
834
-
835
- | Properties | Type | Nullable | Description |
836
- | ---------- | ---- | -------- | ----------- |
837
- | stores | [number] | no | |
838
-
839
- ---
840
-
841
-
842
-
843
-
844
- #### [SuppressStorePayload](#SuppressStorePayload)
845
-
846
- | Properties | Type | Nullable | Description |
847
- | ---------- | ---- | -------- | ----------- |
848
- | payload | [[SuppressStoreModel](#SuppressStoreModel)] | no | |
849
- | meta | [KafkaMetaModel](#KafkaMetaModel) | no | |
850
-
851
- ---
852
-
853
-
854
-
855
-
856
- #### [KafkaResponse](#KafkaResponse)
857
-
858
- | Properties | Type | Nullable | Description |
859
- | ---------- | ---- | -------- | ----------- |
860
- | offset | number | no | |
861
- | partition | number | no | |
862
-
863
- ---
864
-
865
-
866
-
867
-
868
- #### [ResponseEnvelopeKafkaResponse](#ResponseEnvelopeKafkaResponse)
869
-
870
- | Properties | Type | Nullable | Description |
871
- | ---------- | ---- | -------- | ----------- |
872
- | timestamp | string | no | |
873
- | status | number | no | |
874
- | error | string | no | |
875
- | exception | string | no | |
876
- | message | string | no | |
877
- | total_time_taken_in_millis | number | no | |
878
- | http_status | string | no | |
879
- | items | [KafkaResponse](#KafkaResponse) | no | |
880
- | payload | [KafkaResponse](#KafkaResponse) | no | |
881
- | trace_id | string | no | |
882
- | page | [Page](#Page) | no | |
883
-
884
- ---
885
-
886
-
887
-
888
-
889
- #### [GCompany](#GCompany)
890
-
891
- | Properties | Type | Nullable | Description |
892
- | ---------- | ---- | -------- | ----------- |
893
- | _id | string | no | |
894
- | integration | string | no | |
895
- | level | string | no | |
896
- | uid | number | no | |
897
- | opted | boolean | no | |
898
- | permissions | [string] | no | |
899
- | token | string | no | |
900
- | name | string | no | |
901
- | stores | [[GStore](#GStore)] | no | |
902
-
903
- ---
904
-
905
-
906
-
907
-
908
- #### [GStore](#GStore)
909
-
910
- | Properties | Type | Nullable | Description |
911
- | ---------- | ---- | -------- | ----------- |
912
- | _id | string | no | |
913
- | integration | string | no | |
914
- | level | string | no | |
915
- | uid | number | no | |
916
- | opted | boolean | no | |
917
- | permissions | [string] | no | |
918
- | token | string | no | |
919
- | code | string | no | |
920
- | name | string | no | |
921
- | data | [StoreData](#StoreData) | no | |
922
-
923
- ---
924
-
925
-
926
-
927
-
928
- #### [Metum](#Metum)
929
-
930
- | Properties | Type | Nullable | Description |
931
- | ---------- | ---- | -------- | ----------- |
932
- | _id | string | no | |
933
- | name | string | no | |
934
- | value | string | no | |
935
-
936
- ---
937
-
938
-
939
-
940
-
941
- #### [ResponseEnvelopeListSlingshotConfigurationDetail](#ResponseEnvelopeListSlingshotConfigurationDetail)
942
-
943
- | Properties | Type | Nullable | Description |
944
- | ---------- | ---- | -------- | ----------- |
945
- | timestamp | string | no | |
946
- | status | number | no | |
947
- | error | string | no | |
948
- | exception | string | no | |
949
- | message | string | no | |
950
- | total_time_taken_in_millis | number | no | |
951
- | http_status | string | no | |
952
- | items | [[SlingshotConfigurationDetail](#SlingshotConfigurationDetail)] | no | |
953
- | payload | [[SlingshotConfigurationDetail](#SlingshotConfigurationDetail)] | no | |
954
- | trace_id | string | no | |
955
- | page | [Page](#Page) | no | |
956
-
957
- ---
958
-
959
-
960
-
961
-
962
- #### [SlingshotConfigurationDetail](#SlingshotConfigurationDetail)
963
-
964
- | Properties | Type | Nullable | Description |
965
- | ---------- | ---- | -------- | ----------- |
966
- | integration | [SlingshotIntegration](#SlingshotIntegration) | no | |
967
- | companies | [[GCompany](#GCompany)] | no | |
968
-
969
- ---
970
-
971
-
972
-
973
-
974
- #### [SlingshotIntegration](#SlingshotIntegration)
975
-
976
- | Properties | Type | Nullable | Description |
977
- | ---------- | ---- | -------- | ----------- |
978
- | _id | string | no | |
979
- | description | string | no | |
980
- | name | string | no | |
981
- | slug | string | no | |
982
- | meta | [[Metum](#Metum)] | no | |
983
-
984
- ---
985
-
986
-
987
-
988
-
989
- #### [StoreData](#StoreData)
990
-
991
- | Properties | Type | Nullable | Description |
992
- | ---------- | ---- | -------- | ----------- |
993
- | location_id | string | no | |
994
-
995
- ---
996
-
997
-
998
-
999
-
1000
- #### [AWSS3config](#AWSS3config)
1001
-
1002
- | Properties | Type | Nullable | Description |
1003
- | ---------- | ---- | -------- | ----------- |
1004
- | bucket | string | no | |
1005
- | region | string | no | |
1006
- | dir | string | no | |
1007
- | access_key | string | no | |
1008
- | secret_key | string | no | |
1009
- | local_file_path | string | no | |
1010
- | archive_path | string | no | |
1011
- | archive | boolean | no | |
1012
- | delete | boolean | no | |
1013
- | unzip | boolean | no | |
1014
- | zip_format | string | no | |
1015
- | file_regex | string | no | |
1016
- | archive_config | [ArchiveConfig](#ArchiveConfig) | no | |
1017
-
1018
- ---
1019
-
1020
-
1021
-
1022
-
1023
- #### [ArchiveConfig](#ArchiveConfig)
1024
-
1025
- | Properties | Type | Nullable | Description |
1026
- | ---------- | ---- | -------- | ----------- |
1027
- | delete | boolean | no | |
1028
- | archive | boolean | no | |
1029
- | archive_dir | string | no | |
1030
-
1031
- ---
1032
-
1033
-
1034
-
1035
-
1036
- #### [Audit](#Audit)
1037
-
1038
- | Properties | Type | Nullable | Description |
1039
- | ---------- | ---- | -------- | ----------- |
1040
- | created_by | string | no | |
1041
- | modified_by | string | no | |
1042
- | created_on | string | no | |
1043
- | modified_on | string | no | |
1044
-
1045
- ---
1046
-
1047
-
1048
-
1049
-
1050
- #### [CatalogMasterConfig](#CatalogMasterConfig)
1051
-
1052
- | Properties | Type | Nullable | Description |
1053
- | ---------- | ---- | -------- | ----------- |
1054
- | source_slug | string | no | |
1055
-
1056
- ---
1057
-
1058
-
1059
-
1060
-
1061
- #### [CompanyConfig](#CompanyConfig)
1062
-
1063
- | Properties | Type | Nullable | Description |
1064
- | ---------- | ---- | -------- | ----------- |
1065
- | company_id | number | no | |
1066
- | exclude_steps | [number] | no | |
1067
- | hidden_closet_keys | [string] | no | |
1068
- | open_tags | string | no | |
1069
- | tax_identifiers | [string] | no | |
1070
- | delete_quantity_threshold | number | no | |
1071
-
1072
- ---
1073
-
1074
-
1075
-
1076
-
1077
- #### [DBConfig](#DBConfig)
1078
-
1079
- | Properties | Type | Nullable | Description |
1080
- | ---------- | ---- | -------- | ----------- |
1081
- | vendor | string | no | |
1082
- | host | string | no | |
1083
- | port | number | no | |
1084
- | username | string | no | |
1085
- | password | string | no | |
1086
- | dbname | string | no | |
1087
- | query | string | no | |
1088
- | procedure | boolean | no | |
1089
- | driver_class | string | no | |
1090
- | jdbc_url | string | no | |
1091
- | optional_properties | [String: string] | no | |
1092
-
1093
- ---
1094
-
1095
-
1096
-
1097
-
1098
- #### [DBConnectionProfile](#DBConnectionProfile)
1099
-
1100
- | Properties | Type | Nullable | Description |
1101
- | ---------- | ---- | -------- | ----------- |
1102
- | inventory | string | no | |
1103
-
1104
- ---
1105
-
1106
-
1107
-
1108
-
1109
- #### [DBParamConfig](#DBParamConfig)
1110
-
1111
- | Properties | Type | Nullable | Description |
1112
- | ---------- | ---- | -------- | ----------- |
1113
- | params | string | no | |
1114
-
1115
- ---
1116
-
1117
-
1118
-
1119
-
1120
- #### [DefaultHeadersDTO](#DefaultHeadersDTO)
1121
-
1122
- | Properties | Type | Nullable | Description |
1123
- | ---------- | ---- | -------- | ----------- |
1124
- | store | [PropBeanDTO](#PropBeanDTO) | no | |
1125
- | intf_article_id | [PropBeanDTO](#PropBeanDTO) | no | |
1126
- | price_effective | [PropBeanDTO](#PropBeanDTO) | no | |
1127
- | quantity | [PropBeanDTO](#PropBeanDTO) | no | |
1128
-
1129
- ---
1130
-
1131
-
1132
-
1133
-
1134
- #### [DocMappingConfig](#DocMappingConfig)
1135
-
1136
- | Properties | Type | Nullable | Description |
1137
- | ---------- | ---- | -------- | ----------- |
1138
- | properties | string | no | |
1139
- | junk_data_threshold_count | number | no | |
1140
- | prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | |
1141
- | unwind_field | string | no | |
1142
- | default_headers | [DefaultHeadersDTO](#DefaultHeadersDTO) | no | |
1143
-
1144
- ---
1145
-
1146
-
1147
-
1148
-
1149
- #### [EmailConfig](#EmailConfig)
1150
-
1151
- | Properties | Type | Nullable | Description |
1152
- | ---------- | ---- | -------- | ----------- |
1153
- | recepient | string | no | |
1154
- | host | string | no | |
1155
- | username | string | no | |
1156
- | password | string | no | |
1157
- | unzip | boolean | no | |
1158
- | read_from_content | boolean | no | |
1159
- | filter_based_on_recepients | boolean | no | |
1160
- | pcol | string | no | |
1161
- | subject_line_regex | string | no | |
1162
- | sender_address | string | no | |
1163
- | local_dir | string | no | |
1164
- | folder_name_hierarchies | [string] | no | |
1165
- | attachment_regex | string | no | |
1166
- | body_content_regex | string | no | |
1167
- | password_protected | boolean | no | |
1168
- | zip_format | string | no | |
1169
- | attachment_mandate | boolean | no | |
1170
- | filter_files_after_extraction | boolean | no | |
1171
- | archive_config | [ArchiveConfig](#ArchiveConfig) | no | |
1172
- | read_all_unread_mails | boolean | no | |
1173
- | content_type | string | no | |
1174
- | downloadable_link | boolean | no | |
1175
- | properties | [String: string] | no | |
1176
-
1177
- ---
1178
-
1179
-
1180
-
1181
-
1182
- #### [FTPConfig](#FTPConfig)
1183
-
1184
- | Properties | Type | Nullable | Description |
1185
- | ---------- | ---- | -------- | ----------- |
1186
- | host | string | no | |
1187
- | port | number | no | |
1188
- | username | string | no | |
1189
- | password | string | no | |
1190
- | unzip | boolean | no | |
1191
- | retries | number | no | |
1192
- | interval | number | no | |
1193
- | local_dir | string | no | |
1194
- | remote_dir | string | no | |
1195
- | zip_file_regex | string | no | |
1196
- | archive_config | [ArchiveConfig](#ArchiveConfig) | no | |
1197
- | file_regex | string | no | |
1198
- | zip_format | string | no | |
1199
- | read_all_files | boolean | no | |
1200
-
1201
- ---
1202
-
1203
-
1204
-
1205
-
1206
- #### [FileConfig](#FileConfig)
1207
-
1208
- | Properties | Type | Nullable | Description |
1209
- | ---------- | ---- | -------- | ----------- |
1210
- | delimiter | string | no | |
1211
- | charset | string | no | |
1212
- | properties | string | no | |
1213
- | file_has_header | boolean | no | |
1214
- | header_index | number | no | |
1215
- | header_array | [string] | no | |
1216
- | data_start_index | number | no | |
1217
- | prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | |
1218
- | junk_data_threshold_count | number | no | |
1219
- | file_type | string | no | |
1220
- | line_validity_check | boolean | no | |
1221
- | sheet_names | [string] | no | |
1222
- | read_all_sheets | boolean | no | |
1223
- | quote_char | string | no | |
1224
- | escape_char | string | no | |
1225
- | default_headers | [DefaultHeadersDTO](#DefaultHeadersDTO) | no | |
1226
-
1227
- ---
1228
-
1229
-
1230
-
1231
-
1232
- #### [GoogleSpreadSheetConfig](#GoogleSpreadSheetConfig)
1233
-
1234
- | Properties | Type | Nullable | Description |
1235
- | ---------- | ---- | -------- | ----------- |
1236
- | range | string | no | |
1237
- | sheet_id | string | no | |
1238
- | client_secret_location | string | no | |
1239
- | cred_storage_directory | string | no | |
1240
- | local_dir | string | no | |
1241
- | archive_config | [ArchiveConfig](#ArchiveConfig) | no | |
1242
-
1243
- ---
1244
-
1245
-
1246
-
1247
-
1248
- #### [HttpConfig](#HttpConfig)
1249
-
1250
- | Properties | Type | Nullable | Description |
1251
- | ---------- | ---- | -------- | ----------- |
1252
- | hosturl | string | no | |
1253
- | username | string | no | |
1254
- | password | string | no | |
1255
- | request_params | [String: string] | no | |
1256
- | http_method | string | no | |
1257
- | request_payload | string | no | |
1258
- | local_path | string | no | |
1259
- | archive_config | [ArchiveConfig](#ArchiveConfig) | no | |
1260
-
1261
- ---
1262
-
1263
-
1264
-
1265
-
1266
- #### [JobConfig](#JobConfig)
1267
-
1268
- | Properties | Type | Nullable | Description |
1269
- | ---------- | ---- | -------- | ----------- |
1270
- | _id | number | no | |
1271
- | job_code | string | no | |
1272
- | task_type | string | no | |
1273
- | sync_delay | number | no | |
1274
- | cron_expression | string | no | |
1275
- | store_filter | [StoreFilter](#StoreFilter) | no | |
1276
- | process_config | [ProcessConfig](#ProcessConfig) | no | |
1277
- | store_config | [[StoreConfig](#StoreConfig)] | no | |
1278
- | properties | [String: string] | no | |
1279
- | immediate_first_run | boolean | no | |
1280
- | disable | boolean | no | |
1281
- | dependent_job_codes | [string] | no | |
1282
- | company_config | [[CompanyConfig](#CompanyConfig)] | no | |
1283
- | company_ids | [number] | no | |
1284
- | tax_identifiers | [string] | no | |
1285
- | priority | string | no | |
1286
- | period_threshold | number | no | |
1287
- | period_threshold_type | string | no | |
1288
- | db_connection_profile | [DBConnectionProfile](#DBConnectionProfile) | no | |
1289
- | params | string | no | |
1290
- | open_tags | string | no | |
1291
- | delete_quantity_threshold | number | no | |
1292
- | catalog_master_config | [CatalogMasterConfig](#CatalogMasterConfig) | no | |
1293
- | aggregator_types | [string] | no | |
1294
- | integration_type | string | no | |
1295
- | min_price | number | no | |
1296
- | audit | [Audit](#Audit) | no | |
1297
- | version | number | no | |
1298
- | alias | string | no | |
1299
-
1300
- ---
1301
-
1302
-
1303
-
1304
-
1305
- #### [JobConfigRawDTO](#JobConfigRawDTO)
1306
-
1307
- | Properties | Type | Nullable | Description |
1308
- | ---------- | ---- | -------- | ----------- |
1309
- | company_name | string | yes | |
1310
- | integration | string | yes | |
1311
- | company_id | number | yes | |
1312
- | data | [JobConfig](#JobConfig) | no | |
1313
-
1314
- ---
1315
-
1316
-
1317
-
1318
-
1319
- #### [JsonDocConfig](#JsonDocConfig)
1320
-
1321
- | Properties | Type | Nullable | Description |
1322
- | ---------- | ---- | -------- | ----------- |
1323
- | prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | |
1324
-
1325
- ---
1326
-
1327
-
1328
-
1329
-
1330
- #### [LocalFileConfig](#LocalFileConfig)
1331
-
1332
- | Properties | Type | Nullable | Description |
1333
- | ---------- | ---- | -------- | ----------- |
1334
- | retries | number | no | |
1335
- | interval | number | no | |
1336
- | local_dir | string | no | |
1337
- | working_dir | string | no | |
1338
- | unzip | boolean | no | |
1339
- | zip_file_regex | string | no | |
1340
- | file_regex | string | no | |
1341
- | zip_format | string | no | |
1342
- | archive_config | [ArchiveConfig](#ArchiveConfig) | no | |
1343
- | read_all_files | boolean | no | |
1344
-
1345
- ---
1346
-
1347
-
1348
-
1349
-
1350
- #### [MongoDocConfig](#MongoDocConfig)
1351
-
1352
- | Properties | Type | Nullable | Description |
1353
- | ---------- | ---- | -------- | ----------- |
1354
- | collection_name | string | no | |
1355
- | find_query | string | no | |
1356
- | projection_query | string | no | |
1357
- | prop_bean_configs | [[PropBeanConfig](#PropBeanConfig)] | no | |
1358
- | aggregate_pipeline | [string] | no | |
1359
- | skip_save | boolean | no | |
1360
-
1361
- ---
1362
-
1363
-
1364
-
1365
-
1366
- #### [OAuthConfig](#OAuthConfig)
1367
-
1368
- | Properties | Type | Nullable | Description |
1369
- | ---------- | ---- | -------- | ----------- |
1370
- | limit | number | no | |
1371
- | pages | number | no | |
1372
- | interval | number | no | |
1373
- | consumer_key | string | no | |
1374
- | consumer_secret | string | no | |
1375
- | token | string | no | |
1376
- | token_secret | string | no | |
1377
- | rest_url | string | no | |
1378
- | rest_base_url | string | no | |
1379
- | function_name | string | no | |
1380
-
1381
- ---
1382
-
1383
-
1384
-
1385
-
1386
- #### [ProcessConfig](#ProcessConfig)
1387
-
1388
- | Properties | Type | Nullable | Description |
1389
- | ---------- | ---- | -------- | ----------- |
1390
- | db_config | [DBConfig](#DBConfig) | no | |
1391
- | db_param_config | [DBParamConfig](#DBParamConfig) | no | |
1392
- | sftp_config | [SFTPConfig](#SFTPConfig) | no | |
1393
- | aws_s3_config | [AWSS3config](#AWSS3config) | no | |
1394
- | mongo_doc_config | [MongoDocConfig](#MongoDocConfig) | no | |
1395
- | ftp_config | [FTPConfig](#FTPConfig) | no | |
1396
- | email_config | [EmailConfig](#EmailConfig) | no | |
1397
- | file_config | [FileConfig](#FileConfig) | no | |
1398
- | json_doc_config | [JsonDocConfig](#JsonDocConfig) | no | |
1399
- | doc_mapping_config | [DocMappingConfig](#DocMappingConfig) | no | |
1400
- | task_step_config | [TaskStepConfig](#TaskStepConfig) | no | |
1401
- | http_config | [HttpConfig](#HttpConfig) | no | |
1402
- | local_file_config | [LocalFileConfig](#LocalFileConfig) | no | |
1403
- | oauth_config | [OAuthConfig](#OAuthConfig) | no | |
1404
- | google_spreadsheet_config | [GoogleSpreadSheetConfig](#GoogleSpreadSheetConfig) | no | |
1405
-
1406
- ---
1407
-
1408
-
1409
-
1410
-
1411
- #### [PropBeanConfig](#PropBeanConfig)
1412
-
1413
- | Properties | Type | Nullable | Description |
1414
- | ---------- | ---- | -------- | ----------- |
1415
- | required | boolean | no | |
1416
- | optional | boolean | no | |
1417
- | send | [Send](#Send) | no | |
1418
- | validations | [string] | no | |
1419
- | values | [string] | no | |
1420
- | include | boolean | no | |
1421
- | source_field | string | no | |
1422
- | source_fields | [string] | no | |
1423
- | destination_field | string | no | |
1424
- | data_type | string | no | |
1425
- | default_value | string | no | |
1426
- | const_value | string | no | |
1427
- | concat_str | string | no | |
1428
- | function_name | string | no | |
1429
- | transformer_name | string | no | |
1430
- | all_param_function_name | string | no | |
1431
- | sub_separator | string | no | |
1432
- | index_field | string | no | |
1433
- | ignore_if_not_exists | boolean | no | |
1434
- | identifier_type | string | no | |
1435
- | projection_query | string | no | |
1436
- | enrich_from_master | boolean | no | |
1437
-
1438
- ---
1439
-
1440
-
1441
-
1442
-
1443
- #### [PropBeanDTO](#PropBeanDTO)
1444
-
1445
- | Properties | Type | Nullable | Description |
1446
- | ---------- | ---- | -------- | ----------- |
1447
- | required | boolean | no | |
1448
- | optional | boolean | no | |
1449
- | include | boolean | no | |
1450
- | source_field | string | no | |
1451
- | source_fields | [string] | no | |
1452
- | destination_field | string | no | |
1453
- | data_type | string | no | |
1454
- | default_value | string | no | |
1455
- | const_value | string | no | |
1456
- | concat_str | string | no | |
1457
- | function_name | string | no | |
1458
- | transformer_name | string | no | |
1459
- | all_param_function_name | string | no | |
1460
- | sub_separator | string | no | |
1461
- | index_field | string | no | |
1462
- | ignore_if_not_exists | boolean | no | |
1463
- | identifier_type | string | no | |
1464
- | projection_query | string | no | |
1465
- | enrich_from_master | boolean | no | |
1466
-
1467
- ---
1468
-
1469
-
1470
-
1471
-
1472
- #### [ResponseEnvelopeListJobConfigRawDTO](#ResponseEnvelopeListJobConfigRawDTO)
1473
-
1474
- | Properties | Type | Nullable | Description |
1475
- | ---------- | ---- | -------- | ----------- |
1476
- | timestamp | string | no | |
1477
- | status | number | no | |
1478
- | error | string | no | |
1479
- | exception | string | no | |
1480
- | message | string | no | |
1481
- | total_time_taken_in_millis | number | no | |
1482
- | http_status | string | no | |
1483
- | items | [[JobConfigRawDTO](#JobConfigRawDTO)] | no | |
1484
- | payload | [[JobConfigRawDTO](#JobConfigRawDTO)] | no | |
1485
- | trace_id | string | no | |
1486
- | page | [Page](#Page) | no | |
1487
-
1488
- ---
1489
-
1490
-
1491
-
1492
-
1493
- #### [SFTPConfig](#SFTPConfig)
1494
-
1495
- | Properties | Type | Nullable | Description |
1496
- | ---------- | ---- | -------- | ----------- |
1497
- | host | string | no | |
1498
- | port | number | no | |
1499
- | username | string | no | |
1500
- | password | string | no | |
1501
- | unzip | boolean | no | |
1502
- | retries | number | no | |
1503
- | interval | number | no | |
1504
- | private_key_path | string | no | |
1505
- | strict_host_key_checking | boolean | no | |
1506
- | local_dir | string | no | |
1507
- | remote_dir | string | no | |
1508
- | password_protected | boolean | no | |
1509
- | zip_file_regex | string | no | |
1510
- | file_regex | string | no | |
1511
- | zip_format | string | no | |
1512
- | archive_config | [ArchiveConfig](#ArchiveConfig) | no | |
1513
- | read_all_files | boolean | no | |
1514
-
1515
- ---
1516
-
1517
-
1518
-
1519
-
1520
- #### [Send](#Send)
1521
-
1522
- | Properties | Type | Nullable | Description |
1523
- | ---------- | ---- | -------- | ----------- |
1524
- | raw | boolean | no | |
1525
- | processed | boolean | no | |
1526
-
1527
- ---
1528
-
1529
-
1530
-
1531
-
1532
- #### [StoreConfig](#StoreConfig)
1533
-
1534
- | Properties | Type | Nullable | Description |
1535
- | ---------- | ---- | -------- | ----------- |
1536
- | job_code | string | no | |
1537
- | storeid | string | no | |
1538
- | store_alias | string | no | |
1539
- | store_file_regex | string | no | |
1540
- | store_file_name | string | no | |
1541
- | process_config | [ProcessConfig](#ProcessConfig) | no | |
1542
- | properties | [String: string] | no | |
1543
-
1544
- ---
1545
-
1546
-
1547
-
1548
-
1549
- #### [StoreFilter](#StoreFilter)
1550
-
1551
- | Properties | Type | Nullable | Description |
1552
- | ---------- | ---- | -------- | ----------- |
1553
- | include_tags | [string] | no | |
1554
- | exclude_tags | [string] | no | |
1555
- | query | string | no | |
1556
-
1557
- ---
1558
-
1559
-
1560
-
1561
-
1562
- #### [TaskConfig](#TaskConfig)
1563
-
1564
- | Properties | Type | Nullable | Description |
1565
- | ---------- | ---- | -------- | ----------- |
1566
- | name | string | no | |
1567
- | task_config_id | number | no | |
1568
- | task_params | [[TaskParam](#TaskParam)] | no | |
1569
-
1570
- ---
1571
-
1572
-
1573
-
1574
-
1575
- #### [TaskParam](#TaskParam)
1576
-
1577
- | Properties | Type | Nullable | Description |
1578
- | ---------- | ---- | -------- | ----------- |
1579
- | name | string | no | |
1580
- | value | string | no | |
1581
-
1582
- ---
1583
-
1584
-
1585
-
1586
-
1587
- #### [TaskStepConfig](#TaskStepConfig)
1588
-
1589
- | Properties | Type | Nullable | Description |
1590
- | ---------- | ---- | -------- | ----------- |
1591
- | task_configs | [[TaskConfig](#TaskConfig)] | no | |
1592
- | task_config_ids | [number] | no | |
1593
- | task_config_group_ids | [number] | no | |
1594
-
1595
- ---
1596
-
1597
-
1598
-
1599
-
1600
- #### [JobStepsDTO](#JobStepsDTO)
1601
-
1602
- | Properties | Type | Nullable | Description |
1603
- | ---------- | ---- | -------- | ----------- |
1604
- | step_name | string | no | |
1605
- | type | string | no | |
1606
- | step_execution_time | number | no | |
1607
- | start_count | number | no | |
1608
- | end_count | number | no | |
1609
- | deleted_count | number | no | |
1610
- | processed_start_time | string | no | |
1611
- | processed_at | string | no | |
1612
-
1613
- ---
1614
-
1615
-
1616
-
1617
-
1618
- #### [ResponseEnvelopeListJobStepsDTO](#ResponseEnvelopeListJobStepsDTO)
1619
-
1620
- | Properties | Type | Nullable | Description |
1621
- | ---------- | ---- | -------- | ----------- |
1622
- | timestamp | string | no | |
1623
- | status | number | no | |
1624
- | error | string | no | |
1625
- | exception | string | no | |
1626
- | message | string | no | |
1627
- | total_time_taken_in_millis | number | no | |
1628
- | http_status | string | no | |
1629
- | items | [[JobStepsDTO](#JobStepsDTO)] | no | |
1630
- | payload | [[JobStepsDTO](#JobStepsDTO)] | no | |
1631
- | trace_id | string | no | |
1632
- | page | [Page](#Page) | no | |
1633
-
1634
- ---
1635
-
1636
-
1637
-
1638
-
1639
- #### [ResponseEnvelopeListJobConfigDTO](#ResponseEnvelopeListJobConfigDTO)
1640
-
1641
- | Properties | Type | Nullable | Description |
1642
- | ---------- | ---- | -------- | ----------- |
1643
- | timestamp | string | no | |
1644
- | status | number | no | |
1645
- | error | string | no | |
1646
- | exception | string | no | |
1647
- | message | string | no | |
1648
- | total_time_taken_in_millis | number | no | |
1649
- | http_status | string | no | |
1650
- | items | [[JobConfigDTO](#JobConfigDTO)] | no | |
1651
- | payload | [[JobConfigDTO](#JobConfigDTO)] | no | |
1652
- | trace_id | string | no | |
1653
- | page | [Page](#Page) | no | |
1654
-
1655
- ---
1656
-
1657
-
1658
-
1659
-
1660
- #### [ResponseEnvelopeJobConfigDTO](#ResponseEnvelopeJobConfigDTO)
1661
-
1662
- | Properties | Type | Nullable | Description |
1663
- | ---------- | ---- | -------- | ----------- |
1664
- | timestamp | string | no | |
1665
- | status | number | no | |
1666
- | error | string | no | |
1667
- | exception | string | no | |
1668
- | message | string | no | |
1669
- | total_time_taken_in_millis | number | no | |
1670
- | http_status | string | no | |
1671
- | items | [JobConfigDTO](#JobConfigDTO) | no | |
1672
- | payload | [JobConfigDTO](#JobConfigDTO) | no | |
1673
- | trace_id | string | no | |
1674
- | page | [Page](#Page) | no | |
1675
-
1676
- ---
1677
-
1678
-
1679
-
1680
-
1681
- #### [JobHistoryDto](#JobHistoryDto)
1682
-
1683
- | Properties | Type | Nullable | Description |
1684
- | ---------- | ---- | -------- | ----------- |
1685
- | total_added_count | number | no | |
1686
- | total_updated_count | number | no | |
1687
- | total_suppressed_count | number | no | |
1688
- | total_initial_count | number | no | |
1689
- | job_id | number | no | |
1690
- | status | string | no | |
1691
- | job_code | string | no | |
1692
- | processed_on | string | no | |
1693
- | filename | [string] | no | |
1694
- | error_type | string | no | |
1695
- | message | string | no | |
1696
-
1697
- ---
1698
-
1699
-
1700
-
1701
-
1702
- #### [JobMetricsDto](#JobMetricsDto)
1703
-
1704
- | Properties | Type | Nullable | Description |
1705
- | ---------- | ---- | -------- | ----------- |
1706
- | job_code | string | no | |
1707
- | is_run_more_than_usual | string | no | |
1708
- | job_history | [[JobHistoryDto](#JobHistoryDto)] | no | |
1709
- | total_success_count | number | no | |
1710
- | total_failure_count | number | no | |
1711
- | total_warning_count | number | no | |
1712
- | total_suppressed_count | number | no | |
1713
- | total_job_runs | number | no | |
1714
-
1715
- ---
1716
-
1717
-
1718
-
1719
-
1720
- #### [ResponseEnvelopeJobMetricsDto](#ResponseEnvelopeJobMetricsDto)
1721
-
1722
- | Properties | Type | Nullable | Description |
1723
- | ---------- | ---- | -------- | ----------- |
1724
- | timestamp | string | no | |
1725
- | status | number | no | |
1726
- | error | string | no | |
1727
- | exception | string | no | |
1728
- | message | string | no | |
1729
- | total_time_taken_in_millis | number | no | |
1730
- | http_status | string | no | |
1731
- | items | [JobMetricsDto](#JobMetricsDto) | no | |
1732
- | payload | [JobMetricsDto](#JobMetricsDto) | no | |
1733
- | trace_id | string | no | |
1734
- | page | [Page](#Page) | no | |
1735
-
1736
- ---
1737
-
1738
-
1739
-
1740
-
1741
- #### [JobConfigListDTO](#JobConfigListDTO)
1742
-
1743
- | Properties | Type | Nullable | Description |
1744
- | ---------- | ---- | -------- | ----------- |
1745
- | code | string | no | |
1746
- | alias | string | no | |
1747
- | modified_by | string | no | |
1748
- | created_by | string | no | |
1749
- | modified_on | string | no | |
1750
- | created_on | string | no | |
1751
- | active | boolean | no | |
1752
- | type | string | no | |
1753
-
1754
- ---
1755
-
1756
-
1757
-
1758
-
1759
- #### [ResponseEnvelopeListJobConfigListDTO](#ResponseEnvelopeListJobConfigListDTO)
1760
-
1761
- | Properties | Type | Nullable | Description |
1762
- | ---------- | ---- | -------- | ----------- |
1763
- | timestamp | string | no | |
1764
- | status | number | no | |
1765
- | error | string | no | |
1766
- | exception | string | no | |
1767
- | message | string | no | |
1768
- | total_time_taken_in_millis | number | no | |
1769
- | http_status | string | no | |
1770
- | items | [[JobConfigListDTO](#JobConfigListDTO)] | no | |
1771
- | payload | [[JobConfigListDTO](#JobConfigListDTO)] | no | |
1772
- | trace_id | string | no | |
1773
- | page | [Page](#Page) | no | |
1774
-
1775
- ---
1776
-
1777
-
1778
-
1779
-