@gofynd/fdk-client-javascript 1.1.6 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (348) hide show
  1. package/README.md +52 -3
  2. package/index.js +0 -3
  3. package/package.json +1 -2
  4. package/sdk/application/ApplicationAPIClient.d.ts +15 -1
  5. package/sdk/application/ApplicationAPIClient.js +12 -3
  6. package/sdk/application/ApplicationClient.d.ts +36 -6
  7. package/sdk/application/ApplicationClient.js +30 -43
  8. package/sdk/application/ApplicationConfig.d.ts +92 -12
  9. package/sdk/application/ApplicationConfig.js +48 -14
  10. package/sdk/application/Cart/CartApplicationClient.d.ts +200 -357
  11. package/sdk/application/Cart/CartApplicationClient.js +711 -483
  12. package/sdk/application/Cart/CartApplicationModel.d.ts +2054 -96
  13. package/sdk/application/Cart/CartApplicationModel.js +1224 -93
  14. package/sdk/application/Cart/CartApplicationValidator.d.ts +508 -30
  15. package/sdk/application/Cart/CartApplicationValidator.js +270 -15
  16. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +274 -422
  17. package/sdk/application/Catalog/CatalogApplicationClient.js +865 -630
  18. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2320 -117
  19. package/sdk/application/Catalog/CatalogApplicationModel.js +1566 -172
  20. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +798 -31
  21. package/sdk/application/Catalog/CatalogApplicationValidator.js +318 -3
  22. package/sdk/application/Common/CommonApplicationClient.d.ts +16 -21
  23. package/sdk/application/Common/CommonApplicationClient.js +52 -33
  24. package/sdk/application/Common/CommonApplicationModel.d.ts +368 -19
  25. package/sdk/application/Common/CommonApplicationModel.js +192 -40
  26. package/sdk/application/Common/CommonApplicationValidator.d.ts +42 -4
  27. package/sdk/application/Common/CommonApplicationValidator.js +21 -3
  28. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +31 -18
  29. package/sdk/application/Communication/CommunicationApplicationClient.js +86 -47
  30. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +157 -14
  31. package/sdk/application/Communication/CommunicationApplicationModel.js +104 -23
  32. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +27 -4
  33. package/sdk/application/Communication/CommunicationApplicationValidator.js +21 -5
  34. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +149 -118
  35. package/sdk/application/Configuration/ConfigurationApplicationClient.js +457 -260
  36. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +2235 -110
  37. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1113 -193
  38. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +160 -8
  39. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +88 -4
  40. package/sdk/application/Content/ContentApplicationClient.d.ts +149 -139
  41. package/sdk/application/Content/ContentApplicationClient.js +489 -278
  42. package/sdk/application/Content/ContentApplicationModel.d.ts +1010 -105
  43. package/sdk/application/Content/ContentApplicationModel.js +737 -396
  44. package/sdk/application/Content/ContentApplicationValidator.d.ts +214 -12
  45. package/sdk/application/Content/ContentApplicationValidator.js +113 -3
  46. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +23 -29
  47. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -47
  48. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +148 -20
  49. package/sdk/application/FileStorage/FileStorageApplicationModel.js +100 -87
  50. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +55 -5
  51. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +33 -6
  52. package/sdk/application/Lead/LeadApplicationClient.d.ts +57 -53
  53. package/sdk/application/Lead/LeadApplicationClient.js +188 -103
  54. package/sdk/application/Lead/LeadApplicationModel.d.ts +686 -54
  55. package/sdk/application/Lead/LeadApplicationModel.js +330 -244
  56. package/sdk/application/Lead/LeadApplicationValidator.d.ts +91 -9
  57. package/sdk/application/Lead/LeadApplicationValidator.js +51 -6
  58. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +40 -33
  59. package/sdk/application/Logistic/LogisticApplicationClient.js +131 -73
  60. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +399 -28
  61. package/sdk/application/Logistic/LogisticApplicationModel.js +293 -24
  62. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +48 -6
  63. package/sdk/application/Logistic/LogisticApplicationValidator.js +34 -6
  64. package/sdk/application/Order/OrderApplicationClient.d.ts +93 -133
  65. package/sdk/application/Order/OrderApplicationClient.js +329 -217
  66. package/sdk/application/Order/OrderApplicationModel.d.ts +1101 -66
  67. package/sdk/application/Order/OrderApplicationModel.js +776 -57
  68. package/sdk/application/Order/OrderApplicationValidator.d.ts +249 -14
  69. package/sdk/application/Order/OrderApplicationValidator.js +114 -5
  70. package/sdk/application/Payment/PaymentApplicationClient.d.ts +400 -366
  71. package/sdk/application/Payment/PaymentApplicationClient.js +1176 -703
  72. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3125 -99
  73. package/sdk/application/Payment/PaymentApplicationModel.js +1158 -62
  74. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +494 -41
  75. package/sdk/application/Payment/PaymentApplicationValidator.js +297 -25
  76. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +205 -350
  77. package/sdk/application/PosCart/PosCartApplicationClient.js +720 -491
  78. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +1823 -89
  79. package/sdk/application/PosCart/PosCartApplicationModel.js +1117 -85
  80. package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +480 -29
  81. package/sdk/application/PosCart/PosCartApplicationValidator.js +262 -15
  82. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +58 -47
  83. package/sdk/application/Rewards/RewardsApplicationClient.js +187 -102
  84. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +343 -22
  85. package/sdk/application/Rewards/RewardsApplicationModel.js +230 -15
  86. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +70 -7
  87. package/sdk/application/Rewards/RewardsApplicationValidator.js +45 -6
  88. package/sdk/application/Share/ShareApplicationClient.d.ts +52 -50
  89. package/sdk/application/Share/ShareApplicationClient.js +185 -97
  90. package/sdk/application/Share/ShareApplicationModel.d.ts +198 -15
  91. package/sdk/application/Share/ShareApplicationModel.js +131 -31
  92. package/sdk/application/Share/ShareApplicationValidator.d.ts +86 -8
  93. package/sdk/application/Share/ShareApplicationValidator.js +48 -4
  94. package/sdk/application/Theme/ThemeApplicationClient.d.ts +30 -27
  95. package/sdk/application/Theme/ThemeApplicationClient.js +102 -56
  96. package/sdk/application/Theme/ThemeApplicationModel.d.ts +1291 -48
  97. package/sdk/application/Theme/ThemeApplicationModel.js +895 -134
  98. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +49 -5
  99. package/sdk/application/Theme/ThemeApplicationValidator.js +26 -3
  100. package/sdk/application/User/UserApplicationClient.d.ts +260 -305
  101. package/sdk/application/User/UserApplicationClient.js +910 -522
  102. package/sdk/application/User/UserApplicationModel.d.ts +992 -101
  103. package/sdk/application/User/UserApplicationModel.js +699 -248
  104. package/sdk/application/User/UserApplicationValidator.d.ts +457 -33
  105. package/sdk/application/User/UserApplicationValidator.js +265 -31
  106. package/sdk/common/AxiosHelper.js +7 -2
  107. package/sdk/common/FDKError.d.ts +3 -0
  108. package/sdk/common/FDKError.js +8 -0
  109. package/sdk/common/Paginator.d.ts +27 -12
  110. package/sdk/common/Paginator.js +15 -0
  111. package/sdk/common/RequestSigner.js +0 -1
  112. package/sdk/common/utils.d.ts +3 -0
  113. package/sdk/common/utils.js +29 -0
  114. package/sdk/partner/PartnerAPIClient.d.ts +16 -1
  115. package/sdk/partner/PartnerAPIClient.js +12 -2
  116. package/sdk/partner/PartnerClient.d.ts +22 -3
  117. package/sdk/partner/PartnerClient.js +20 -0
  118. package/sdk/partner/PartnerConfig.d.ts +40 -14
  119. package/sdk/partner/PartnerConfig.js +31 -6
  120. package/sdk/partner/Theme/ThemePartnerClient.d.ts +299 -0
  121. package/sdk/partner/Theme/ThemePartnerClient.js +768 -0
  122. package/sdk/partner/Theme/ThemePartnerModel.d.ts +1706 -0
  123. package/sdk/partner/Theme/ThemePartnerModel.js +1409 -0
  124. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +22 -0
  125. package/sdk/partner/Theme/ThemePartnerValidator.js +157 -0
  126. package/sdk/partner/index.d.ts +3 -1
  127. package/sdk/partner/index.js +3 -1
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +30 -25
  129. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +104 -53
  130. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +190 -17
  131. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +132 -15
  132. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +52 -5
  133. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +30 -4
  134. package/sdk/platform/Billing/BillingPlatformClient.d.ts +133 -97
  135. package/sdk/platform/Billing/BillingPlatformClient.js +561 -191
  136. package/sdk/platform/Billing/BillingPlatformModel.d.ts +1071 -68
  137. package/sdk/platform/Billing/BillingPlatformModel.js +762 -151
  138. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +175 -12
  139. package/sdk/platform/Billing/BillingPlatformValidator.js +118 -8
  140. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +454 -635
  141. package/sdk/platform/Cart/CartPlatformApplicationClient.js +1646 -957
  142. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +827 -57
  143. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +492 -34
  144. package/sdk/platform/Cart/CartPlatformModel.d.ts +3839 -175
  145. package/sdk/platform/Cart/CartPlatformModel.js +2423 -217
  146. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +528 -638
  147. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1600 -984
  148. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1081 -49
  149. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +482 -23
  150. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +652 -826
  151. package/sdk/platform/Catalog/CatalogPlatformClient.js +1979 -1264
  152. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6869 -326
  153. package/sdk/platform/Catalog/CatalogPlatformModel.js +4215 -351
  154. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +1361 -71
  155. package/sdk/platform/Catalog/CatalogPlatformValidator.js +624 -30
  156. package/sdk/platform/Common/CommonPlatformClient.d.ts +16 -21
  157. package/sdk/platform/Common/CommonPlatformClient.js +50 -33
  158. package/sdk/platform/Common/CommonPlatformModel.d.ts +423 -19
  159. package/sdk/platform/Common/CommonPlatformModel.js +214 -40
  160. package/sdk/platform/Common/CommonPlatformValidator.d.ts +37 -4
  161. package/sdk/platform/Common/CommonPlatformValidator.js +20 -3
  162. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +731 -303
  163. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +3095 -785
  164. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +699 -41
  165. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +463 -27
  166. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +19 -5
  167. package/sdk/platform/Communication/CommunicationPlatformClient.js +59 -19
  168. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1708 -102
  169. package/sdk/platform/Communication/CommunicationPlatformModel.js +1360 -235
  170. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +16 -3
  171. package/sdk/platform/Communication/CommunicationPlatformValidator.js +11 -3
  172. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +127 -111
  173. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +435 -225
  174. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +882 -43
  175. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +666 -78
  176. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +184 -13
  177. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +105 -10
  178. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +327 -240
  179. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +922 -438
  180. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +297 -22
  181. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +191 -17
  182. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +184 -178
  183. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +555 -311
  184. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +4337 -188
  185. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2178 -248
  186. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +332 -19
  187. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +153 -10
  188. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +605 -578
  189. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1996 -987
  190. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +872 -62
  191. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +487 -35
  192. package/sdk/platform/Content/ContentPlatformModel.d.ts +1472 -108
  193. package/sdk/platform/Content/ContentPlatformModel.js +1085 -204
  194. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +85 -82
  195. package/sdk/platform/Discount/DiscountPlatformClient.js +333 -175
  196. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +281 -15
  197. package/sdk/platform/Discount/DiscountPlatformModel.js +189 -10
  198. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +185 -13
  199. package/sdk/platform/Discount/DiscountPlatformValidator.js +88 -8
  200. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +109 -52
  201. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +570 -105
  202. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +141 -6
  203. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +118 -7
  204. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +43 -63
  205. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +153 -135
  206. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +426 -20
  207. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +379 -40
  208. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +106 -8
  209. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +60 -8
  210. package/sdk/platform/Finance/FinancePlatformClient.d.ts +260 -129
  211. package/sdk/platform/Finance/FinancePlatformClient.js +1182 -194
  212. package/sdk/platform/Finance/FinancePlatformModel.d.ts +1267 -50
  213. package/sdk/platform/Finance/FinancePlatformModel.js +1252 -38
  214. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +233 -15
  215. package/sdk/platform/Finance/FinancePlatformValidator.js +229 -16
  216. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +111 -97
  217. package/sdk/platform/Inventory/InventoryPlatformClient.js +330 -199
  218. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +1354 -61
  219. package/sdk/platform/Inventory/InventoryPlatformModel.js +916 -83
  220. package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +168 -12
  221. package/sdk/platform/Inventory/InventoryPlatformValidator.js +82 -6
  222. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +100 -106
  223. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +372 -186
  224. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +180 -14
  225. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +94 -9
  226. package/sdk/platform/Lead/LeadPlatformClient.d.ts +89 -104
  227. package/sdk/platform/Lead/LeadPlatformClient.js +305 -180
  228. package/sdk/platform/Lead/LeadPlatformModel.d.ts +1045 -54
  229. package/sdk/platform/Lead/LeadPlatformModel.js +504 -142
  230. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +173 -12
  231. package/sdk/platform/Lead/LeadPlatformValidator.js +92 -15
  232. package/sdk/platform/OAuthClient.js +6 -2
  233. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +20 -14
  234. package/sdk/platform/Order/OrderPlatformApplicationClient.js +58 -29
  235. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +26 -4
  236. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  237. package/sdk/platform/Order/OrderPlatformClient.d.ts +437 -556
  238. package/sdk/platform/Order/OrderPlatformClient.js +1500 -760
  239. package/sdk/platform/Order/OrderPlatformModel.d.ts +5225 -247
  240. package/sdk/platform/Order/OrderPlatformModel.js +3473 -260
  241. package/sdk/platform/Order/OrderPlatformValidator.d.ts +859 -37
  242. package/sdk/platform/Order/OrderPlatformValidator.js +435 -23
  243. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +16 -42
  244. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -155
  245. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +37 -6
  246. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +19 -17
  247. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +78 -45
  248. package/sdk/platform/Partner/PartnerPlatformModel.js +43 -369
  249. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +418 -288
  250. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +1509 -505
  251. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +438 -30
  252. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +312 -19
  253. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +83 -73
  254. package/sdk/platform/Payment/PaymentPlatformClient.js +259 -154
  255. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3200 -93
  256. package/sdk/platform/Payment/PaymentPlatformModel.js +1334 -36
  257. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +111 -11
  258. package/sdk/platform/Payment/PaymentPlatformValidator.js +68 -7
  259. package/sdk/platform/PlatformAPIClient.d.ts +16 -1
  260. package/sdk/platform/PlatformAPIClient.js +9 -1
  261. package/sdk/platform/PlatformApplicationClient.d.ts +22 -1798
  262. package/sdk/platform/PlatformApplicationClient.js +17 -1899
  263. package/sdk/platform/PlatformClient.d.ts +31 -12581
  264. package/sdk/platform/PlatformClient.js +30 -15089
  265. package/sdk/platform/PlatformConfig.d.ts +37 -11
  266. package/sdk/platform/PlatformConfig.js +32 -6
  267. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +96 -92
  268. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +344 -177
  269. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +149 -12
  270. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +82 -8
  271. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +360 -23
  272. package/sdk/platform/Rewards/RewardsPlatformModel.js +238 -22
  273. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +159 -92
  274. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +473 -208
  275. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +138 -13
  276. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +100 -14
  277. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +166 -178
  278. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +518 -329
  279. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1408 -96
  280. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1034 -71
  281. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +280 -18
  282. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +134 -11
  283. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +41 -66
  284. package/sdk/platform/Share/SharePlatformApplicationClient.js +149 -116
  285. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +87 -7
  286. package/sdk/platform/Share/SharePlatformApplicationValidator.js +42 -5
  287. package/sdk/platform/Share/SharePlatformModel.d.ts +250 -16
  288. package/sdk/platform/Share/SharePlatformModel.js +167 -19
  289. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +229 -193
  290. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +976 -352
  291. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +345 -24
  292. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +206 -14
  293. package/sdk/platform/Theme/ThemePlatformClient.d.ts +37 -0
  294. package/sdk/platform/Theme/ThemePlatformClient.js +235 -0
  295. package/sdk/platform/Theme/ThemePlatformModel.d.ts +1527 -48
  296. package/sdk/platform/Theme/ThemePlatformModel.js +1099 -118
  297. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +32 -0
  298. package/sdk/platform/Theme/ThemePlatformValidator.js +38 -0
  299. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +138 -152
  300. package/sdk/platform/User/UserPlatformApplicationClient.js +470 -244
  301. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +242 -18
  302. package/sdk/platform/User/UserPlatformApplicationValidator.js +129 -12
  303. package/sdk/platform/User/UserPlatformModel.d.ts +653 -101
  304. package/sdk/platform/User/UserPlatformModel.js +467 -424
  305. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +153 -49
  306. package/sdk/platform/Webhook/WebhookPlatformClient.js +896 -88
  307. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +632 -16
  308. package/sdk/platform/Webhook/WebhookPlatformModel.js +502 -54
  309. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +170 -7
  310. package/sdk/platform/Webhook/WebhookPlatformValidator.js +157 -7
  311. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +16 -21
  312. package/sdk/public/Configuration/ConfigurationPublicClient.js +48 -33
  313. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +370 -19
  314. package/sdk/public/Configuration/ConfigurationPublicModel.js +191 -40
  315. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +42 -4
  316. package/sdk/public/Configuration/ConfigurationPublicValidator.js +21 -3
  317. package/sdk/public/Inventory/InventoryPublicClient.d.ts +54 -48
  318. package/sdk/public/Inventory/InventoryPublicClient.js +161 -98
  319. package/sdk/public/Inventory/InventoryPublicModel.d.ts +392 -21
  320. package/sdk/public/Inventory/InventoryPublicModel.js +267 -27
  321. package/sdk/public/Inventory/InventoryPublicValidator.d.ts +90 -8
  322. package/sdk/public/Inventory/InventoryPublicValidator.js +44 -4
  323. package/sdk/public/Partner/PartnerPublicClient.d.ts +22 -0
  324. package/sdk/public/Partner/PartnerPublicClient.js +110 -0
  325. package/sdk/public/Partner/PartnerPublicModel.d.ts +240 -0
  326. package/sdk/public/Partner/PartnerPublicModel.js +280 -0
  327. package/sdk/public/Partner/PartnerPublicValidator.d.ts +18 -0
  328. package/sdk/public/Partner/PartnerPublicValidator.js +19 -0
  329. package/sdk/public/PublicAPIClient.d.ts +14 -1
  330. package/sdk/public/PublicAPIClient.js +7 -1
  331. package/sdk/public/PublicClient.d.ts +21 -3
  332. package/sdk/public/PublicClient.js +20 -0
  333. package/sdk/public/PublicConfig.d.ts +27 -6
  334. package/sdk/public/PublicConfig.js +17 -1
  335. package/sdk/public/Webhook/WebhookPublicClient.d.ts +16 -11
  336. package/sdk/public/Webhook/WebhookPublicClient.js +48 -27
  337. package/sdk/public/Webhook/WebhookPublicModel.d.ts +52 -16
  338. package/sdk/public/Webhook/WebhookPublicModel.js +33 -113
  339. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +18 -3
  340. package/sdk/public/Webhook/WebhookPublicValidator.js +14 -4
  341. package/sdk/public/index.d.ts +1 -0
  342. package/sdk/public/index.js +2 -0
  343. package/sdk/application/ApplicationModels.d.ts +0 -3
  344. package/sdk/application/ApplicationModels.js +0 -20
  345. package/sdk/platform/Partner/PartnerPlatformClient.d.ts +0 -145
  346. package/sdk/platform/Partner/PartnerPlatformClient.js +0 -799
  347. package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +0 -14
  348. package/sdk/platform/Partner/PartnerPlatformValidator.js +0 -87
