@redneckz/wildless-cms-uni-blocks 0.14.997 → 0.14.998

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 (460) hide show
  1. package/bundle/api/getSubmitBody.d.ts +1636 -244
  2. package/bundle/blocks.schema.json +1 -1
  3. package/bundle/bundle.umd.js +408 -6
  4. package/bundle/bundle.umd.min.js +1 -1
  5. package/bundle/components/CalculatorRko/CalculatorRko.d.ts +5 -0
  6. package/bundle/components/CalculatorRko/CalculatorRkoContent.d.ts +74 -0
  7. package/bundle/components/CalculatorRko/constants.d.ts +25 -0
  8. package/bundle/components/CalculatorRko/filterByClientType.d.ts +1 -0
  9. package/bundle/components/CalculatorRko/getCalculatedCommission.d.ts +9 -0
  10. package/bundle/components/CalculatorRko/getInitialRkoTariffsParams.d.ts +3 -0
  11. package/bundle/components/CalculatorRko/getRkoCalculatorParams.d.ts +2 -0
  12. package/bundle/components/CalculatorRko/markBestTariff.d.ts +5 -0
  13. package/bundle/components/CalculatorRko/mergeTariffData.d.ts +3 -0
  14. package/bundle/components/CalculatorRko/renderCommissionSum.d.ts +2 -0
  15. package/bundle/components/RkoTariffCardsTable/RkoTariffCard.d.ts +10 -0
  16. package/bundle/components/RkoTariffCardsTable/RkoTariffCardsTable.d.ts +5 -0
  17. package/bundle/components/RkoTariffCardsTable/RkoTariffCardsTableContent.d.ts +16 -0
  18. package/bundle/components/RkoTariffCardsTable/constants.d.ts +3 -0
  19. package/bundle/components/RkoTariffCardsTable/getCommissionTypes.d.ts +3 -0
  20. package/bundle/components/RkoTariffCardsTable/renderDesktopCard.d.ts +2 -0
  21. package/bundle/components/RkoTariffCardsTable/renderHiddenCommission.d.ts +9 -0
  22. package/bundle/components/RkoTariffCardsTable/renderMobileCard.d.ts +12 -0
  23. package/bundle/components/RkoTariffCardsTable/renderRecommendedLabel.d.ts +1 -0
  24. package/bundle/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.d.ts +6 -0
  25. package/bundle/model/FormTypeFieldDef.d.ts +1 -1
  26. package/bundle/ui-kit/Button/ButtonTitle.d.ts +5 -1
  27. package/bundle/ui-kit/Calculator/CalculatorStyle.d.ts +2 -0
  28. package/bundle/ui-kit/Calculator/renderCountInput.d.ts +2 -0
  29. package/bundle/ui-kit/Foldable/DefaultFoldButton.d.ts +1 -0
  30. package/bundle/ui-kit/Text/Text.d.ts +2 -1
  31. package/dist/api/getSubmitBody.d.ts +1636 -244
  32. package/dist/api/getSubmitBody.js +6 -0
  33. package/dist/api/getSubmitBody.js.map +1 -1
  34. package/dist/components/Blocks.js +4 -0
  35. package/dist/components/Blocks.js.map +1 -1
  36. package/dist/components/Blocks.mobile.js +4 -0
  37. package/dist/components/Blocks.mobile.js.map +1 -1
  38. package/dist/components/CalculatorRko/CalculatorRko.d.ts +5 -0
  39. package/dist/components/CalculatorRko/CalculatorRko.js +75 -0
  40. package/dist/components/CalculatorRko/CalculatorRko.js.map +1 -0
  41. package/dist/components/CalculatorRko/CalculatorRkoContent.d.ts +74 -0
  42. package/dist/components/CalculatorRko/CalculatorRkoContent.js +2 -0
  43. package/dist/components/CalculatorRko/CalculatorRkoContent.js.map +1 -0
  44. package/dist/components/CalculatorRko/constants.d.ts +25 -0
  45. package/dist/components/CalculatorRko/constants.js +54 -0
  46. package/dist/components/CalculatorRko/constants.js.map +1 -0
  47. package/dist/components/CalculatorRko/filterByClientType.d.ts +1 -0
  48. package/dist/components/CalculatorRko/filterByClientType.js +27 -0
  49. package/dist/components/CalculatorRko/filterByClientType.js.map +1 -0
  50. package/dist/components/CalculatorRko/getCalculatedCommission.d.ts +9 -0
  51. package/dist/components/CalculatorRko/getCalculatedCommission.js +106 -0
  52. package/dist/components/CalculatorRko/getCalculatedCommission.js.map +1 -0
  53. package/dist/components/CalculatorRko/getInitialRkoTariffsParams.d.ts +3 -0
  54. package/dist/components/CalculatorRko/getInitialRkoTariffsParams.js +15 -0
  55. package/dist/components/CalculatorRko/getInitialRkoTariffsParams.js.map +1 -0
  56. package/dist/components/CalculatorRko/getRkoCalculatorParams.d.ts +2 -0
  57. package/dist/components/CalculatorRko/getRkoCalculatorParams.js +23 -0
  58. package/dist/components/CalculatorRko/getRkoCalculatorParams.js.map +1 -0
  59. package/dist/components/CalculatorRko/markBestTariff.d.ts +5 -0
  60. package/dist/components/CalculatorRko/markBestTariff.js +15 -0
  61. package/dist/components/CalculatorRko/markBestTariff.js.map +1 -0
  62. package/dist/components/CalculatorRko/mergeTariffData.d.ts +3 -0
  63. package/dist/components/CalculatorRko/mergeTariffData.js +26 -0
  64. package/dist/components/CalculatorRko/mergeTariffData.js.map +1 -0
  65. package/dist/components/CalculatorRko/renderCommissionSum.d.ts +2 -0
  66. package/dist/components/CalculatorRko/renderCommissionSum.js +8 -0
  67. package/dist/components/CalculatorRko/renderCommissionSum.js.map +1 -0
  68. package/dist/components/RkoTariffCardsTable/RkoTariffCard.d.ts +10 -0
  69. package/dist/components/RkoTariffCardsTable/RkoTariffCard.js +41 -0
  70. package/dist/components/RkoTariffCardsTable/RkoTariffCard.js.map +1 -0
  71. package/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.d.ts +5 -0
  72. package/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js +22 -0
  73. package/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -0
  74. package/dist/components/RkoTariffCardsTable/RkoTariffCardsTableContent.d.ts +16 -0
  75. package/dist/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js +2 -0
  76. package/dist/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js.map +1 -0
  77. package/dist/components/RkoTariffCardsTable/constants.d.ts +3 -0
  78. package/dist/components/RkoTariffCardsTable/constants.js +20 -0
  79. package/dist/components/RkoTariffCardsTable/constants.js.map +1 -0
  80. package/dist/components/RkoTariffCardsTable/getCommissionTypes.d.ts +3 -0
  81. package/dist/components/RkoTariffCardsTable/getCommissionTypes.js +11 -0
  82. package/dist/components/RkoTariffCardsTable/getCommissionTypes.js.map +1 -0
  83. package/dist/components/RkoTariffCardsTable/renderDesktopCard.d.ts +2 -0
  84. package/dist/components/RkoTariffCardsTable/renderDesktopCard.js +7 -0
  85. package/dist/components/RkoTariffCardsTable/renderDesktopCard.js.map +1 -0
  86. package/dist/components/RkoTariffCardsTable/renderHiddenCommission.d.ts +9 -0
  87. package/dist/components/RkoTariffCardsTable/renderHiddenCommission.js +9 -0
  88. package/dist/components/RkoTariffCardsTable/renderHiddenCommission.js.map +1 -0
  89. package/dist/components/RkoTariffCardsTable/renderMobileCard.d.ts +12 -0
  90. package/dist/components/RkoTariffCardsTable/renderMobileCard.js +22 -0
  91. package/dist/components/RkoTariffCardsTable/renderMobileCard.js.map +1 -0
  92. package/dist/components/RkoTariffCardsTable/renderRecommendedLabel.d.ts +1 -0
  93. package/dist/components/RkoTariffCardsTable/renderRecommendedLabel.js +9 -0
  94. package/dist/components/RkoTariffCardsTable/renderRecommendedLabel.js.map +1 -0
  95. package/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.d.ts +6 -0
  96. package/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +11 -0
  97. package/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -0
  98. package/dist/model/FormTypeFieldDef.d.ts +1 -1
  99. package/dist/ui-kit/Button/ButtonTitle.d.ts +5 -1
  100. package/dist/ui-kit/Button/ButtonTitle.js +1 -1
  101. package/dist/ui-kit/Button/ButtonTitle.js.map +1 -1
  102. package/dist/ui-kit/Calculator/CalculatorStyle.d.ts +2 -0
  103. package/dist/ui-kit/Calculator/CalculatorStyle.js +2 -0
  104. package/dist/ui-kit/Calculator/CalculatorStyle.js.map +1 -1
  105. package/dist/ui-kit/Calculator/renderCountInput.d.ts +2 -0
  106. package/dist/ui-kit/Calculator/renderCountInput.js +8 -0
  107. package/dist/ui-kit/Calculator/renderCountInput.js.map +1 -0
  108. package/dist/ui-kit/Foldable/DefaultFoldButton.d.ts +1 -0
  109. package/dist/ui-kit/Foldable/DefaultFoldButton.js +4 -1
  110. package/dist/ui-kit/Foldable/DefaultFoldButton.js.map +1 -1
  111. package/dist/ui-kit/Text/Text.d.ts +2 -1
  112. package/dist/ui-kit/Text/Text.js +1 -1
  113. package/dist/ui-kit/Text/Text.js.map +1 -1
  114. package/lib/api/getSubmitBody.d.ts +1636 -244
  115. package/lib/api/getSubmitBody.js +6 -0
  116. package/lib/api/getSubmitBody.js.map +1 -1
  117. package/lib/common.css +1 -1
  118. package/lib/components/ApplicationForm/ApplicationForm.fixture.d.ts +1 -0
  119. package/lib/components/Blocks.js +4 -0
  120. package/lib/components/Blocks.js.map +1 -1
  121. package/lib/components/Blocks.mobile.js +4 -0
  122. package/lib/components/Blocks.mobile.js.map +1 -1
  123. package/lib/components/CalculatorRko/CalculatorRko.d.ts +5 -0
  124. package/lib/components/CalculatorRko/CalculatorRko.fixture.d.ts +6 -0
  125. package/lib/components/CalculatorRko/CalculatorRko.fixture.mobile.d.ts +6 -0
  126. package/lib/components/CalculatorRko/CalculatorRko.js +73 -0
  127. package/lib/components/CalculatorRko/CalculatorRko.js.map +1 -0
  128. package/lib/components/CalculatorRko/CalculatorRkoContent.d.ts +74 -0
  129. package/lib/components/CalculatorRko/CalculatorRkoContent.js +2 -0
  130. package/lib/components/CalculatorRko/CalculatorRkoContent.js.map +1 -0
  131. package/lib/components/CalculatorRko/constants.d.ts +25 -0
  132. package/lib/components/CalculatorRko/constants.js +52 -0
  133. package/lib/components/CalculatorRko/constants.js.map +1 -0
  134. package/lib/components/CalculatorRko/filterByClientType.d.ts +1 -0
  135. package/lib/components/CalculatorRko/filterByClientType.js +24 -0
  136. package/lib/components/CalculatorRko/filterByClientType.js.map +1 -0
  137. package/lib/components/CalculatorRko/getCalculatedCommission.d.ts +9 -0
  138. package/lib/components/CalculatorRko/getCalculatedCommission.js +103 -0
  139. package/lib/components/CalculatorRko/getCalculatedCommission.js.map +1 -0
  140. package/lib/components/CalculatorRko/getInitialRkoTariffsParams.d.ts +3 -0
  141. package/lib/components/CalculatorRko/getInitialRkoTariffsParams.js +12 -0
  142. package/lib/components/CalculatorRko/getInitialRkoTariffsParams.js.map +1 -0
  143. package/lib/components/CalculatorRko/getRkoCalculatorParams.d.ts +2 -0
  144. package/lib/components/CalculatorRko/getRkoCalculatorParams.js +20 -0
  145. package/lib/components/CalculatorRko/getRkoCalculatorParams.js.map +1 -0
  146. package/lib/components/CalculatorRko/markBestTariff.d.ts +5 -0
  147. package/lib/components/CalculatorRko/markBestTariff.js +12 -0
  148. package/lib/components/CalculatorRko/markBestTariff.js.map +1 -0
  149. package/lib/components/CalculatorRko/mergeTariffData.d.ts +3 -0
  150. package/lib/components/CalculatorRko/mergeTariffData.js +23 -0
  151. package/lib/components/CalculatorRko/mergeTariffData.js.map +1 -0
  152. package/lib/components/CalculatorRko/renderCommissionSum.d.ts +2 -0
  153. package/lib/components/CalculatorRko/renderCommissionSum.js +5 -0
  154. package/lib/components/CalculatorRko/renderCommissionSum.js.map +1 -0
  155. package/lib/components/RkoTariffCardsTable/RkoTariffCard.d.ts +10 -0
  156. package/lib/components/RkoTariffCardsTable/RkoTariffCard.js +39 -0
  157. package/lib/components/RkoTariffCardsTable/RkoTariffCard.js.map +1 -0
  158. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.d.ts +5 -0
  159. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.fixture.d.ts +4 -0
  160. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.fixture.mobile.d.ts +4 -0
  161. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js +20 -0
  162. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -0
  163. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTableContent.d.ts +16 -0
  164. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js +2 -0
  165. package/lib/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js.map +1 -0
  166. package/lib/components/RkoTariffCardsTable/constants.d.ts +3 -0
  167. package/lib/components/RkoTariffCardsTable/constants.js +18 -0
  168. package/lib/components/RkoTariffCardsTable/constants.js.map +1 -0
  169. package/lib/components/RkoTariffCardsTable/getCommissionTypes.d.ts +3 -0
  170. package/lib/components/RkoTariffCardsTable/getCommissionTypes.js +8 -0
  171. package/lib/components/RkoTariffCardsTable/getCommissionTypes.js.map +1 -0
  172. package/lib/components/RkoTariffCardsTable/renderDesktopCard.d.ts +2 -0
  173. package/lib/components/RkoTariffCardsTable/renderDesktopCard.js +4 -0
  174. package/lib/components/RkoTariffCardsTable/renderDesktopCard.js.map +1 -0
  175. package/lib/components/RkoTariffCardsTable/renderHiddenCommission.d.ts +9 -0
  176. package/lib/components/RkoTariffCardsTable/renderHiddenCommission.js +6 -0
  177. package/lib/components/RkoTariffCardsTable/renderHiddenCommission.js.map +1 -0
  178. package/lib/components/RkoTariffCardsTable/renderMobileCard.d.ts +12 -0
  179. package/lib/components/RkoTariffCardsTable/renderMobileCard.js +19 -0
  180. package/lib/components/RkoTariffCardsTable/renderMobileCard.js.map +1 -0
  181. package/lib/components/RkoTariffCardsTable/renderRecommendedLabel.d.ts +1 -0
  182. package/lib/components/RkoTariffCardsTable/renderRecommendedLabel.js +6 -0
  183. package/lib/components/RkoTariffCardsTable/renderRecommendedLabel.js.map +1 -0
  184. package/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.d.ts +6 -0
  185. package/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +8 -0
  186. package/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -0
  187. package/lib/model/FormTypeFieldDef.d.ts +1 -1
  188. package/lib/ui-kit/Button/ButtonTitle.d.ts +5 -1
  189. package/lib/ui-kit/Button/ButtonTitle.js +1 -1
  190. package/lib/ui-kit/Button/ButtonTitle.js.map +1 -1
  191. package/lib/ui-kit/Calculator/CalculatorStyle.d.ts +2 -0
  192. package/lib/ui-kit/Calculator/CalculatorStyle.js +2 -0
  193. package/lib/ui-kit/Calculator/CalculatorStyle.js.map +1 -1
  194. package/lib/ui-kit/Calculator/renderCountInput.d.ts +2 -0
  195. package/lib/ui-kit/Calculator/renderCountInput.js +5 -0
  196. package/lib/ui-kit/Calculator/renderCountInput.js.map +1 -0
  197. package/lib/ui-kit/Foldable/DefaultFoldButton.d.ts +1 -0
  198. package/lib/ui-kit/Foldable/DefaultFoldButton.js +4 -1
  199. package/lib/ui-kit/Foldable/DefaultFoldButton.js.map +1 -1
  200. package/lib/ui-kit/Text/Text.d.ts +2 -1
  201. package/lib/ui-kit/Text/Text.js +1 -1
  202. package/lib/ui-kit/Text/Text.js.map +1 -1
  203. package/mobile/bundle/api/getSubmitBody.d.ts +1636 -244
  204. package/mobile/bundle/bundle.umd.js +408 -6
  205. package/mobile/bundle/bundle.umd.min.js +1 -1
  206. package/mobile/bundle/components/CalculatorRko/CalculatorRko.d.ts +5 -0
  207. package/mobile/bundle/components/CalculatorRko/CalculatorRkoContent.d.ts +74 -0
  208. package/mobile/bundle/components/CalculatorRko/constants.d.ts +25 -0
  209. package/mobile/bundle/components/CalculatorRko/filterByClientType.d.ts +1 -0
  210. package/mobile/bundle/components/CalculatorRko/getCalculatedCommission.d.ts +9 -0
  211. package/mobile/bundle/components/CalculatorRko/getInitialRkoTariffsParams.d.ts +3 -0
  212. package/mobile/bundle/components/CalculatorRko/getRkoCalculatorParams.d.ts +2 -0
  213. package/mobile/bundle/components/CalculatorRko/markBestTariff.d.ts +5 -0
  214. package/mobile/bundle/components/CalculatorRko/mergeTariffData.d.ts +3 -0
  215. package/mobile/bundle/components/CalculatorRko/renderCommissionSum.d.ts +2 -0
  216. package/mobile/bundle/components/RkoTariffCardsTable/RkoTariffCard.d.ts +10 -0
  217. package/mobile/bundle/components/RkoTariffCardsTable/RkoTariffCardsTable.d.ts +5 -0
  218. package/mobile/bundle/components/RkoTariffCardsTable/RkoTariffCardsTableContent.d.ts +16 -0
  219. package/mobile/bundle/components/RkoTariffCardsTable/constants.d.ts +3 -0
  220. package/mobile/bundle/components/RkoTariffCardsTable/getCommissionTypes.d.ts +3 -0
  221. package/mobile/bundle/components/RkoTariffCardsTable/renderDesktopCard.d.ts +2 -0
  222. package/mobile/bundle/components/RkoTariffCardsTable/renderHiddenCommission.d.ts +9 -0
  223. package/mobile/bundle/components/RkoTariffCardsTable/renderMobileCard.d.ts +12 -0
  224. package/mobile/bundle/components/RkoTariffCardsTable/renderRecommendedLabel.d.ts +1 -0
  225. package/mobile/bundle/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.d.ts +6 -0
  226. package/mobile/bundle/model/FormTypeFieldDef.d.ts +1 -1
  227. package/mobile/bundle/ui-kit/Button/ButtonTitle.d.ts +5 -1
  228. package/mobile/bundle/ui-kit/Calculator/CalculatorStyle.d.ts +2 -0
  229. package/mobile/bundle/ui-kit/Calculator/renderCountInput.d.ts +2 -0
  230. package/mobile/bundle/ui-kit/Foldable/DefaultFoldButton.d.ts +1 -0
  231. package/mobile/bundle/ui-kit/Text/Text.d.ts +2 -1
  232. package/mobile/dist/api/getSubmitBody.d.ts +1636 -244
  233. package/mobile/dist/api/getSubmitBody.js +6 -0
  234. package/mobile/dist/api/getSubmitBody.js.map +1 -1
  235. package/mobile/dist/components/Blocks.js +4 -0
  236. package/mobile/dist/components/Blocks.js.map +1 -1
  237. package/mobile/dist/components/CalculatorRko/CalculatorRko.d.ts +5 -0
  238. package/mobile/dist/components/CalculatorRko/CalculatorRko.js +75 -0
  239. package/mobile/dist/components/CalculatorRko/CalculatorRko.js.map +1 -0
  240. package/mobile/dist/components/CalculatorRko/CalculatorRkoContent.d.ts +74 -0
  241. package/mobile/dist/components/CalculatorRko/CalculatorRkoContent.js +2 -0
  242. package/mobile/dist/components/CalculatorRko/CalculatorRkoContent.js.map +1 -0
  243. package/mobile/dist/components/CalculatorRko/constants.d.ts +25 -0
  244. package/mobile/dist/components/CalculatorRko/constants.js +54 -0
  245. package/mobile/dist/components/CalculatorRko/constants.js.map +1 -0
  246. package/mobile/dist/components/CalculatorRko/filterByClientType.d.ts +1 -0
  247. package/mobile/dist/components/CalculatorRko/filterByClientType.js +27 -0
  248. package/mobile/dist/components/CalculatorRko/filterByClientType.js.map +1 -0
  249. package/mobile/dist/components/CalculatorRko/getCalculatedCommission.d.ts +9 -0
  250. package/mobile/dist/components/CalculatorRko/getCalculatedCommission.js +106 -0
  251. package/mobile/dist/components/CalculatorRko/getCalculatedCommission.js.map +1 -0
  252. package/mobile/dist/components/CalculatorRko/getInitialRkoTariffsParams.d.ts +3 -0
  253. package/mobile/dist/components/CalculatorRko/getInitialRkoTariffsParams.js +15 -0
  254. package/mobile/dist/components/CalculatorRko/getInitialRkoTariffsParams.js.map +1 -0
  255. package/mobile/dist/components/CalculatorRko/getRkoCalculatorParams.d.ts +2 -0
  256. package/mobile/dist/components/CalculatorRko/getRkoCalculatorParams.js +23 -0
  257. package/mobile/dist/components/CalculatorRko/getRkoCalculatorParams.js.map +1 -0
  258. package/mobile/dist/components/CalculatorRko/markBestTariff.d.ts +5 -0
  259. package/mobile/dist/components/CalculatorRko/markBestTariff.js +15 -0
  260. package/mobile/dist/components/CalculatorRko/markBestTariff.js.map +1 -0
  261. package/mobile/dist/components/CalculatorRko/mergeTariffData.d.ts +3 -0
  262. package/mobile/dist/components/CalculatorRko/mergeTariffData.js +26 -0
  263. package/mobile/dist/components/CalculatorRko/mergeTariffData.js.map +1 -0
  264. package/mobile/dist/components/CalculatorRko/renderCommissionSum.d.ts +2 -0
  265. package/mobile/dist/components/CalculatorRko/renderCommissionSum.js +8 -0
  266. package/mobile/dist/components/CalculatorRko/renderCommissionSum.js.map +1 -0
  267. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCard.d.ts +10 -0
  268. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCard.js +41 -0
  269. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCard.js.map +1 -0
  270. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.d.ts +5 -0
  271. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js +22 -0
  272. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -0
  273. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTableContent.d.ts +16 -0
  274. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js +2 -0
  275. package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js.map +1 -0
  276. package/mobile/dist/components/RkoTariffCardsTable/constants.d.ts +3 -0
  277. package/mobile/dist/components/RkoTariffCardsTable/constants.js +20 -0
  278. package/mobile/dist/components/RkoTariffCardsTable/constants.js.map +1 -0
  279. package/mobile/dist/components/RkoTariffCardsTable/getCommissionTypes.d.ts +3 -0
  280. package/mobile/dist/components/RkoTariffCardsTable/getCommissionTypes.js +11 -0
  281. package/mobile/dist/components/RkoTariffCardsTable/getCommissionTypes.js.map +1 -0
  282. package/mobile/dist/components/RkoTariffCardsTable/renderDesktopCard.d.ts +2 -0
  283. package/mobile/dist/components/RkoTariffCardsTable/renderDesktopCard.js +7 -0
  284. package/mobile/dist/components/RkoTariffCardsTable/renderDesktopCard.js.map +1 -0
  285. package/mobile/dist/components/RkoTariffCardsTable/renderHiddenCommission.d.ts +9 -0
  286. package/mobile/dist/components/RkoTariffCardsTable/renderHiddenCommission.js +9 -0
  287. package/mobile/dist/components/RkoTariffCardsTable/renderHiddenCommission.js.map +1 -0
  288. package/mobile/dist/components/RkoTariffCardsTable/renderMobileCard.d.ts +12 -0
  289. package/mobile/dist/components/RkoTariffCardsTable/renderMobileCard.js +22 -0
  290. package/mobile/dist/components/RkoTariffCardsTable/renderMobileCard.js.map +1 -0
  291. package/mobile/dist/components/RkoTariffCardsTable/renderRecommendedLabel.d.ts +1 -0
  292. package/mobile/dist/components/RkoTariffCardsTable/renderRecommendedLabel.js +9 -0
  293. package/mobile/dist/components/RkoTariffCardsTable/renderRecommendedLabel.js.map +1 -0
  294. package/mobile/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.d.ts +6 -0
  295. package/mobile/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +11 -0
  296. package/mobile/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -0
  297. package/mobile/dist/model/FormTypeFieldDef.d.ts +1 -1
  298. package/mobile/dist/ui-kit/Button/ButtonTitle.d.ts +5 -1
  299. package/mobile/dist/ui-kit/Button/ButtonTitle.js +1 -1
  300. package/mobile/dist/ui-kit/Button/ButtonTitle.js.map +1 -1
  301. package/mobile/dist/ui-kit/Calculator/CalculatorStyle.d.ts +2 -0
  302. package/mobile/dist/ui-kit/Calculator/CalculatorStyle.js +2 -0
  303. package/mobile/dist/ui-kit/Calculator/CalculatorStyle.js.map +1 -1
  304. package/mobile/dist/ui-kit/Calculator/renderCountInput.d.ts +2 -0
  305. package/mobile/dist/ui-kit/Calculator/renderCountInput.js +8 -0
  306. package/mobile/dist/ui-kit/Calculator/renderCountInput.js.map +1 -0
  307. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.d.ts +1 -0
  308. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.js +4 -1
  309. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.js.map +1 -1
  310. package/mobile/dist/ui-kit/Text/Text.d.ts +2 -1
  311. package/mobile/dist/ui-kit/Text/Text.js +1 -1
  312. package/mobile/dist/ui-kit/Text/Text.js.map +1 -1
  313. package/mobile/lib/api/getSubmitBody.d.ts +1636 -244
  314. package/mobile/lib/api/getSubmitBody.js +6 -0
  315. package/mobile/lib/api/getSubmitBody.js.map +1 -1
  316. package/mobile/lib/common.css +1 -1
  317. package/mobile/lib/components/Blocks.js +4 -0
  318. package/mobile/lib/components/Blocks.js.map +1 -1
  319. package/mobile/lib/components/CalculatorRko/CalculatorRko.d.ts +5 -0
  320. package/mobile/lib/components/CalculatorRko/CalculatorRko.js +73 -0
  321. package/mobile/lib/components/CalculatorRko/CalculatorRko.js.map +1 -0
  322. package/mobile/lib/components/CalculatorRko/CalculatorRkoContent.d.ts +74 -0
  323. package/mobile/lib/components/CalculatorRko/CalculatorRkoContent.js +2 -0
  324. package/mobile/lib/components/CalculatorRko/CalculatorRkoContent.js.map +1 -0
  325. package/mobile/lib/components/CalculatorRko/constants.d.ts +25 -0
  326. package/mobile/lib/components/CalculatorRko/constants.js +52 -0
  327. package/mobile/lib/components/CalculatorRko/constants.js.map +1 -0
  328. package/mobile/lib/components/CalculatorRko/filterByClientType.d.ts +1 -0
  329. package/mobile/lib/components/CalculatorRko/filterByClientType.js +24 -0
  330. package/mobile/lib/components/CalculatorRko/filterByClientType.js.map +1 -0
  331. package/mobile/lib/components/CalculatorRko/getCalculatedCommission.d.ts +9 -0
  332. package/mobile/lib/components/CalculatorRko/getCalculatedCommission.js +103 -0
  333. package/mobile/lib/components/CalculatorRko/getCalculatedCommission.js.map +1 -0
  334. package/mobile/lib/components/CalculatorRko/getInitialRkoTariffsParams.d.ts +3 -0
  335. package/mobile/lib/components/CalculatorRko/getInitialRkoTariffsParams.js +12 -0
  336. package/mobile/lib/components/CalculatorRko/getInitialRkoTariffsParams.js.map +1 -0
  337. package/mobile/lib/components/CalculatorRko/getRkoCalculatorParams.d.ts +2 -0
  338. package/mobile/lib/components/CalculatorRko/getRkoCalculatorParams.js +20 -0
  339. package/mobile/lib/components/CalculatorRko/getRkoCalculatorParams.js.map +1 -0
  340. package/mobile/lib/components/CalculatorRko/markBestTariff.d.ts +5 -0
  341. package/mobile/lib/components/CalculatorRko/markBestTariff.js +12 -0
  342. package/mobile/lib/components/CalculatorRko/markBestTariff.js.map +1 -0
  343. package/mobile/lib/components/CalculatorRko/mergeTariffData.d.ts +3 -0
  344. package/mobile/lib/components/CalculatorRko/mergeTariffData.js +23 -0
  345. package/mobile/lib/components/CalculatorRko/mergeTariffData.js.map +1 -0
  346. package/mobile/lib/components/CalculatorRko/renderCommissionSum.d.ts +2 -0
  347. package/mobile/lib/components/CalculatorRko/renderCommissionSum.js +5 -0
  348. package/mobile/lib/components/CalculatorRko/renderCommissionSum.js.map +1 -0
  349. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCard.d.ts +10 -0
  350. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCard.js +39 -0
  351. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCard.js.map +1 -0
  352. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.d.ts +5 -0
  353. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js +20 -0
  354. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -0
  355. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTableContent.d.ts +16 -0
  356. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js +2 -0
  357. package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTableContent.js.map +1 -0
  358. package/mobile/lib/components/RkoTariffCardsTable/constants.d.ts +3 -0
  359. package/mobile/lib/components/RkoTariffCardsTable/constants.js +18 -0
  360. package/mobile/lib/components/RkoTariffCardsTable/constants.js.map +1 -0
  361. package/mobile/lib/components/RkoTariffCardsTable/getCommissionTypes.d.ts +3 -0
  362. package/mobile/lib/components/RkoTariffCardsTable/getCommissionTypes.js +8 -0
  363. package/mobile/lib/components/RkoTariffCardsTable/getCommissionTypes.js.map +1 -0
  364. package/mobile/lib/components/RkoTariffCardsTable/renderDesktopCard.d.ts +2 -0
  365. package/mobile/lib/components/RkoTariffCardsTable/renderDesktopCard.js +4 -0
  366. package/mobile/lib/components/RkoTariffCardsTable/renderDesktopCard.js.map +1 -0
  367. package/mobile/lib/components/RkoTariffCardsTable/renderHiddenCommission.d.ts +9 -0
  368. package/mobile/lib/components/RkoTariffCardsTable/renderHiddenCommission.js +6 -0
  369. package/mobile/lib/components/RkoTariffCardsTable/renderHiddenCommission.js.map +1 -0
  370. package/mobile/lib/components/RkoTariffCardsTable/renderMobileCard.d.ts +12 -0
  371. package/mobile/lib/components/RkoTariffCardsTable/renderMobileCard.js +19 -0
  372. package/mobile/lib/components/RkoTariffCardsTable/renderMobileCard.js.map +1 -0
  373. package/mobile/lib/components/RkoTariffCardsTable/renderRecommendedLabel.d.ts +1 -0
  374. package/mobile/lib/components/RkoTariffCardsTable/renderRecommendedLabel.js +6 -0
  375. package/mobile/lib/components/RkoTariffCardsTable/renderRecommendedLabel.js.map +1 -0
  376. package/mobile/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.d.ts +6 -0
  377. package/mobile/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +8 -0
  378. package/mobile/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -0
  379. package/mobile/lib/model/FormTypeFieldDef.d.ts +1 -1
  380. package/mobile/lib/ui-kit/Button/ButtonTitle.d.ts +5 -1
  381. package/mobile/lib/ui-kit/Button/ButtonTitle.js +1 -1
  382. package/mobile/lib/ui-kit/Button/ButtonTitle.js.map +1 -1
  383. package/mobile/lib/ui-kit/Calculator/CalculatorStyle.d.ts +2 -0
  384. package/mobile/lib/ui-kit/Calculator/CalculatorStyle.js +2 -0
  385. package/mobile/lib/ui-kit/Calculator/CalculatorStyle.js.map +1 -1
  386. package/mobile/lib/ui-kit/Calculator/renderCountInput.d.ts +2 -0
  387. package/mobile/lib/ui-kit/Calculator/renderCountInput.js +5 -0
  388. package/mobile/lib/ui-kit/Calculator/renderCountInput.js.map +1 -0
  389. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.d.ts +1 -0
  390. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.js +4 -1
  391. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.js.map +1 -1
  392. package/mobile/lib/ui-kit/Text/Text.d.ts +2 -1
  393. package/mobile/lib/ui-kit/Text/Text.js +1 -1
  394. package/mobile/lib/ui-kit/Text/Text.js.map +1 -1
  395. package/mobile/src/api/getSubmitBody.ts +8 -0
  396. package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +44 -0
  397. package/mobile/src/components/Blocks.ts +4 -0
  398. package/mobile/src/components/CalculatorRko/CalculatorRko.tsx +129 -0
  399. package/mobile/src/components/CalculatorRko/CalculatorRkoContent.ts +96 -0
  400. package/mobile/src/components/CalculatorRko/constants.ts +56 -0
  401. package/mobile/src/components/CalculatorRko/filterByClientType.ts +31 -0
  402. package/mobile/src/components/CalculatorRko/getCalculatedCommission.ts +174 -0
  403. package/mobile/src/components/CalculatorRko/getInitialRkoTariffsParams.ts +17 -0
  404. package/mobile/src/components/CalculatorRko/getRkoCalculatorParams.ts +47 -0
  405. package/mobile/src/components/CalculatorRko/markBestTariff.ts +16 -0
  406. package/mobile/src/components/CalculatorRko/mergeTariffData.ts +37 -0
  407. package/mobile/src/components/CalculatorRko/renderCommissionSum.tsx +9 -0
  408. package/mobile/src/components/RkoTariffCardsTable/RkoTariffCard.tsx +93 -0
  409. package/mobile/src/components/RkoTariffCardsTable/RkoTariffCardsTable.tsx +45 -0
  410. package/mobile/src/components/RkoTariffCardsTable/RkoTariffCardsTableContent.ts +18 -0
  411. package/mobile/src/components/RkoTariffCardsTable/constants.ts +20 -0
  412. package/mobile/src/components/RkoTariffCardsTable/getCommissionTypes.ts +10 -0
  413. package/mobile/src/components/RkoTariffCardsTable/renderDesktopCard.tsx +7 -0
  414. package/mobile/src/components/RkoTariffCardsTable/renderHiddenCommission.tsx +23 -0
  415. package/mobile/src/components/RkoTariffCardsTable/renderMobileCard.tsx +61 -0
  416. package/mobile/src/components/RkoTariffCardsTable/renderRecommendedLabel.tsx +9 -0
  417. package/mobile/src/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.tsx +25 -0
  418. package/mobile/src/model/FormTypeFieldDef.ts +2 -1
  419. package/mobile/src/ui-kit/Button/ButtonTitle.tsx +7 -2
  420. package/mobile/src/ui-kit/Calculator/CalculatorStyle.tsx +2 -0
  421. package/mobile/src/ui-kit/Calculator/renderCountInput.tsx +13 -0
  422. package/mobile/src/ui-kit/Foldable/DefaultFoldButton.tsx +19 -13
  423. package/mobile/src/ui-kit/Text/Text.tsx +4 -3
  424. package/package.json +2 -2
  425. package/src/api/getSubmitBody.ts +8 -0
  426. package/src/components/ApplicationForm/ApplicationForm.example.json +44 -0
  427. package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +26 -0
  428. package/src/components/Blocks.mobile.ts +4 -0
  429. package/src/components/Blocks.ts +4 -0
  430. package/src/components/CalculatorRko/CalculatorRko.fixture.mobile.tsx +28 -0
  431. package/src/components/CalculatorRko/CalculatorRko.fixture.tsx +28 -0
  432. package/src/components/CalculatorRko/CalculatorRko.tsx +129 -0
  433. package/src/components/CalculatorRko/CalculatorRkoContent.ts +96 -0
  434. package/src/components/CalculatorRko/constants.ts +56 -0
  435. package/src/components/CalculatorRko/filterByClientType.ts +31 -0
  436. package/src/components/CalculatorRko/getCalculatedCommission.ts +174 -0
  437. package/src/components/CalculatorRko/getInitialRkoTariffsParams.ts +17 -0
  438. package/src/components/CalculatorRko/getRkoCalculatorParams.ts +47 -0
  439. package/src/components/CalculatorRko/markBestTariff.ts +16 -0
  440. package/src/components/CalculatorRko/mergeTariffData.ts +37 -0
  441. package/src/components/CalculatorRko/renderCommissionSum.tsx +9 -0
  442. package/src/components/RkoTariffCardsTable/RkoTariffCard.tsx +93 -0
  443. package/src/components/RkoTariffCardsTable/RkoTariffCardsTable.fixture.mobile.tsx +60 -0
  444. package/src/components/RkoTariffCardsTable/RkoTariffCardsTable.fixture.tsx +60 -0
  445. package/src/components/RkoTariffCardsTable/RkoTariffCardsTable.tsx +45 -0
  446. package/src/components/RkoTariffCardsTable/RkoTariffCardsTableContent.ts +18 -0
  447. package/src/components/RkoTariffCardsTable/constants.ts +20 -0
  448. package/src/components/RkoTariffCardsTable/getCommissionTypes.ts +10 -0
  449. package/src/components/RkoTariffCardsTable/renderDesktopCard.tsx +7 -0
  450. package/src/components/RkoTariffCardsTable/renderHiddenCommission.tsx +23 -0
  451. package/src/components/RkoTariffCardsTable/renderMobileCard.tsx +61 -0
  452. package/src/components/RkoTariffCardsTable/renderRecommendedLabel.tsx +9 -0
  453. package/src/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.tsx +25 -0
  454. package/src/model/FormTypeFieldDef.ts +2 -1
  455. package/src/ui-kit/Button/ButtonTitle.tsx +7 -2
  456. package/src/ui-kit/Calculator/CalculatorStyle.tsx +2 -0
  457. package/src/ui-kit/Calculator/renderCountInput.tsx +13 -0
  458. package/src/ui-kit/Foldable/DefaultFoldButton.tsx +19 -13
  459. package/src/ui-kit/Text/Text.tsx +4 -3
  460. package/tailwind.config.cjs +7 -1
