@gofynd/fdk-client-javascript 0.1.35

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