@bisondesk/core-sdk 1.0.233 → 1.0.235

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 (402) hide show
  1. package/lib/cjs/apis/crm.js +201 -0
  2. package/lib/cjs/apis/crm.js.map +1 -0
  3. package/lib/cjs/apis/documents.js +47 -0
  4. package/lib/cjs/apis/documents.js.map +1 -0
  5. package/lib/cjs/apis/internet-vehicles.js +27 -0
  6. package/lib/cjs/apis/internet-vehicles.js.map +1 -0
  7. package/lib/cjs/apis/leasing-administration.js +49 -0
  8. package/lib/cjs/apis/leasing-administration.js.map +1 -0
  9. package/lib/cjs/apis/leasing.js +168 -0
  10. package/lib/cjs/apis/leasing.js.map +1 -0
  11. package/lib/cjs/apis/opportunities.js +94 -0
  12. package/lib/cjs/apis/opportunities.js.map +1 -0
  13. package/lib/cjs/apis/picklists.js +44 -0
  14. package/lib/cjs/apis/picklists.js.map +1 -0
  15. package/lib/cjs/apis/tenants.js +80 -0
  16. package/lib/cjs/apis/tenants.js.map +1 -0
  17. package/lib/cjs/apis/users.js +26 -0
  18. package/lib/cjs/apis/users.js.map +1 -0
  19. package/lib/cjs/apis/utils.js +23 -0
  20. package/lib/cjs/apis/utils.js.map +1 -0
  21. package/lib/cjs/apis/vehicles.js +159 -0
  22. package/lib/cjs/apis/vehicles.js.map +1 -0
  23. package/lib/cjs/constants.js +923 -0
  24. package/lib/cjs/constants.js.map +1 -0
  25. package/lib/cjs/ddb-entities.js +5 -0
  26. package/lib/cjs/ddb-entities.js.map +1 -0
  27. package/lib/cjs/types/activities.js +16 -0
  28. package/lib/cjs/types/activities.js.map +1 -0
  29. package/lib/cjs/types/crm.js +19 -0
  30. package/lib/cjs/types/crm.js.map +1 -0
  31. package/lib/cjs/types/definitions.js +3 -0
  32. package/lib/{types → cjs/types}/definitions.js.map +1 -1
  33. package/lib/cjs/types/documents.js +3 -0
  34. package/lib/{types → cjs/types}/documents.js.map +1 -1
  35. package/lib/cjs/types/events.js +10 -0
  36. package/lib/cjs/types/events.js.map +1 -0
  37. package/lib/cjs/types/fields.js +29 -0
  38. package/lib/cjs/types/fields.js.map +1 -0
  39. package/lib/cjs/types/internet-vehicles.js +3 -0
  40. package/lib/cjs/types/internet-vehicles.js.map +1 -0
  41. package/lib/cjs/types/leads.js +3 -0
  42. package/lib/{types → cjs/types}/leads.js.map +1 -1
  43. package/lib/cjs/types/leasing-administration.js +3 -0
  44. package/lib/cjs/types/leasing-administration.js.map +1 -0
  45. package/lib/cjs/types/leasing-search.js +3 -0
  46. package/lib/cjs/types/leasing-search.js.map +1 -0
  47. package/lib/cjs/types/leasing-settings.js +10 -0
  48. package/lib/cjs/types/leasing-settings.js.map +1 -0
  49. package/lib/cjs/types/leasing.js +24 -0
  50. package/lib/cjs/types/leasing.js.map +1 -0
  51. package/lib/cjs/types/machines.js +3 -0
  52. package/lib/{types → cjs/types}/machines.js.map +1 -1
  53. package/lib/cjs/types/opportunities.js +68 -0
  54. package/lib/cjs/types/opportunities.js.map +1 -0
  55. package/lib/cjs/types/payments.js +9 -0
  56. package/lib/cjs/types/payments.js.map +1 -0
  57. package/lib/cjs/types/picklists.js +3 -0
  58. package/lib/{types → cjs/types}/picklists.js.map +1 -1
  59. package/lib/cjs/types/quotes.js +26 -0
  60. package/lib/cjs/types/quotes.js.map +1 -0
  61. package/lib/cjs/types/recently-viewed.js +3 -0
  62. package/lib/cjs/types/recently-viewed.js.map +1 -0
  63. package/lib/cjs/types/saved-filters.js +3 -0
  64. package/lib/cjs/types/saved-filters.js.map +1 -0
  65. package/lib/cjs/types/search.js +36 -0
  66. package/lib/cjs/types/search.js.map +1 -0
  67. package/lib/cjs/types/settings.js +3 -0
  68. package/lib/{types → cjs/types}/settings.js.map +1 -1
  69. package/lib/cjs/types/storage.js +18 -0
  70. package/lib/cjs/types/storage.js.map +1 -0
  71. package/lib/cjs/types/templates.js +9 -0
  72. package/lib/cjs/types/templates.js.map +1 -0
  73. package/lib/cjs/types/tenants.js +14 -0
  74. package/lib/cjs/types/tenants.js.map +1 -0
  75. package/lib/cjs/types/users.js +3 -0
  76. package/lib/{types → cjs/types}/users.js.map +1 -1
  77. package/lib/cjs/types/utils.js +9 -0
  78. package/lib/cjs/types/utils.js.map +1 -0
  79. package/lib/cjs/types/vehicles.js +57 -0
  80. package/lib/cjs/types/vehicles.js.map +1 -0
  81. package/lib/cjs/types/website.js +3 -0
  82. package/lib/{types → cjs/types}/website.js.map +1 -1
  83. package/lib/cjs/utils/forms.js +33 -0
  84. package/lib/cjs/utils/forms.js.map +1 -0
  85. package/lib/cjs/utils/leasing.js +8 -0
  86. package/lib/cjs/utils/leasing.js.map +1 -0
  87. package/lib/cjs/utils/slug.js +23 -0
  88. package/lib/cjs/utils/slug.js.map +1 -0
  89. package/lib/cjs/utils/tenants.js +16 -0
  90. package/lib/cjs/utils/tenants.js.map +1 -0
  91. package/lib/cjs/utils/vehicles.js +72 -0
  92. package/lib/cjs/utils/vehicles.js.map +1 -0
  93. package/lib/{apis → esm/apis}/crm.js +2 -2
  94. package/lib/esm/apis/crm.js.map +1 -0
  95. package/lib/{apis → esm/apis}/documents.js +2 -2
  96. package/lib/esm/apis/documents.js.map +1 -0
  97. package/lib/{apis → esm/apis}/internet-vehicles.js +1 -1
  98. package/lib/esm/apis/internet-vehicles.js.map +1 -0
  99. package/lib/{apis → esm/apis}/leasing-administration.js +2 -2
  100. package/lib/esm/apis/leasing-administration.js.map +1 -0
  101. package/lib/{apis → esm/apis}/leasing.js +2 -2
  102. package/lib/esm/apis/leasing.js.map +1 -0
  103. package/lib/{apis → esm/apis}/opportunities.js +2 -2
  104. package/lib/esm/apis/opportunities.js.map +1 -0
  105. package/lib/{apis → esm/apis}/picklists.js +1 -1
  106. package/lib/esm/apis/picklists.js.map +1 -0
  107. package/lib/{apis → esm/apis}/tenants.js +1 -1
  108. package/lib/esm/apis/tenants.js.map +1 -0
  109. package/lib/{apis → esm/apis}/users.js +2 -2
  110. package/lib/esm/apis/users.js.map +1 -0
  111. package/lib/{apis → esm/apis}/utils.js +2 -2
  112. package/lib/esm/apis/utils.js.map +1 -0
  113. package/lib/{apis → esm/apis}/vehicles.js +2 -2
  114. package/lib/esm/apis/vehicles.js.map +1 -0
  115. package/lib/{constants.js → esm/constants.js} +1 -1
  116. package/lib/esm/constants.js.map +1 -0
  117. package/lib/esm/ddb-entities.js.map +1 -0
  118. package/lib/esm/types/activities.js.map +1 -0
  119. package/lib/esm/types/crm.js.map +1 -0
  120. package/lib/esm/types/definitions.js.map +1 -0
  121. package/lib/esm/types/documents.js.map +1 -0
  122. package/lib/esm/types/events.js.map +1 -0
  123. package/lib/esm/types/fields.js.map +1 -0
  124. package/lib/esm/types/internet-vehicles.js.map +1 -0
  125. package/lib/esm/types/leads.js.map +1 -0
  126. package/lib/esm/types/leasing-administration.js.map +1 -0
  127. package/lib/esm/types/leasing-search.js.map +1 -0
  128. package/lib/esm/types/leasing-settings.js.map +1 -0
  129. package/lib/esm/types/leasing.js.map +1 -0
  130. package/lib/esm/types/machines.js.map +1 -0
  131. package/lib/esm/types/opportunities.js.map +1 -0
  132. package/lib/esm/types/payments.js.map +1 -0
  133. package/lib/esm/types/picklists.js.map +1 -0
  134. package/lib/esm/types/quotes.js.map +1 -0
  135. package/lib/esm/types/recently-viewed.js.map +1 -0
  136. package/lib/esm/types/saved-filters.js.map +1 -0
  137. package/lib/esm/types/search.js.map +1 -0
  138. package/lib/esm/types/settings.js.map +1 -0
  139. package/lib/esm/types/storage.js +2 -0
  140. package/lib/esm/types/storage.js.map +1 -0
  141. package/lib/esm/types/templates.js.map +1 -0
  142. package/lib/esm/types/tenants.js.map +1 -0
  143. package/lib/esm/types/users.js.map +1 -0
  144. package/lib/esm/types/utils.js.map +1 -0
  145. package/lib/esm/types/vehicles.js.map +1 -0
  146. package/lib/esm/types/website.js.map +1 -0
  147. package/lib/esm/utils/forms.js.map +1 -0
  148. package/lib/{utils → esm/utils}/leasing.js +1 -1
  149. package/lib/esm/utils/leasing.js.map +1 -0
  150. package/lib/esm/utils/slug.js.map +1 -0
  151. package/lib/{utils → esm/utils}/tenants.js +1 -1
  152. package/lib/esm/utils/tenants.js.map +1 -0
  153. package/lib/esm/utils/vehicles.js.map +1 -0
  154. package/lib/tsconfig.cjs.tsbuildinfo +1 -0
  155. package/lib/tsconfig.esm.tsbuildinfo +1 -0
  156. package/lib/{apis → types/apis}/crm.d.ts +1 -1
  157. package/lib/types/apis/crm.d.ts.map +1 -0
  158. package/lib/types/apis/documents.d.ts.map +1 -0
  159. package/lib/types/apis/internet-vehicles.d.ts.map +1 -0
  160. package/lib/types/apis/leasing-administration.d.ts.map +1 -0
  161. package/lib/types/apis/leasing.d.ts.map +1 -0
  162. package/lib/types/apis/opportunities.d.ts.map +1 -0
  163. package/lib/{apis → types/apis}/picklists.d.ts +1 -1
  164. package/lib/types/apis/picklists.d.ts.map +1 -0
  165. package/lib/types/apis/tenants.d.ts.map +1 -0
  166. package/lib/types/apis/users.d.ts.map +1 -0
  167. package/lib/types/apis/utils.d.ts.map +1 -0
  168. package/lib/types/apis/vehicles.d.ts.map +1 -0
  169. package/lib/{constants.d.ts → types/constants.d.ts} +1 -1
  170. package/lib/types/constants.d.ts.map +1 -0
  171. package/lib/types/ddb-entities.d.ts.map +1 -0
  172. package/lib/types/types/activities.d.ts.map +1 -0
  173. package/lib/types/{crm.d.ts → types/crm.d.ts} +1 -1
  174. package/lib/types/types/crm.d.ts.map +1 -0
  175. package/lib/types/types/definitions.d.ts.map +1 -0
  176. package/lib/types/{documents.d.ts → types/documents.d.ts} +1 -1
  177. package/lib/types/types/documents.d.ts.map +1 -0
  178. package/lib/types/types/events.d.ts.map +1 -0
  179. package/lib/types/types/fields.d.ts.map +1 -0
  180. package/lib/types/{internet-vehicles.d.ts → types/internet-vehicles.d.ts} +1 -1
  181. package/lib/types/types/internet-vehicles.d.ts.map +1 -0
  182. package/lib/types/{leads.d.ts → types/leads.d.ts} +1 -1
  183. package/lib/types/types/leads.d.ts.map +1 -0
  184. package/lib/types/{leasing-administration.d.ts → types/leasing-administration.d.ts} +1 -1
  185. package/lib/types/types/leasing-administration.d.ts.map +1 -0
  186. package/lib/types/{leasing-search.d.ts → types/leasing-search.d.ts} +2 -2
  187. package/lib/types/types/leasing-search.d.ts.map +1 -0
  188. package/lib/types/{leasing-settings.d.ts → types/leasing-settings.d.ts} +1 -1
  189. package/lib/types/types/leasing-settings.d.ts.map +1 -0
  190. package/lib/types/{leasing.d.ts → types/leasing.d.ts} +2 -2
  191. package/lib/types/types/leasing.d.ts.map +1 -0
  192. package/lib/types/types/machines.d.ts.map +1 -0
  193. package/lib/types/{opportunities.d.ts → types/opportunities.d.ts} +1 -1
  194. package/lib/types/types/opportunities.d.ts.map +1 -0
  195. package/lib/types/types/payments.d.ts.map +1 -0
  196. package/lib/types/{picklists.d.ts → types/picklists.d.ts} +1 -1
  197. package/lib/types/types/picklists.d.ts.map +1 -0
  198. package/lib/types/{quotes.d.ts → types/quotes.d.ts} +1 -1
  199. package/lib/types/types/quotes.d.ts.map +1 -0
  200. package/lib/types/{recently-viewed.d.ts → types/recently-viewed.d.ts} +1 -1
  201. package/lib/types/types/recently-viewed.d.ts.map +1 -0
  202. package/lib/types/types/saved-filters.d.ts.map +1 -0
  203. package/lib/types/{search.d.ts → types/search.d.ts} +1 -1
  204. package/lib/types/types/search.d.ts.map +1 -0
  205. package/lib/types/types/settings.d.ts.map +1 -0
  206. package/lib/types/types/storage.d.ts +2 -0
  207. package/lib/types/types/storage.d.ts.map +1 -0
  208. package/lib/types/types/templates.d.ts.map +1 -0
  209. package/lib/types/{tenants.d.ts → types/tenants.d.ts} +1 -1
  210. package/lib/types/types/tenants.d.ts.map +1 -0
  211. package/lib/types/{users.d.ts → types/users.d.ts} +2 -2
  212. package/lib/types/types/users.d.ts.map +1 -0
  213. package/lib/types/{utils.d.ts → types/utils.d.ts} +1 -1
  214. package/lib/types/types/utils.d.ts.map +1 -0
  215. package/lib/types/{vehicles.d.ts → types/vehicles.d.ts} +1 -1
  216. package/lib/types/types/vehicles.d.ts.map +1 -0
  217. package/lib/types/{website.d.ts → types/website.d.ts} +1 -1
  218. package/lib/types/types/website.d.ts.map +1 -0
  219. package/lib/types/utils/forms.d.ts.map +1 -0
  220. package/lib/types/utils/leasing.d.ts.map +1 -0
  221. package/lib/types/utils/slug.d.ts.map +1 -0
  222. package/lib/types/utils/tenants.d.ts.map +1 -0
  223. package/lib/types/utils/vehicles.d.ts.map +1 -0
  224. package/package.json +20 -4
  225. package/src/apis/crm.ts +3 -6
  226. package/src/apis/documents.ts +2 -2
  227. package/src/apis/internet-vehicles.ts +1 -1
  228. package/src/apis/leasing-administration.ts +2 -5
  229. package/src/apis/leasing.ts +2 -5
  230. package/src/apis/opportunities.ts +2 -2
  231. package/src/apis/picklists.ts +2 -2
  232. package/src/apis/tenants.ts +1 -1
  233. package/src/apis/users.ts +2 -2
  234. package/src/apis/utils.ts +2 -2
  235. package/src/apis/vehicles.ts +2 -5
  236. package/src/constants.ts +1 -1
  237. package/src/types/crm.ts +1 -1
  238. package/src/types/documents.ts +1 -1
  239. package/src/types/internet-vehicles.ts +1 -1
  240. package/src/types/leads.ts +1 -1
  241. package/src/types/leasing-administration.ts +1 -1
  242. package/src/types/leasing-search.ts +2 -2
  243. package/src/types/leasing-settings.ts +1 -1
  244. package/src/types/leasing.ts +2 -7
  245. package/src/types/opportunities.ts +1 -1
  246. package/src/types/picklists.ts +1 -1
  247. package/src/types/quotes.ts +1 -1
  248. package/src/types/recently-viewed.ts +1 -1
  249. package/src/types/search.ts +1 -1
  250. package/src/types/storage.ts +1 -1
  251. package/src/types/tenants.ts +1 -1
  252. package/src/types/users.ts +2 -2
  253. package/src/types/utils.ts +1 -1
  254. package/src/types/vehicles.ts +1 -1
  255. package/src/types/website.ts +1 -1
  256. package/src/utils/leasing.ts +1 -1
  257. package/src/utils/tenants.ts +1 -1
  258. package/tsconfig.cjs.json +8 -0
  259. package/tsconfig.esm.json +8 -0
  260. package/tsconfig.json +1 -2
  261. package/lib/apis/crm.d.ts.map +0 -1
  262. package/lib/apis/crm.js.map +0 -1
  263. package/lib/apis/documents.d.ts.map +0 -1
  264. package/lib/apis/documents.js.map +0 -1
  265. package/lib/apis/internet-vehicles.d.ts.map +0 -1
  266. package/lib/apis/internet-vehicles.js.map +0 -1
  267. package/lib/apis/leasing-administration.d.ts.map +0 -1
  268. package/lib/apis/leasing-administration.js.map +0 -1
  269. package/lib/apis/leasing.d.ts.map +0 -1
  270. package/lib/apis/leasing.js.map +0 -1
  271. package/lib/apis/opportunities.d.ts.map +0 -1
  272. package/lib/apis/opportunities.js.map +0 -1
  273. package/lib/apis/picklists.d.ts.map +0 -1
  274. package/lib/apis/picklists.js.map +0 -1
  275. package/lib/apis/tenants.d.ts.map +0 -1
  276. package/lib/apis/tenants.js.map +0 -1
  277. package/lib/apis/users.d.ts.map +0 -1
  278. package/lib/apis/users.js.map +0 -1
  279. package/lib/apis/utils.d.ts.map +0 -1
  280. package/lib/apis/utils.js.map +0 -1
  281. package/lib/apis/vehicles.d.ts.map +0 -1
  282. package/lib/apis/vehicles.js.map +0 -1
  283. package/lib/constants.d.ts.map +0 -1
  284. package/lib/constants.js.map +0 -1
  285. package/lib/ddb-entities.d.ts.map +0 -1
  286. package/lib/ddb-entities.js.map +0 -1
  287. package/lib/types/activities.d.ts.map +0 -1
  288. package/lib/types/activities.js.map +0 -1
  289. package/lib/types/crm.d.ts.map +0 -1
  290. package/lib/types/crm.js.map +0 -1
  291. package/lib/types/definitions.d.ts.map +0 -1
  292. package/lib/types/documents.d.ts.map +0 -1
  293. package/lib/types/events.d.ts.map +0 -1
  294. package/lib/types/events.js.map +0 -1
  295. package/lib/types/fields.d.ts.map +0 -1
  296. package/lib/types/fields.js.map +0 -1
  297. package/lib/types/internet-vehicles.d.ts.map +0 -1
  298. package/lib/types/internet-vehicles.js.map +0 -1
  299. package/lib/types/leads.d.ts.map +0 -1
  300. package/lib/types/leasing-administration.d.ts.map +0 -1
  301. package/lib/types/leasing-administration.js.map +0 -1
  302. package/lib/types/leasing-search.d.ts.map +0 -1
  303. package/lib/types/leasing-search.js.map +0 -1
  304. package/lib/types/leasing-settings.d.ts.map +0 -1
  305. package/lib/types/leasing-settings.js.map +0 -1
  306. package/lib/types/leasing.d.ts.map +0 -1
  307. package/lib/types/leasing.js.map +0 -1
  308. package/lib/types/machines.d.ts.map +0 -1
  309. package/lib/types/opportunities.d.ts.map +0 -1
  310. package/lib/types/opportunities.js.map +0 -1
  311. package/lib/types/payments.d.ts.map +0 -1
  312. package/lib/types/payments.js.map +0 -1
  313. package/lib/types/picklists.d.ts.map +0 -1
  314. package/lib/types/quotes.d.ts.map +0 -1
  315. package/lib/types/quotes.js.map +0 -1
  316. package/lib/types/recently-viewed.d.ts.map +0 -1
  317. package/lib/types/recently-viewed.js.map +0 -1
  318. package/lib/types/saved-filters.d.ts.map +0 -1
  319. package/lib/types/saved-filters.js.map +0 -1
  320. package/lib/types/search.d.ts.map +0 -1
  321. package/lib/types/search.js.map +0 -1
  322. package/lib/types/settings.d.ts.map +0 -1
  323. package/lib/types/storage.d.ts +0 -2
  324. package/lib/types/storage.d.ts.map +0 -1
  325. package/lib/types/storage.js +0 -2
  326. package/lib/types/storage.js.map +0 -1
  327. package/lib/types/templates.d.ts.map +0 -1
  328. package/lib/types/templates.js.map +0 -1
  329. package/lib/types/tenants.d.ts.map +0 -1
  330. package/lib/types/tenants.js.map +0 -1
  331. package/lib/types/users.d.ts.map +0 -1
  332. package/lib/types/utils.d.ts.map +0 -1
  333. package/lib/types/utils.js.map +0 -1
  334. package/lib/types/vehicles.d.ts.map +0 -1
  335. package/lib/types/vehicles.js.map +0 -1
  336. package/lib/types/website.d.ts.map +0 -1
  337. package/lib/utils/forms.d.ts.map +0 -1
  338. package/lib/utils/forms.js.map +0 -1
  339. package/lib/utils/leasing.d.ts.map +0 -1
  340. package/lib/utils/leasing.js.map +0 -1
  341. package/lib/utils/slug.d.ts.map +0 -1
  342. package/lib/utils/slug.js.map +0 -1
  343. package/lib/utils/tenants.d.ts.map +0 -1
  344. package/lib/utils/tenants.js.map +0 -1
  345. package/lib/utils/vehicles.d.ts.map +0 -1
  346. package/lib/utils/vehicles.js.map +0 -1
  347. package/tsconfig.tsbuildinfo +0 -1
  348. /package/lib/{ddb-entities.js → esm/ddb-entities.js} +0 -0
  349. /package/lib/{types → esm/types}/activities.js +0 -0
  350. /package/lib/{types → esm/types}/crm.js +0 -0
  351. /package/lib/{types → esm/types}/definitions.js +0 -0
  352. /package/lib/{types → esm/types}/documents.js +0 -0
  353. /package/lib/{types → esm/types}/events.js +0 -0
  354. /package/lib/{types → esm/types}/fields.js +0 -0
  355. /package/lib/{types → esm/types}/internet-vehicles.js +0 -0
  356. /package/lib/{types → esm/types}/leads.js +0 -0
  357. /package/lib/{types → esm/types}/leasing-administration.js +0 -0
  358. /package/lib/{types → esm/types}/leasing-search.js +0 -0
  359. /package/lib/{types → esm/types}/leasing-settings.js +0 -0
  360. /package/lib/{types → esm/types}/leasing.js +0 -0
  361. /package/lib/{types → esm/types}/machines.js +0 -0
  362. /package/lib/{types → esm/types}/opportunities.js +0 -0
  363. /package/lib/{types → esm/types}/payments.js +0 -0
  364. /package/lib/{types → esm/types}/picklists.js +0 -0
  365. /package/lib/{types → esm/types}/quotes.js +0 -0
  366. /package/lib/{types → esm/types}/recently-viewed.js +0 -0
  367. /package/lib/{types → esm/types}/saved-filters.js +0 -0
  368. /package/lib/{types → esm/types}/search.js +0 -0
  369. /package/lib/{types → esm/types}/settings.js +0 -0
  370. /package/lib/{types → esm/types}/templates.js +0 -0
  371. /package/lib/{types → esm/types}/tenants.js +0 -0
  372. /package/lib/{types → esm/types}/users.js +0 -0
  373. /package/lib/{types → esm/types}/utils.js +0 -0
  374. /package/lib/{types → esm/types}/vehicles.js +0 -0
  375. /package/lib/{types → esm/types}/website.js +0 -0
  376. /package/lib/{utils → esm/utils}/forms.js +0 -0
  377. /package/lib/{utils → esm/utils}/slug.js +0 -0
  378. /package/lib/{utils → esm/utils}/vehicles.js +0 -0
  379. /package/lib/{apis → types/apis}/documents.d.ts +0 -0
  380. /package/lib/{apis → types/apis}/internet-vehicles.d.ts +0 -0
  381. /package/lib/{apis → types/apis}/leasing-administration.d.ts +0 -0
  382. /package/lib/{apis → types/apis}/leasing.d.ts +0 -0
  383. /package/lib/{apis → types/apis}/opportunities.d.ts +0 -0
  384. /package/lib/{apis → types/apis}/tenants.d.ts +0 -0
  385. /package/lib/{apis → types/apis}/users.d.ts +0 -0
  386. /package/lib/{apis → types/apis}/utils.d.ts +0 -0
  387. /package/lib/{apis → types/apis}/vehicles.d.ts +0 -0
  388. /package/lib/{ddb-entities.d.ts → types/ddb-entities.d.ts} +0 -0
  389. /package/lib/types/{activities.d.ts → types/activities.d.ts} +0 -0
  390. /package/lib/types/{definitions.d.ts → types/definitions.d.ts} +0 -0
  391. /package/lib/types/{events.d.ts → types/events.d.ts} +0 -0
  392. /package/lib/types/{fields.d.ts → types/fields.d.ts} +0 -0
  393. /package/lib/types/{machines.d.ts → types/machines.d.ts} +0 -0
  394. /package/lib/types/{payments.d.ts → types/payments.d.ts} +0 -0
  395. /package/lib/types/{saved-filters.d.ts → types/saved-filters.d.ts} +0 -0
  396. /package/lib/types/{settings.d.ts → types/settings.d.ts} +0 -0
  397. /package/lib/types/{templates.d.ts → types/templates.d.ts} +0 -0
  398. /package/lib/{utils → types/utils}/forms.d.ts +0 -0
  399. /package/lib/{utils → types/utils}/leasing.d.ts +0 -0
  400. /package/lib/{utils → types/utils}/slug.d.ts +0 -0
  401. /package/lib/{utils → types/utils}/tenants.d.ts +0 -0
  402. /package/lib/{utils → types/utils}/vehicles.d.ts +0 -0