@@ -1,62 +1,1355 @@
1
- export = InventoryModel;
2
- declare class InventoryModel {
3
- static ArchiveConfig(): any;
4
- static Audit(): any;
5
- static AWSS3config(): any;
6
- static CatalogMasterConfig(): any;
7
- static CompanyConfig(): any;
8
- static DataTresholdDTO(): any;
9
- static DBConfig(): any;
10
- static DBConnectionProfile(): any;
11
- static DBParamConfig(): any;
12
- static DefaultHeadersDTO(): any;
13
- static DocMappingConfig(): any;
14
- static EmailConfig(): any;
15
- static FileConfig(): any;
16
- static FTPConfig(): any;
17
- static GCompany(): any;
18
- static GenericDTO(): any;
19
- static GoogleSpreadSheetConfig(): any;
20
- static GStore(): any;
21
- static HttpConfig(): any;
22
- static JobConfig(): any;
23
- static JobConfigDTO(): any;
24
- static JobConfigListDTO(): any;
25
- static JobConfigRawDTO(): any;
26
- static JobHistoryDto(): any;
27
- static JobMetricsDto(): any;
28
- static JobStepsDTO(): any;
29
- static JsonDocConfig(): any;
30
- static KafkaMetaModel(): any;
31
- static KafkaResponse(): any;
32
- static LocalFileConfig(): any;
33
- static Metum(): any;
34
- static MongoDocConfig(): any;
35
- static OAuthConfig(): any;
36
- static Page(): any;
37
- static ProcessConfig(): any;
38
- static PropBeanConfig(): any;
39
- static PropBeanDTO(): any;
40
- static ResponseEnvelopeJobConfigDTO(): any;
41
- static ResponseEnvelopeJobMetricsDto(): any;
42
- static ResponseEnvelopeKafkaResponse(): any;
43
- static ResponseEnvelopeListJobConfigDTO(): any;
44
- static ResponseEnvelopeListJobConfigListDTO(): any;
45
- static ResponseEnvelopeListJobConfigRawDTO(): any;
46
- static ResponseEnvelopeListJobStepsDTO(): any;
47
- static ResponseEnvelopeListSlingshotConfigurationDetail(): any;
48
- static ResponseEnvelopeString(): any;
49
- static Send(): any;
50
- static SFTPConfig(): any;
51
- static SlingshotConfigurationDetail(): any;
52
- static SlingshotIntegration(): any;
53
- static StoreConfig(): any;
54
- static StoreData(): any;
55
- static StoreFilter(): any;
56
- static SuppressStoreModel(): any;
57
- static SuppressStorePayload(): any;
58
- static TaskConfig(): any;
59
- static TaskDTO(): any;
60
- static TaskParam(): any;
61
- static TaskStepConfig(): any;
1
+ export = InventoryPlatformModel;
2
+ /**
3
+ * @typedef ArchiveConfig
4
+ * @property {boolean} [archive]
5
+ * @property {string} [archive_dir]
6
+ * @property {boolean} [delete]
7
+ */
8
+ /**
9
+ * @typedef Audit
10
+ * @property {string} [created_by]
11
+ * @property {string} [created_on]
12
+ * @property {string} [modified_by]
13
+ * @property {string} [modified_on]
14
+ */
15
+ /**
16
+ * @typedef AWSS3config
17
+ * @property {string} [access_key]
18
+ * @property {boolean} [archive]
19
+ * @property {ArchiveConfig} [archive_config]
20
+ * @property {string} [archive_path]
21
+ * @property {string} [bucket]
22
+ * @property {boolean} [delete]
23
+ * @property {string} [dir]
24
+ * @property {string} [file_regex]
25
+ * @property {string} [local_file_path]
26
+ * @property {string} [region]
27
+ * @property {string} [secret_key]
28
+ * @property {boolean} [unzip]
29
+ * @property {string} [zip_format]
30
+ */
31
+ /**
32
+ * @typedef CatalogMasterConfig
33
+ * @property {string} [source_slug]
34
+ */
35
+ /**
36
+ * @typedef CompanyConfig
37
+ * @property {number} [company_id]
38
+ * @property {number} [delete_quantity_threshold]
39
+ * @property {number[]} [exclude_steps]
40
+ * @property {string[]} [hidden_closet_keys]
41
+ * @property {Object} [open_tags]
42
+ * @property {string[]} [tax_identifiers]
43
+ */
44
+ /**
45
+ * @typedef DataTresholdDTO
46
+ * @property {number} [min_price]
47
+ * @property {number} [period_threshold]
48
+ * @property {string} [period_threshold_type]
49
+ * @property {GenericDTO[]} [period_type_list]
50
+ * @property {number} [safe_stock]
51
+ */
52
+ /**
53
+ * @typedef DBConfig
54
+ * @property {string} [dbname]
55
+ * @property {string} [driver_class]
56
+ * @property {string} [host]
57
+ * @property {string} [jdbc_url]
58
+ * @property {Object} [optional_properties]
59
+ * @property {string} [password]
60
+ * @property {number} [port]
61
+ * @property {boolean} [procedure]
62
+ * @property {string} [query]
63
+ * @property {string} [username]
64
+ * @property {string} [vendor]
65
+ */
66
+ /**
67
+ * @typedef DBConnectionProfile
68
+ * @property {string} [inventory]
69
+ */
70
+ /**
71
+ * @typedef DBParamConfig
72
+ * @property {Object} [params]
73
+ */
74
+ /**
75
+ * @typedef DefaultHeadersDTO
76
+ * @property {PropBeanDTO} [intf_article_id]
77
+ * @property {PropBeanDTO} [price_effective]
78
+ * @property {PropBeanDTO} [quantity]
79
+ * @property {PropBeanDTO} [store]
80
+ */
81
+ /**
82
+ * @typedef DocMappingConfig
83
+ * @property {DefaultHeadersDTO} [default_headers]
84
+ * @property {number} [junk_data_threshold_count]
85
+ * @property {PropBeanConfig[]} [prop_bean_configs]
86
+ * @property {Object} [properties]
87
+ * @property {string} [unwind_field]
88
+ */
89
+ /**
90
+ * @typedef EmailConfig
91
+ * @property {ArchiveConfig} [archive_config]
92
+ * @property {boolean} [attachment_mandate]
93
+ * @property {string} [attachment_regex]
94
+ * @property {string} [body_content_regex]
95
+ * @property {string} [content_type]
96
+ * @property {boolean} [downloadable_link]
97
+ * @property {boolean} [filter_based_on_recepients]
98
+ * @property {boolean} [filter_files_after_extraction]
99
+ * @property {string[]} [folder_name_hierarchies]
100
+ * @property {string} [host]
101
+ * @property {string} [local_dir]
102
+ * @property {string} [password]
103
+ * @property {boolean} [password_protected]
104
+ * @property {string} [pcol]
105
+ * @property {Object} [properties]
106
+ * @property {boolean} [read_all_unread_mails]
107
+ * @property {boolean} [read_from_content]
108
+ * @property {string} [recepient]
109
+ * @property {string} [sender_address]
110
+ * @property {string} [subject_line_regex]
111
+ * @property {boolean} [unzip]
112
+ * @property {string} [username]
113
+ * @property {string} [zip_format]
114
+ */
115
+ /**
116
+ * @typedef FileConfig
117
+ * @property {string} [charset]
118
+ * @property {number} [data_start_index]
119
+ * @property {DefaultHeadersDTO} [default_headers]
120
+ * @property {string} [delimiter]
121
+ * @property {string} [escape_char]
122
+ * @property {boolean} [file_has_header]
123
+ * @property {string} [file_type]
124
+ * @property {string[]} [header_array]
125
+ * @property {number} [header_index]
126
+ * @property {number} [junk_data_threshold_count]
127
+ * @property {boolean} [line_validity_check]
128
+ * @property {PropBeanConfig[]} [prop_bean_configs]
129
+ * @property {Object} [properties]
130
+ * @property {string} [quote_char]
131
+ * @property {boolean} [read_all_sheets]
132
+ * @property {string[]} [sheet_names]
133
+ */
134
+ /**
135
+ * @typedef FTPConfig
136
+ * @property {ArchiveConfig} [archive_config]
137
+ * @property {string} [file_regex]
138
+ * @property {string} [host]
139
+ * @property {number} [interval]
140
+ * @property {string} [local_dir]
141
+ * @property {string} [password]
142
+ * @property {number} [port]
143
+ * @property {boolean} [read_all_files]
144
+ * @property {string} [remote_dir]
145
+ * @property {number} [retries]
146
+ * @property {boolean} [unzip]
147
+ * @property {string} [username]
148
+ * @property {string} [zip_file_regex]
149
+ * @property {string} [zip_format]
150
+ */
151
+ /**
152
+ * @typedef GCompany
153
+ * @property {string} [_id]
154
+ * @property {string} [integration]
155
+ * @property {string} [level]
156
+ * @property {string} [name]
157
+ * @property {boolean} [opted]
158
+ * @property {string[]} [permissions]
159
+ * @property {GStore[]} [stores]
160
+ * @property {string} [token]
161
+ * @property {number} [uid]
162
+ */
163
+ /**
164
+ * @typedef GenericDTO
165
+ * @property {string} [text]
166
+ * @property {Object} [value]
167
+ */
168
+ /**
169
+ * @typedef GoogleSpreadSheetConfig
170
+ * @property {ArchiveConfig} [archive_config]
171
+ * @property {string} [client_secret_location]
172
+ * @property {string} [cred_storage_directory]
173
+ * @property {string} [local_dir]
174
+ * @property {string} [range]
175
+ * @property {string} [sheet_id]
176
+ */
177
+ /**
178
+ * @typedef GStore
179
+ * @property {string} [_id]
180
+ * @property {string} [code]
181
+ * @property {StoreData} [data]
182
+ * @property {string} [integration]
183
+ * @property {string} [level]
184
+ * @property {string} [name]
185
+ * @property {boolean} [opted]
186
+ * @property {string[]} [permissions]
187
+ * @property {string} [token]
188
+ * @property {number} [uid]
189
+ */
190
+ /**
191
+ * @typedef HttpConfig
192
+ * @property {ArchiveConfig} [archive_config]
193
+ * @property {string} [hosturl]
194
+ * @property {string} [http_method]
195
+ * @property {string} [local_path]
196
+ * @property {string} [password]
197
+ * @property {Object} [request_params]
198
+ * @property {string} [request_payload]
199
+ * @property {string} [username]
200
+ */
201
+ /**
202
+ * @typedef JobConfig
203
+ * @property {number} [_id]
204
+ * @property {string[]} [aggregator_types]
205
+ * @property {string} [alias]
206
+ * @property {Audit} [audit]
207
+ * @property {CatalogMasterConfig} [catalog_master_config]
208
+ * @property {CompanyConfig[]} [company_config]
209
+ * @property {number[]} [company_ids]
210
+ * @property {string} [cron_expression]
211
+ * @property {DBConnectionProfile} [db_connection_profile]
212
+ * @property {number} [delete_quantity_threshold]
213
+ * @property {string[]} [dependent_job_codes]
214
+ * @property {boolean} [disable]
215
+ * @property {boolean} [immediate_first_run]
216
+ * @property {string} [integration_type]
217
+ * @property {string} [job_code]
218
+ * @property {number} [min_price]
219
+ * @property {Object} [open_tags]
220
+ * @property {Object} [params]
221
+ * @property {number} [period_threshold]
222
+ * @property {string} [period_threshold_type]
223
+ * @property {string} [priority]
224
+ * @property {ProcessConfig} [process_config]
225
+ * @property {Object} [properties]
226
+ * @property {StoreConfig[]} [store_config]
227
+ * @property {StoreFilter} [store_filter]
228
+ * @property {number} [sync_delay]
229
+ * @property {string} [task_type]
230
+ * @property {string[]} [tax_identifiers]
231
+ * @property {number} [version]
232
+ */
233
+ /**
234
+ * @typedef JobConfigDTO
235
+ * @property {string} [alias]
236
+ * @property {number} company_id
237
+ * @property {string} [company_name]
238
+ * @property {string} integration
239
+ * @property {Object} [integration_data]
240
+ * @property {string} [job_code]
241
+ * @property {TaskDTO} [task_details]
242
+ * @property {DataTresholdDTO} [threshold_details]
243
+ */
244
+ /**
245
+ * @typedef JobConfigListDTO
246
+ * @property {boolean} [active]
247
+ * @property {string} [alias]
248
+ * @property {string} [code]
249
+ * @property {string} [created_by]
250
+ * @property {string} [created_on]
251
+ * @property {string} [modified_by]
252
+ * @property {string} [modified_on]
253
+ * @property {string} [type]
254
+ */
255
+ /**
256
+ * @typedef JobConfigRawDTO
257
+ * @property {number} company_id
258
+ * @property {string} company_name
259
+ * @property {JobConfig} [data]
260
+ * @property {string} integration
261
+ */
262
+ /**
263
+ * @typedef JobHistoryDto
264
+ * @property {string} [error_type]
265
+ * @property {string[]} [filename]
266
+ * @property {string} [job_code]
267
+ * @property {number} [job_id]
268
+ * @property {string} [message]
269
+ * @property {string} [processed_on]
270
+ * @property {string} [status]
271
+ * @property {number} [total_added_count]
272
+ * @property {number} [total_initial_count]
273
+ * @property {number} [total_suppressed_count]
274
+ * @property {number} [total_updated_count]
275
+ */
276
+ /**
277
+ * @typedef JobMetricsDto
278
+ * @property {string} [is_run_more_than_usual]
279
+ * @property {string} [job_code]
280
+ * @property {JobHistoryDto[]} [job_history]
281
+ * @property {number} [total_failure_count]
282
+ * @property {number} [total_job_runs]
283
+ * @property {number} [total_success_count]
284
+ * @property {number} [total_suppressed_count]
285
+ * @property {number} [total_warning_count]
286
+ */
287
+ /**
288
+ * @typedef JobStepsDTO
289
+ * @property {number} [deleted_count]
290
+ * @property {number} [end_count]
291
+ * @property {string} [processed_at]
292
+ * @property {string} [processed_start_time]
293
+ * @property {number} [start_count]
294
+ * @property {number} [step_execution_time]
295
+ * @property {string} [step_name]
296
+ * @property {string} [type]
297
+ */
298
+ /**
299
+ * @typedef JsonDocConfig
300
+ * @property {PropBeanConfig[]} [prop_bean_configs]
301
+ */
302
+ /**
303
+ * @typedef KafkaMetaModel
304
+ * @property {string} [action]
305
+ * @property {number} [batch_id]
306
+ * @property {string} [created_on]
307
+ * @property {number} [created_timestamp]
308
+ * @property {string} [job_type]
309
+ * @property {string[]} [trace]
310
+ */
311
+ /**
312
+ * @typedef KafkaResponse
313
+ * @property {number} [offset]
314
+ * @property {number} [partition]
315
+ */
316
+ /**
317
+ * @typedef LocalFileConfig
318
+ * @property {ArchiveConfig} [archive_config]
319
+ * @property {string} [file_regex]
320
+ * @property {number} [interval]
321
+ * @property {string} [local_dir]
322
+ * @property {boolean} [read_all_files]
323
+ * @property {number} [retries]
324
+ * @property {boolean} [unzip]
325
+ * @property {string} [working_dir]
326
+ * @property {string} [zip_file_regex]
327
+ * @property {string} [zip_format]
328
+ */
329
+ /**
330
+ * @typedef Metum
331
+ * @property {string} [_id]
332
+ * @property {string} [name]
333
+ * @property {string} [value]
334
+ */
335
+ /**
336
+ * @typedef MongoDocConfig
337
+ * @property {Object[]} [aggregate_pipeline]
338
+ * @property {string} [collection_name]
339
+ * @property {Object} [find_query]
340
+ * @property {Object} [projection_query]
341
+ * @property {PropBeanConfig[]} [prop_bean_configs]
342
+ * @property {boolean} [skip_save]
343
+ */
344
+ /**
345
+ * @typedef OAuthConfig
346
+ * @property {string} [consumer_key]
347
+ * @property {string} [consumer_secret]
348
+ * @property {string} [function_name]
349
+ * @property {number} [interval]
350
+ * @property {number} [limit]
351
+ * @property {number} [pages]
352
+ * @property {string} [rest_base_url]
353
+ * @property {string} [rest_url]
354
+ * @property {string} [token]
355
+ * @property {string} [token_secret]
356
+ */
357
+ /**
358
+ * @typedef Page
359
+ * @property {number} [current]
360
+ * @property {boolean} [has_next]
361
+ * @property {boolean} [has_previous]
362
+ * @property {number} [item_total]
363
+ * @property {string} [next_id]
364
+ * @property {number} [size]
365
+ * @property {string} type
366
+ */
367
+ /**
368
+ * @typedef ProcessConfig
369
+ * @property {AWSS3config} [aws_s3_config]
370
+ * @property {DBConfig} [db_config]
371
+ * @property {DBParamConfig} [db_param_config]
372
+ * @property {DocMappingConfig} [doc_mapping_config]
373
+ * @property {EmailConfig} [email_config]
374
+ * @property {FileConfig} [file_config]
375
+ * @property {FTPConfig} [ftp_config]
376
+ * @property {GoogleSpreadSheetConfig} [google_spreadsheet_config]
377
+ * @property {HttpConfig} [http_config]
378
+ * @property {JsonDocConfig} [json_doc_config]
379
+ * @property {LocalFileConfig} [local_file_config]
380
+ * @property {MongoDocConfig} [mongo_doc_config]
381
+ * @property {OAuthConfig} [oauth_config]
382
+ * @property {SFTPConfig} [sftp_config]
383
+ * @property {TaskStepConfig} [task_step_config]
384
+ */
385
+ /**
386
+ * @typedef PropBeanConfig
387
+ * @property {string} [all_param_function_name]
388
+ * @property {string} [concat_str]
389
+ * @property {Object} [const_value]
390
+ * @property {string} [data_type]
391
+ * @property {Object} [default_value]
392
+ * @property {string} [destination_field]
393
+ * @property {boolean} [enrich_from_master]
394
+ * @property {string} [function_name]
395
+ * @property {string} [identifier_type]
396
+ * @property {boolean} [ignore_if_not_exists]
397
+ * @property {boolean} [include]
398
+ * @property {string} [index_field]
399
+ * @property {boolean} [optional]
400
+ * @property {Object} [projection_query]
401
+ * @property {boolean} [required]
402
+ * @property {Send} [send]
403
+ * @property {string} [source_field]
404
+ * @property {string[]} [source_fields]
405
+ * @property {string} [sub_separator]
406
+ * @property {string} [transformer_name]
407
+ * @property {Object[]} [validations]
408
+ * @property {string[]} [values]
409
+ */
410
+ /**
411
+ * @typedef PropBeanDTO
412
+ * @property {string} [all_param_function_name]
413
+ * @property {string} [concat_str]
414
+ * @property {Object} [const_value]
415
+ * @property {string} [data_type]
416
+ * @property {Object} [default_value]
417
+ * @property {string} [destination_field]
418
+ * @property {boolean} [enrich_from_master]
419
+ * @property {string} [function_name]
420
+ * @property {string} [identifier_type]
421
+ * @property {boolean} [ignore_if_not_exists]
422
+ * @property {boolean} [include]
423
+ * @property {string} [index_field]
424
+ * @property {boolean} [optional]
425
+ * @property {Object} [projection_query]
426
+ * @property {boolean} [required]
427
+ * @property {string} [source_field]
428
+ * @property {string[]} [source_fields]
429
+ * @property {string} [sub_separator]
430
+ * @property {string} [transformer_name]
431
+ */
432
+ /**
433
+ * @typedef ResponseEnvelopeJobConfigDTO
434
+ * @property {string} [error]
435
+ * @property {string} [exception]
436
+ * @property {string} [http_status]
437
+ * @property {JobConfigDTO} [items]
438
+ * @property {string} [message]
439
+ * @property {Page} [page]
440
+ * @property {JobConfigDTO} [payload]
441
+ * @property {number} [status]
442
+ * @property {string} [timestamp]
443
+ * @property {number} [total_time_taken_in_millis]
444
+ * @property {string} [trace_id]
445
+ */
446
+ /**
447
+ * @typedef ResponseEnvelopeJobMetricsDto
448
+ * @property {string} [error]
449
+ * @property {string} [exception]
450
+ * @property {string} [http_status]
451
+ * @property {JobMetricsDto} [items]
452
+ * @property {string} [message]
453
+ * @property {Page} [page]
454
+ * @property {JobMetricsDto} [payload]
455
+ * @property {number} [status]
456
+ * @property {string} [timestamp]
457
+ * @property {number} [total_time_taken_in_millis]
458
+ * @property {string} [trace_id]
459
+ */
460
+ /**
461
+ * @typedef ResponseEnvelopeKafkaResponse
462
+ * @property {string} [error]
463
+ * @property {string} [exception]
464
+ * @property {string} [http_status]
465
+ * @property {KafkaResponse} [items]
466
+ * @property {string} [message]
467
+ * @property {Page} [page]
468
+ * @property {KafkaResponse} [payload]
469
+ * @property {number} [status]
470
+ * @property {string} [timestamp]
471
+ * @property {number} [total_time_taken_in_millis]
472
+ * @property {string} [trace_id]
473
+ */
474
+ /**
475
+ * @typedef ResponseEnvelopeListJobConfigDTO
476
+ * @property {string} [error]
477
+ * @property {string} [exception]
478
+ * @property {string} [http_status]
479
+ * @property {JobConfigDTO[]} [items]
480
+ * @property {string} [message]
481
+ * @property {Page} [page]
482
+ * @property {JobConfigDTO[]} [payload]
483
+ * @property {number} [status]
484
+ * @property {string} [timestamp]
485
+ * @property {number} [total_time_taken_in_millis]
486
+ * @property {string} [trace_id]
487
+ */
488
+ /**
489
+ * @typedef ResponseEnvelopeListJobConfigListDTO
490
+ * @property {string} [error]
491
+ * @property {string} [exception]
492
+ * @property {string} [http_status]
493
+ * @property {JobConfigListDTO[]} [items]
494
+ * @property {string} [message]
495
+ * @property {Page} [page]
496
+ * @property {JobConfigListDTO[]} [payload]
497
+ * @property {number} [status]
498
+ * @property {string} [timestamp]
499
+ * @property {number} [total_time_taken_in_millis]
500
+ * @property {string} [trace_id]
501
+ */
502
+ /**
503
+ * @typedef ResponseEnvelopeListJobConfigRawDTO
504
+ * @property {string} [error]
505
+ * @property {string} [exception]
506
+ * @property {string} [http_status]
507
+ * @property {JobConfigRawDTO[]} [items]
508
+ * @property {string} [message]
509
+ * @property {Page} [page]
510
+ * @property {JobConfigRawDTO[]} [payload]
511
+ * @property {number} [status]
512
+ * @property {string} [timestamp]
513
+ * @property {number} [total_time_taken_in_millis]
514
+ * @property {string} [trace_id]
515
+ */
516
+ /**
517
+ * @typedef ResponseEnvelopeListJobStepsDTO
518
+ * @property {string} [error]
519
+ * @property {string} [exception]
520
+ * @property {string} [http_status]
521
+ * @property {JobStepsDTO[]} [items]
522
+ * @property {string} [message]
523
+ * @property {Page} [page]
524
+ * @property {JobStepsDTO[]} [payload]
525
+ * @property {number} [status]
526
+ * @property {string} [timestamp]
527
+ * @property {number} [total_time_taken_in_millis]
528
+ * @property {string} [trace_id]
529
+ */
530
+ /**
531
+ * @typedef ResponseEnvelopeListSlingshotConfigurationDetail
532
+ * @property {string} [error]
533
+ * @property {string} [exception]
534
+ * @property {string} [http_status]
535
+ * @property {SlingshotConfigurationDetail[]} [items]
536
+ * @property {string} [message]
537
+ * @property {Page} [page]
538
+ * @property {SlingshotConfigurationDetail[]} [payload]
539
+ * @property {number} [status]
540
+ * @property {string} [timestamp]
541
+ * @property {number} [total_time_taken_in_millis]
542
+ * @property {string} [trace_id]
543
+ */
544
+ /**
545
+ * @typedef ResponseEnvelopeString
546
+ * @property {string} [error]
547
+ * @property {string} [exception]
548
+ * @property {string} [http_status]
549
+ * @property {string} [items]
550
+ * @property {string} [message]
551
+ * @property {Page} [page]
552
+ * @property {string} [payload]
553
+ * @property {number} [status]
554
+ * @property {string} [timestamp]
555
+ * @property {number} [total_time_taken_in_millis]
556
+ * @property {string} [trace_id]
557
+ */
558
+ /**
559
+ * @typedef Send
560
+ * @property {boolean} [processed]
561
+ * @property {boolean} [raw]
562
+ */
563
+ /**
564
+ * @typedef SFTPConfig
565
+ * @property {ArchiveConfig} [archive_config]
566
+ * @property {string} [file_regex]
567
+ * @property {string} [host]
568
+ * @property {number} [interval]
569
+ * @property {string} [local_dir]
570
+ * @property {string} [password]
571
+ * @property {boolean} [password_protected]
572
+ * @property {number} [port]
573
+ * @property {string} [private_key_path]
574
+ * @property {boolean} [read_all_files]
575
+ * @property {string} [remote_dir]
576
+ * @property {number} [retries]
577
+ * @property {boolean} [strict_host_key_checking]
578
+ * @property {boolean} [unzip]
579
+ * @property {string} [username]
580
+ * @property {string} [zip_file_regex]
581
+ * @property {string} [zip_format]
582
+ */
583
+ /**
584
+ * @typedef SlingshotConfigurationDetail
585
+ * @property {GCompany[]} [companies]
586
+ * @property {SlingshotIntegration} [integration]
587
+ */
588
+ /**
589
+ * @typedef SlingshotIntegration
590
+ * @property {string} [_id]
591
+ * @property {string} [description]
592
+ * @property {Metum[]} [meta]
593
+ * @property {string} [name]
594
+ * @property {string} [slug]
595
+ */
596
+ /**
597
+ * @typedef StoreConfig
598
+ * @property {string} [job_code]
599
+ * @property {ProcessConfig} [process_config]
600
+ * @property {Object} [properties]
601
+ * @property {string} [store_alias]
602
+ * @property {string} [store_file_name]
603
+ * @property {string} [store_file_regex]
604
+ * @property {string} [storeid]
605
+ */
606
+ /**
607
+ * @typedef StoreData
608
+ * @property {string} [location_id]
609
+ */
610
+ /**
611
+ * @typedef StoreFilter
612
+ * @property {string[]} [exclude_tags]
613
+ * @property {string[]} [include_tags]
614
+ * @property {Object} [query]
615
+ */
616
+ /**
617
+ * @typedef SuppressStoreModel
618
+ * @property {number[]} [stores]
619
+ */
620
+ /**
621
+ * @typedef SuppressStorePayload
622
+ * @property {KafkaMetaModel} [meta]
623
+ * @property {SuppressStoreModel[]} [payload]
624
+ */
625
+ /**
626
+ * @typedef TaskConfig
627
+ * @property {string} [name]
628
+ * @property {number} [task_config_id]
629
+ * @property {TaskParam[]} [task_params]
630
+ */
631
+ /**
632
+ * @typedef TaskDTO
633
+ * @property {GenericDTO[]} [group_list]
634
+ * @property {number} [type]
635
+ */
636
+ /**
637
+ * @typedef TaskParam
638
+ * @property {string} [name]
639
+ * @property {Object} [value]
640
+ */
641
+ /**
642
+ * @typedef TaskStepConfig
643
+ * @property {number[]} [task_config_group_ids]
644
+ * @property {number[]} [task_config_ids]
645
+ * @property {TaskConfig[]} [task_configs]
646
+ */
647
+ declare class InventoryPlatformModel {
62
648
  }
649
+ declare namespace InventoryPlatformModel {
650
+ export { ArchiveConfig, Audit, AWSS3config, CatalogMasterConfig, CompanyConfig, DataTresholdDTO, DBConfig, DBConnectionProfile, DBParamConfig, DefaultHeadersDTO, DocMappingConfig, EmailConfig, FileConfig, FTPConfig, GCompany, GenericDTO, GoogleSpreadSheetConfig, GStore, HttpConfig, JobConfig, JobConfigDTO, JobConfigListDTO, JobConfigRawDTO, JobHistoryDto, JobMetricsDto, JobStepsDTO, JsonDocConfig, KafkaMetaModel, KafkaResponse, LocalFileConfig, Metum, MongoDocConfig, OAuthConfig, Page, ProcessConfig, PropBeanConfig, PropBeanDTO, ResponseEnvelopeJobConfigDTO, ResponseEnvelopeJobMetricsDto, ResponseEnvelopeKafkaResponse, ResponseEnvelopeListJobConfigDTO, ResponseEnvelopeListJobConfigListDTO, ResponseEnvelopeListJobConfigRawDTO, ResponseEnvelopeListJobStepsDTO, ResponseEnvelopeListSlingshotConfigurationDetail, ResponseEnvelopeString, Send, SFTPConfig, SlingshotConfigurationDetail, SlingshotIntegration, StoreConfig, StoreData, StoreFilter, SuppressStoreModel, SuppressStorePayload, TaskConfig, TaskDTO, TaskParam, TaskStepConfig };
651
+ }
652
+ /** @returns {ArchiveConfig} */
653
+ declare function ArchiveConfig(): ArchiveConfig;
654
+ type ArchiveConfig = {
655
+ archive?: boolean;
656
+ archive_dir?: string;
657
+ delete?: boolean;
658
+ };
659
+ /** @returns {Audit} */
660
+ declare function Audit(): Audit;
661
+ type Audit = {
662
+ created_by?: string;
663
+ created_on?: string;
664
+ modified_by?: string;
665
+ modified_on?: string;
666
+ };
667
+ /** @returns {AWSS3config} */
668
+ declare function AWSS3config(): AWSS3config;
669
+ type AWSS3config = {
670
+ access_key?: string;
671
+ archive?: boolean;
672
+ archive_config?: ArchiveConfig;
673
+ archive_path?: string;
674
+ bucket?: string;
675
+ delete?: boolean;
676
+ dir?: string;
677
+ file_regex?: string;
678
+ local_file_path?: string;
679
+ region?: string;
680
+ secret_key?: string;
681
+ unzip?: boolean;
682
+ zip_format?: string;
683
+ };
684
+ /** @returns {CatalogMasterConfig} */
685
+ declare function CatalogMasterConfig(): CatalogMasterConfig;
686
+ type CatalogMasterConfig = {
687
+ source_slug?: string;
688
+ };
689
+ /** @returns {CompanyConfig} */
690
+ declare function CompanyConfig(): CompanyConfig;
691
+ type CompanyConfig = {
692
+ company_id?: number;
693
+ delete_quantity_threshold?: number;
694
+ exclude_steps?: number[];
695
+ hidden_closet_keys?: string[];
696
+ open_tags?: any;
697
+ tax_identifiers?: string[];
698
+ };
699
+ /** @returns {DataTresholdDTO} */
700
+ declare function DataTresholdDTO(): DataTresholdDTO;
701
+ type DataTresholdDTO = {
702
+ min_price?: number;
703
+ period_threshold?: number;
704
+ period_threshold_type?: string;
705
+ period_type_list?: GenericDTO[];
706
+ safe_stock?: number;
707
+ };
708
+ /** @returns {DBConfig} */
709
+ declare function DBConfig(): DBConfig;
710
+ type DBConfig = {
711
+ dbname?: string;
712
+ driver_class?: string;
713
+ host?: string;
714
+ jdbc_url?: string;
715
+ optional_properties?: any;
716
+ password?: string;
717
+ port?: number;
718
+ procedure?: boolean;
719
+ query?: string;
720
+ username?: string;
721
+ vendor?: string;
722
+ };
723
+ /** @returns {DBConnectionProfile} */
724
+ declare function DBConnectionProfile(): DBConnectionProfile;
725
+ type DBConnectionProfile = {
726
+ inventory?: string;
727
+ };
728
+ /** @returns {DBParamConfig} */
729
+ declare function DBParamConfig(): DBParamConfig;
730
+ type DBParamConfig = {
731
+ params?: any;
732
+ };
733
+ /** @returns {DefaultHeadersDTO} */
734
+ declare function DefaultHeadersDTO(): DefaultHeadersDTO;
735
+ type DefaultHeadersDTO = {
736
+ intf_article_id?: PropBeanDTO;
737
+ price_effective?: PropBeanDTO;
738
+ quantity?: PropBeanDTO;
739
+ store?: PropBeanDTO;
740
+ };
741
+ /** @returns {DocMappingConfig} */
742
+ declare function DocMappingConfig(): DocMappingConfig;
743
+ type DocMappingConfig = {
744
+ default_headers?: DefaultHeadersDTO;
745
+ junk_data_threshold_count?: number;
746
+ prop_bean_configs?: PropBeanConfig[];
747
+ properties?: any;
748
+ unwind_field?: string;
749
+ };
750
+ /** @returns {EmailConfig} */
751
+ declare function EmailConfig(): EmailConfig;
752
+ type EmailConfig = {
753
+ archive_config?: ArchiveConfig;
754
+ attachment_mandate?: boolean;
755
+ attachment_regex?: string;
756
+ body_content_regex?: string;
757
+ content_type?: string;
758
+ downloadable_link?: boolean;
759
+ filter_based_on_recepients?: boolean;
760
+ filter_files_after_extraction?: boolean;
761
+ folder_name_hierarchies?: string[];
762
+ host?: string;
763
+ local_dir?: string;
764
+ password?: string;
765
+ password_protected?: boolean;
766
+ pcol?: string;
767
+ properties?: any;
768
+ read_all_unread_mails?: boolean;
769
+ read_from_content?: boolean;
770
+ recepient?: string;
771
+ sender_address?: string;
772
+ subject_line_regex?: string;
773
+ unzip?: boolean;
774
+ username?: string;
775
+ zip_format?: string;
776
+ };
777
+ /** @returns {FileConfig} */
778
+ declare function FileConfig(): FileConfig;
779
+ type FileConfig = {
780
+ charset?: string;
781
+ data_start_index?: number;
782
+ default_headers?: DefaultHeadersDTO;
783
+ delimiter?: string;
784
+ escape_char?: string;
785
+ file_has_header?: boolean;
786
+ file_type?: string;
787
+ header_array?: string[];
788
+ header_index?: number;
789
+ junk_data_threshold_count?: number;
790
+ line_validity_check?: boolean;
791
+ prop_bean_configs?: PropBeanConfig[];
792
+ properties?: any;
793
+ quote_char?: string;
794
+ read_all_sheets?: boolean;
795
+ sheet_names?: string[];
796
+ };
797
+ /** @returns {FTPConfig} */
798
+ declare function FTPConfig(): FTPConfig;
799
+ type FTPConfig = {
800
+ archive_config?: ArchiveConfig;
801
+ file_regex?: string;
802
+ host?: string;
803
+ interval?: number;
804
+ local_dir?: string;
805
+ password?: string;
806
+ port?: number;
807
+ read_all_files?: boolean;
808
+ remote_dir?: string;
809
+ retries?: number;
810
+ unzip?: boolean;
811
+ username?: string;
812
+ zip_file_regex?: string;
813
+ zip_format?: string;
814
+ };
815
+ /** @returns {GCompany} */
816
+ declare function GCompany(): GCompany;
817
+ type GCompany = {
818
+ _id?: string;
819
+ integration?: string;
820
+ level?: string;
821
+ name?: string;
822
+ opted?: boolean;
823
+ permissions?: string[];
824
+ stores?: GStore[];
825
+ token?: string;
826
+ uid?: number;
827
+ };
828
+ /** @returns {GenericDTO} */
829
+ declare function GenericDTO(): GenericDTO;
830
+ type GenericDTO = {
831
+ text?: string;
832
+ value?: any;
833
+ };
834
+ /** @returns {GoogleSpreadSheetConfig} */
835
+ declare function GoogleSpreadSheetConfig(): GoogleSpreadSheetConfig;
836
+ type GoogleSpreadSheetConfig = {
837
+ archive_config?: ArchiveConfig;
838
+ client_secret_location?: string;
839
+ cred_storage_directory?: string;
840
+ local_dir?: string;
841
+ range?: string;
842
+ sheet_id?: string;
843
+ };
844
+ /** @returns {GStore} */
845
+ declare function GStore(): GStore;
846
+ type GStore = {
847
+ _id?: string;
848
+ code?: string;
849
+ data?: StoreData;
850
+ integration?: string;
851
+ level?: string;
852
+ name?: string;
853
+ opted?: boolean;
854
+ permissions?: string[];
855
+ token?: string;
856
+ uid?: number;
857
+ };
858
+ /** @returns {HttpConfig} */
859
+ declare function HttpConfig(): HttpConfig;
860
+ type HttpConfig = {
861
+ archive_config?: ArchiveConfig;
862
+ hosturl?: string;
863
+ http_method?: string;
864
+ local_path?: string;
865
+ password?: string;
866
+ request_params?: any;
867
+ request_payload?: string;
868
+ username?: string;
869
+ };
870
+ /** @returns {JobConfig} */
871
+ declare function JobConfig(): JobConfig;
872
+ type JobConfig = {
873
+ _id?: number;
874
+ aggregator_types?: string[];
875
+ alias?: string;
876
+ audit?: Audit;
877
+ catalog_master_config?: CatalogMasterConfig;
878
+ company_config?: CompanyConfig[];
879
+ company_ids?: number[];
880
+ cron_expression?: string;
881
+ db_connection_profile?: DBConnectionProfile;
882
+ delete_quantity_threshold?: number;
883
+ dependent_job_codes?: string[];
884
+ disable?: boolean;
885
+ immediate_first_run?: boolean;
886
+ integration_type?: string;
887
+ job_code?: string;
888
+ min_price?: number;
889
+ open_tags?: any;
890
+ params?: any;
891
+ period_threshold?: number;
892
+ period_threshold_type?: string;
893
+ priority?: string;
894
+ process_config?: ProcessConfig;
895
+ properties?: any;
896
+ store_config?: StoreConfig[];
897
+ store_filter?: StoreFilter;
898
+ sync_delay?: number;
899
+ task_type?: string;
900
+ tax_identifiers?: string[];
901
+ version?: number;
902
+ };
903
+ /** @returns {JobConfigDTO} */
904
+ declare function JobConfigDTO(): JobConfigDTO;
905
+ type JobConfigDTO = {
906
+ alias?: string;
907
+ company_id: number;
908
+ company_name?: string;
909
+ integration: string;
910
+ integration_data?: any;
911
+ job_code?: string;
912
+ task_details?: TaskDTO;
913
+ threshold_details?: DataTresholdDTO;
914
+ };
915
+ /** @returns {JobConfigListDTO} */
916
+ declare function JobConfigListDTO(): JobConfigListDTO;
917
+ type JobConfigListDTO = {
918
+ active?: boolean;
919
+ alias?: string;
920
+ code?: string;
921
+ created_by?: string;
922
+ created_on?: string;
923
+ modified_by?: string;
924
+ modified_on?: string;
925
+ type?: string;
926
+ };
927
+ /** @returns {JobConfigRawDTO} */
928
+ declare function JobConfigRawDTO(): JobConfigRawDTO;
929
+ type JobConfigRawDTO = {
930
+ company_id: number;
931
+ company_name: string;
932
+ data?: JobConfig;
933
+ integration: string;
934
+ };
935
+ /** @returns {JobHistoryDto} */
936
+ declare function JobHistoryDto(): JobHistoryDto;
937
+ type JobHistoryDto = {
938
+ error_type?: string;
939
+ filename?: string[];
940
+ job_code?: string;
941
+ job_id?: number;
942
+ message?: string;
943
+ processed_on?: string;
944
+ status?: string;
945
+ total_added_count?: number;
946
+ total_initial_count?: number;
947
+ total_suppressed_count?: number;
948
+ total_updated_count?: number;
949
+ };
950
+ /** @returns {JobMetricsDto} */
951
+ declare function JobMetricsDto(): JobMetricsDto;
952
+ type JobMetricsDto = {
953
+ is_run_more_than_usual?: string;
954
+ job_code?: string;
955
+ job_history?: JobHistoryDto[];
956
+ total_failure_count?: number;
957
+ total_job_runs?: number;
958
+ total_success_count?: number;
959
+ total_suppressed_count?: number;
960
+ total_warning_count?: number;
961
+ };
962
+ /** @returns {JobStepsDTO} */
963
+ declare function JobStepsDTO(): JobStepsDTO;
964
+ type JobStepsDTO = {
965
+ deleted_count?: number;
966
+ end_count?: number;
967
+ processed_at?: string;
968
+ processed_start_time?: string;
969
+ start_count?: number;
970
+ step_execution_time?: number;
971
+ step_name?: string;
972
+ type?: string;
973
+ };
974
+ /** @returns {JsonDocConfig} */
975
+ declare function JsonDocConfig(): JsonDocConfig;
976
+ type JsonDocConfig = {
977
+ prop_bean_configs?: PropBeanConfig[];
978
+ };
979
+ /** @returns {KafkaMetaModel} */
980
+ declare function KafkaMetaModel(): KafkaMetaModel;
981
+ type KafkaMetaModel = {
982
+ action?: string;
983
+ batch_id?: number;
984
+ created_on?: string;
985
+ created_timestamp?: number;
986
+ job_type?: string;
987
+ trace?: string[];
988
+ };
989
+ /** @returns {KafkaResponse} */
990
+ declare function KafkaResponse(): KafkaResponse;
991
+ type KafkaResponse = {
992
+ offset?: number;
993
+ partition?: number;
994
+ };
995
+ /** @returns {LocalFileConfig} */
996
+ declare function LocalFileConfig(): LocalFileConfig;
997
+ type LocalFileConfig = {
998
+ archive_config?: ArchiveConfig;
999
+ file_regex?: string;
1000
+ interval?: number;
1001
+ local_dir?: string;
1002
+ read_all_files?: boolean;
1003
+ retries?: number;
1004
+ unzip?: boolean;
1005
+ working_dir?: string;
1006
+ zip_file_regex?: string;
1007
+ zip_format?: string;
1008
+ };
1009
+ /** @returns {Metum} */
1010
+ declare function Metum(): Metum;
1011
+ type Metum = {
1012
+ _id?: string;
1013
+ name?: string;
1014
+ value?: string;
1015
+ };
1016
+ /** @returns {MongoDocConfig} */
1017
+ declare function MongoDocConfig(): MongoDocConfig;
1018
+ type MongoDocConfig = {
1019
+ aggregate_pipeline?: any[];
1020
+ collection_name?: string;
1021
+ find_query?: any;
1022
+ projection_query?: any;
1023
+ prop_bean_configs?: PropBeanConfig[];
1024
+ skip_save?: boolean;
1025
+ };
1026
+ /** @returns {OAuthConfig} */
1027
+ declare function OAuthConfig(): OAuthConfig;
1028
+ type OAuthConfig = {
1029
+ consumer_key?: string;
1030
+ consumer_secret?: string;
1031
+ function_name?: string;
1032
+ interval?: number;
1033
+ limit?: number;
1034
+ pages?: number;
1035
+ rest_base_url?: string;
1036
+ rest_url?: string;
1037
+ token?: string;
1038
+ token_secret?: string;
1039
+ };
1040
+ /** @returns {Page} */
1041
+ declare function Page(): Page;
1042
+ type Page = {
1043
+ current?: number;
1044
+ has_next?: boolean;
1045
+ has_previous?: boolean;
1046
+ item_total?: number;
1047
+ next_id?: string;
1048
+ size?: number;
1049
+ type: string;
1050
+ };
1051
+ /** @returns {ProcessConfig} */
1052
+ declare function ProcessConfig(): ProcessConfig;
1053
+ type ProcessConfig = {
1054
+ aws_s3_config?: AWSS3config;
1055
+ db_config?: DBConfig;
1056
+ db_param_config?: DBParamConfig;
1057
+ doc_mapping_config?: DocMappingConfig;
1058
+ email_config?: EmailConfig;
1059
+ file_config?: FileConfig;
1060
+ ftp_config?: FTPConfig;
1061
+ google_spreadsheet_config?: GoogleSpreadSheetConfig;
1062
+ http_config?: HttpConfig;
1063
+ json_doc_config?: JsonDocConfig;
1064
+ local_file_config?: LocalFileConfig;
1065
+ mongo_doc_config?: MongoDocConfig;
1066
+ oauth_config?: OAuthConfig;
1067
+ sftp_config?: SFTPConfig;
1068
+ task_step_config?: TaskStepConfig;
1069
+ };
1070
+ /** @returns {PropBeanConfig} */
1071
+ declare function PropBeanConfig(): PropBeanConfig;
1072
+ type PropBeanConfig = {
1073
+ all_param_function_name?: string;
1074
+ concat_str?: string;
1075
+ const_value?: any;
1076
+ data_type?: string;
1077
+ default_value?: any;
1078
+ destination_field?: string;
1079
+ enrich_from_master?: boolean;
1080
+ function_name?: string;
1081
+ identifier_type?: string;
1082
+ ignore_if_not_exists?: boolean;
1083
+ include?: boolean;
1084
+ index_field?: string;
1085
+ optional?: boolean;
1086
+ projection_query?: any;
1087
+ required?: boolean;
1088
+ send?: Send;
1089
+ source_field?: string;
1090
+ source_fields?: string[];
1091
+ sub_separator?: string;
1092
+ transformer_name?: string;
1093
+ validations?: any[];
1094
+ values?: string[];
1095
+ };
1096
+ /** @returns {PropBeanDTO} */
1097
+ declare function PropBeanDTO(): PropBeanDTO;
1098
+ type PropBeanDTO = {
1099
+ all_param_function_name?: string;
1100
+ concat_str?: string;
1101
+ const_value?: any;
1102
+ data_type?: string;
1103
+ default_value?: any;
1104
+ destination_field?: string;
1105
+ enrich_from_master?: boolean;
1106
+ function_name?: string;
1107
+ identifier_type?: string;
1108
+ ignore_if_not_exists?: boolean;
1109
+ include?: boolean;
1110
+ index_field?: string;
1111
+ optional?: boolean;
1112
+ projection_query?: any;
1113
+ required?: boolean;
1114
+ source_field?: string;
1115
+ source_fields?: string[];
1116
+ sub_separator?: string;
1117
+ transformer_name?: string;
1118
+ };
1119
+ /** @returns {ResponseEnvelopeJobConfigDTO} */
1120
+ declare function ResponseEnvelopeJobConfigDTO(): ResponseEnvelopeJobConfigDTO;
1121
+ type ResponseEnvelopeJobConfigDTO = {
1122
+ error?: string;
1123
+ exception?: string;
1124
+ http_status?: string;
1125
+ items?: JobConfigDTO;
1126
+ message?: string;
1127
+ page?: Page;
1128
+ payload?: JobConfigDTO;
1129
+ status?: number;
1130
+ timestamp?: string;
1131
+ total_time_taken_in_millis?: number;
1132
+ trace_id?: string;
1133
+ };
1134
+ /** @returns {ResponseEnvelopeJobMetricsDto} */
1135
+ declare function ResponseEnvelopeJobMetricsDto(): ResponseEnvelopeJobMetricsDto;
1136
+ type ResponseEnvelopeJobMetricsDto = {
1137
+ error?: string;
1138
+ exception?: string;
1139
+ http_status?: string;
1140
+ items?: JobMetricsDto;
1141
+ message?: string;
1142
+ page?: Page;
1143
+ payload?: JobMetricsDto;
1144
+ status?: number;
1145
+ timestamp?: string;
1146
+ total_time_taken_in_millis?: number;
1147
+ trace_id?: string;
1148
+ };
1149
+ /** @returns {ResponseEnvelopeKafkaResponse} */
1150
+ declare function ResponseEnvelopeKafkaResponse(): ResponseEnvelopeKafkaResponse;
1151
+ type ResponseEnvelopeKafkaResponse = {
1152
+ error?: string;
1153
+ exception?: string;
1154
+ http_status?: string;
1155
+ items?: KafkaResponse;
1156
+ message?: string;
1157
+ page?: Page;
1158
+ payload?: KafkaResponse;
1159
+ status?: number;
1160
+ timestamp?: string;
1161
+ total_time_taken_in_millis?: number;
1162
+ trace_id?: string;
1163
+ };
1164
+ /** @returns {ResponseEnvelopeListJobConfigDTO} */
1165
+ declare function ResponseEnvelopeListJobConfigDTO(): ResponseEnvelopeListJobConfigDTO;
1166
+ type ResponseEnvelopeListJobConfigDTO = {
1167
+ error?: string;
1168
+ exception?: string;
1169
+ http_status?: string;
1170
+ items?: JobConfigDTO[];
1171
+ message?: string;
1172
+ page?: Page;
1173
+ payload?: JobConfigDTO[];
1174
+ status?: number;
1175
+ timestamp?: string;
1176
+ total_time_taken_in_millis?: number;
1177
+ trace_id?: string;
1178
+ };
1179
+ /** @returns {ResponseEnvelopeListJobConfigListDTO} */
1180
+ declare function ResponseEnvelopeListJobConfigListDTO(): ResponseEnvelopeListJobConfigListDTO;
1181
+ type ResponseEnvelopeListJobConfigListDTO = {
1182
+ error?: string;
1183
+ exception?: string;
1184
+ http_status?: string;
1185
+ items?: JobConfigListDTO[];
1186
+ message?: string;
1187
+ page?: Page;
1188
+ payload?: JobConfigListDTO[];
1189
+ status?: number;
1190
+ timestamp?: string;
1191
+ total_time_taken_in_millis?: number;
1192
+ trace_id?: string;
1193
+ };
1194
+ /** @returns {ResponseEnvelopeListJobConfigRawDTO} */
1195
+ declare function ResponseEnvelopeListJobConfigRawDTO(): ResponseEnvelopeListJobConfigRawDTO;
1196
+ type ResponseEnvelopeListJobConfigRawDTO = {
1197
+ error?: string;
1198
+ exception?: string;
1199
+ http_status?: string;
1200
+ items?: JobConfigRawDTO[];
1201
+ message?: string;
1202
+ page?: Page;
1203
+ payload?: JobConfigRawDTO[];
1204
+ status?: number;
1205
+ timestamp?: string;
1206
+ total_time_taken_in_millis?: number;
1207
+ trace_id?: string;
1208
+ };
1209
+ /** @returns {ResponseEnvelopeListJobStepsDTO} */
1210
+ declare function ResponseEnvelopeListJobStepsDTO(): ResponseEnvelopeListJobStepsDTO;
1211
+ type ResponseEnvelopeListJobStepsDTO = {
1212
+ error?: string;
1213
+ exception?: string;
1214
+ http_status?: string;
1215
+ items?: JobStepsDTO[];
1216
+ message?: string;
1217
+ page?: Page;
1218
+ payload?: JobStepsDTO[];
1219
+ status?: number;
1220
+ timestamp?: string;
1221
+ total_time_taken_in_millis?: number;
1222
+ trace_id?: string;
1223
+ };
1224
+ /** @returns {ResponseEnvelopeListSlingshotConfigurationDetail} */
1225
+ declare function ResponseEnvelopeListSlingshotConfigurationDetail(): ResponseEnvelopeListSlingshotConfigurationDetail;
1226
+ type ResponseEnvelopeListSlingshotConfigurationDetail = {
1227
+ error?: string;
1228
+ exception?: string;
1229
+ http_status?: string;
1230
+ items?: SlingshotConfigurationDetail[];
1231
+ message?: string;
1232
+ page?: Page;
1233
+ payload?: SlingshotConfigurationDetail[];
1234
+ status?: number;
1235
+ timestamp?: string;
1236
+ total_time_taken_in_millis?: number;
1237
+ trace_id?: string;
1238
+ };
1239
+ /** @returns {ResponseEnvelopeString} */
1240
+ declare function ResponseEnvelopeString(): ResponseEnvelopeString;
1241
+ type ResponseEnvelopeString = {
1242
+ error?: string;
1243
+ exception?: string;
1244
+ http_status?: string;
1245
+ items?: string;
1246
+ message?: string;
1247
+ page?: Page;
1248
+ payload?: string;
1249
+ status?: number;
1250
+ timestamp?: string;
1251
+ total_time_taken_in_millis?: number;
1252
+ trace_id?: string;
1253
+ };
1254
+ /** @returns {Send} */
1255
+ declare function Send(): Send;
1256
+ type Send = {
1257
+ processed?: boolean;
1258
+ raw?: boolean;
1259
+ };
1260
+ /** @returns {SFTPConfig} */
1261
+ declare function SFTPConfig(): SFTPConfig;
1262
+ type SFTPConfig = {
1263
+ archive_config?: ArchiveConfig;
1264
+ file_regex?: string;
1265
+ host?: string;
1266
+ interval?: number;
1267
+ local_dir?: string;
1268
+ password?: string;
1269
+ password_protected?: boolean;
1270
+ port?: number;
1271
+ private_key_path?: string;
1272
+ read_all_files?: boolean;
1273
+ remote_dir?: string;
1274
+ retries?: number;
1275
+ strict_host_key_checking?: boolean;
1276
+ unzip?: boolean;
1277
+ username?: string;
1278
+ zip_file_regex?: string;
1279
+ zip_format?: string;
1280
+ };
1281
+ /** @returns {SlingshotConfigurationDetail} */
1282
+ declare function SlingshotConfigurationDetail(): SlingshotConfigurationDetail;
1283
+ type SlingshotConfigurationDetail = {
1284
+ companies?: GCompany[];
1285
+ integration?: SlingshotIntegration;
1286
+ };
1287
+ /** @returns {SlingshotIntegration} */
1288
+ declare function SlingshotIntegration(): SlingshotIntegration;
1289
+ type SlingshotIntegration = {
1290
+ _id?: string;
1291
+ description?: string;
1292
+ meta?: Metum[];
1293
+ name?: string;
1294
+ slug?: string;
1295
+ };
1296
+ /** @returns {StoreConfig} */
1297
+ declare function StoreConfig(): StoreConfig;
1298
+ type StoreConfig = {
1299
+ job_code?: string;
1300
+ process_config?: ProcessConfig;
1301
+ properties?: any;
1302
+ store_alias?: string;
1303
+ store_file_name?: string;
1304
+ store_file_regex?: string;
1305
+ storeid?: string;
1306
+ };
1307
+ /** @returns {StoreData} */
1308
+ declare function StoreData(): StoreData;
1309
+ type StoreData = {
1310
+ location_id?: string;
1311
+ };
1312
+ /** @returns {StoreFilter} */
1313
+ declare function StoreFilter(): StoreFilter;
1314
+ type StoreFilter = {
1315
+ exclude_tags?: string[];
1316
+ include_tags?: string[];
1317
+ query?: any;
1318
+ };
1319
+ /** @returns {SuppressStoreModel} */
1320
+ declare function SuppressStoreModel(): SuppressStoreModel;
1321
+ type SuppressStoreModel = {
1322
+ stores?: number[];
1323
+ };
1324
+ /** @returns {SuppressStorePayload} */
1325
+ declare function SuppressStorePayload(): SuppressStorePayload;
1326
+ type SuppressStorePayload = {
1327
+ meta?: KafkaMetaModel;
1328
+ payload?: SuppressStoreModel[];
1329
+ };
1330
+ /** @returns {TaskConfig} */
1331
+ declare function TaskConfig(): TaskConfig;
1332
+ type TaskConfig = {
1333
+ name?: string;
1334
+ task_config_id?: number;
1335
+ task_params?: TaskParam[];
1336
+ };
1337
+ /** @returns {TaskDTO} */
1338
+ declare function TaskDTO(): TaskDTO;
1339
+ type TaskDTO = {
1340
+ group_list?: GenericDTO[];
1341
+ type?: number;
1342
+ };
1343
+ /** @returns {TaskParam} */
1344
+ declare function TaskParam(): TaskParam;
1345
+ type TaskParam = {
1346
+ name?: string;
1347
+ value?: any;
1348
+ };
1349
+ /** @returns {TaskStepConfig} */
1350
+ declare function TaskStepConfig(): TaskStepConfig;
1351
+ type TaskStepConfig = {
1352
+ task_config_group_ids?: number[];
1353
+ task_config_ids?: number[];
1354
+ task_configs?: TaskConfig[];
1355
+ };