@@ -13,6 +13,7 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
13
13
  innDadata?: string | undefined;
14
14
  secondaryPhoneNumber?: string | undefined;
15
15
  consentDataProcessing?: string | undefined;
16
+ partnerComments: string;
16
17
  region: string | undefined;
17
18
  partner: string | undefined;
18
19
  partnerId: string | undefined;
@@ -23,9 +24,10 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
23
24
  innDadata?: string | undefined;
24
25
  secondaryPhoneNumber?: string | undefined;
25
26
  consentDataProcessing?: string | undefined;
26
- region?: undefined;
27
- partner?: undefined;
28
- partnerId?: undefined;
27
+ partnerComments?: undefined;
28
+ region: string | undefined;
29
+ partner: string | undefined;
30
+ partnerId: string | undefined;
29
31
  typeForm: string;
30
32
  phone: string;
31
33
  } | {
@@ -33,69 +35,77 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
33
35
  innDadata?: string | undefined;
34
36
  secondaryPhoneNumber?: string | undefined;
35
37
  consentDataProcessing?: string | undefined;
36
- region: string | undefined;
37
- partner: string | undefined;
38
- partnerId: string | undefined;
39
- typeForm?: string | undefined;
38
+ partnerComments: string;
39
+ region?: undefined;
40
+ partner?: undefined;
41
+ partnerId?: undefined;
42
+ typeForm: string;
40
43
  phone: string;
41
44
  } | {
42
45
  inn?: string | undefined;
43
46
  innDadata?: string | undefined;
44
47
  secondaryPhoneNumber?: string | undefined;
45
48
  consentDataProcessing?: string | undefined;
49
+ partnerComments?: undefined;
46
50
  region?: undefined;
47
51
  partner?: undefined;
48
52
  partnerId?: undefined;
49
- typeForm?: string | undefined;
53
+ typeForm: string;
50
54
  phone: string;
51
55
  } | {
52
56
  inn?: string | undefined;
53
57
  innDadata?: string | undefined;
54
58
  secondaryPhoneNumber?: string | undefined;
55
59
  consentDataProcessing?: string | undefined;
60
+ partnerComments: string;
56
61
  region: string | undefined;
57
62
  partner: string | undefined;
58
63
  partnerId: string | undefined;
59
- typeForm: string;
60
- addressBranch: string | undefined;
61
- bankEmpolee: JSONScalar | JSONRecord | null;
62
- applicationDate: JSONScalar | JSONRecord | null;
64
+ typeForm?: string | undefined;
63
65
  phone: string;
64
66
  } | {
65
67
  inn?: string | undefined;
66
68
  innDadata?: string | undefined;
67
69
  secondaryPhoneNumber?: string | undefined;
68
70
  consentDataProcessing?: string | undefined;
69
- region?: undefined;
70
- partner?: undefined;
71
- partnerId?: undefined;
72
- typeForm: string;
73
- addressBranch: string | undefined;
74
- bankEmpolee: JSONScalar | JSONRecord | null;
75
- applicationDate: JSONScalar | JSONRecord | null;
71
+ partnerComments?: undefined;
72
+ region: string | undefined;
73
+ partner: string | undefined;
74
+ partnerId: string | undefined;
75
+ typeForm?: string | undefined;
76
76
  phone: string;
77
77
  } | {
78
78
  inn?: string | undefined;
79
79
  innDadata?: string | undefined;
80
80
  secondaryPhoneNumber?: string | undefined;
81
81
  consentDataProcessing?: string | undefined;
82
- region: string | undefined;
83
- partner: string | undefined;
84
- partnerId: string | undefined;
82
+ partnerComments: string;
83
+ region?: undefined;
84
+ partner?: undefined;
85
+ partnerId?: undefined;
85
86
  typeForm?: string | undefined;
86
- addressBranch: string | undefined;
87
- bankEmpolee: JSONScalar | JSONRecord | null;
88
- applicationDate: JSONScalar | JSONRecord | null;
89
87
  phone: string;
90
88
  } | {
91
89
  inn?: string | undefined;
92
90
  innDadata?: string | undefined;
93
91
  secondaryPhoneNumber?: string | undefined;
94
92
  consentDataProcessing?: string | undefined;
93
+ partnerComments?: undefined;
95
94
  region?: undefined;
96
95
  partner?: undefined;
97
96
  partnerId?: undefined;
98
97
  typeForm?: string | undefined;
98
+ phone: string;
99
+ } | {
100
+ inn?: string | undefined;
101
+ innDadata?: string | undefined;
102
+ secondaryPhoneNumber?: string | undefined;
103
+ consentDataProcessing?: string | undefined;
104
+ partnerComments: string;
105
+ region: string | undefined;
106
+ partner: string | undefined;
107
+ partnerId: string | undefined;
108
+ typeForm: string;
99
109
  addressBranch: string | undefined;
100
110
  bankEmpolee: JSONScalar | JSONRecord | null;
101
111
  applicationDate: JSONScalar | JSONRecord | null;
@@ -103,8 +113,9 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
103
113
  } | {
104
114
  inn?: string | undefined;
105
115
  innDadata?: string | undefined;
106
- secondaryPhoneNumber: string;
116
+ secondaryPhoneNumber?: string | undefined;
107
117
  consentDataProcessing?: string | undefined;
118
+ partnerComments?: undefined;
108
119
  region: string | undefined;
109
120
  partner: string | undefined;
110
121
  partnerId: string | undefined;
@@ -116,8 +127,9 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
116
127
  } | {
117
128
  inn?: string | undefined;
118
129
  innDadata?: string | undefined;
119
- secondaryPhoneNumber: string;
130
+ secondaryPhoneNumber?: string | undefined;
120
131
  consentDataProcessing?: string | undefined;
132
+ partnerComments: string;
121
133
  region?: undefined;
122
134
  partner?: undefined;
123
135
  partnerId?: undefined;
@@ -129,12 +141,13 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
129
141
  } | {
130
142
  inn?: string | undefined;
131
143
  innDadata?: string | undefined;
132
- secondaryPhoneNumber: string;
144
+ secondaryPhoneNumber?: string | undefined;
133
145
  consentDataProcessing?: string | undefined;
134
- region: string | undefined;
135
- partner: string | undefined;
136
- partnerId: string | undefined;
137
- typeForm?: string | undefined;
146
+ partnerComments?: undefined;
147
+ region?: undefined;
148
+ partner?: undefined;
149
+ partnerId?: undefined;
150
+ typeForm: string;
138
151
  addressBranch: string | undefined;
139
152
  bankEmpolee: JSONScalar | JSONRecord | null;
140
153
  applicationDate: JSONScalar | JSONRecord | null;
@@ -142,11 +155,12 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
142
155
  } | {
143
156
  inn?: string | undefined;
144
157
  innDadata?: string | undefined;
145
- secondaryPhoneNumber: string;
158
+ secondaryPhoneNumber?: string | undefined;
146
159
  consentDataProcessing?: string | undefined;
147
- region?: undefined;
148
- partner?: undefined;
149
- partnerId?: undefined;
160
+ partnerComments: string;
161
+ region: string | undefined;
162
+ partner: string | undefined;
163
+ partnerId: string | undefined;
150
164
  typeForm?: string | undefined;
151
165
  addressBranch: string | undefined;
152
166
  bankEmpolee: JSONScalar | JSONRecord | null;
@@ -157,50 +171,49 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
157
171
  innDadata?: string | undefined;
158
172
  secondaryPhoneNumber?: string | undefined;
159
173
  consentDataProcessing?: string | undefined;
174
+ partnerComments?: undefined;
160
175
  region: string | undefined;
161
176
  partner: string | undefined;
162
177
  partnerId: string | undefined;
163
- typeForm: string;
164
- birthday: JSONScalar | JSONRecord | null;
178
+ typeForm?: string | undefined;
179
+ addressBranch: string | undefined;
180
+ bankEmpolee: JSONScalar | JSONRecord | null;
181
+ applicationDate: JSONScalar | JSONRecord | null;
165
182
  phone: string;
166
183
  } | {
167
184
  inn?: string | undefined;
168
185
  innDadata?: string | undefined;
169
186
  secondaryPhoneNumber?: string | undefined;
170
187
  consentDataProcessing?: string | undefined;
188
+ partnerComments: string;
171
189
  region?: undefined;
172
190
  partner?: undefined;
173
191
  partnerId?: undefined;
174
- typeForm: string;
175
- birthday: JSONScalar | JSONRecord | null;
176
- phone: string;
177
- } | {
178
- inn?: string | undefined;
179
- innDadata?: string | undefined;
180
- secondaryPhoneNumber?: string | undefined;
181
- consentDataProcessing?: string | undefined;
182
- region: string | undefined;
183
- partner: string | undefined;
184
- partnerId: string | undefined;
185
192
  typeForm?: string | undefined;
186
- birthday: JSONScalar | JSONRecord | null;
193
+ addressBranch: string | undefined;
194
+ bankEmpolee: JSONScalar | JSONRecord | null;
195
+ applicationDate: JSONScalar | JSONRecord | null;
187
196
  phone: string;
188
197
  } | {
189
198
  inn?: string | undefined;
190
199
  innDadata?: string | undefined;
191
200
  secondaryPhoneNumber?: string | undefined;
192
201
  consentDataProcessing?: string | undefined;
202
+ partnerComments?: undefined;
193
203
  region?: undefined;
194
204
  partner?: undefined;
195
205
  partnerId?: undefined;
196
206
  typeForm?: string | undefined;
197
- birthday: JSONScalar | JSONRecord | null;
207
+ addressBranch: string | undefined;
208
+ bankEmpolee: JSONScalar | JSONRecord | null;
209
+ applicationDate: JSONScalar | JSONRecord | null;
198
210
  phone: string;
199
211
  } | {
200
212
  inn?: string | undefined;
201
213
  innDadata?: string | undefined;
202
- secondaryPhoneNumber?: string | undefined;
214
+ secondaryPhoneNumber: string;
203
215
  consentDataProcessing?: string | undefined;
216
+ partnerComments: string;
204
217
  region: string | undefined;
205
218
  partner: string | undefined;
206
219
  partnerId: string | undefined;
@@ -208,97 +221,97 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
208
221
  addressBranch: string | undefined;
209
222
  bankEmpolee: JSONScalar | JSONRecord | null;
210
223
  applicationDate: JSONScalar | JSONRecord | null;
211
- birthday: JSONScalar | JSONRecord | null;
212
224
  phone: string;
213
225
  } | {
214
226
  inn?: string | undefined;
215
227
  innDadata?: string | undefined;
216
- secondaryPhoneNumber?: string | undefined;
228
+ secondaryPhoneNumber: string;
217
229
  consentDataProcessing?: string | undefined;
218
- region?: undefined;
219
- partner?: undefined;
220
- partnerId?: undefined;
230
+ partnerComments?: undefined;
231
+ region: string | undefined;
232
+ partner: string | undefined;
233
+ partnerId: string | undefined;
221
234
  typeForm: string;
222
235
  addressBranch: string | undefined;
223
236
  bankEmpolee: JSONScalar | JSONRecord | null;
224
237
  applicationDate: JSONScalar | JSONRecord | null;
225
- birthday: JSONScalar | JSONRecord | null;
226
238
  phone: string;
227
239
  } | {
228
240
  inn?: string | undefined;
229
241
  innDadata?: string | undefined;
230
- secondaryPhoneNumber?: string | undefined;
242
+ secondaryPhoneNumber: string;
231
243
  consentDataProcessing?: string | undefined;
232
- region: string | undefined;
233
- partner: string | undefined;
234
- partnerId: string | undefined;
235
- typeForm?: string | undefined;
244
+ partnerComments: string;
245
+ region?: undefined;
246
+ partner?: undefined;
247
+ partnerId?: undefined;
248
+ typeForm: string;
236
249
  addressBranch: string | undefined;
237
250
  bankEmpolee: JSONScalar | JSONRecord | null;
238
251
  applicationDate: JSONScalar | JSONRecord | null;
239
- birthday: JSONScalar | JSONRecord | null;
240
252
  phone: string;
241
253
  } | {
242
254
  inn?: string | undefined;
243
255
  innDadata?: string | undefined;
244
- secondaryPhoneNumber?: string | undefined;
256
+ secondaryPhoneNumber: string;
245
257
  consentDataProcessing?: string | undefined;
258
+ partnerComments?: undefined;
246
259
  region?: undefined;
247
260
  partner?: undefined;
248
261
  partnerId?: undefined;
249
- typeForm?: string | undefined;
262
+ typeForm: string;
250
263
  addressBranch: string | undefined;
251
264
  bankEmpolee: JSONScalar | JSONRecord | null;
252
265
  applicationDate: JSONScalar | JSONRecord | null;
253
- birthday: JSONScalar | JSONRecord | null;
254
266
  phone: string;
255
267
  } | {
256
268
  inn?: string | undefined;
257
269
  innDadata?: string | undefined;
258
270
  secondaryPhoneNumber: string;
259
271
  consentDataProcessing?: string | undefined;
272
+ partnerComments: string;
260
273
  region: string | undefined;
261
274
  partner: string | undefined;
262
275
  partnerId: string | undefined;
263
- typeForm: string;
276
+ typeForm?: string | undefined;
264
277
  addressBranch: string | undefined;
265
278
  bankEmpolee: JSONScalar | JSONRecord | null;
266
279
  applicationDate: JSONScalar | JSONRecord | null;
267
- birthday: JSONScalar | JSONRecord | null;
268
280
  phone: string;
269
281
  } | {
270
282
  inn?: string | undefined;
271
283
  innDadata?: string | undefined;
272
284
  secondaryPhoneNumber: string;
273
285
  consentDataProcessing?: string | undefined;
274
- region?: undefined;
275
- partner?: undefined;
276
- partnerId?: undefined;
277
- typeForm: string;
286
+ partnerComments?: undefined;
287
+ region: string | undefined;
288
+ partner: string | undefined;
289
+ partnerId: string | undefined;
290
+ typeForm?: string | undefined;
278
291
  addressBranch: string | undefined;
279
292
  bankEmpolee: JSONScalar | JSONRecord | null;
280
293
  applicationDate: JSONScalar | JSONRecord | null;
281
- birthday: JSONScalar | JSONRecord | null;
282
294
  phone: string;
283
295
  } | {
284
296
  inn?: string | undefined;
285
297
  innDadata?: string | undefined;
286
298
  secondaryPhoneNumber: string;
287
299
  consentDataProcessing?: string | undefined;
288
- region: string | undefined;
289
- partner: string | undefined;
290
- partnerId: string | undefined;
300
+ partnerComments: string;
301
+ region?: undefined;
302
+ partner?: undefined;
303
+ partnerId?: undefined;
291
304
  typeForm?: string | undefined;
292
305
  addressBranch: string | undefined;
293
306
  bankEmpolee: JSONScalar | JSONRecord | null;
294
307
  applicationDate: JSONScalar | JSONRecord | null;
295
- birthday: JSONScalar | JSONRecord | null;
296
308
  phone: string;
297
309
  } | {
298
310
  inn?: string | undefined;
299
311
  innDadata?: string | undefined;
300
312
  secondaryPhoneNumber: string;
301
313
  consentDataProcessing?: string | undefined;
314
+ partnerComments?: undefined;
302
315
  region?: undefined;
303
316
  partner?: undefined;
304
317
  partnerId?: undefined;
@@ -306,6 +319,17 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
306
319
  addressBranch: string | undefined;
307
320
  bankEmpolee: JSONScalar | JSONRecord | null;
308
321
  applicationDate: JSONScalar | JSONRecord | null;
322
+ phone: string;
323
+ } | {
324
+ inn?: string | undefined;
325
+ innDadata?: string | undefined;
326
+ secondaryPhoneNumber?: string | undefined;
327
+ consentDataProcessing?: string | undefined;
328
+ partnerComments: string;
329
+ region: string | undefined;
330
+ partner: string | undefined;
331
+ partnerId: string | undefined;
332
+ typeForm: string;
309
333
  birthday: JSONScalar | JSONRecord | null;
310
334
  phone: string;
311
335
  } | {
@@ -313,98 +337,106 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
313
337
  innDadata?: string | undefined;
314
338
  secondaryPhoneNumber?: string | undefined;
315
339
  consentDataProcessing?: string | undefined;
340
+ partnerComments?: undefined;
316
341
  region: string | undefined;
317
342
  partner: string | undefined;
318
343
  partnerId: string | undefined;
319
344
  typeForm: string;
345
+ birthday: JSONScalar | JSONRecord | null;
320
346
  phone: string;
321
347
  } | {
322
348
  inn?: string | undefined;
323
349
  innDadata?: string | undefined;
324
350
  secondaryPhoneNumber?: string | undefined;
325
351
  consentDataProcessing?: string | undefined;
352
+ partnerComments: string;
326
353
  region?: undefined;
327
354
  partner?: undefined;
328
355
  partnerId?: undefined;
329
356
  typeForm: string;
357
+ birthday: JSONScalar | JSONRecord | null;
330
358
  phone: string;
331
359
  } | {
332
360
  inn?: string | undefined;
333
361
  innDadata?: string | undefined;
334
362
  secondaryPhoneNumber?: string | undefined;
335
363
  consentDataProcessing?: string | undefined;
336
- region: string | undefined;
337
- partner: string | undefined;
338
- partnerId: string | undefined;
339
- typeForm?: string | undefined;
364
+ partnerComments?: undefined;
365
+ region?: undefined;
366
+ partner?: undefined;
367
+ partnerId?: undefined;
368
+ typeForm: string;
369
+ birthday: JSONScalar | JSONRecord | null;
340
370
  phone: string;
341
371
  } | {
342
372
  inn?: string | undefined;
343
373
  innDadata?: string | undefined;
344
374
  secondaryPhoneNumber?: string | undefined;
345
375
  consentDataProcessing?: string | undefined;
346
- region?: undefined;
347
- partner?: undefined;
348
- partnerId?: undefined;
376
+ partnerComments: string;
377
+ region: string | undefined;
378
+ partner: string | undefined;
379
+ partnerId: string | undefined;
349
380
  typeForm?: string | undefined;
381
+ birthday: JSONScalar | JSONRecord | null;
350
382
  phone: string;
351
383
  } | {
352
384
  inn?: string | undefined;
353
385
  innDadata?: string | undefined;
354
386
  secondaryPhoneNumber?: string | undefined;
355
387
  consentDataProcessing?: string | undefined;
388
+ partnerComments?: undefined;
356
389
  region: string | undefined;
357
390
  partner: string | undefined;
358
391
  partnerId: string | undefined;
359
- typeForm: string;
360
- addressBranch: string | undefined;
361
- bankEmpolee: JSONScalar | JSONRecord | null;
362
- applicationDate: JSONScalar | JSONRecord | null;
392
+ typeForm?: string | undefined;
393
+ birthday: JSONScalar | JSONRecord | null;
363
394
  phone: string;
364
395
  } | {
365
396
  inn?: string | undefined;
366
397
  innDadata?: string | undefined;
367
398
  secondaryPhoneNumber?: string | undefined;
368
399
  consentDataProcessing?: string | undefined;
400
+ partnerComments: string;
369
401
  region?: undefined;
370
402
  partner?: undefined;
371
403
  partnerId?: undefined;
372
- typeForm: string;
373
- addressBranch: string | undefined;
374
- bankEmpolee: JSONScalar | JSONRecord | null;
375
- applicationDate: JSONScalar | JSONRecord | null;
404
+ typeForm?: string | undefined;
405
+ birthday: JSONScalar | JSONRecord | null;
376
406
  phone: string;
377
407
  } | {
378
408
  inn?: string | undefined;
379
409
  innDadata?: string | undefined;
380
410
  secondaryPhoneNumber?: string | undefined;
381
411
  consentDataProcessing?: string | undefined;
382
- region: string | undefined;
383
- partner: string | undefined;
384
- partnerId: string | undefined;
412
+ partnerComments?: undefined;
413
+ region?: undefined;
414
+ partner?: undefined;
415
+ partnerId?: undefined;
385
416
  typeForm?: string | undefined;
386
- addressBranch: string | undefined;
387
- bankEmpolee: JSONScalar | JSONRecord | null;
388
- applicationDate: JSONScalar | JSONRecord | null;
417
+ birthday: JSONScalar | JSONRecord | null;
389
418
  phone: string;
390
419
  } | {
391
420
  inn?: string | undefined;
392
421
  innDadata?: string | undefined;
393
422
  secondaryPhoneNumber?: string | undefined;
394
423
  consentDataProcessing?: string | undefined;
395
- region?: undefined;
396
- partner?: undefined;
397
- partnerId?: undefined;
398
- typeForm?: string | undefined;
424
+ partnerComments: string;
425
+ region: string | undefined;
426
+ partner: string | undefined;
427
+ partnerId: string | undefined;
428
+ typeForm: string;
399
429
  addressBranch: string | undefined;
400
430
  bankEmpolee: JSONScalar | JSONRecord | null;
401
431
  applicationDate: JSONScalar | JSONRecord | null;
432
+ birthday: JSONScalar | JSONRecord | null;
402
433
  phone: string;
403
434
  } | {
404
435
  inn?: string | undefined;
405
436
  innDadata?: string | undefined;
406
- secondaryPhoneNumber: string;
437
+ secondaryPhoneNumber?: string | undefined;
407
438
  consentDataProcessing?: string | undefined;
439
+ partnerComments?: undefined;
408
440
  region: string | undefined;
409
441
  partner: string | undefined;
410
442
  partnerId: string | undefined;
@@ -412,12 +444,14 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
412
444
  addressBranch: string | undefined;
413
445
  bankEmpolee: JSONScalar | JSONRecord | null;
414
446
  applicationDate: JSONScalar | JSONRecord | null;
447
+ birthday: JSONScalar | JSONRecord | null;
415
448
  phone: string;
416
449
  } | {
417
450
  inn?: string | undefined;
418
451
  innDadata?: string | undefined;
419
- secondaryPhoneNumber: string;
452
+ secondaryPhoneNumber?: string | undefined;
420
453
  consentDataProcessing?: string | undefined;
454
+ partnerComments: string;
421
455
  region?: undefined;
422
456
  partner?: undefined;
423
457
  partnerId?: undefined;
@@ -425,42 +459,51 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
425
459
  addressBranch: string | undefined;
426
460
  bankEmpolee: JSONScalar | JSONRecord | null;
427
461
  applicationDate: JSONScalar | JSONRecord | null;
462
+ birthday: JSONScalar | JSONRecord | null;
428
463
  phone: string;
429
464
  } | {
430
465
  inn?: string | undefined;
431
466
  innDadata?: string | undefined;
432
- secondaryPhoneNumber: string;
467
+ secondaryPhoneNumber?: string | undefined;
433
468
  consentDataProcessing?: string | undefined;
434
- region: string | undefined;
435
- partner: string | undefined;
436
- partnerId: string | undefined;
437
- typeForm?: string | undefined;
469
+ partnerComments?: undefined;
470
+ region?: undefined;
471
+ partner?: undefined;
472
+ partnerId?: undefined;
473
+ typeForm: string;
438
474
  addressBranch: string | undefined;
439
475
  bankEmpolee: JSONScalar | JSONRecord | null;
440
476
  applicationDate: JSONScalar | JSONRecord | null;
477
+ birthday: JSONScalar | JSONRecord | null;
441
478
  phone: string;
442
479
  } | {
443
480
  inn?: string | undefined;
444
481
  innDadata?: string | undefined;
445
- secondaryPhoneNumber: string;
482
+ secondaryPhoneNumber?: string | undefined;
446
483
  consentDataProcessing?: string | undefined;
447
- region?: undefined;
448
- partner?: undefined;
449
- partnerId?: undefined;
484
+ partnerComments: string;
485
+ region: string | undefined;
486
+ partner: string | undefined;
487
+ partnerId: string | undefined;
450
488
  typeForm?: string | undefined;
451
489
  addressBranch: string | undefined;
452
490
  bankEmpolee: JSONScalar | JSONRecord | null;
453
491
  applicationDate: JSONScalar | JSONRecord | null;
492
+ birthday: JSONScalar | JSONRecord | null;
454
493
  phone: string;
455
494
  } | {
456
495
  inn?: string | undefined;
457
496
  innDadata?: string | undefined;
458
497
  secondaryPhoneNumber?: string | undefined;
459
498
  consentDataProcessing?: string | undefined;
499
+ partnerComments?: undefined;
460
500
  region: string | undefined;
461
501
  partner: string | undefined;
462
502
  partnerId: string | undefined;
463
- typeForm: string;
503
+ typeForm?: string | undefined;
504
+ addressBranch: string | undefined;
505
+ bankEmpolee: JSONScalar | JSONRecord | null;
506
+ applicationDate: JSONScalar | JSONRecord | null;
464
507
  birthday: JSONScalar | JSONRecord | null;
465
508
  phone: string;
466
509
  } | {
@@ -468,21 +511,14 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
468
511
  innDadata?: string | undefined;
469
512
  secondaryPhoneNumber?: string | undefined;
470
513
  consentDataProcessing?: string | undefined;
514
+ partnerComments: string;
471
515
  region?: undefined;
472
516
  partner?: undefined;
473
517
  partnerId?: undefined;
474
- typeForm: string;
475
- birthday: JSONScalar | JSONRecord | null;
476
- phone: string;
477
- } | {
478
- inn?: string | undefined;
479
- innDadata?: string | undefined;
480
- secondaryPhoneNumber?: string | undefined;
481
- consentDataProcessing?: string | undefined;
482
- region: string | undefined;
483
- partner: string | undefined;
484
- partnerId: string | undefined;
485
518
  typeForm?: string | undefined;
519
+ addressBranch: string | undefined;
520
+ bankEmpolee: JSONScalar | JSONRecord | null;
521
+ applicationDate: JSONScalar | JSONRecord | null;
486
522
  birthday: JSONScalar | JSONRecord | null;
487
523
  phone: string;
488
524
  } | {
@@ -490,17 +526,22 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
490
526
  innDadata?: string | undefined;
491
527
  secondaryPhoneNumber?: string | undefined;
492
528
  consentDataProcessing?: string | undefined;
529
+ partnerComments?: undefined;
493
530
  region?: undefined;
494
531
  partner?: undefined;
495
532
  partnerId?: undefined;
496
533
  typeForm?: string | undefined;
534
+ addressBranch: string | undefined;
535
+ bankEmpolee: JSONScalar | JSONRecord | null;
536
+ applicationDate: JSONScalar | JSONRecord | null;
497
537
  birthday: JSONScalar | JSONRecord | null;
498
538
  phone: string;
499
539
  } | {
500
540
  inn?: string | undefined;
501
541
  innDadata?: string | undefined;
502
- secondaryPhoneNumber?: string | undefined;
542
+ secondaryPhoneNumber: string;
503
543
  consentDataProcessing?: string | undefined;
544
+ partnerComments: string;
504
545
  region: string | undefined;
505
546
  partner: string | undefined;
506
547
  partnerId: string | undefined;
@@ -513,11 +554,12 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
513
554
  } | {
514
555
  inn?: string | undefined;
515
556
  innDadata?: string | undefined;
516
- secondaryPhoneNumber?: string | undefined;
557
+ secondaryPhoneNumber: string;
517
558
  consentDataProcessing?: string | undefined;
518
- region?: undefined;
519
- partner?: undefined;
520
- partnerId?: undefined;
559
+ partnerComments?: undefined;
560
+ region: string | undefined;
561
+ partner: string | undefined;
562
+ partnerId: string | undefined;
521
563
  typeForm: string;
522
564
  addressBranch: string | undefined;
523
565
  bankEmpolee: JSONScalar | JSONRecord | null;
@@ -527,12 +569,13 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
527
569
  } | {
528
570
  inn?: string | undefined;
529
571
  innDadata?: string | undefined;
530
- secondaryPhoneNumber?: string | undefined;
572
+ secondaryPhoneNumber: string;
531
573
  consentDataProcessing?: string | undefined;
532
- region: string | undefined;
533
- partner: string | undefined;
534
- partnerId: string | undefined;
535
- typeForm?: string | undefined;
574
+ partnerComments: string;
575
+ region?: undefined;
576
+ partner?: undefined;
577
+ partnerId?: undefined;
578
+ typeForm: string;
536
579
  addressBranch: string | undefined;
537
580
  bankEmpolee: JSONScalar | JSONRecord | null;
538
581
  applicationDate: JSONScalar | JSONRecord | null;
@@ -541,12 +584,13 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
541
584
  } | {
542
585
  inn?: string | undefined;
543
586
  innDadata?: string | undefined;
544
- secondaryPhoneNumber?: string | undefined;
587
+ secondaryPhoneNumber: string;
545
588
  consentDataProcessing?: string | undefined;
589
+ partnerComments?: undefined;
546
590
  region?: undefined;
547
591
  partner?: undefined;
548
592
  partnerId?: undefined;
549
- typeForm?: string | undefined;
593
+ typeForm: string;
550
594
  addressBranch: string | undefined;
551
595
  bankEmpolee: JSONScalar | JSONRecord | null;
552
596
  applicationDate: JSONScalar | JSONRecord | null;
@@ -557,10 +601,11 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
557
601
  innDadata?: string | undefined;
558
602
  secondaryPhoneNumber: string;
559
603
  consentDataProcessing?: string | undefined;
604
+ partnerComments: string;
560
605
  region: string | undefined;
561
606
  partner: string | undefined;
562
607
  partnerId: string | undefined;
563
- typeForm: string;
608
+ typeForm?: string | undefined;
564
609
  addressBranch: string | undefined;
565
610
  bankEmpolee: JSONScalar | JSONRecord | null;
566
611
  applicationDate: JSONScalar | JSONRecord | null;
@@ -571,10 +616,11 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
571
616
  innDadata?: string | undefined;
572
617
  secondaryPhoneNumber: string;
573
618
  consentDataProcessing?: string | undefined;
574
- region?: undefined;
575
- partner?: undefined;
576
- partnerId?: undefined;
577
- typeForm: string;
619
+ partnerComments?: undefined;
620
+ region: string | undefined;
621
+ partner: string | undefined;
622
+ partnerId: string | undefined;
623
+ typeForm?: string | undefined;
578
624
  addressBranch: string | undefined;
579
625
  bankEmpolee: JSONScalar | JSONRecord | null;
580
626
  applicationDate: JSONScalar | JSONRecord | null;
@@ -585,9 +631,10 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
585
631
  innDadata?: string | undefined;
586
632
  secondaryPhoneNumber: string;
587
633
  consentDataProcessing?: string | undefined;
588
- region: string | undefined;
589
- partner: string | undefined;
590
- partnerId: string | undefined;
634
+ partnerComments: string;
635
+ region?: undefined;
636
+ partner?: undefined;
637
+ partnerId?: undefined;
591
638
  typeForm?: string | undefined;
592
639
  addressBranch: string | undefined;
593
640
  bankEmpolee: JSONScalar | JSONRecord | null;
@@ -599,6 +646,7 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
599
646
  innDadata?: string | undefined;
600
647
  secondaryPhoneNumber: string;
601
648
  consentDataProcessing?: string | undefined;
649
+ partnerComments?: undefined;
602
650
  region?: undefined;
603
651
  partner?: undefined;
604
652
  partnerId?: undefined;
@@ -613,6 +661,7 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
613
661
  innDadata?: string | undefined;
614
662
  secondaryPhoneNumber?: string | undefined;
615
663
  consentDataProcessing?: string | undefined;
664
+ partnerComments: string;
616
665
  region: string | undefined;
617
666
  partner: string | undefined;
618
667
  partnerId: string | undefined;
@@ -623,9 +672,10 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
623
672
  innDadata?: string | undefined;
624
673
  secondaryPhoneNumber?: string | undefined;
625
674
  consentDataProcessing?: string | undefined;
626
- region?: undefined;
627
- partner?: undefined;
628
- partnerId?: undefined;
675
+ partnerComments?: undefined;
676
+ region: string | undefined;
677
+ partner: string | undefined;
678
+ partnerId: string | undefined;
629
679
  typeForm: string;
630
680
  phone: string;
631
681
  } | {
@@ -633,69 +683,77 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
633
683
  innDadata?: string | undefined;
634
684
  secondaryPhoneNumber?: string | undefined;
635
685
  consentDataProcessing?: string | undefined;
636
- region: string | undefined;
637
- partner: string | undefined;
638
- partnerId: string | undefined;
639
- typeForm?: string | undefined;
686
+ partnerComments: string;
687
+ region?: undefined;
688
+ partner?: undefined;
689
+ partnerId?: undefined;
690
+ typeForm: string;
640
691
  phone: string;
641
692
  } | {
642
693
  inn?: string | undefined;
643
694
  innDadata?: string | undefined;
644
695
  secondaryPhoneNumber?: string | undefined;
645
696
  consentDataProcessing?: string | undefined;
697
+ partnerComments?: undefined;
646
698
  region?: undefined;
647
699
  partner?: undefined;
648
700
  partnerId?: undefined;
649
- typeForm?: string | undefined;
701
+ typeForm: string;
650
702
  phone: string;
651
703
  } | {
652
704
  inn?: string | undefined;
653
705
  innDadata?: string | undefined;
654
706
  secondaryPhoneNumber?: string | undefined;
655
707
  consentDataProcessing?: string | undefined;
708
+ partnerComments: string;
656
709
  region: string | undefined;
657
710
  partner: string | undefined;
658
711
  partnerId: string | undefined;
659
- typeForm: string;
660
- addressBranch: string | undefined;
661
- bankEmpolee: JSONScalar | JSONRecord | null;
662
- applicationDate: JSONScalar | JSONRecord | null;
712
+ typeForm?: string | undefined;
663
713
  phone: string;
664
714
  } | {
665
715
  inn?: string | undefined;
666
716
  innDadata?: string | undefined;
667
717
  secondaryPhoneNumber?: string | undefined;
668
718
  consentDataProcessing?: string | undefined;
669
- region?: undefined;
670
- partner?: undefined;
671
- partnerId?: undefined;
672
- typeForm: string;
673
- addressBranch: string | undefined;
674
- bankEmpolee: JSONScalar | JSONRecord | null;
675
- applicationDate: JSONScalar | JSONRecord | null;
719
+ partnerComments?: undefined;
720
+ region: string | undefined;
721
+ partner: string | undefined;
722
+ partnerId: string | undefined;
723
+ typeForm?: string | undefined;
676
724
  phone: string;
677
725
  } | {
678
726
  inn?: string | undefined;
679
727
  innDadata?: string | undefined;
680
728
  secondaryPhoneNumber?: string | undefined;
681
729
  consentDataProcessing?: string | undefined;
682
- region: string | undefined;
683
- partner: string | undefined;
684
- partnerId: string | undefined;
730
+ partnerComments: string;
731
+ region?: undefined;
732
+ partner?: undefined;
733
+ partnerId?: undefined;
685
734
  typeForm?: string | undefined;
686
- addressBranch: string | undefined;
687
- bankEmpolee: JSONScalar | JSONRecord | null;
688
- applicationDate: JSONScalar | JSONRecord | null;
689
735
  phone: string;
690
736
  } | {
691
737
  inn?: string | undefined;
692
738
  innDadata?: string | undefined;
693
739
  secondaryPhoneNumber?: string | undefined;
694
740
  consentDataProcessing?: string | undefined;
741
+ partnerComments?: undefined;
695
742
  region?: undefined;
696
743
  partner?: undefined;
697
744
  partnerId?: undefined;
698
745
  typeForm?: string | undefined;
746
+ phone: string;
747
+ } | {
748
+ inn?: string | undefined;
749
+ innDadata?: string | undefined;
750
+ secondaryPhoneNumber?: string | undefined;
751
+ consentDataProcessing?: string | undefined;
752
+ partnerComments: string;
753
+ region: string | undefined;
754
+ partner: string | undefined;
755
+ partnerId: string | undefined;
756
+ typeForm: string;
699
757
  addressBranch: string | undefined;
700
758
  bankEmpolee: JSONScalar | JSONRecord | null;
701
759
  applicationDate: JSONScalar | JSONRecord | null;
@@ -703,8 +761,9 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
703
761
  } | {
704
762
  inn?: string | undefined;
705
763
  innDadata?: string | undefined;
706
- secondaryPhoneNumber: string;
764
+ secondaryPhoneNumber?: string | undefined;
707
765
  consentDataProcessing?: string | undefined;
766
+ partnerComments?: undefined;
708
767
  region: string | undefined;
709
768
  partner: string | undefined;
710
769
  partnerId: string | undefined;
@@ -716,8 +775,9 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
716
775
  } | {
717
776
  inn?: string | undefined;
718
777
  innDadata?: string | undefined;
719
- secondaryPhoneNumber: string;
778
+ secondaryPhoneNumber?: string | undefined;
720
779
  consentDataProcessing?: string | undefined;
780
+ partnerComments: string;
721
781
  region?: undefined;
722
782
  partner?: undefined;
723
783
  partnerId?: undefined;
@@ -729,12 +789,13 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
729
789
  } | {
730
790
  inn?: string | undefined;
731
791
  innDadata?: string | undefined;
732
- secondaryPhoneNumber: string;
792
+ secondaryPhoneNumber?: string | undefined;
733
793
  consentDataProcessing?: string | undefined;
734
- region: string | undefined;
735
- partner: string | undefined;
736
- partnerId: string | undefined;
737
- typeForm?: string | undefined;
794
+ partnerComments?: undefined;
795
+ region?: undefined;
796
+ partner?: undefined;
797
+ partnerId?: undefined;
798
+ typeForm: string;
738
799
  addressBranch: string | undefined;
739
800
  bankEmpolee: JSONScalar | JSONRecord | null;
740
801
  applicationDate: JSONScalar | JSONRecord | null;
@@ -742,11 +803,12 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
742
803
  } | {
743
804
  inn?: string | undefined;
744
805
  innDadata?: string | undefined;
745
- secondaryPhoneNumber: string;
806
+ secondaryPhoneNumber?: string | undefined;
746
807
  consentDataProcessing?: string | undefined;
747
- region?: undefined;
748
- partner?: undefined;
749
- partnerId?: undefined;
808
+ partnerComments: string;
809
+ region: string | undefined;
810
+ partner: string | undefined;
811
+ partnerId: string | undefined;
750
812
  typeForm?: string | undefined;
751
813
  addressBranch: string | undefined;
752
814
  bankEmpolee: JSONScalar | JSONRecord | null;
@@ -757,50 +819,49 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
757
819
  innDadata?: string | undefined;
758
820
  secondaryPhoneNumber?: string | undefined;
759
821
  consentDataProcessing?: string | undefined;
822
+ partnerComments?: undefined;
760
823
  region: string | undefined;
761
824
  partner: string | undefined;
762
825
  partnerId: string | undefined;
763
- typeForm: string;
764
- birthday: JSONScalar | JSONRecord | null;
826
+ typeForm?: string | undefined;
827
+ addressBranch: string | undefined;
828
+ bankEmpolee: JSONScalar | JSONRecord | null;
829
+ applicationDate: JSONScalar | JSONRecord | null;
765
830
  phone: string;
766
831
  } | {
767
832
  inn?: string | undefined;
768
833
  innDadata?: string | undefined;
769
834
  secondaryPhoneNumber?: string | undefined;
770
835
  consentDataProcessing?: string | undefined;
836
+ partnerComments: string;
771
837
  region?: undefined;
772
838
  partner?: undefined;
773
839
  partnerId?: undefined;
774
- typeForm: string;
775
- birthday: JSONScalar | JSONRecord | null;
776
- phone: string;
777
- } | {
778
- inn?: string | undefined;
779
- innDadata?: string | undefined;
780
- secondaryPhoneNumber?: string | undefined;
781
- consentDataProcessing?: string | undefined;
782
- region: string | undefined;
783
- partner: string | undefined;
784
- partnerId: string | undefined;
785
840
  typeForm?: string | undefined;
786
- birthday: JSONScalar | JSONRecord | null;
841
+ addressBranch: string | undefined;
842
+ bankEmpolee: JSONScalar | JSONRecord | null;
843
+ applicationDate: JSONScalar | JSONRecord | null;
787
844
  phone: string;
788
845
  } | {
789
846
  inn?: string | undefined;
790
847
  innDadata?: string | undefined;
791
848
  secondaryPhoneNumber?: string | undefined;
792
849
  consentDataProcessing?: string | undefined;
850
+ partnerComments?: undefined;
793
851
  region?: undefined;
794
852
  partner?: undefined;
795
853
  partnerId?: undefined;
796
854
  typeForm?: string | undefined;
797
- birthday: JSONScalar | JSONRecord | null;
855
+ addressBranch: string | undefined;
856
+ bankEmpolee: JSONScalar | JSONRecord | null;
857
+ applicationDate: JSONScalar | JSONRecord | null;
798
858
  phone: string;
799
859
  } | {
800
860
  inn?: string | undefined;
801
861
  innDadata?: string | undefined;
802
- secondaryPhoneNumber?: string | undefined;
862
+ secondaryPhoneNumber: string;
803
863
  consentDataProcessing?: string | undefined;
864
+ partnerComments: string;
804
865
  region: string | undefined;
805
866
  partner: string | undefined;
806
867
  partnerId: string | undefined;
@@ -808,97 +869,97 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
808
869
  addressBranch: string | undefined;
809
870
  bankEmpolee: JSONScalar | JSONRecord | null;
810
871
  applicationDate: JSONScalar | JSONRecord | null;
811
- birthday: JSONScalar | JSONRecord | null;
812
872
  phone: string;
813
873
  } | {
814
874
  inn?: string | undefined;
815
875
  innDadata?: string | undefined;
816
- secondaryPhoneNumber?: string | undefined;
876
+ secondaryPhoneNumber: string;
817
877
  consentDataProcessing?: string | undefined;
818
- region?: undefined;
819
- partner?: undefined;
820
- partnerId?: undefined;
878
+ partnerComments?: undefined;
879
+ region: string | undefined;
880
+ partner: string | undefined;
881
+ partnerId: string | undefined;
821
882
  typeForm: string;
822
883
  addressBranch: string | undefined;
823
884
  bankEmpolee: JSONScalar | JSONRecord | null;
824
885
  applicationDate: JSONScalar | JSONRecord | null;
825
- birthday: JSONScalar | JSONRecord | null;
826
886
  phone: string;
827
887
  } | {
828
888
  inn?: string | undefined;
829
889
  innDadata?: string | undefined;
830
- secondaryPhoneNumber?: string | undefined;
890
+ secondaryPhoneNumber: string;
831
891
  consentDataProcessing?: string | undefined;
832
- region: string | undefined;
833
- partner: string | undefined;
834
- partnerId: string | undefined;
835
- typeForm?: string | undefined;
892
+ partnerComments: string;
893
+ region?: undefined;
894
+ partner?: undefined;
895
+ partnerId?: undefined;
896
+ typeForm: string;
836
897
  addressBranch: string | undefined;
837
898
  bankEmpolee: JSONScalar | JSONRecord | null;
838
899
  applicationDate: JSONScalar | JSONRecord | null;
839
- birthday: JSONScalar | JSONRecord | null;
840
900
  phone: string;
841
901
  } | {
842
902
  inn?: string | undefined;
843
903
  innDadata?: string | undefined;
844
- secondaryPhoneNumber?: string | undefined;
904
+ secondaryPhoneNumber: string;
845
905
  consentDataProcessing?: string | undefined;
906
+ partnerComments?: undefined;
846
907
  region?: undefined;
847
908
  partner?: undefined;
848
909
  partnerId?: undefined;
849
- typeForm?: string | undefined;
910
+ typeForm: string;
850
911
  addressBranch: string | undefined;
851
912
  bankEmpolee: JSONScalar | JSONRecord | null;
852
913
  applicationDate: JSONScalar | JSONRecord | null;
853
- birthday: JSONScalar | JSONRecord | null;
854
914
  phone: string;
855
915
  } | {
856
916
  inn?: string | undefined;
857
917
  innDadata?: string | undefined;
858
918
  secondaryPhoneNumber: string;
859
919
  consentDataProcessing?: string | undefined;
920
+ partnerComments: string;
860
921
  region: string | undefined;
861
922
  partner: string | undefined;
862
923
  partnerId: string | undefined;
863
- typeForm: string;
924
+ typeForm?: string | undefined;
864
925
  addressBranch: string | undefined;
865
926
  bankEmpolee: JSONScalar | JSONRecord | null;
866
927
  applicationDate: JSONScalar | JSONRecord | null;
867
- birthday: JSONScalar | JSONRecord | null;
868
928
  phone: string;
869
929
  } | {
870
930
  inn?: string | undefined;
871
931
  innDadata?: string | undefined;
872
932
  secondaryPhoneNumber: string;
873
933
  consentDataProcessing?: string | undefined;
874
- region?: undefined;
875
- partner?: undefined;
876
- partnerId?: undefined;
877
- typeForm: string;
934
+ partnerComments?: undefined;
935
+ region: string | undefined;
936
+ partner: string | undefined;
937
+ partnerId: string | undefined;
938
+ typeForm?: string | undefined;
878
939
  addressBranch: string | undefined;
879
940
  bankEmpolee: JSONScalar | JSONRecord | null;
880
941
  applicationDate: JSONScalar | JSONRecord | null;
881
- birthday: JSONScalar | JSONRecord | null;
882
942
  phone: string;
883
943
  } | {
884
944
  inn?: string | undefined;
885
945
  innDadata?: string | undefined;
886
946
  secondaryPhoneNumber: string;
887
947
  consentDataProcessing?: string | undefined;
888
- region: string | undefined;
889
- partner: string | undefined;
890
- partnerId: string | undefined;
948
+ partnerComments: string;
949
+ region?: undefined;
950
+ partner?: undefined;
951
+ partnerId?: undefined;
891
952
  typeForm?: string | undefined;
892
953
  addressBranch: string | undefined;
893
954
  bankEmpolee: JSONScalar | JSONRecord | null;
894
955
  applicationDate: JSONScalar | JSONRecord | null;
895
- birthday: JSONScalar | JSONRecord | null;
896
956
  phone: string;
897
957
  } | {
898
958
  inn?: string | undefined;
899
959
  innDadata?: string | undefined;
900
960
  secondaryPhoneNumber: string;
901
961
  consentDataProcessing?: string | undefined;
962
+ partnerComments?: undefined;
902
963
  region?: undefined;
903
964
  partner?: undefined;
904
965
  partnerId?: undefined;
@@ -906,6 +967,17 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
906
967
  addressBranch: string | undefined;
907
968
  bankEmpolee: JSONScalar | JSONRecord | null;
908
969
  applicationDate: JSONScalar | JSONRecord | null;
970
+ phone: string;
971
+ } | {
972
+ inn?: string | undefined;
973
+ innDadata?: string | undefined;
974
+ secondaryPhoneNumber?: string | undefined;
975
+ consentDataProcessing?: string | undefined;
976
+ partnerComments: string;
977
+ region: string | undefined;
978
+ partner: string | undefined;
979
+ partnerId: string | undefined;
980
+ typeForm: string;
909
981
  birthday: JSONScalar | JSONRecord | null;
910
982
  phone: string;
911
983
  } | {
@@ -913,98 +985,1179 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
913
985
  innDadata?: string | undefined;
914
986
  secondaryPhoneNumber?: string | undefined;
915
987
  consentDataProcessing?: string | undefined;
988
+ partnerComments?: undefined;
916
989
  region: string | undefined;
917
990
  partner: string | undefined;
918
991
  partnerId: string | undefined;
919
992
  typeForm: string;
920
- phone?: undefined;
993
+ birthday: JSONScalar | JSONRecord | null;
994
+ phone: string;
921
995
  } | {
922
996
  inn?: string | undefined;
923
997
  innDadata?: string | undefined;
924
998
  secondaryPhoneNumber?: string | undefined;
925
999
  consentDataProcessing?: string | undefined;
1000
+ partnerComments: string;
926
1001
  region?: undefined;
927
1002
  partner?: undefined;
928
1003
  partnerId?: undefined;
929
1004
  typeForm: string;
930
- phone?: undefined;
1005
+ birthday: JSONScalar | JSONRecord | null;
1006
+ phone: string;
1007
+ } | {
1008
+ inn?: string | undefined;
1009
+ innDadata?: string | undefined;
1010
+ secondaryPhoneNumber?: string | undefined;
1011
+ consentDataProcessing?: string | undefined;
1012
+ partnerComments?: undefined;
1013
+ region?: undefined;
1014
+ partner?: undefined;
1015
+ partnerId?: undefined;
1016
+ typeForm: string;
1017
+ birthday: JSONScalar | JSONRecord | null;
1018
+ phone: string;
931
1019
  } | {
932
1020
  inn?: string | undefined;
933
1021
  innDadata?: string | undefined;
934
1022
  secondaryPhoneNumber?: string | undefined;
935
1023
  consentDataProcessing?: string | undefined;
1024
+ partnerComments: string;
936
1025
  region: string | undefined;
937
1026
  partner: string | undefined;
938
1027
  partnerId: string | undefined;
939
1028
  typeForm?: string | undefined;
940
- phone?: undefined;
1029
+ birthday: JSONScalar | JSONRecord | null;
1030
+ phone: string;
941
1031
  } | {
942
1032
  inn?: string | undefined;
943
1033
  innDadata?: string | undefined;
944
1034
  secondaryPhoneNumber?: string | undefined;
945
1035
  consentDataProcessing?: string | undefined;
946
- region?: undefined;
947
- partner?: undefined;
948
- partnerId?: undefined;
1036
+ partnerComments?: undefined;
1037
+ region: string | undefined;
1038
+ partner: string | undefined;
1039
+ partnerId: string | undefined;
949
1040
  typeForm?: string | undefined;
950
- phone?: undefined;
1041
+ birthday: JSONScalar | JSONRecord | null;
1042
+ phone: string;
951
1043
  } | {
952
1044
  inn?: string | undefined;
953
1045
  innDadata?: string | undefined;
954
1046
  secondaryPhoneNumber?: string | undefined;
955
1047
  consentDataProcessing?: string | undefined;
956
- region: string | undefined;
957
- partner: string | undefined;
958
- partnerId: string | undefined;
959
- typeForm: string;
960
- addressBranch: string | undefined;
961
- bankEmpolee: JSONScalar | JSONRecord | null;
962
- applicationDate: JSONScalar | JSONRecord | null;
963
- phone?: undefined;
1048
+ partnerComments: string;
1049
+ region?: undefined;
1050
+ partner?: undefined;
1051
+ partnerId?: undefined;
1052
+ typeForm?: string | undefined;
1053
+ birthday: JSONScalar | JSONRecord | null;
1054
+ phone: string;
964
1055
  } | {
965
1056
  inn?: string | undefined;
966
1057
  innDadata?: string | undefined;
967
1058
  secondaryPhoneNumber?: string | undefined;
968
1059
  consentDataProcessing?: string | undefined;
1060
+ partnerComments?: undefined;
969
1061
  region?: undefined;
970
1062
  partner?: undefined;
971
1063
  partnerId?: undefined;
1064
+ typeForm?: string | undefined;
1065
+ birthday: JSONScalar | JSONRecord | null;
1066
+ phone: string;
1067
+ } | {
1068
+ inn?: string | undefined;
1069
+ innDadata?: string | undefined;
1070
+ secondaryPhoneNumber?: string | undefined;
1071
+ consentDataProcessing?: string | undefined;
1072
+ partnerComments: string;
1073
+ region: string | undefined;
1074
+ partner: string | undefined;
1075
+ partnerId: string | undefined;
972
1076
  typeForm: string;
973
1077
  addressBranch: string | undefined;
974
1078
  bankEmpolee: JSONScalar | JSONRecord | null;
975
1079
  applicationDate: JSONScalar | JSONRecord | null;
976
- phone?: undefined;
1080
+ birthday: JSONScalar | JSONRecord | null;
1081
+ phone: string;
977
1082
  } | {
978
1083
  inn?: string | undefined;
979
1084
  innDadata?: string | undefined;
980
1085
  secondaryPhoneNumber?: string | undefined;
981
1086
  consentDataProcessing?: string | undefined;
1087
+ partnerComments?: undefined;
982
1088
  region: string | undefined;
983
1089
  partner: string | undefined;
984
1090
  partnerId: string | undefined;
985
- typeForm?: string | undefined;
1091
+ typeForm: string;
986
1092
  addressBranch: string | undefined;
987
1093
  bankEmpolee: JSONScalar | JSONRecord | null;
988
1094
  applicationDate: JSONScalar | JSONRecord | null;
989
- phone?: undefined;
1095
+ birthday: JSONScalar | JSONRecord | null;
1096
+ phone: string;
990
1097
  } | {
991
1098
  inn?: string | undefined;
992
1099
  innDadata?: string | undefined;
993
1100
  secondaryPhoneNumber?: string | undefined;
994
1101
  consentDataProcessing?: string | undefined;
1102
+ partnerComments: string;
995
1103
  region?: undefined;
996
1104
  partner?: undefined;
997
1105
  partnerId?: undefined;
998
- typeForm?: string | undefined;
1106
+ typeForm: string;
999
1107
  addressBranch: string | undefined;
1000
1108
  bankEmpolee: JSONScalar | JSONRecord | null;
1001
1109
  applicationDate: JSONScalar | JSONRecord | null;
1002
- phone?: undefined;
1110
+ birthday: JSONScalar | JSONRecord | null;
1111
+ phone: string;
1112
+ } | {
1113
+ inn?: string | undefined;
1114
+ innDadata?: string | undefined;
1115
+ secondaryPhoneNumber?: string | undefined;
1116
+ consentDataProcessing?: string | undefined;
1117
+ partnerComments?: undefined;
1118
+ region?: undefined;
1119
+ partner?: undefined;
1120
+ partnerId?: undefined;
1121
+ typeForm: string;
1122
+ addressBranch: string | undefined;
1123
+ bankEmpolee: JSONScalar | JSONRecord | null;
1124
+ applicationDate: JSONScalar | JSONRecord | null;
1125
+ birthday: JSONScalar | JSONRecord | null;
1126
+ phone: string;
1127
+ } | {
1128
+ inn?: string | undefined;
1129
+ innDadata?: string | undefined;
1130
+ secondaryPhoneNumber?: string | undefined;
1131
+ consentDataProcessing?: string | undefined;
1132
+ partnerComments: string;
1133
+ region: string | undefined;
1134
+ partner: string | undefined;
1135
+ partnerId: string | undefined;
1136
+ typeForm?: string | undefined;
1137
+ addressBranch: string | undefined;
1138
+ bankEmpolee: JSONScalar | JSONRecord | null;
1139
+ applicationDate: JSONScalar | JSONRecord | null;
1140
+ birthday: JSONScalar | JSONRecord | null;
1141
+ phone: string;
1142
+ } | {
1143
+ inn?: string | undefined;
1144
+ innDadata?: string | undefined;
1145
+ secondaryPhoneNumber?: string | undefined;
1146
+ consentDataProcessing?: string | undefined;
1147
+ partnerComments?: undefined;
1148
+ region: string | undefined;
1149
+ partner: string | undefined;
1150
+ partnerId: string | undefined;
1151
+ typeForm?: string | undefined;
1152
+ addressBranch: string | undefined;
1153
+ bankEmpolee: JSONScalar | JSONRecord | null;
1154
+ applicationDate: JSONScalar | JSONRecord | null;
1155
+ birthday: JSONScalar | JSONRecord | null;
1156
+ phone: string;
1157
+ } | {
1158
+ inn?: string | undefined;
1159
+ innDadata?: string | undefined;
1160
+ secondaryPhoneNumber?: string | undefined;
1161
+ consentDataProcessing?: string | undefined;
1162
+ partnerComments: string;
1163
+ region?: undefined;
1164
+ partner?: undefined;
1165
+ partnerId?: undefined;
1166
+ typeForm?: string | undefined;
1167
+ addressBranch: string | undefined;
1168
+ bankEmpolee: JSONScalar | JSONRecord | null;
1169
+ applicationDate: JSONScalar | JSONRecord | null;
1170
+ birthday: JSONScalar | JSONRecord | null;
1171
+ phone: string;
1172
+ } | {
1173
+ inn?: string | undefined;
1174
+ innDadata?: string | undefined;
1175
+ secondaryPhoneNumber?: string | undefined;
1176
+ consentDataProcessing?: string | undefined;
1177
+ partnerComments?: undefined;
1178
+ region?: undefined;
1179
+ partner?: undefined;
1180
+ partnerId?: undefined;
1181
+ typeForm?: string | undefined;
1182
+ addressBranch: string | undefined;
1183
+ bankEmpolee: JSONScalar | JSONRecord | null;
1184
+ applicationDate: JSONScalar | JSONRecord | null;
1185
+ birthday: JSONScalar | JSONRecord | null;
1186
+ phone: string;
1187
+ } | {
1188
+ inn?: string | undefined;
1189
+ innDadata?: string | undefined;
1190
+ secondaryPhoneNumber: string;
1191
+ consentDataProcessing?: string | undefined;
1192
+ partnerComments: string;
1193
+ region: string | undefined;
1194
+ partner: string | undefined;
1195
+ partnerId: string | undefined;
1196
+ typeForm: string;
1197
+ addressBranch: string | undefined;
1198
+ bankEmpolee: JSONScalar | JSONRecord | null;
1199
+ applicationDate: JSONScalar | JSONRecord | null;
1200
+ birthday: JSONScalar | JSONRecord | null;
1201
+ phone: string;
1202
+ } | {
1203
+ inn?: string | undefined;
1204
+ innDadata?: string | undefined;
1205
+ secondaryPhoneNumber: string;
1206
+ consentDataProcessing?: string | undefined;
1207
+ partnerComments?: undefined;
1208
+ region: string | undefined;
1209
+ partner: string | undefined;
1210
+ partnerId: string | undefined;
1211
+ typeForm: string;
1212
+ addressBranch: string | undefined;
1213
+ bankEmpolee: JSONScalar | JSONRecord | null;
1214
+ applicationDate: JSONScalar | JSONRecord | null;
1215
+ birthday: JSONScalar | JSONRecord | null;
1216
+ phone: string;
1217
+ } | {
1218
+ inn?: string | undefined;
1219
+ innDadata?: string | undefined;
1220
+ secondaryPhoneNumber: string;
1221
+ consentDataProcessing?: string | undefined;
1222
+ partnerComments: string;
1223
+ region?: undefined;
1224
+ partner?: undefined;
1225
+ partnerId?: undefined;
1226
+ typeForm: string;
1227
+ addressBranch: string | undefined;
1228
+ bankEmpolee: JSONScalar | JSONRecord | null;
1229
+ applicationDate: JSONScalar | JSONRecord | null;
1230
+ birthday: JSONScalar | JSONRecord | null;
1231
+ phone: string;
1232
+ } | {
1233
+ inn?: string | undefined;
1234
+ innDadata?: string | undefined;
1235
+ secondaryPhoneNumber: string;
1236
+ consentDataProcessing?: string | undefined;
1237
+ partnerComments?: undefined;
1238
+ region?: undefined;
1239
+ partner?: undefined;
1240
+ partnerId?: undefined;
1241
+ typeForm: string;
1242
+ addressBranch: string | undefined;
1243
+ bankEmpolee: JSONScalar | JSONRecord | null;
1244
+ applicationDate: JSONScalar | JSONRecord | null;
1245
+ birthday: JSONScalar | JSONRecord | null;
1246
+ phone: string;
1247
+ } | {
1248
+ inn?: string | undefined;
1249
+ innDadata?: string | undefined;
1250
+ secondaryPhoneNumber: string;
1251
+ consentDataProcessing?: string | undefined;
1252
+ partnerComments: string;
1253
+ region: string | undefined;
1254
+ partner: string | undefined;
1255
+ partnerId: string | undefined;
1256
+ typeForm?: string | undefined;
1257
+ addressBranch: string | undefined;
1258
+ bankEmpolee: JSONScalar | JSONRecord | null;
1259
+ applicationDate: JSONScalar | JSONRecord | null;
1260
+ birthday: JSONScalar | JSONRecord | null;
1261
+ phone: string;
1262
+ } | {
1263
+ inn?: string | undefined;
1264
+ innDadata?: string | undefined;
1265
+ secondaryPhoneNumber: string;
1266
+ consentDataProcessing?: string | undefined;
1267
+ partnerComments?: undefined;
1268
+ region: string | undefined;
1269
+ partner: string | undefined;
1270
+ partnerId: string | undefined;
1271
+ typeForm?: string | undefined;
1272
+ addressBranch: string | undefined;
1273
+ bankEmpolee: JSONScalar | JSONRecord | null;
1274
+ applicationDate: JSONScalar | JSONRecord | null;
1275
+ birthday: JSONScalar | JSONRecord | null;
1276
+ phone: string;
1277
+ } | {
1278
+ inn?: string | undefined;
1279
+ innDadata?: string | undefined;
1280
+ secondaryPhoneNumber: string;
1281
+ consentDataProcessing?: string | undefined;
1282
+ partnerComments: string;
1283
+ region?: undefined;
1284
+ partner?: undefined;
1285
+ partnerId?: undefined;
1286
+ typeForm?: string | undefined;
1287
+ addressBranch: string | undefined;
1288
+ bankEmpolee: JSONScalar | JSONRecord | null;
1289
+ applicationDate: JSONScalar | JSONRecord | null;
1290
+ birthday: JSONScalar | JSONRecord | null;
1291
+ phone: string;
1292
+ } | {
1293
+ inn?: string | undefined;
1294
+ innDadata?: string | undefined;
1295
+ secondaryPhoneNumber: string;
1296
+ consentDataProcessing?: string | undefined;
1297
+ partnerComments?: undefined;
1298
+ region?: undefined;
1299
+ partner?: undefined;
1300
+ partnerId?: undefined;
1301
+ typeForm?: string | undefined;
1302
+ addressBranch: string | undefined;
1303
+ bankEmpolee: JSONScalar | JSONRecord | null;
1304
+ applicationDate: JSONScalar | JSONRecord | null;
1305
+ birthday: JSONScalar | JSONRecord | null;
1306
+ phone: string;
1307
+ } | {
1308
+ inn?: string | undefined;
1309
+ innDadata?: string | undefined;
1310
+ secondaryPhoneNumber?: string | undefined;
1311
+ consentDataProcessing?: string | undefined;
1312
+ partnerComments: string;
1313
+ region: string | undefined;
1314
+ partner: string | undefined;
1315
+ partnerId: string | undefined;
1316
+ typeForm: string;
1317
+ phone: string;
1318
+ } | {
1319
+ inn?: string | undefined;
1320
+ innDadata?: string | undefined;
1321
+ secondaryPhoneNumber?: string | undefined;
1322
+ consentDataProcessing?: string | undefined;
1323
+ partnerComments?: undefined;
1324
+ region: string | undefined;
1325
+ partner: string | undefined;
1326
+ partnerId: string | undefined;
1327
+ typeForm: string;
1328
+ phone: string;
1329
+ } | {
1330
+ inn?: string | undefined;
1331
+ innDadata?: string | undefined;
1332
+ secondaryPhoneNumber?: string | undefined;
1333
+ consentDataProcessing?: string | undefined;
1334
+ partnerComments: string;
1335
+ region?: undefined;
1336
+ partner?: undefined;
1337
+ partnerId?: undefined;
1338
+ typeForm: string;
1339
+ phone: string;
1340
+ } | {
1341
+ inn?: string | undefined;
1342
+ innDadata?: string | undefined;
1343
+ secondaryPhoneNumber?: string | undefined;
1344
+ consentDataProcessing?: string | undefined;
1345
+ partnerComments?: undefined;
1346
+ region?: undefined;
1347
+ partner?: undefined;
1348
+ partnerId?: undefined;
1349
+ typeForm: string;
1350
+ phone: string;
1351
+ } | {
1352
+ inn?: string | undefined;
1353
+ innDadata?: string | undefined;
1354
+ secondaryPhoneNumber?: string | undefined;
1355
+ consentDataProcessing?: string | undefined;
1356
+ partnerComments: string;
1357
+ region: string | undefined;
1358
+ partner: string | undefined;
1359
+ partnerId: string | undefined;
1360
+ typeForm?: string | undefined;
1361
+ phone: string;
1362
+ } | {
1363
+ inn?: string | undefined;
1364
+ innDadata?: string | undefined;
1365
+ secondaryPhoneNumber?: string | undefined;
1366
+ consentDataProcessing?: string | undefined;
1367
+ partnerComments?: undefined;
1368
+ region: string | undefined;
1369
+ partner: string | undefined;
1370
+ partnerId: string | undefined;
1371
+ typeForm?: string | undefined;
1372
+ phone: string;
1373
+ } | {
1374
+ inn?: string | undefined;
1375
+ innDadata?: string | undefined;
1376
+ secondaryPhoneNumber?: string | undefined;
1377
+ consentDataProcessing?: string | undefined;
1378
+ partnerComments: string;
1379
+ region?: undefined;
1380
+ partner?: undefined;
1381
+ partnerId?: undefined;
1382
+ typeForm?: string | undefined;
1383
+ phone: string;
1384
+ } | {
1385
+ inn?: string | undefined;
1386
+ innDadata?: string | undefined;
1387
+ secondaryPhoneNumber?: string | undefined;
1388
+ consentDataProcessing?: string | undefined;
1389
+ partnerComments?: undefined;
1390
+ region?: undefined;
1391
+ partner?: undefined;
1392
+ partnerId?: undefined;
1393
+ typeForm?: string | undefined;
1394
+ phone: string;
1395
+ } | {
1396
+ inn?: string | undefined;
1397
+ innDadata?: string | undefined;
1398
+ secondaryPhoneNumber?: string | undefined;
1399
+ consentDataProcessing?: string | undefined;
1400
+ partnerComments: string;
1401
+ region: string | undefined;
1402
+ partner: string | undefined;
1403
+ partnerId: string | undefined;
1404
+ typeForm: string;
1405
+ addressBranch: string | undefined;
1406
+ bankEmpolee: JSONScalar | JSONRecord | null;
1407
+ applicationDate: JSONScalar | JSONRecord | null;
1408
+ phone: string;
1409
+ } | {
1410
+ inn?: string | undefined;
1411
+ innDadata?: string | undefined;
1412
+ secondaryPhoneNumber?: string | undefined;
1413
+ consentDataProcessing?: string | undefined;
1414
+ partnerComments?: undefined;
1415
+ region: string | undefined;
1416
+ partner: string | undefined;
1417
+ partnerId: string | undefined;
1418
+ typeForm: string;
1419
+ addressBranch: string | undefined;
1420
+ bankEmpolee: JSONScalar | JSONRecord | null;
1421
+ applicationDate: JSONScalar | JSONRecord | null;
1422
+ phone: string;
1423
+ } | {
1424
+ inn?: string | undefined;
1425
+ innDadata?: string | undefined;
1426
+ secondaryPhoneNumber?: string | undefined;
1427
+ consentDataProcessing?: string | undefined;
1428
+ partnerComments: string;
1429
+ region?: undefined;
1430
+ partner?: undefined;
1431
+ partnerId?: undefined;
1432
+ typeForm: string;
1433
+ addressBranch: string | undefined;
1434
+ bankEmpolee: JSONScalar | JSONRecord | null;
1435
+ applicationDate: JSONScalar | JSONRecord | null;
1436
+ phone: string;
1437
+ } | {
1438
+ inn?: string | undefined;
1439
+ innDadata?: string | undefined;
1440
+ secondaryPhoneNumber?: string | undefined;
1441
+ consentDataProcessing?: string | undefined;
1442
+ partnerComments?: undefined;
1443
+ region?: undefined;
1444
+ partner?: undefined;
1445
+ partnerId?: undefined;
1446
+ typeForm: string;
1447
+ addressBranch: string | undefined;
1448
+ bankEmpolee: JSONScalar | JSONRecord | null;
1449
+ applicationDate: JSONScalar | JSONRecord | null;
1450
+ phone: string;
1451
+ } | {
1452
+ inn?: string | undefined;
1453
+ innDadata?: string | undefined;
1454
+ secondaryPhoneNumber?: string | undefined;
1455
+ consentDataProcessing?: string | undefined;
1456
+ partnerComments: string;
1457
+ region: string | undefined;
1458
+ partner: string | undefined;
1459
+ partnerId: string | undefined;
1460
+ typeForm?: string | undefined;
1461
+ addressBranch: string | undefined;
1462
+ bankEmpolee: JSONScalar | JSONRecord | null;
1463
+ applicationDate: JSONScalar | JSONRecord | null;
1464
+ phone: string;
1465
+ } | {
1466
+ inn?: string | undefined;
1467
+ innDadata?: string | undefined;
1468
+ secondaryPhoneNumber?: string | undefined;
1469
+ consentDataProcessing?: string | undefined;
1470
+ partnerComments?: undefined;
1471
+ region: string | undefined;
1472
+ partner: string | undefined;
1473
+ partnerId: string | undefined;
1474
+ typeForm?: string | undefined;
1475
+ addressBranch: string | undefined;
1476
+ bankEmpolee: JSONScalar | JSONRecord | null;
1477
+ applicationDate: JSONScalar | JSONRecord | null;
1478
+ phone: string;
1479
+ } | {
1480
+ inn?: string | undefined;
1481
+ innDadata?: string | undefined;
1482
+ secondaryPhoneNumber?: string | undefined;
1483
+ consentDataProcessing?: string | undefined;
1484
+ partnerComments: string;
1485
+ region?: undefined;
1486
+ partner?: undefined;
1487
+ partnerId?: undefined;
1488
+ typeForm?: string | undefined;
1489
+ addressBranch: string | undefined;
1490
+ bankEmpolee: JSONScalar | JSONRecord | null;
1491
+ applicationDate: JSONScalar | JSONRecord | null;
1492
+ phone: string;
1493
+ } | {
1494
+ inn?: string | undefined;
1495
+ innDadata?: string | undefined;
1496
+ secondaryPhoneNumber?: string | undefined;
1497
+ consentDataProcessing?: string | undefined;
1498
+ partnerComments?: undefined;
1499
+ region?: undefined;
1500
+ partner?: undefined;
1501
+ partnerId?: undefined;
1502
+ typeForm?: string | undefined;
1503
+ addressBranch: string | undefined;
1504
+ bankEmpolee: JSONScalar | JSONRecord | null;
1505
+ applicationDate: JSONScalar | JSONRecord | null;
1506
+ phone: string;
1507
+ } | {
1508
+ inn?: string | undefined;
1509
+ innDadata?: string | undefined;
1510
+ secondaryPhoneNumber: string;
1511
+ consentDataProcessing?: string | undefined;
1512
+ partnerComments: string;
1513
+ region: string | undefined;
1514
+ partner: string | undefined;
1515
+ partnerId: string | undefined;
1516
+ typeForm: string;
1517
+ addressBranch: string | undefined;
1518
+ bankEmpolee: JSONScalar | JSONRecord | null;
1519
+ applicationDate: JSONScalar | JSONRecord | null;
1520
+ phone: string;
1521
+ } | {
1522
+ inn?: string | undefined;
1523
+ innDadata?: string | undefined;
1524
+ secondaryPhoneNumber: string;
1525
+ consentDataProcessing?: string | undefined;
1526
+ partnerComments?: undefined;
1527
+ region: string | undefined;
1528
+ partner: string | undefined;
1529
+ partnerId: string | undefined;
1530
+ typeForm: string;
1531
+ addressBranch: string | undefined;
1532
+ bankEmpolee: JSONScalar | JSONRecord | null;
1533
+ applicationDate: JSONScalar | JSONRecord | null;
1534
+ phone: string;
1535
+ } | {
1536
+ inn?: string | undefined;
1537
+ innDadata?: string | undefined;
1538
+ secondaryPhoneNumber: string;
1539
+ consentDataProcessing?: string | undefined;
1540
+ partnerComments: string;
1541
+ region?: undefined;
1542
+ partner?: undefined;
1543
+ partnerId?: undefined;
1544
+ typeForm: string;
1545
+ addressBranch: string | undefined;
1546
+ bankEmpolee: JSONScalar | JSONRecord | null;
1547
+ applicationDate: JSONScalar | JSONRecord | null;
1548
+ phone: string;
1549
+ } | {
1550
+ inn?: string | undefined;
1551
+ innDadata?: string | undefined;
1552
+ secondaryPhoneNumber: string;
1553
+ consentDataProcessing?: string | undefined;
1554
+ partnerComments?: undefined;
1555
+ region?: undefined;
1556
+ partner?: undefined;
1557
+ partnerId?: undefined;
1558
+ typeForm: string;
1559
+ addressBranch: string | undefined;
1560
+ bankEmpolee: JSONScalar | JSONRecord | null;
1561
+ applicationDate: JSONScalar | JSONRecord | null;
1562
+ phone: string;
1563
+ } | {
1564
+ inn?: string | undefined;
1565
+ innDadata?: string | undefined;
1566
+ secondaryPhoneNumber: string;
1567
+ consentDataProcessing?: string | undefined;
1568
+ partnerComments: string;
1569
+ region: string | undefined;
1570
+ partner: string | undefined;
1571
+ partnerId: string | undefined;
1572
+ typeForm?: string | undefined;
1573
+ addressBranch: string | undefined;
1574
+ bankEmpolee: JSONScalar | JSONRecord | null;
1575
+ applicationDate: JSONScalar | JSONRecord | null;
1576
+ phone: string;
1577
+ } | {
1578
+ inn?: string | undefined;
1579
+ innDadata?: string | undefined;
1580
+ secondaryPhoneNumber: string;
1581
+ consentDataProcessing?: string | undefined;
1582
+ partnerComments?: undefined;
1583
+ region: string | undefined;
1584
+ partner: string | undefined;
1585
+ partnerId: string | undefined;
1586
+ typeForm?: string | undefined;
1587
+ addressBranch: string | undefined;
1588
+ bankEmpolee: JSONScalar | JSONRecord | null;
1589
+ applicationDate: JSONScalar | JSONRecord | null;
1590
+ phone: string;
1591
+ } | {
1592
+ inn?: string | undefined;
1593
+ innDadata?: string | undefined;
1594
+ secondaryPhoneNumber: string;
1595
+ consentDataProcessing?: string | undefined;
1596
+ partnerComments: string;
1597
+ region?: undefined;
1598
+ partner?: undefined;
1599
+ partnerId?: undefined;
1600
+ typeForm?: string | undefined;
1601
+ addressBranch: string | undefined;
1602
+ bankEmpolee: JSONScalar | JSONRecord | null;
1603
+ applicationDate: JSONScalar | JSONRecord | null;
1604
+ phone: string;
1605
+ } | {
1606
+ inn?: string | undefined;
1607
+ innDadata?: string | undefined;
1608
+ secondaryPhoneNumber: string;
1609
+ consentDataProcessing?: string | undefined;
1610
+ partnerComments?: undefined;
1611
+ region?: undefined;
1612
+ partner?: undefined;
1613
+ partnerId?: undefined;
1614
+ typeForm?: string | undefined;
1615
+ addressBranch: string | undefined;
1616
+ bankEmpolee: JSONScalar | JSONRecord | null;
1617
+ applicationDate: JSONScalar | JSONRecord | null;
1618
+ phone: string;
1619
+ } | {
1620
+ inn?: string | undefined;
1621
+ innDadata?: string | undefined;
1622
+ secondaryPhoneNumber?: string | undefined;
1623
+ consentDataProcessing?: string | undefined;
1624
+ partnerComments: string;
1625
+ region: string | undefined;
1626
+ partner: string | undefined;
1627
+ partnerId: string | undefined;
1628
+ typeForm: string;
1629
+ birthday: JSONScalar | JSONRecord | null;
1630
+ phone: string;
1631
+ } | {
1632
+ inn?: string | undefined;
1633
+ innDadata?: string | undefined;
1634
+ secondaryPhoneNumber?: string | undefined;
1635
+ consentDataProcessing?: string | undefined;
1636
+ partnerComments?: undefined;
1637
+ region: string | undefined;
1638
+ partner: string | undefined;
1639
+ partnerId: string | undefined;
1640
+ typeForm: string;
1641
+ birthday: JSONScalar | JSONRecord | null;
1642
+ phone: string;
1643
+ } | {
1644
+ inn?: string | undefined;
1645
+ innDadata?: string | undefined;
1646
+ secondaryPhoneNumber?: string | undefined;
1647
+ consentDataProcessing?: string | undefined;
1648
+ partnerComments: string;
1649
+ region?: undefined;
1650
+ partner?: undefined;
1651
+ partnerId?: undefined;
1652
+ typeForm: string;
1653
+ birthday: JSONScalar | JSONRecord | null;
1654
+ phone: string;
1655
+ } | {
1656
+ inn?: string | undefined;
1657
+ innDadata?: string | undefined;
1658
+ secondaryPhoneNumber?: string | undefined;
1659
+ consentDataProcessing?: string | undefined;
1660
+ partnerComments?: undefined;
1661
+ region?: undefined;
1662
+ partner?: undefined;
1663
+ partnerId?: undefined;
1664
+ typeForm: string;
1665
+ birthday: JSONScalar | JSONRecord | null;
1666
+ phone: string;
1667
+ } | {
1668
+ inn?: string | undefined;
1669
+ innDadata?: string | undefined;
1670
+ secondaryPhoneNumber?: string | undefined;
1671
+ consentDataProcessing?: string | undefined;
1672
+ partnerComments: string;
1673
+ region: string | undefined;
1674
+ partner: string | undefined;
1675
+ partnerId: string | undefined;
1676
+ typeForm?: string | undefined;
1677
+ birthday: JSONScalar | JSONRecord | null;
1678
+ phone: string;
1679
+ } | {
1680
+ inn?: string | undefined;
1681
+ innDadata?: string | undefined;
1682
+ secondaryPhoneNumber?: string | undefined;
1683
+ consentDataProcessing?: string | undefined;
1684
+ partnerComments?: undefined;
1685
+ region: string | undefined;
1686
+ partner: string | undefined;
1687
+ partnerId: string | undefined;
1688
+ typeForm?: string | undefined;
1689
+ birthday: JSONScalar | JSONRecord | null;
1690
+ phone: string;
1691
+ } | {
1692
+ inn?: string | undefined;
1693
+ innDadata?: string | undefined;
1694
+ secondaryPhoneNumber?: string | undefined;
1695
+ consentDataProcessing?: string | undefined;
1696
+ partnerComments: string;
1697
+ region?: undefined;
1698
+ partner?: undefined;
1699
+ partnerId?: undefined;
1700
+ typeForm?: string | undefined;
1701
+ birthday: JSONScalar | JSONRecord | null;
1702
+ phone: string;
1703
+ } | {
1704
+ inn?: string | undefined;
1705
+ innDadata?: string | undefined;
1706
+ secondaryPhoneNumber?: string | undefined;
1707
+ consentDataProcessing?: string | undefined;
1708
+ partnerComments?: undefined;
1709
+ region?: undefined;
1710
+ partner?: undefined;
1711
+ partnerId?: undefined;
1712
+ typeForm?: string | undefined;
1713
+ birthday: JSONScalar | JSONRecord | null;
1714
+ phone: string;
1715
+ } | {
1716
+ inn?: string | undefined;
1717
+ innDadata?: string | undefined;
1718
+ secondaryPhoneNumber?: string | undefined;
1719
+ consentDataProcessing?: string | undefined;
1720
+ partnerComments: string;
1721
+ region: string | undefined;
1722
+ partner: string | undefined;
1723
+ partnerId: string | undefined;
1724
+ typeForm: string;
1725
+ addressBranch: string | undefined;
1726
+ bankEmpolee: JSONScalar | JSONRecord | null;
1727
+ applicationDate: JSONScalar | JSONRecord | null;
1728
+ birthday: JSONScalar | JSONRecord | null;
1729
+ phone: string;
1730
+ } | {
1731
+ inn?: string | undefined;
1732
+ innDadata?: string | undefined;
1733
+ secondaryPhoneNumber?: string | undefined;
1734
+ consentDataProcessing?: string | undefined;
1735
+ partnerComments?: undefined;
1736
+ region: string | undefined;
1737
+ partner: string | undefined;
1738
+ partnerId: string | undefined;
1739
+ typeForm: string;
1740
+ addressBranch: string | undefined;
1741
+ bankEmpolee: JSONScalar | JSONRecord | null;
1742
+ applicationDate: JSONScalar | JSONRecord | null;
1743
+ birthday: JSONScalar | JSONRecord | null;
1744
+ phone: string;
1745
+ } | {
1746
+ inn?: string | undefined;
1747
+ innDadata?: string | undefined;
1748
+ secondaryPhoneNumber?: string | undefined;
1749
+ consentDataProcessing?: string | undefined;
1750
+ partnerComments: string;
1751
+ region?: undefined;
1752
+ partner?: undefined;
1753
+ partnerId?: undefined;
1754
+ typeForm: string;
1755
+ addressBranch: string | undefined;
1756
+ bankEmpolee: JSONScalar | JSONRecord | null;
1757
+ applicationDate: JSONScalar | JSONRecord | null;
1758
+ birthday: JSONScalar | JSONRecord | null;
1759
+ phone: string;
1760
+ } | {
1761
+ inn?: string | undefined;
1762
+ innDadata?: string | undefined;
1763
+ secondaryPhoneNumber?: string | undefined;
1764
+ consentDataProcessing?: string | undefined;
1765
+ partnerComments?: undefined;
1766
+ region?: undefined;
1767
+ partner?: undefined;
1768
+ partnerId?: undefined;
1769
+ typeForm: string;
1770
+ addressBranch: string | undefined;
1771
+ bankEmpolee: JSONScalar | JSONRecord | null;
1772
+ applicationDate: JSONScalar | JSONRecord | null;
1773
+ birthday: JSONScalar | JSONRecord | null;
1774
+ phone: string;
1775
+ } | {
1776
+ inn?: string | undefined;
1777
+ innDadata?: string | undefined;
1778
+ secondaryPhoneNumber?: string | undefined;
1779
+ consentDataProcessing?: string | undefined;
1780
+ partnerComments: string;
1781
+ region: string | undefined;
1782
+ partner: string | undefined;
1783
+ partnerId: string | undefined;
1784
+ typeForm?: string | undefined;
1785
+ addressBranch: string | undefined;
1786
+ bankEmpolee: JSONScalar | JSONRecord | null;
1787
+ applicationDate: JSONScalar | JSONRecord | null;
1788
+ birthday: JSONScalar | JSONRecord | null;
1789
+ phone: string;
1790
+ } | {
1791
+ inn?: string | undefined;
1792
+ innDadata?: string | undefined;
1793
+ secondaryPhoneNumber?: string | undefined;
1794
+ consentDataProcessing?: string | undefined;
1795
+ partnerComments?: undefined;
1796
+ region: string | undefined;
1797
+ partner: string | undefined;
1798
+ partnerId: string | undefined;
1799
+ typeForm?: string | undefined;
1800
+ addressBranch: string | undefined;
1801
+ bankEmpolee: JSONScalar | JSONRecord | null;
1802
+ applicationDate: JSONScalar | JSONRecord | null;
1803
+ birthday: JSONScalar | JSONRecord | null;
1804
+ phone: string;
1805
+ } | {
1806
+ inn?: string | undefined;
1807
+ innDadata?: string | undefined;
1808
+ secondaryPhoneNumber?: string | undefined;
1809
+ consentDataProcessing?: string | undefined;
1810
+ partnerComments: string;
1811
+ region?: undefined;
1812
+ partner?: undefined;
1813
+ partnerId?: undefined;
1814
+ typeForm?: string | undefined;
1815
+ addressBranch: string | undefined;
1816
+ bankEmpolee: JSONScalar | JSONRecord | null;
1817
+ applicationDate: JSONScalar | JSONRecord | null;
1818
+ birthday: JSONScalar | JSONRecord | null;
1819
+ phone: string;
1820
+ } | {
1821
+ inn?: string | undefined;
1822
+ innDadata?: string | undefined;
1823
+ secondaryPhoneNumber?: string | undefined;
1824
+ consentDataProcessing?: string | undefined;
1825
+ partnerComments?: undefined;
1826
+ region?: undefined;
1827
+ partner?: undefined;
1828
+ partnerId?: undefined;
1829
+ typeForm?: string | undefined;
1830
+ addressBranch: string | undefined;
1831
+ bankEmpolee: JSONScalar | JSONRecord | null;
1832
+ applicationDate: JSONScalar | JSONRecord | null;
1833
+ birthday: JSONScalar | JSONRecord | null;
1834
+ phone: string;
1835
+ } | {
1836
+ inn?: string | undefined;
1837
+ innDadata?: string | undefined;
1838
+ secondaryPhoneNumber: string;
1839
+ consentDataProcessing?: string | undefined;
1840
+ partnerComments: string;
1841
+ region: string | undefined;
1842
+ partner: string | undefined;
1843
+ partnerId: string | undefined;
1844
+ typeForm: string;
1845
+ addressBranch: string | undefined;
1846
+ bankEmpolee: JSONScalar | JSONRecord | null;
1847
+ applicationDate: JSONScalar | JSONRecord | null;
1848
+ birthday: JSONScalar | JSONRecord | null;
1849
+ phone: string;
1850
+ } | {
1851
+ inn?: string | undefined;
1852
+ innDadata?: string | undefined;
1853
+ secondaryPhoneNumber: string;
1854
+ consentDataProcessing?: string | undefined;
1855
+ partnerComments?: undefined;
1856
+ region: string | undefined;
1857
+ partner: string | undefined;
1858
+ partnerId: string | undefined;
1859
+ typeForm: string;
1860
+ addressBranch: string | undefined;
1861
+ bankEmpolee: JSONScalar | JSONRecord | null;
1862
+ applicationDate: JSONScalar | JSONRecord | null;
1863
+ birthday: JSONScalar | JSONRecord | null;
1864
+ phone: string;
1865
+ } | {
1866
+ inn?: string | undefined;
1867
+ innDadata?: string | undefined;
1868
+ secondaryPhoneNumber: string;
1869
+ consentDataProcessing?: string | undefined;
1870
+ partnerComments: string;
1871
+ region?: undefined;
1872
+ partner?: undefined;
1873
+ partnerId?: undefined;
1874
+ typeForm: string;
1875
+ addressBranch: string | undefined;
1876
+ bankEmpolee: JSONScalar | JSONRecord | null;
1877
+ applicationDate: JSONScalar | JSONRecord | null;
1878
+ birthday: JSONScalar | JSONRecord | null;
1879
+ phone: string;
1880
+ } | {
1881
+ inn?: string | undefined;
1882
+ innDadata?: string | undefined;
1883
+ secondaryPhoneNumber: string;
1884
+ consentDataProcessing?: string | undefined;
1885
+ partnerComments?: undefined;
1886
+ region?: undefined;
1887
+ partner?: undefined;
1888
+ partnerId?: undefined;
1889
+ typeForm: string;
1890
+ addressBranch: string | undefined;
1891
+ bankEmpolee: JSONScalar | JSONRecord | null;
1892
+ applicationDate: JSONScalar | JSONRecord | null;
1893
+ birthday: JSONScalar | JSONRecord | null;
1894
+ phone: string;
1895
+ } | {
1896
+ inn?: string | undefined;
1897
+ innDadata?: string | undefined;
1898
+ secondaryPhoneNumber: string;
1899
+ consentDataProcessing?: string | undefined;
1900
+ partnerComments: string;
1901
+ region: string | undefined;
1902
+ partner: string | undefined;
1903
+ partnerId: string | undefined;
1904
+ typeForm?: string | undefined;
1905
+ addressBranch: string | undefined;
1906
+ bankEmpolee: JSONScalar | JSONRecord | null;
1907
+ applicationDate: JSONScalar | JSONRecord | null;
1908
+ birthday: JSONScalar | JSONRecord | null;
1909
+ phone: string;
1910
+ } | {
1911
+ inn?: string | undefined;
1912
+ innDadata?: string | undefined;
1913
+ secondaryPhoneNumber: string;
1914
+ consentDataProcessing?: string | undefined;
1915
+ partnerComments?: undefined;
1916
+ region: string | undefined;
1917
+ partner: string | undefined;
1918
+ partnerId: string | undefined;
1919
+ typeForm?: string | undefined;
1920
+ addressBranch: string | undefined;
1921
+ bankEmpolee: JSONScalar | JSONRecord | null;
1922
+ applicationDate: JSONScalar | JSONRecord | null;
1923
+ birthday: JSONScalar | JSONRecord | null;
1924
+ phone: string;
1925
+ } | {
1926
+ inn?: string | undefined;
1927
+ innDadata?: string | undefined;
1928
+ secondaryPhoneNumber: string;
1929
+ consentDataProcessing?: string | undefined;
1930
+ partnerComments: string;
1931
+ region?: undefined;
1932
+ partner?: undefined;
1933
+ partnerId?: undefined;
1934
+ typeForm?: string | undefined;
1935
+ addressBranch: string | undefined;
1936
+ bankEmpolee: JSONScalar | JSONRecord | null;
1937
+ applicationDate: JSONScalar | JSONRecord | null;
1938
+ birthday: JSONScalar | JSONRecord | null;
1939
+ phone: string;
1940
+ } | {
1941
+ inn?: string | undefined;
1942
+ innDadata?: string | undefined;
1943
+ secondaryPhoneNumber: string;
1944
+ consentDataProcessing?: string | undefined;
1945
+ partnerComments?: undefined;
1946
+ region?: undefined;
1947
+ partner?: undefined;
1948
+ partnerId?: undefined;
1949
+ typeForm?: string | undefined;
1950
+ addressBranch: string | undefined;
1951
+ bankEmpolee: JSONScalar | JSONRecord | null;
1952
+ applicationDate: JSONScalar | JSONRecord | null;
1953
+ birthday: JSONScalar | JSONRecord | null;
1954
+ phone: string;
1955
+ } | {
1956
+ inn?: string | undefined;
1957
+ innDadata?: string | undefined;
1958
+ secondaryPhoneNumber?: string | undefined;
1959
+ consentDataProcessing?: string | undefined;
1960
+ partnerComments: string;
1961
+ region: string | undefined;
1962
+ partner: string | undefined;
1963
+ partnerId: string | undefined;
1964
+ typeForm: string;
1965
+ phone?: undefined;
1966
+ } | {
1967
+ inn?: string | undefined;
1968
+ innDadata?: string | undefined;
1969
+ secondaryPhoneNumber?: string | undefined;
1970
+ consentDataProcessing?: string | undefined;
1971
+ partnerComments?: undefined;
1972
+ region: string | undefined;
1973
+ partner: string | undefined;
1974
+ partnerId: string | undefined;
1975
+ typeForm: string;
1976
+ phone?: undefined;
1977
+ } | {
1978
+ inn?: string | undefined;
1979
+ innDadata?: string | undefined;
1980
+ secondaryPhoneNumber?: string | undefined;
1981
+ consentDataProcessing?: string | undefined;
1982
+ partnerComments: string;
1983
+ region?: undefined;
1984
+ partner?: undefined;
1985
+ partnerId?: undefined;
1986
+ typeForm: string;
1987
+ phone?: undefined;
1988
+ } | {
1989
+ inn?: string | undefined;
1990
+ innDadata?: string | undefined;
1991
+ secondaryPhoneNumber?: string | undefined;
1992
+ consentDataProcessing?: string | undefined;
1993
+ partnerComments?: undefined;
1994
+ region?: undefined;
1995
+ partner?: undefined;
1996
+ partnerId?: undefined;
1997
+ typeForm: string;
1998
+ phone?: undefined;
1999
+ } | {
2000
+ inn?: string | undefined;
2001
+ innDadata?: string | undefined;
2002
+ secondaryPhoneNumber?: string | undefined;
2003
+ consentDataProcessing?: string | undefined;
2004
+ partnerComments: string;
2005
+ region: string | undefined;
2006
+ partner: string | undefined;
2007
+ partnerId: string | undefined;
2008
+ typeForm?: string | undefined;
2009
+ phone?: undefined;
2010
+ } | {
2011
+ inn?: string | undefined;
2012
+ innDadata?: string | undefined;
2013
+ secondaryPhoneNumber?: string | undefined;
2014
+ consentDataProcessing?: string | undefined;
2015
+ partnerComments?: undefined;
2016
+ region: string | undefined;
2017
+ partner: string | undefined;
2018
+ partnerId: string | undefined;
2019
+ typeForm?: string | undefined;
2020
+ phone?: undefined;
2021
+ } | {
2022
+ inn?: string | undefined;
2023
+ innDadata?: string | undefined;
2024
+ secondaryPhoneNumber?: string | undefined;
2025
+ consentDataProcessing?: string | undefined;
2026
+ partnerComments: string;
2027
+ region?: undefined;
2028
+ partner?: undefined;
2029
+ partnerId?: undefined;
2030
+ typeForm?: string | undefined;
2031
+ phone?: undefined;
2032
+ } | {
2033
+ inn?: string | undefined;
2034
+ innDadata?: string | undefined;
2035
+ secondaryPhoneNumber?: string | undefined;
2036
+ consentDataProcessing?: string | undefined;
2037
+ partnerComments?: undefined;
2038
+ region?: undefined;
2039
+ partner?: undefined;
2040
+ partnerId?: undefined;
2041
+ typeForm?: string | undefined;
2042
+ phone?: undefined;
2043
+ } | {
2044
+ inn?: string | undefined;
2045
+ innDadata?: string | undefined;
2046
+ secondaryPhoneNumber?: string | undefined;
2047
+ consentDataProcessing?: string | undefined;
2048
+ partnerComments: string;
2049
+ region: string | undefined;
2050
+ partner: string | undefined;
2051
+ partnerId: string | undefined;
2052
+ typeForm: string;
2053
+ addressBranch: string | undefined;
2054
+ bankEmpolee: JSONScalar | JSONRecord | null;
2055
+ applicationDate: JSONScalar | JSONRecord | null;
2056
+ phone?: undefined;
2057
+ } | {
2058
+ inn?: string | undefined;
2059
+ innDadata?: string | undefined;
2060
+ secondaryPhoneNumber?: string | undefined;
2061
+ consentDataProcessing?: string | undefined;
2062
+ partnerComments?: undefined;
2063
+ region: string | undefined;
2064
+ partner: string | undefined;
2065
+ partnerId: string | undefined;
2066
+ typeForm: string;
2067
+ addressBranch: string | undefined;
2068
+ bankEmpolee: JSONScalar | JSONRecord | null;
2069
+ applicationDate: JSONScalar | JSONRecord | null;
2070
+ phone?: undefined;
2071
+ } | {
2072
+ inn?: string | undefined;
2073
+ innDadata?: string | undefined;
2074
+ secondaryPhoneNumber?: string | undefined;
2075
+ consentDataProcessing?: string | undefined;
2076
+ partnerComments: string;
2077
+ region?: undefined;
2078
+ partner?: undefined;
2079
+ partnerId?: undefined;
2080
+ typeForm: string;
2081
+ addressBranch: string | undefined;
2082
+ bankEmpolee: JSONScalar | JSONRecord | null;
2083
+ applicationDate: JSONScalar | JSONRecord | null;
2084
+ phone?: undefined;
2085
+ } | {
2086
+ inn?: string | undefined;
2087
+ innDadata?: string | undefined;
2088
+ secondaryPhoneNumber?: string | undefined;
2089
+ consentDataProcessing?: string | undefined;
2090
+ partnerComments?: undefined;
2091
+ region?: undefined;
2092
+ partner?: undefined;
2093
+ partnerId?: undefined;
2094
+ typeForm: string;
2095
+ addressBranch: string | undefined;
2096
+ bankEmpolee: JSONScalar | JSONRecord | null;
2097
+ applicationDate: JSONScalar | JSONRecord | null;
2098
+ phone?: undefined;
2099
+ } | {
2100
+ inn?: string | undefined;
2101
+ innDadata?: string | undefined;
2102
+ secondaryPhoneNumber?: string | undefined;
2103
+ consentDataProcessing?: string | undefined;
2104
+ partnerComments: string;
2105
+ region: string | undefined;
2106
+ partner: string | undefined;
2107
+ partnerId: string | undefined;
2108
+ typeForm?: string | undefined;
2109
+ addressBranch: string | undefined;
2110
+ bankEmpolee: JSONScalar | JSONRecord | null;
2111
+ applicationDate: JSONScalar | JSONRecord | null;
2112
+ phone?: undefined;
2113
+ } | {
2114
+ inn?: string | undefined;
2115
+ innDadata?: string | undefined;
2116
+ secondaryPhoneNumber?: string | undefined;
2117
+ consentDataProcessing?: string | undefined;
2118
+ partnerComments?: undefined;
2119
+ region: string | undefined;
2120
+ partner: string | undefined;
2121
+ partnerId: string | undefined;
2122
+ typeForm?: string | undefined;
2123
+ addressBranch: string | undefined;
2124
+ bankEmpolee: JSONScalar | JSONRecord | null;
2125
+ applicationDate: JSONScalar | JSONRecord | null;
2126
+ phone?: undefined;
2127
+ } | {
2128
+ inn?: string | undefined;
2129
+ innDadata?: string | undefined;
2130
+ secondaryPhoneNumber?: string | undefined;
2131
+ consentDataProcessing?: string | undefined;
2132
+ partnerComments: string;
2133
+ region?: undefined;
2134
+ partner?: undefined;
2135
+ partnerId?: undefined;
2136
+ typeForm?: string | undefined;
2137
+ addressBranch: string | undefined;
2138
+ bankEmpolee: JSONScalar | JSONRecord | null;
2139
+ applicationDate: JSONScalar | JSONRecord | null;
2140
+ phone?: undefined;
2141
+ } | {
2142
+ inn?: string | undefined;
2143
+ innDadata?: string | undefined;
2144
+ secondaryPhoneNumber?: string | undefined;
2145
+ consentDataProcessing?: string | undefined;
2146
+ partnerComments?: undefined;
2147
+ region?: undefined;
2148
+ partner?: undefined;
2149
+ partnerId?: undefined;
2150
+ typeForm?: string | undefined;
2151
+ addressBranch: string | undefined;
2152
+ bankEmpolee: JSONScalar | JSONRecord | null;
2153
+ applicationDate: JSONScalar | JSONRecord | null;
2154
+ phone?: undefined;
1003
2155
  } | {
1004
2156
  inn?: string | undefined;
1005
2157
  innDadata?: string | undefined;
1006
2158
  secondaryPhoneNumber: string;
1007
2159
  consentDataProcessing?: string | undefined;
2160
+ partnerComments: string;
1008
2161
  region: string | undefined;
1009
2162
  partner: string | undefined;
1010
2163
  partnerId: string | undefined;
@@ -1018,6 +2171,35 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1018
2171
  innDadata?: string | undefined;
1019
2172
  secondaryPhoneNumber: string;
1020
2173
  consentDataProcessing?: string | undefined;
2174
+ partnerComments?: undefined;
2175
+ region: string | undefined;
2176
+ partner: string | undefined;
2177
+ partnerId: string | undefined;
2178
+ typeForm: string;
2179
+ addressBranch: string | undefined;
2180
+ bankEmpolee: JSONScalar | JSONRecord | null;
2181
+ applicationDate: JSONScalar | JSONRecord | null;
2182
+ phone?: undefined;
2183
+ } | {
2184
+ inn?: string | undefined;
2185
+ innDadata?: string | undefined;
2186
+ secondaryPhoneNumber: string;
2187
+ consentDataProcessing?: string | undefined;
2188
+ partnerComments: string;
2189
+ region?: undefined;
2190
+ partner?: undefined;
2191
+ partnerId?: undefined;
2192
+ typeForm: string;
2193
+ addressBranch: string | undefined;
2194
+ bankEmpolee: JSONScalar | JSONRecord | null;
2195
+ applicationDate: JSONScalar | JSONRecord | null;
2196
+ phone?: undefined;
2197
+ } | {
2198
+ inn?: string | undefined;
2199
+ innDadata?: string | undefined;
2200
+ secondaryPhoneNumber: string;
2201
+ consentDataProcessing?: string | undefined;
2202
+ partnerComments?: undefined;
1021
2203
  region?: undefined;
1022
2204
  partner?: undefined;
1023
2205
  partnerId?: undefined;
@@ -1031,6 +2213,21 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1031
2213
  innDadata?: string | undefined;
1032
2214
  secondaryPhoneNumber: string;
1033
2215
  consentDataProcessing?: string | undefined;
2216
+ partnerComments: string;
2217
+ region: string | undefined;
2218
+ partner: string | undefined;
2219
+ partnerId: string | undefined;
2220
+ typeForm?: string | undefined;
2221
+ addressBranch: string | undefined;
2222
+ bankEmpolee: JSONScalar | JSONRecord | null;
2223
+ applicationDate: JSONScalar | JSONRecord | null;
2224
+ phone?: undefined;
2225
+ } | {
2226
+ inn?: string | undefined;
2227
+ innDadata?: string | undefined;
2228
+ secondaryPhoneNumber: string;
2229
+ consentDataProcessing?: string | undefined;
2230
+ partnerComments?: undefined;
1034
2231
  region: string | undefined;
1035
2232
  partner: string | undefined;
1036
2233
  partnerId: string | undefined;
@@ -1044,6 +2241,21 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1044
2241
  innDadata?: string | undefined;
1045
2242
  secondaryPhoneNumber: string;
1046
2243
  consentDataProcessing?: string | undefined;
2244
+ partnerComments: string;
2245
+ region?: undefined;
2246
+ partner?: undefined;
2247
+ partnerId?: undefined;
2248
+ typeForm?: string | undefined;
2249
+ addressBranch: string | undefined;
2250
+ bankEmpolee: JSONScalar | JSONRecord | null;
2251
+ applicationDate: JSONScalar | JSONRecord | null;
2252
+ phone?: undefined;
2253
+ } | {
2254
+ inn?: string | undefined;
2255
+ innDadata?: string | undefined;
2256
+ secondaryPhoneNumber: string;
2257
+ consentDataProcessing?: string | undefined;
2258
+ partnerComments?: undefined;
1047
2259
  region?: undefined;
1048
2260
  partner?: undefined;
1049
2261
  partnerId?: undefined;
@@ -1057,6 +2269,19 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1057
2269
  innDadata?: string | undefined;
1058
2270
  secondaryPhoneNumber?: string | undefined;
1059
2271
  consentDataProcessing?: string | undefined;
2272
+ partnerComments: string;
2273
+ region: string | undefined;
2274
+ partner: string | undefined;
2275
+ partnerId: string | undefined;
2276
+ typeForm: string;
2277
+ birthday: JSONScalar | JSONRecord | null;
2278
+ phone?: undefined;
2279
+ } | {
2280
+ inn?: string | undefined;
2281
+ innDadata?: string | undefined;
2282
+ secondaryPhoneNumber?: string | undefined;
2283
+ consentDataProcessing?: string | undefined;
2284
+ partnerComments?: undefined;
1060
2285
  region: string | undefined;
1061
2286
  partner: string | undefined;
1062
2287
  partnerId: string | undefined;
@@ -1068,6 +2293,19 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1068
2293
  innDadata?: string | undefined;
1069
2294
  secondaryPhoneNumber?: string | undefined;
1070
2295
  consentDataProcessing?: string | undefined;
2296
+ partnerComments: string;
2297
+ region?: undefined;
2298
+ partner?: undefined;
2299
+ partnerId?: undefined;
2300
+ typeForm: string;
2301
+ birthday: JSONScalar | JSONRecord | null;
2302
+ phone?: undefined;
2303
+ } | {
2304
+ inn?: string | undefined;
2305
+ innDadata?: string | undefined;
2306
+ secondaryPhoneNumber?: string | undefined;
2307
+ consentDataProcessing?: string | undefined;
2308
+ partnerComments?: undefined;
1071
2309
  region?: undefined;
1072
2310
  partner?: undefined;
1073
2311
  partnerId?: undefined;
@@ -1079,6 +2317,19 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1079
2317
  innDadata?: string | undefined;
1080
2318
  secondaryPhoneNumber?: string | undefined;
1081
2319
  consentDataProcessing?: string | undefined;
2320
+ partnerComments: string;
2321
+ region: string | undefined;
2322
+ partner: string | undefined;
2323
+ partnerId: string | undefined;
2324
+ typeForm?: string | undefined;
2325
+ birthday: JSONScalar | JSONRecord | null;
2326
+ phone?: undefined;
2327
+ } | {
2328
+ inn?: string | undefined;
2329
+ innDadata?: string | undefined;
2330
+ secondaryPhoneNumber?: string | undefined;
2331
+ consentDataProcessing?: string | undefined;
2332
+ partnerComments?: undefined;
1082
2333
  region: string | undefined;
1083
2334
  partner: string | undefined;
1084
2335
  partnerId: string | undefined;
@@ -1090,6 +2341,19 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1090
2341
  innDadata?: string | undefined;
1091
2342
  secondaryPhoneNumber?: string | undefined;
1092
2343
  consentDataProcessing?: string | undefined;
2344
+ partnerComments: string;
2345
+ region?: undefined;
2346
+ partner?: undefined;
2347
+ partnerId?: undefined;
2348
+ typeForm?: string | undefined;
2349
+ birthday: JSONScalar | JSONRecord | null;
2350
+ phone?: undefined;
2351
+ } | {
2352
+ inn?: string | undefined;
2353
+ innDadata?: string | undefined;
2354
+ secondaryPhoneNumber?: string | undefined;
2355
+ consentDataProcessing?: string | undefined;
2356
+ partnerComments?: undefined;
1093
2357
  region?: undefined;
1094
2358
  partner?: undefined;
1095
2359
  partnerId?: undefined;
@@ -1101,6 +2365,7 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1101
2365
  innDadata?: string | undefined;
1102
2366
  secondaryPhoneNumber?: string | undefined;
1103
2367
  consentDataProcessing?: string | undefined;
2368
+ partnerComments: string;
1104
2369
  region: string | undefined;
1105
2370
  partner: string | undefined;
1106
2371
  partnerId: string | undefined;
@@ -1115,6 +2380,37 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1115
2380
  innDadata?: string | undefined;
1116
2381
  secondaryPhoneNumber?: string | undefined;
1117
2382
  consentDataProcessing?: string | undefined;
2383
+ partnerComments?: undefined;
2384
+ region: string | undefined;
2385
+ partner: string | undefined;
2386
+ partnerId: string | undefined;
2387
+ typeForm: string;
2388
+ addressBranch: string | undefined;
2389
+ bankEmpolee: JSONScalar | JSONRecord | null;
2390
+ applicationDate: JSONScalar | JSONRecord | null;
2391
+ birthday: JSONScalar | JSONRecord | null;
2392
+ phone?: undefined;
2393
+ } | {
2394
+ inn?: string | undefined;
2395
+ innDadata?: string | undefined;
2396
+ secondaryPhoneNumber?: string | undefined;
2397
+ consentDataProcessing?: string | undefined;
2398
+ partnerComments: string;
2399
+ region?: undefined;
2400
+ partner?: undefined;
2401
+ partnerId?: undefined;
2402
+ typeForm: string;
2403
+ addressBranch: string | undefined;
2404
+ bankEmpolee: JSONScalar | JSONRecord | null;
2405
+ applicationDate: JSONScalar | JSONRecord | null;
2406
+ birthday: JSONScalar | JSONRecord | null;
2407
+ phone?: undefined;
2408
+ } | {
2409
+ inn?: string | undefined;
2410
+ innDadata?: string | undefined;
2411
+ secondaryPhoneNumber?: string | undefined;
2412
+ consentDataProcessing?: string | undefined;
2413
+ partnerComments?: undefined;
1118
2414
  region?: undefined;
1119
2415
  partner?: undefined;
1120
2416
  partnerId?: undefined;
@@ -1129,6 +2425,22 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1129
2425
  innDadata?: string | undefined;
1130
2426
  secondaryPhoneNumber?: string | undefined;
1131
2427
  consentDataProcessing?: string | undefined;
2428
+ partnerComments: string;
2429
+ region: string | undefined;
2430
+ partner: string | undefined;
2431
+ partnerId: string | undefined;
2432
+ typeForm?: string | undefined;
2433
+ addressBranch: string | undefined;
2434
+ bankEmpolee: JSONScalar | JSONRecord | null;
2435
+ applicationDate: JSONScalar | JSONRecord | null;
2436
+ birthday: JSONScalar | JSONRecord | null;
2437
+ phone?: undefined;
2438
+ } | {
2439
+ inn?: string | undefined;
2440
+ innDadata?: string | undefined;
2441
+ secondaryPhoneNumber?: string | undefined;
2442
+ consentDataProcessing?: string | undefined;
2443
+ partnerComments?: undefined;
1132
2444
  region: string | undefined;
1133
2445
  partner: string | undefined;
1134
2446
  partnerId: string | undefined;
@@ -1143,6 +2455,22 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1143
2455
  innDadata?: string | undefined;
1144
2456
  secondaryPhoneNumber?: string | undefined;
1145
2457
  consentDataProcessing?: string | undefined;
2458
+ partnerComments: string;
2459
+ region?: undefined;
2460
+ partner?: undefined;
2461
+ partnerId?: undefined;
2462
+ typeForm?: string | undefined;
2463
+ addressBranch: string | undefined;
2464
+ bankEmpolee: JSONScalar | JSONRecord | null;
2465
+ applicationDate: JSONScalar | JSONRecord | null;
2466
+ birthday: JSONScalar | JSONRecord | null;
2467
+ phone?: undefined;
2468
+ } | {
2469
+ inn?: string | undefined;
2470
+ innDadata?: string | undefined;
2471
+ secondaryPhoneNumber?: string | undefined;
2472
+ consentDataProcessing?: string | undefined;
2473
+ partnerComments?: undefined;
1146
2474
  region?: undefined;
1147
2475
  partner?: undefined;
1148
2476
  partnerId?: undefined;
@@ -1157,6 +2485,22 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1157
2485
  innDadata?: string | undefined;
1158
2486
  secondaryPhoneNumber: string;
1159
2487
  consentDataProcessing?: string | undefined;
2488
+ partnerComments: string;
2489
+ region: string | undefined;
2490
+ partner: string | undefined;
2491
+ partnerId: string | undefined;
2492
+ typeForm: string;
2493
+ addressBranch: string | undefined;
2494
+ bankEmpolee: JSONScalar | JSONRecord | null;
2495
+ applicationDate: JSONScalar | JSONRecord | null;
2496
+ birthday: JSONScalar | JSONRecord | null;
2497
+ phone?: undefined;
2498
+ } | {
2499
+ inn?: string | undefined;
2500
+ innDadata?: string | undefined;
2501
+ secondaryPhoneNumber: string;
2502
+ consentDataProcessing?: string | undefined;
2503
+ partnerComments?: undefined;
1160
2504
  region: string | undefined;
1161
2505
  partner: string | undefined;
1162
2506
  partnerId: string | undefined;
@@ -1171,6 +2515,22 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1171
2515
  innDadata?: string | undefined;
1172
2516
  secondaryPhoneNumber: string;
1173
2517
  consentDataProcessing?: string | undefined;
2518
+ partnerComments: string;
2519
+ region?: undefined;
2520
+ partner?: undefined;
2521
+ partnerId?: undefined;
2522
+ typeForm: string;
2523
+ addressBranch: string | undefined;
2524
+ bankEmpolee: JSONScalar | JSONRecord | null;
2525
+ applicationDate: JSONScalar | JSONRecord | null;
2526
+ birthday: JSONScalar | JSONRecord | null;
2527
+ phone?: undefined;
2528
+ } | {
2529
+ inn?: string | undefined;
2530
+ innDadata?: string | undefined;
2531
+ secondaryPhoneNumber: string;
2532
+ consentDataProcessing?: string | undefined;
2533
+ partnerComments?: undefined;
1174
2534
  region?: undefined;
1175
2535
  partner?: undefined;
1176
2536
  partnerId?: undefined;
@@ -1185,6 +2545,22 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1185
2545
  innDadata?: string | undefined;
1186
2546
  secondaryPhoneNumber: string;
1187
2547
  consentDataProcessing?: string | undefined;
2548
+ partnerComments: string;
2549
+ region: string | undefined;
2550
+ partner: string | undefined;
2551
+ partnerId: string | undefined;
2552
+ typeForm?: string | undefined;
2553
+ addressBranch: string | undefined;
2554
+ bankEmpolee: JSONScalar | JSONRecord | null;
2555
+ applicationDate: JSONScalar | JSONRecord | null;
2556
+ birthday: JSONScalar | JSONRecord | null;
2557
+ phone?: undefined;
2558
+ } | {
2559
+ inn?: string | undefined;
2560
+ innDadata?: string | undefined;
2561
+ secondaryPhoneNumber: string;
2562
+ consentDataProcessing?: string | undefined;
2563
+ partnerComments?: undefined;
1188
2564
  region: string | undefined;
1189
2565
  partner: string | undefined;
1190
2566
  partnerId: string | undefined;
@@ -1199,6 +2575,22 @@ export declare const getSubmitBody: ({ body, endpoint, router }: submitBodyProps
1199
2575
  innDadata?: string | undefined;
1200
2576
  secondaryPhoneNumber: string;
1201
2577
  consentDataProcessing?: string | undefined;
2578
+ partnerComments: string;
2579
+ region?: undefined;
2580
+ partner?: undefined;
2581
+ partnerId?: undefined;
2582
+ typeForm?: string | undefined;
2583
+ addressBranch: string | undefined;
2584
+ bankEmpolee: JSONScalar | JSONRecord | null;
2585
+ applicationDate: JSONScalar | JSONRecord | null;
2586
+ birthday: JSONScalar | JSONRecord | null;
2587
+ phone?: undefined;
2588
+ } | {
2589
+ inn?: string | undefined;
2590
+ innDadata?: string | undefined;
2591
+ secondaryPhoneNumber: string;
2592
+ consentDataProcessing?: string | undefined;
2593
+ partnerComments?: undefined;
1202
2594
  region?: undefined;
1203
2595
  partner?: undefined;
1204
2596
  partnerId?: undefined;