@@ -0,0 +1,923 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LeasingAdminUploadHandlers = exports.KM_ROUNDING = exports.PRICE_ROUNDING = exports.MAX_PRICE = exports.MAX_KM = exports.MAX_AGE = exports.FILTER_MULTIPLE_SEPARATOR = exports.FILTER_RANGE_SEPARATOR = exports.MIN_SORT_PRIORITY = exports.MAX_SORT_PRIORITY = exports.Categories = exports.DOCUMENT_TYPES_PICKLIST_ID = exports.JOB_CATEGORIES_PICKLIST_ID = exports.EXTENDED_PICKLIST_ID = exports.HEIGTHENED_PICKLIST_ID = exports.ORG_SEGMENTS_PICKLIST_ID = exports.SUSPENSIONS_PICKLIST_ID = exports.MAKE_MODEL_TYPES_PICKLIST_ID = exports.MAKE_MODELS_PICKLIST_ID = exports.MAKES_PICKLIST_ID = exports.TRANSMISSIONS_PICKLIST_ID = exports.EURONORMS_PICKLIST_ID = exports.CONFIGURATIONS_PICKLIST_ID = exports.CATEGORIES_PICKLIST_ID = exports.CABINS_PICKLIST_ID = exports.BODYWORKS_PICKLIST_ID = exports.WEBSITE_MARKETING_PLATFORM_ID = exports.ENGINEERING_DOCS_PICKLIST_ID = exports.CRANE_MAKE_PICKLIST_ID = exports.VAT_PERCENTAGE_PICKLIST_ID = exports.TAILGATE_MAKE_PICKLIST_ID = exports.AXLE_MAKE_PICKLIST_ID = exports.SUPPLIER_VAT_RATE_PICKLIST_ID = exports.LOCATION_PICKLIST_ID = exports.GEARBOX_MAKE_PICKLIST_ID = exports.AXLE_TIRE_SIZE_PICKLIST_ID = exports.DEPARTMENT_PICKLIST_ID = exports.OPPORTUNITY_SOURCE_PICKLIST_ID = exports.OPPORTUNITY_LOGISTIC_STATUS_PICKLIST_ID = exports.OPPORTUNITY_DEAL_STATUS_PICKLIST_ID = exports.OPPORTUNITY_STATUS_PICKLIST_ID = exports.MARKETING_PLATFORMS_PICKLIST_ID = exports.VEHICLE_SALE_DEAL_STATUS_PICKLIST_ID = exports.VEHICLE_STATE_FILTERS_PICKLIST_ID = exports.VEHICLE_MAIN_FEATURES_PICKLIST_ID = exports.COUNTRIES_PICKLIST_ID = exports.TIMEZONES_PICKLIST_ID = exports.CLIENT_LANGUAGES_PICKLIST_ID = exports.APP_LANGUAGES_PICKLIST_ID = exports.BusinessEntityIds = void 0;
4
+ exports.AXLE_CONFIG = exports.UNKNOWN_MAKE = exports.OpportunityType = exports.INTERNET_VEHICLES_ANALYSIS_ALL_DATA = exports.LeasingAdminUploadErrors = exports.LeasingAdminEntities = void 0;
5
+ var constants_1 = require("@bisondesk/commons-sdk/constants");
6
+ Object.defineProperty(exports, "BusinessEntityIds", { enumerable: true, get: function () { return constants_1.BusinessEntityIds; } });
7
+ exports.APP_LANGUAGES_PICKLIST_ID = 'appLanguages';
8
+ exports.CLIENT_LANGUAGES_PICKLIST_ID = 'clientLanguages';
9
+ exports.TIMEZONES_PICKLIST_ID = 'timezones';
10
+ exports.COUNTRIES_PICKLIST_ID = 'countries';
11
+ exports.VEHICLE_MAIN_FEATURES_PICKLIST_ID = 'vehicleMainFeatures';
12
+ exports.VEHICLE_STATE_FILTERS_PICKLIST_ID = 'vehicleStateFilters';
13
+ exports.VEHICLE_SALE_DEAL_STATUS_PICKLIST_ID = 'vehicleSaleDealStatus';
14
+ exports.MARKETING_PLATFORMS_PICKLIST_ID = 'marketingPlatforms';
15
+ exports.OPPORTUNITY_STATUS_PICKLIST_ID = 'opportunityStatus';
16
+ exports.OPPORTUNITY_DEAL_STATUS_PICKLIST_ID = 'opportunityDealStatus';
17
+ exports.OPPORTUNITY_LOGISTIC_STATUS_PICKLIST_ID = 'opportunityLogisticStatus';
18
+ exports.OPPORTUNITY_SOURCE_PICKLIST_ID = 'opportunity_source';
19
+ exports.DEPARTMENT_PICKLIST_ID = 'department';
20
+ exports.AXLE_TIRE_SIZE_PICKLIST_ID = 'axleTireSize';
21
+ exports.GEARBOX_MAKE_PICKLIST_ID = 'gearboxMake';
22
+ exports.LOCATION_PICKLIST_ID = 'location';
23
+ exports.SUPPLIER_VAT_RATE_PICKLIST_ID = 'supplierVATRate';
24
+ exports.AXLE_MAKE_PICKLIST_ID = 'axleMake';
25
+ exports.TAILGATE_MAKE_PICKLIST_ID = 'tailgateMakes';
26
+ exports.VAT_PERCENTAGE_PICKLIST_ID = 'vatPercentages';
27
+ exports.CRANE_MAKE_PICKLIST_ID = 'craneMakes';
28
+ exports.ENGINEERING_DOCS_PICKLIST_ID = 'engineeringDocs';
29
+ exports.WEBSITE_MARKETING_PLATFORM_ID = 'PUBLIC_WEBSITE';
30
+ exports.BODYWORKS_PICKLIST_ID = 'bodywork';
31
+ exports.CABINS_PICKLIST_ID = 'cabin';
32
+ exports.CATEGORIES_PICKLIST_ID = 'category';
33
+ exports.CONFIGURATIONS_PICKLIST_ID = 'configuration';
34
+ exports.EURONORMS_PICKLIST_ID = 'euronorm';
35
+ exports.TRANSMISSIONS_PICKLIST_ID = 'gearbox';
36
+ exports.MAKES_PICKLIST_ID = 'make';
37
+ exports.MAKE_MODELS_PICKLIST_ID = 'make_model';
38
+ exports.MAKE_MODEL_TYPES_PICKLIST_ID = 'make_model_type';
39
+ exports.SUSPENSIONS_PICKLIST_ID = 'suspension';
40
+ exports.ORG_SEGMENTS_PICKLIST_ID = 'segment';
41
+ exports.HEIGTHENED_PICKLIST_ID = 'extended_height_dimension';
42
+ exports.EXTENDED_PICKLIST_ID = 'extended_length_dimension';
43
+ exports.JOB_CATEGORIES_PICKLIST_ID = 'job_category';
44
+ exports.DOCUMENT_TYPES_PICKLIST_ID = 'document_types';
45
+ var Categories;
46
+ (function (Categories) {
47
+ Categories["TractorHead"] = "Tractor Head";
48
+ Categories["Truck"] = "Truck";
49
+ Categories["Trailer"] = "Trailer";
50
+ Categories["SemiTrailer"] = "Semi-Trailer";
51
+ Categories["Van"] = "Van";
52
+ Categories["Machine"] = "Machine";
53
+ Categories["Car"] = "Car";
54
+ Categories["Superstructure"] = "Superstructure";
55
+ })(Categories = exports.Categories || (exports.Categories = {}));
56
+ exports.MAX_SORT_PRIORITY = 10000;
57
+ exports.MIN_SORT_PRIORITY = 1;
58
+ exports.FILTER_RANGE_SEPARATOR = '__';
59
+ exports.FILTER_MULTIPLE_SEPARATOR = '__';
60
+ exports.MAX_AGE = 15;
61
+ exports.MAX_KM = 1000000;
62
+ exports.MAX_PRICE = 100000;
63
+ exports.PRICE_ROUNDING = 1000;
64
+ exports.KM_ROUNDING = 100000;
65
+ var LeasingAdminUploadHandlers;
66
+ (function (LeasingAdminUploadHandlers) {
67
+ LeasingAdminUploadHandlers["DhondtMonthly"] = "dhondt-monthly-invoice";
68
+ LeasingAdminUploadHandlers["DhondtProrata"] = "dhondt-prorata-invoice";
69
+ LeasingAdminUploadHandlers["Belfius"] = "belfius-monthly-invoice";
70
+ LeasingAdminUploadHandlers["ING"] = "ing-monthly-invoice";
71
+ })(LeasingAdminUploadHandlers = exports.LeasingAdminUploadHandlers || (exports.LeasingAdminUploadHandlers = {}));
72
+ var LeasingAdminEntities;
73
+ (function (LeasingAdminEntities) {
74
+ LeasingAdminEntities["Dhondt"] = "dhondt";
75
+ LeasingAdminEntities["Becris"] = "becris";
76
+ LeasingAdminEntities["ING"] = "ing";
77
+ })(LeasingAdminEntities = exports.LeasingAdminEntities || (exports.LeasingAdminEntities = {}));
78
+ var LeasingAdminUploadErrors;
79
+ (function (LeasingAdminUploadErrors) {
80
+ LeasingAdminUploadErrors["DuplicatedFile"] = "leasing-administration.file-already-exists";
81
+ LeasingAdminUploadErrors["FetchCurrentFile"] = "leasing-administration.diff.fetch-current-file-failed";
82
+ LeasingAdminUploadErrors["InvalidAttachment"] = "leasing-administration.invalid-attachment";
83
+ LeasingAdminUploadErrors["InvalidBelfiusXlsx"] = "leasing-administration.belfius.invalid-xlsx";
84
+ LeasingAdminUploadErrors["InvalidHandlerId"] = "leasing-administration.invalid-handler";
85
+ LeasingAdminUploadErrors["InvalidInvoiceFormat"] = "leasing-administration.upload.invalid-invoice";
86
+ LeasingAdminUploadErrors["NegativeAmount"] = "leasing-administration.negative-amount";
87
+ LeasingAdminUploadErrors["OngoingUpload"] = "leasing-administration.ongoing-upload";
88
+ LeasingAdminUploadErrors["Publish"] = "leasing-administration.upload.publish-failed";
89
+ LeasingAdminUploadErrors["UnknownVehicle"] = "leasing-administration.belfius.unknown-vehicle";
90
+ LeasingAdminUploadErrors["MissingVehicle"] = "leasing-administration.belfius.missing-vehicle";
91
+ LeasingAdminUploadErrors["Validation"] = "leasing-administration.upload.invalid-request";
92
+ })(LeasingAdminUploadErrors = exports.LeasingAdminUploadErrors || (exports.LeasingAdminUploadErrors = {}));
93
+ exports.INTERNET_VEHICLES_ANALYSIS_ALL_DATA = 'all';
94
+ var OpportunityType;
95
+ (function (OpportunityType) {
96
+ OpportunityType["LEASING"] = "leasing";
97
+ OpportunityType["SALES"] = "sales";
98
+ })(OpportunityType = exports.OpportunityType || (exports.OpportunityType = {}));
99
+ exports.UNKNOWN_MAKE = 'other';
100
+ exports.AXLE_CONFIG = {
101
+ '4x2': [
102
+ {
103
+ nr: 1,
104
+ position: 'Front',
105
+ steering: true,
106
+ powered: false,
107
+ twinWheels: false,
108
+ },
109
+ {
110
+ nr: 2,
111
+ position: 'Back',
112
+ steering: false,
113
+ powered: true,
114
+ twinWheels: true,
115
+ },
116
+ ],
117
+ '4x4': [
118
+ {
119
+ nr: 1,
120
+ position: 'Front',
121
+ steering: true,
122
+ powered: true,
123
+ twinWheels: false,
124
+ },
125
+ {
126
+ nr: 2,
127
+ position: 'Back',
128
+ steering: false,
129
+ powered: true,
130
+ twinWheels: true,
131
+ },
132
+ ],
133
+ '6x2': [
134
+ {
135
+ nr: 1,
136
+ position: 'Front',
137
+ steering: true,
138
+ powered: false,
139
+ twinWheels: false,
140
+ },
141
+ {
142
+ nr: 2,
143
+ position: 'Back',
144
+ steering: false,
145
+ powered: true,
146
+ twinWheels: false,
147
+ },
148
+ {
149
+ nr: 3,
150
+ position: 'Back',
151
+ steering: false,
152
+ powered: false,
153
+ twinWheels: true,
154
+ },
155
+ ],
156
+ '6x4': [
157
+ {
158
+ nr: 1,
159
+ position: 'Front',
160
+ steering: true,
161
+ powered: false,
162
+ twinWheels: false,
163
+ },
164
+ {
165
+ nr: 2,
166
+ position: 'Back',
167
+ steering: false,
168
+ powered: true,
169
+ twinWheels: true,
170
+ },
171
+ {
172
+ nr: 3,
173
+ position: 'Back',
174
+ steering: false,
175
+ powered: true,
176
+ twinWheels: true,
177
+ },
178
+ ],
179
+ '6x6': [
180
+ {
181
+ nr: 1,
182
+ position: 'Front',
183
+ steering: true,
184
+ powered: true,
185
+ twinWheels: false,
186
+ },
187
+ {
188
+ nr: 2,
189
+ position: 'Back',
190
+ steering: false,
191
+ powered: true,
192
+ twinWheels: true,
193
+ },
194
+ {
195
+ nr: 3,
196
+ position: 'Back',
197
+ steering: false,
198
+ powered: true,
199
+ twinWheels: true,
200
+ },
201
+ ],
202
+ '8x2': [
203
+ {
204
+ nr: 1,
205
+ position: 'Front',
206
+ steering: true,
207
+ powered: false,
208
+ twinWheels: false,
209
+ },
210
+ {
211
+ nr: 2,
212
+ position: 'Front',
213
+ steering: true,
214
+ powered: false,
215
+ twinWheels: false,
216
+ },
217
+ {
218
+ nr: 3,
219
+ position: 'Back',
220
+ steering: false,
221
+ powered: true,
222
+ twinWheels: false,
223
+ },
224
+ {
225
+ nr: 4,
226
+ position: 'Back',
227
+ steering: false,
228
+ powered: false,
229
+ twinWheels: true,
230
+ },
231
+ ],
232
+ '8x4': [
233
+ {
234
+ nr: 1,
235
+ position: 'Front',
236
+ steering: true,
237
+ powered: false,
238
+ twinWheels: false,
239
+ },
240
+ {
241
+ nr: 2,
242
+ position: 'Front',
243
+ steering: true,
244
+ powered: false,
245
+ twinWheels: false,
246
+ },
247
+ {
248
+ nr: 3,
249
+ position: 'Back',
250
+ steering: false,
251
+ powered: true,
252
+ twinWheels: true,
253
+ },
254
+ {
255
+ nr: 4,
256
+ position: 'Back',
257
+ steering: false,
258
+ powered: true,
259
+ twinWheels: true,
260
+ },
261
+ ],
262
+ '8x6': [
263
+ {
264
+ nr: 1,
265
+ position: 'Front',
266
+ steering: true,
267
+ powered: true,
268
+ twinWheels: false,
269
+ },
270
+ {
271
+ nr: 2,
272
+ position: 'Front',
273
+ steering: true,
274
+ powered: false,
275
+ twinWheels: false,
276
+ },
277
+ {
278
+ nr: 3,
279
+ position: 'Back',
280
+ steering: false,
281
+ powered: true,
282
+ twinWheels: true,
283
+ },
284
+ {
285
+ nr: 4,
286
+ position: 'Back',
287
+ steering: false,
288
+ powered: true,
289
+ twinWheels: true,
290
+ },
291
+ ],
292
+ '8x8': [
293
+ {
294
+ nr: 1,
295
+ position: 'Front',
296
+ steering: true,
297
+ powered: true,
298
+ twinWheels: false,
299
+ },
300
+ {
301
+ nr: 2,
302
+ position: 'Front',
303
+ steering: true,
304
+ powered: true,
305
+ twinWheels: false,
306
+ },
307
+ {
308
+ nr: 3,
309
+ position: 'Back',
310
+ steering: false,
311
+ powered: true,
312
+ twinWheels: true,
313
+ },
314
+ {
315
+ nr: 4,
316
+ position: 'Back',
317
+ steering: false,
318
+ powered: true,
319
+ twinWheels: true,
320
+ },
321
+ ],
322
+ '10x4': [
323
+ {
324
+ nr: 1,
325
+ position: 'Front',
326
+ steering: true,
327
+ powered: false,
328
+ twinWheels: false,
329
+ },
330
+ {
331
+ nr: 2,
332
+ position: 'Front',
333
+ steering: true,
334
+ powered: false,
335
+ twinWheels: false,
336
+ },
337
+ {
338
+ nr: 3,
339
+ position: 'Front',
340
+ steering: true,
341
+ powered: false,
342
+ twinWheels: false,
343
+ },
344
+ {
345
+ nr: 4,
346
+ position: 'Back',
347
+ steering: false,
348
+ powered: true,
349
+ twinWheels: true,
350
+ },
351
+ {
352
+ nr: 5,
353
+ position: 'Back',
354
+ steering: false,
355
+ powered: true,
356
+ twinWheels: true,
357
+ },
358
+ ],
359
+ '10x6': [
360
+ {
361
+ nr: 1,
362
+ position: 'Front',
363
+ steering: true,
364
+ powered: false,
365
+ twinWheels: false,
366
+ },
367
+ {
368
+ nr: 2,
369
+ position: 'Front',
370
+ steering: true,
371
+ powered: false,
372
+ twinWheels: false,
373
+ },
374
+ {
375
+ nr: 3,
376
+ position: 'Back',
377
+ steering: false,
378
+ powered: true,
379
+ twinWheels: false,
380
+ },
381
+ {
382
+ nr: 4,
383
+ position: 'Back',
384
+ steering: false,
385
+ powered: true,
386
+ twinWheels: true,
387
+ },
388
+ {
389
+ nr: 5,
390
+ position: 'Back',
391
+ steering: false,
392
+ powered: true,
393
+ twinWheels: true,
394
+ },
395
+ ],
396
+ '10x8': [
397
+ {
398
+ nr: 1,
399
+ position: 'Front',
400
+ steering: true,
401
+ powered: true,
402
+ twinWheels: false,
403
+ },
404
+ {
405
+ nr: 2,
406
+ position: 'Front',
407
+ steering: true,
408
+ powered: true,
409
+ twinWheels: false,
410
+ },
411
+ {
412
+ nr: 3,
413
+ position: 'Front',
414
+ steering: true,
415
+ powered: false,
416
+ twinWheels: false,
417
+ },
418
+ {
419
+ nr: 4,
420
+ position: 'Back',
421
+ steering: false,
422
+ powered: true,
423
+ twinWheels: true,
424
+ },
425
+ {
426
+ nr: 5,
427
+ position: 'Back',
428
+ steering: false,
429
+ powered: true,
430
+ twinWheels: true,
431
+ },
432
+ ],
433
+ '10x10': [
434
+ {
435
+ nr: 1,
436
+ position: 'Front',
437
+ steering: true,
438
+ powered: true,
439
+ twinWheels: false,
440
+ },
441
+ {
442
+ nr: 2,
443
+ position: 'Front',
444
+ steering: true,
445
+ powered: true,
446
+ twinWheels: false,
447
+ },
448
+ {
449
+ nr: 3,
450
+ position: 'Front',
451
+ steering: true,
452
+ powered: true,
453
+ twinWheels: false,
454
+ },
455
+ {
456
+ nr: 4,
457
+ position: 'Back',
458
+ steering: false,
459
+ powered: true,
460
+ twinWheels: true,
461
+ },
462
+ {
463
+ nr: 5,
464
+ position: 'Back',
465
+ steering: false,
466
+ powered: true,
467
+ twinWheels: true,
468
+ },
469
+ ],
470
+ '1 axle': [
471
+ {
472
+ nr: 1,
473
+ position: 'Back',
474
+ steering: false,
475
+ powered: false,
476
+ twinWheels: false,
477
+ },
478
+ ],
479
+ '2 axles': [
480
+ {
481
+ nr: 1,
482
+ position: 'Back',
483
+ steering: false,
484
+ powered: false,
485
+ twinWheels: false,
486
+ },
487
+ {
488
+ nr: 2,
489
+ position: 'Back',
490
+ steering: false,
491
+ powered: false,
492
+ twinWheels: false,
493
+ },
494
+ ],
495
+ '3 axles': [
496
+ {
497
+ nr: 1,
498
+ position: 'Back',
499
+ steering: false,
500
+ powered: false,
501
+ twinWheels: false,
502
+ },
503
+ {
504
+ nr: 2,
505
+ position: 'Back',
506
+ steering: false,
507
+ powered: false,
508
+ twinWheels: false,
509
+ },
510
+ {
511
+ nr: 3,
512
+ position: 'Back',
513
+ steering: false,
514
+ powered: false,
515
+ twinWheels: false,
516
+ },
517
+ ],
518
+ '4 axles': [
519
+ {
520
+ nr: 1,
521
+ position: 'Back',
522
+ steering: false,
523
+ powered: false,
524
+ twinWheels: false,
525
+ },
526
+ {
527
+ nr: 2,
528
+ position: 'Back',
529
+ steering: false,
530
+ powered: false,
531
+ twinWheels: false,
532
+ },
533
+ {
534
+ nr: 3,
535
+ position: 'Back',
536
+ steering: false,
537
+ powered: false,
538
+ twinWheels: false,
539
+ },
540
+ {
541
+ nr: 4,
542
+ position: 'Back',
543
+ steering: false,
544
+ powered: false,
545
+ twinWheels: false,
546
+ },
547
+ ],
548
+ '5 axles': [
549
+ {
550
+ nr: 1,
551
+ position: 'Back',
552
+ steering: false,
553
+ powered: false,
554
+ twinWheels: false,
555
+ },
556
+ {
557
+ nr: 2,
558
+ position: 'Back',
559
+ steering: false,
560
+ powered: false,
561
+ twinWheels: false,
562
+ },
563
+ {
564
+ nr: 3,
565
+ position: 'Back',
566
+ steering: false,
567
+ powered: false,
568
+ twinWheels: false,
569
+ },
570
+ {
571
+ nr: 4,
572
+ position: 'Back',
573
+ steering: false,
574
+ powered: false,
575
+ twinWheels: false,
576
+ },
577
+ {
578
+ nr: 5,
579
+ position: 'Back',
580
+ steering: false,
581
+ powered: false,
582
+ twinWheels: false,
583
+ },
584
+ ],
585
+ '6 axles': [
586
+ {
587
+ nr: 1,
588
+ position: 'Back',
589
+ steering: false,
590
+ powered: false,
591
+ twinWheels: false,
592
+ },
593
+ {
594
+ nr: 2,
595
+ position: 'Back',
596
+ steering: false,
597
+ powered: false,
598
+ twinWheels: false,
599
+ },
600
+ {
601
+ nr: 3,
602
+ position: 'Back',
603
+ steering: false,
604
+ powered: false,
605
+ twinWheels: false,
606
+ },
607
+ {
608
+ nr: 4,
609
+ position: 'Back',
610
+ steering: false,
611
+ powered: false,
612
+ twinWheels: false,
613
+ },
614
+ {
615
+ nr: 5,
616
+ position: 'Back',
617
+ steering: false,
618
+ powered: false,
619
+ twinWheels: false,
620
+ },
621
+ {
622
+ nr: 6,
623
+ position: 'Back',
624
+ steering: false,
625
+ powered: false,
626
+ twinWheels: false,
627
+ },
628
+ ],
629
+ '7 axles': [
630
+ {
631
+ nr: 1,
632
+ position: 'Back',
633
+ steering: false,
634
+ powered: false,
635
+ twinWheels: false,
636
+ },
637
+ {
638
+ nr: 2,
639
+ position: 'Back',
640
+ steering: false,
641
+ powered: false,
642
+ twinWheels: false,
643
+ },
644
+ {
645
+ nr: 3,
646
+ position: 'Back',
647
+ steering: false,
648
+ powered: false,
649
+ twinWheels: false,
650
+ },
651
+ {
652
+ nr: 4,
653
+ position: 'Back',
654
+ steering: false,
655
+ powered: false,
656
+ twinWheels: false,
657
+ },
658
+ {
659
+ nr: 5,
660
+ position: 'Back',
661
+ steering: false,
662
+ powered: false,
663
+ twinWheels: false,
664
+ },
665
+ {
666
+ nr: 6,
667
+ position: 'Back',
668
+ steering: false,
669
+ powered: false,
670
+ twinWheels: false,
671
+ },
672
+ {
673
+ nr: 7,
674
+ position: 'Back',
675
+ steering: false,
676
+ powered: false,
677
+ twinWheels: false,
678
+ },
679
+ ],
680
+ '8 axles': [
681
+ {
682
+ nr: 1,
683
+ position: 'Back',
684
+ steering: false,
685
+ powered: false,
686
+ twinWheels: false,
687
+ },
688
+ {
689
+ nr: 2,
690
+ position: 'Back',
691
+ steering: false,
692
+ powered: false,
693
+ twinWheels: false,
694
+ },
695
+ {
696
+ nr: 3,
697
+ position: 'Back',
698
+ steering: false,
699
+ powered: false,
700
+ twinWheels: false,
701
+ },
702
+ {
703
+ nr: 4,
704
+ position: 'Back',
705
+ steering: false,
706
+ powered: false,
707
+ twinWheels: false,
708
+ },
709
+ {
710
+ nr: 5,
711
+ position: 'Back',
712
+ steering: false,
713
+ powered: false,
714
+ twinWheels: false,
715
+ },
716
+ {
717
+ nr: 6,
718
+ position: 'Back',
719
+ steering: false,
720
+ powered: false,
721
+ twinWheels: false,
722
+ },
723
+ {
724
+ nr: 7,
725
+ position: 'Back',
726
+ steering: false,
727
+ powered: false,
728
+ twinWheels: false,
729
+ },
730
+ {
731
+ nr: 8,
732
+ position: 'Back',
733
+ steering: false,
734
+ powered: false,
735
+ twinWheels: false,
736
+ },
737
+ ],
738
+ '1 front, 1 rear': [
739
+ {
740
+ nr: 1,
741
+ position: 'Front',
742
+ steering: false,
743
+ powered: false,
744
+ twinWheels: false,
745
+ },
746
+ {
747
+ nr: 2,
748
+ position: 'Back',
749
+ steering: false,
750
+ powered: false,
751
+ twinWheels: false,
752
+ },
753
+ ],
754
+ '1 front, 2 rear': [
755
+ {
756
+ nr: 1,
757
+ position: 'Front',
758
+ steering: false,
759
+ powered: false,
760
+ twinWheels: false,
761
+ },
762
+ {
763
+ nr: 2,
764
+ position: 'Back',
765
+ steering: false,
766
+ powered: false,
767
+ twinWheels: false,
768
+ },
769
+ {
770
+ nr: 3,
771
+ position: 'Back',
772
+ steering: false,
773
+ powered: false,
774
+ twinWheels: false,
775
+ },
776
+ ],
777
+ '1 front, 3 rear': [
778
+ {
779
+ nr: 1,
780
+ position: 'Front',
781
+ steering: false,
782
+ powered: false,
783
+ twinWheels: false,
784
+ },
785
+ {
786
+ nr: 2,
787
+ position: 'Back',
788
+ steering: false,
789
+ powered: false,
790
+ twinWheels: false,
791
+ },
792
+ {
793
+ nr: 3,
794
+ position: 'Back',
795
+ steering: false,
796
+ powered: false,
797
+ twinWheels: false,
798
+ },
799
+ {
800
+ nr: 4,
801
+ position: 'Back',
802
+ steering: false,
803
+ powered: false,
804
+ twinWheels: false,
805
+ },
806
+ ],
807
+ '2 front, 2 rear': [
808
+ {
809
+ nr: 1,
810
+ position: 'Front',
811
+ steering: false,
812
+ powered: false,
813
+ twinWheels: false,
814
+ },
815
+ {
816
+ nr: 2,
817
+ position: 'Front',
818
+ steering: false,
819
+ powered: false,
820
+ twinWheels: false,
821
+ },
822
+ {
823
+ nr: 3,
824
+ position: 'Back',
825
+ steering: false,
826
+ powered: false,
827
+ twinWheels: false,
828
+ },
829
+ {
830
+ nr: 4,
831
+ position: 'Back',
832
+ steering: false,
833
+ powered: false,
834
+ twinWheels: false,
835
+ },
836
+ ],
837
+ '2 front, 3 rear': [
838
+ {
839
+ nr: 1,
840
+ position: 'Front',
841
+ steering: false,
842
+ powered: false,
843
+ twinWheels: false,
844
+ },
845
+ {
846
+ nr: 2,
847
+ position: 'Front',
848
+ steering: false,
849
+ powered: false,
850
+ twinWheels: false,
851
+ },
852
+ {
853
+ nr: 3,
854
+ position: 'Back',
855
+ steering: false,
856
+ powered: false,
857
+ twinWheels: false,
858
+ },
859
+ {
860
+ nr: 4,
861
+ position: 'Back',
862
+ steering: false,
863
+ powered: false,
864
+ twinWheels: false,
865
+ },
866
+ {
867
+ nr: 5,
868
+ position: 'Back',
869
+ steering: false,
870
+ powered: false,
871
+ twinWheels: false,
872
+ },
873
+ ],
874
+ '1 middle': [
875
+ {
876
+ nr: 1,
877
+ position: 'Middle',
878
+ steering: false,
879
+ powered: false,
880
+ twinWheels: false,
881
+ },
882
+ ],
883
+ '2 middle': [
884
+ {
885
+ nr: 1,
886
+ position: 'Middle',
887
+ steering: false,
888
+ powered: false,
889
+ twinWheels: false,
890
+ },
891
+ {
892
+ nr: 2,
893
+ position: 'Middle',
894
+ steering: false,
895
+ powered: false,
896
+ twinWheels: false,
897
+ },
898
+ ],
899
+ '3 middle': [
900
+ {
901
+ nr: 1,
902
+ position: 'Middle',
903
+ steering: false,
904
+ powered: false,
905
+ twinWheels: false,
906
+ },
907
+ {
908
+ nr: 2,
909
+ position: 'Middle',
910
+ steering: false,
911
+ powered: false,
912
+ twinWheels: false,
913
+ },
914
+ {
915
+ nr: 3,
916
+ position: 'Middle',
917
+ steering: false,
918
+ powered: false,
919
+ twinWheels: false,
920
+ },
921
+ ],
922
+ };
923
+ //# sourceMappingURL=constants.js.map