@veloceapps/sdk 5.0.13-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (387) hide show
  1. package/README.md +3 -0
  2. package/bundles/veloceapps-sdk-cms.umd.js +1975 -0
  3. package/bundles/veloceapps-sdk-cms.umd.js.map +1 -0
  4. package/bundles/veloceapps-sdk-core.umd.js +1610 -0
  5. package/bundles/veloceapps-sdk-core.umd.js.map +1 -0
  6. package/bundles/veloceapps-sdk-runtime.umd.js +4349 -0
  7. package/bundles/veloceapps-sdk-runtime.umd.js.map +1 -0
  8. package/bundles/veloceapps-sdk.umd.js +3307 -0
  9. package/bundles/veloceapps-sdk.umd.js.map +1 -0
  10. package/cms/cms.actions.d.ts +28 -0
  11. package/cms/cms.default.d.ts +5 -0
  12. package/cms/cms.elements.d.ts +4 -0
  13. package/cms/components/element-children/element-children.component.d.ts +10 -0
  14. package/cms/components/element-children/element-children.module.d.ts +8 -0
  15. package/cms/components/element-renderer/element-renderer.component.d.ts +36 -0
  16. package/cms/components/element-renderer/element-renderer.module.d.ts +7 -0
  17. package/cms/components/element.component.d.ts +17 -0
  18. package/cms/components/index.d.ts +1 -0
  19. package/cms/components/plugin.component.d.ts +15 -0
  20. package/cms/components/preview/index.d.ts +2 -0
  21. package/cms/components/preview/preview.component.d.ts +34 -0
  22. package/cms/components/preview/preview.module.d.ts +11 -0
  23. package/cms/decorators/element.decorator.d.ts +2 -0
  24. package/cms/decorators/index.d.ts +1 -0
  25. package/cms/directives/custom-template.directive.d.ts +12 -0
  26. package/cms/engine/models/entity.d.ts +11 -0
  27. package/cms/engine/models/plugin.d.ts +5 -0
  28. package/cms/index.d.ts +11 -0
  29. package/cms/injection-tokens.d.ts +11 -0
  30. package/cms/launcher.module.d.ts +10 -0
  31. package/cms/modules/federated/default-options.d.ts +4 -0
  32. package/cms/modules/federated/export.d.ts +1 -0
  33. package/cms/modules/federated/federated.component.d.ts +26 -0
  34. package/cms/modules/federated/federated.module.d.ts +9 -0
  35. package/cms/modules/federated/federated.types.d.ts +30 -0
  36. package/cms/modules/federated/federated.utils.d.ts +1 -0
  37. package/cms/package.json +10 -0
  38. package/cms/plugins/configuration.plugin.d.ts +23 -0
  39. package/cms/plugins/io.plugin.d.ts +9 -0
  40. package/cms/plugins/script.plugin.d.ts +13 -0
  41. package/cms/services/dynamic-module.service.d.ts +15 -0
  42. package/cms/services/element-context.service.d.ts +8 -0
  43. package/cms/services/index.d.ts +3 -0
  44. package/cms/services/integration.state.d.ts +17 -0
  45. package/cms/services/io-provider.service.d.ts +15 -0
  46. package/cms/services/launcher.service.d.ts +18 -0
  47. package/cms/services/templates.service.d.ts +14 -0
  48. package/cms/types/common.types.d.ts +108 -0
  49. package/cms/types/compilation.types.d.ts +6 -0
  50. package/cms/types/configuration.types.d.ts +20 -0
  51. package/cms/types/elements.types.d.ts +2 -0
  52. package/cms/types/index.d.ts +7 -0
  53. package/cms/types/integration.types.d.ts +4 -0
  54. package/cms/types/metrics.types.d.ts +5 -0
  55. package/cms/types/path.types.d.ts +11 -0
  56. package/cms/utils/element.utils.d.ts +17 -0
  57. package/cms/utils/elements-resolver.d.ts +24 -0
  58. package/cms/utils/index.d.ts +3 -0
  59. package/cms/utils/path.utils.d.ts +5 -0
  60. package/cms/veloceapps-sdk-cms.d.ts +5 -0
  61. package/cms/vendor-map.d.ts +708 -0
  62. package/core/core.module.d.ts +8 -0
  63. package/core/index.d.ts +6 -0
  64. package/core/modules/configuration/configuration.module.d.ts +7 -0
  65. package/core/modules/configuration/helpers.d.ts +3 -0
  66. package/core/modules/configuration/index.d.ts +4 -0
  67. package/core/modules/configuration/services/configuration-runtime.service.d.ts +29 -0
  68. package/core/modules/configuration/services/configuration.service.d.ts +45 -0
  69. package/core/modules/configuration/services/runtime-context.service.d.ts +12 -0
  70. package/core/modules/configuration/types/configuration-runtime.types.d.ts +7 -0
  71. package/core/modules/flow-configuration/flow-configuration.module.d.ts +6 -0
  72. package/core/modules/flow-configuration/index.d.ts +4 -0
  73. package/core/modules/flow-configuration/services/flow-configuration.service.d.ts +38 -0
  74. package/core/modules/flow-configuration/services/flow-update.service.d.ts +12 -0
  75. package/core/modules/flow-configuration/types/update.types.d.ts +12 -0
  76. package/core/modules/index.d.ts +2 -0
  77. package/core/package.json +10 -0
  78. package/core/services/context.service.d.ts +18 -0
  79. package/core/services/index.d.ts +3 -0
  80. package/core/services/product-images.service.d.ts +12 -0
  81. package/core/services/quote-draft.service.d.ts +62 -0
  82. package/core/types/index.d.ts +3 -0
  83. package/core/types/quote-states.types.d.ts +6 -0
  84. package/core/types/runtime.types.d.ts +31 -0
  85. package/core/types/ui-definition.types.d.ts +26 -0
  86. package/core/utils/index.d.ts +2 -0
  87. package/core/utils/line-item.utils.d.ts +26 -0
  88. package/core/utils/line-item.worker.d.ts +12 -0
  89. package/core/veloceapps-sdk-core.d.ts +5 -0
  90. package/esm2015/cms/cms.actions.js +47 -0
  91. package/esm2015/cms/cms.default.js +6 -0
  92. package/esm2015/cms/cms.elements.js +29 -0
  93. package/esm2015/cms/components/element-children/element-children.component.js +23 -0
  94. package/esm2015/cms/components/element-children/element-children.module.js +18 -0
  95. package/esm2015/cms/components/element-renderer/element-renderer.component.js +169 -0
  96. package/esm2015/cms/components/element-renderer/element-renderer.module.js +16 -0
  97. package/esm2015/cms/components/element.component.js +44 -0
  98. package/esm2015/cms/components/index.js +2 -0
  99. package/esm2015/cms/components/plugin.component.js +16 -0
  100. package/esm2015/cms/components/preview/index.js +3 -0
  101. package/esm2015/cms/components/preview/preview.component.js +108 -0
  102. package/esm2015/cms/components/preview/preview.module.js +23 -0
  103. package/esm2015/cms/decorators/element.decorator.js +6 -0
  104. package/esm2015/cms/decorators/index.js +2 -0
  105. package/esm2015/cms/directives/custom-template.directive.js +25 -0
  106. package/esm2015/cms/engine/models/entity.js +18 -0
  107. package/esm2015/cms/engine/models/plugin.js +6 -0
  108. package/esm2015/cms/index.js +11 -0
  109. package/esm2015/cms/injection-tokens.js +8 -0
  110. package/esm2015/cms/launcher.module.js +23 -0
  111. package/esm2015/cms/modules/federated/default-options.js +5 -0
  112. package/esm2015/cms/modules/federated/export.js +2 -0
  113. package/esm2015/cms/modules/federated/federated.component.js +82 -0
  114. package/esm2015/cms/modules/federated/federated.module.js +19 -0
  115. package/esm2015/cms/modules/federated/federated.types.js +2 -0
  116. package/esm2015/cms/modules/federated/federated.utils.js +37 -0
  117. package/esm2015/cms/plugins/configuration.plugin.js +98 -0
  118. package/esm2015/cms/plugins/io.plugin.js +37 -0
  119. package/esm2015/cms/plugins/script.plugin.js +66 -0
  120. package/esm2015/cms/services/dynamic-module.service.js +33 -0
  121. package/esm2015/cms/services/element-context.service.js +10 -0
  122. package/esm2015/cms/services/index.js +4 -0
  123. package/esm2015/cms/services/integration.state.js +40 -0
  124. package/esm2015/cms/services/io-provider.service.js +51 -0
  125. package/esm2015/cms/services/launcher.service.js +57 -0
  126. package/esm2015/cms/services/templates.service.js +31 -0
  127. package/esm2015/cms/types/common.types.js +2 -0
  128. package/esm2015/cms/types/compilation.types.js +2 -0
  129. package/esm2015/cms/types/configuration.types.js +2 -0
  130. package/esm2015/cms/types/elements.types.js +2 -0
  131. package/esm2015/cms/types/index.js +8 -0
  132. package/esm2015/cms/types/integration.types.js +2 -0
  133. package/esm2015/cms/types/metrics.types.js +2 -0
  134. package/esm2015/cms/types/path.types.js +2 -0
  135. package/esm2015/cms/utils/element.utils.js +161 -0
  136. package/esm2015/cms/utils/elements-resolver.js +147 -0
  137. package/esm2015/cms/utils/index.js +4 -0
  138. package/esm2015/cms/utils/path.utils.js +67 -0
  139. package/esm2015/cms/veloceapps-sdk-cms.js +5 -0
  140. package/esm2015/cms/vendor-map.js +34 -0
  141. package/esm2015/core/core.module.js +18 -0
  142. package/esm2015/core/index.js +7 -0
  143. package/esm2015/core/modules/configuration/configuration.module.js +34 -0
  144. package/esm2015/core/modules/configuration/helpers.js +10 -0
  145. package/esm2015/core/modules/configuration/index.js +5 -0
  146. package/esm2015/core/modules/configuration/services/configuration-runtime.service.js +92 -0
  147. package/esm2015/core/modules/configuration/services/configuration.service.js +173 -0
  148. package/esm2015/core/modules/configuration/services/runtime-context.service.js +51 -0
  149. package/esm2015/core/modules/configuration/types/configuration-runtime.types.js +2 -0
  150. package/esm2015/core/modules/flow-configuration/flow-configuration.module.js +18 -0
  151. package/esm2015/core/modules/flow-configuration/index.js +5 -0
  152. package/esm2015/core/modules/flow-configuration/services/flow-configuration.service.js +135 -0
  153. package/esm2015/core/modules/flow-configuration/services/flow-update.service.js +129 -0
  154. package/esm2015/core/modules/flow-configuration/types/update.types.js +2 -0
  155. package/esm2015/core/modules/index.js +3 -0
  156. package/esm2015/core/services/context.service.js +50 -0
  157. package/esm2015/core/services/index.js +4 -0
  158. package/esm2015/core/services/product-images.service.js +30 -0
  159. package/esm2015/core/services/quote-draft.service.js +207 -0
  160. package/esm2015/core/types/index.js +4 -0
  161. package/esm2015/core/types/quote-states.types.js +2 -0
  162. package/esm2015/core/types/runtime.types.js +16 -0
  163. package/esm2015/core/types/ui-definition.types.js +2 -0
  164. package/esm2015/core/utils/index.js +3 -0
  165. package/esm2015/core/utils/line-item.utils.js +100 -0
  166. package/esm2015/core/utils/line-item.worker.js +19 -0
  167. package/esm2015/core/veloceapps-sdk-core.js +5 -0
  168. package/esm2015/index.js +2 -0
  169. package/esm2015/runtime/components/component-preview/component-preview.component.js +125 -0
  170. package/esm2015/runtime/components/index.js +5 -0
  171. package/esm2015/runtime/components/section-renderer/section-renderer.component.js +71 -0
  172. package/esm2015/runtime/components/ui-runtime/runtime.component.js +429 -0
  173. package/esm2015/runtime/components/ui-runtime-preview/runtime-preview.component.js +109 -0
  174. package/esm2015/runtime/execution/components/children-placeholder/children-placeholder.component.js +68 -0
  175. package/esm2015/runtime/execution/components/context-provider/context-provider.component.js +36 -0
  176. package/esm2015/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.js +72 -0
  177. package/esm2015/runtime/execution/components/federated/federated.component.js +81 -0
  178. package/esm2015/runtime/execution/components/velo-attribute/velo-attribute.component.js +65 -0
  179. package/esm2015/runtime/execution/components/velo-multiselect/velo-multiselect.component.js +136 -0
  180. package/esm2015/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.js +80 -0
  181. package/esm2015/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.js +101 -0
  182. package/esm2015/runtime/execution/components/velo-port-radio/velo-port-radio.component.js +150 -0
  183. package/esm2015/runtime/execution/components/velo-type/velo-type.component.js +121 -0
  184. package/esm2015/runtime/execution/directives/section-script.directive.js +242 -0
  185. package/esm2015/runtime/execution/directives/sf-query.directive.js +34 -0
  186. package/esm2015/runtime/execution/directives/velo-attribute.directive.js +86 -0
  187. package/esm2015/runtime/execution/directives/velo-port.directive.js +373 -0
  188. package/esm2015/runtime/execution/directives/vl-approval.directive.js +22 -0
  189. package/esm2015/runtime/execution/directives/vl-document-attachments.directive.js +35 -0
  190. package/esm2015/runtime/execution/directives/vl-document-templates.directive.js +59 -0
  191. package/esm2015/runtime/execution/directives/vl-quote.directive.js +41 -0
  192. package/esm2015/runtime/execution/directives/vl-ramp.directive.js +51 -0
  193. package/esm2015/runtime/execution/runtime-execution.module.js +163 -0
  194. package/esm2015/runtime/execution/utils/federated.util.js +37 -0
  195. package/esm2015/runtime/index.js +5 -0
  196. package/esm2015/runtime/runtime.module.js +104 -0
  197. package/esm2015/runtime/services/cart.service.js +27 -0
  198. package/esm2015/runtime/services/collapsible-state.service.js +34 -0
  199. package/esm2015/runtime/services/configuration.service.js +102 -0
  200. package/esm2015/runtime/services/current-state.service.js +17 -0
  201. package/esm2015/runtime/services/form-scope.service.js +30 -0
  202. package/esm2015/runtime/services/index.js +4 -0
  203. package/esm2015/runtime/services/product-model-cache.service.js +30 -0
  204. package/esm2015/runtime/services/runtime-context.service.js +56 -0
  205. package/esm2015/runtime/services/runtime-form.service.js +224 -0
  206. package/esm2015/runtime/services/runtime.service.js +108 -0
  207. package/esm2015/runtime/services/section-helper.service.js +27 -0
  208. package/esm2015/runtime/services/section-scope.service.js +36 -0
  209. package/esm2015/runtime/services/section-store.service.js +22 -0
  210. package/esm2015/runtime/services/section.service.js +124 -0
  211. package/esm2015/runtime/types/bound-data.types.js +7 -0
  212. package/esm2015/runtime/types/index.js +2 -0
  213. package/esm2015/runtime/types/runtime.types.js +2 -0
  214. package/esm2015/runtime/types/script-registry.types.js +51 -0
  215. package/esm2015/runtime/utils/line-item.util.js +273 -0
  216. package/esm2015/runtime/utils/section.utils.js +26 -0
  217. package/esm2015/runtime/utils/sections-binder.helper.js +105 -0
  218. package/esm2015/runtime/veloceapps-sdk-runtime.js +5 -0
  219. package/esm2015/src/components/dialog/dialog.component.js +30 -0
  220. package/esm2015/src/components/dialog/dialog.module.js +19 -0
  221. package/esm2015/src/components/dialog/dialog.types.js +2 -0
  222. package/esm2015/src/components/doc-gen/doc-gen.component.js +109 -0
  223. package/esm2015/src/components/doc-gen/doc-gen.module.js +19 -0
  224. package/esm2015/src/components/header/cart-overlay/cart-preview.component.js +122 -0
  225. package/esm2015/src/components/header/cart-overlay/cart-preview.module.js +46 -0
  226. package/esm2015/src/components/header/header.component.js +310 -0
  227. package/esm2015/src/components/header/header.module.js +50 -0
  228. package/esm2015/src/components/header/header.types.js +2 -0
  229. package/esm2015/src/components/header/metrics/index.js +2 -0
  230. package/esm2015/src/components/header/metrics/metrics.component.js +216 -0
  231. package/esm2015/src/components/header/metrics/metrics.definitions.js +9 -0
  232. package/esm2015/src/components/header/metrics/metrics.module.js +67 -0
  233. package/esm2015/src/constants.js +2 -0
  234. package/esm2015/src/flow-routing.module.js +137 -0
  235. package/esm2015/src/flow.component.js +45 -0
  236. package/esm2015/src/flow.module.js +60 -0
  237. package/esm2015/src/guards/context.guard.js +84 -0
  238. package/esm2015/src/guards/index.js +2 -0
  239. package/esm2015/src/guards/product-unload.guard.js +43 -0
  240. package/esm2015/src/guards/root.guard.js +41 -0
  241. package/esm2015/src/index.js +7 -0
  242. package/esm2015/src/pages/catalog/catalog.component.js +117 -0
  243. package/esm2015/src/pages/catalog/catalog.module.js +20 -0
  244. package/esm2015/src/pages/debug/debug.component.js +61 -0
  245. package/esm2015/src/pages/debug/debug.module.js +48 -0
  246. package/esm2015/src/pages/empty-account/empty-account.component.js +17 -0
  247. package/esm2015/src/pages/empty-account/empty-account.module.js +20 -0
  248. package/esm2015/src/pages/legacy-product/legacy-product.component.js +132 -0
  249. package/esm2015/src/pages/legacy-product/legacy-product.module.js +21 -0
  250. package/esm2015/src/pages/product/product.component.js +108 -0
  251. package/esm2015/src/pages/product/product.module.js +20 -0
  252. package/esm2015/src/pages/record-not-found/record-not-found.component.js +29 -0
  253. package/esm2015/src/pages/record-not-found/record-not-found.module.js +20 -0
  254. package/esm2015/src/pages/remote/remote.component.js +353 -0
  255. package/esm2015/src/pages/remote/remote.module.js +20 -0
  256. package/esm2015/src/pages/remote/remote.types.js +2 -0
  257. package/esm2015/src/pages/shopping-cart/shopping-cart.component.js +117 -0
  258. package/esm2015/src/pages/shopping-cart/shopping-cart.module.js +20 -0
  259. package/esm2015/src/resolvers/flow.resolver.js +62 -0
  260. package/esm2015/src/resolvers/quote.resolver.js +74 -0
  261. package/esm2015/src/services/doc-gen.service.js +33 -0
  262. package/esm2015/src/services/flow-dialog.service.js +123 -0
  263. package/esm2015/src/services/flow-router.service.js +136 -0
  264. package/esm2015/src/services/flow.service.js +77 -0
  265. package/esm2015/src/services/index.js +2 -0
  266. package/esm2015/src/types/context-route.types.js +2 -0
  267. package/esm2015/src/types/flow-customization.types.js +3 -0
  268. package/esm2015/src/types/index.js +3 -0
  269. package/esm2015/src/types/route.types.js +2 -0
  270. package/esm2015/src/utils/flow.utils.js +22 -0
  271. package/esm2015/src/utils/index.js +2 -0
  272. package/esm2015/veloceapps-sdk.js +5 -0
  273. package/fesm2015/veloceapps-sdk-cms.js +1443 -0
  274. package/fesm2015/veloceapps-sdk-cms.js.map +1 -0
  275. package/fesm2015/veloceapps-sdk-core.js +1035 -0
  276. package/fesm2015/veloceapps-sdk-core.js.map +1 -0
  277. package/fesm2015/veloceapps-sdk-runtime.js +3896 -0
  278. package/fesm2015/veloceapps-sdk-runtime.js.map +1 -0
  279. package/fesm2015/veloceapps-sdk.js +2758 -0
  280. package/fesm2015/veloceapps-sdk.js.map +1 -0
  281. package/index.d.ts +1 -0
  282. package/package.json +50 -0
  283. package/runtime/components/component-preview/component-preview.component.d.ts +27 -0
  284. package/runtime/components/index.d.ts +4 -0
  285. package/runtime/components/section-renderer/section-renderer.component.d.ts +25 -0
  286. package/runtime/components/ui-runtime/runtime.component.d.ts +53 -0
  287. package/runtime/components/ui-runtime-preview/runtime-preview.component.d.ts +27 -0
  288. package/runtime/execution/components/children-placeholder/children-placeholder.component.d.ts +30 -0
  289. package/runtime/execution/components/context-provider/context-provider.component.d.ts +14 -0
  290. package/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.d.ts +25 -0
  291. package/runtime/execution/components/federated/federated.component.d.ts +36 -0
  292. package/runtime/execution/components/velo-attribute/velo-attribute.component.d.ts +19 -0
  293. package/runtime/execution/components/velo-multiselect/velo-multiselect.component.d.ts +35 -0
  294. package/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.d.ts +22 -0
  295. package/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.d.ts +22 -0
  296. package/runtime/execution/components/velo-port-radio/velo-port-radio.component.d.ts +28 -0
  297. package/runtime/execution/components/velo-type/velo-type.component.d.ts +31 -0
  298. package/runtime/execution/directives/section-script.directive.d.ts +59 -0
  299. package/runtime/execution/directives/sf-query.directive.d.ts +15 -0
  300. package/runtime/execution/directives/velo-attribute.directive.d.ts +26 -0
  301. package/runtime/execution/directives/velo-port.directive.d.ts +74 -0
  302. package/runtime/execution/directives/vl-approval.directive.d.ts +10 -0
  303. package/runtime/execution/directives/vl-document-attachments.directive.d.ts +15 -0
  304. package/runtime/execution/directives/vl-document-templates.directive.d.ts +33 -0
  305. package/runtime/execution/directives/vl-quote.directive.d.ts +14 -0
  306. package/runtime/execution/directives/vl-ramp.directive.d.ts +15 -0
  307. package/runtime/execution/runtime-execution.module.d.ts +27 -0
  308. package/runtime/execution/utils/federated.util.d.ts +6 -0
  309. package/runtime/index.d.ts +4 -0
  310. package/runtime/package.json +10 -0
  311. package/runtime/runtime.module.d.ts +18 -0
  312. package/runtime/services/cart.service.d.ts +15 -0
  313. package/runtime/services/collapsible-state.service.d.ts +15 -0
  314. package/runtime/services/configuration.service.d.ts +19 -0
  315. package/runtime/services/current-state.service.d.ts +8 -0
  316. package/runtime/services/form-scope.service.d.ts +20 -0
  317. package/runtime/services/index.d.ts +3 -0
  318. package/runtime/services/product-model-cache.service.d.ts +14 -0
  319. package/runtime/services/runtime-context.service.d.ts +16 -0
  320. package/runtime/services/runtime-form.service.d.ts +24 -0
  321. package/runtime/services/runtime.service.d.ts +43 -0
  322. package/runtime/services/section-helper.service.d.ts +8 -0
  323. package/runtime/services/section-scope.service.d.ts +14 -0
  324. package/runtime/services/section-store.service.d.ts +11 -0
  325. package/runtime/services/section.service.d.ts +30 -0
  326. package/runtime/types/bound-data.types.d.ts +13 -0
  327. package/runtime/types/index.d.ts +1 -0
  328. package/runtime/types/runtime.types.d.ts +19 -0
  329. package/runtime/types/script-registry.types.d.ts +13 -0
  330. package/runtime/utils/line-item.util.d.ts +34 -0
  331. package/runtime/utils/section.utils.d.ts +2 -0
  332. package/runtime/utils/sections-binder.helper.d.ts +16 -0
  333. package/runtime/veloceapps-sdk-runtime.d.ts +5 -0
  334. package/src/components/dialog/dialog.component.d.ts +13 -0
  335. package/src/components/dialog/dialog.module.d.ts +9 -0
  336. package/src/components/dialog/dialog.types.d.ts +6 -0
  337. package/src/components/doc-gen/doc-gen.component.d.ts +26 -0
  338. package/src/components/doc-gen/doc-gen.module.d.ts +9 -0
  339. package/src/components/header/cart-overlay/cart-preview.component.d.ts +36 -0
  340. package/src/components/header/cart-overlay/cart-preview.module.d.ts +14 -0
  341. package/src/components/header/header.component.d.ts +64 -0
  342. package/src/components/header/header.module.d.ts +15 -0
  343. package/src/components/header/header.types.d.ts +20 -0
  344. package/src/components/header/metrics/index.d.ts +1 -0
  345. package/src/components/header/metrics/metrics.component.d.ts +49 -0
  346. package/src/components/header/metrics/metrics.definitions.d.ts +4 -0
  347. package/src/components/header/metrics/metrics.module.d.ts +17 -0
  348. package/src/constants.d.ts +1 -0
  349. package/src/flow-routing.module.d.ts +13 -0
  350. package/src/flow.component.d.ts +23 -0
  351. package/src/flow.module.d.ts +16 -0
  352. package/src/guards/context.guard.d.ts +19 -0
  353. package/src/guards/index.d.ts +1 -0
  354. package/src/guards/product-unload.guard.d.ts +17 -0
  355. package/src/guards/root.guard.d.ts +15 -0
  356. package/src/index.d.ts +6 -0
  357. package/src/pages/catalog/catalog.component.d.ts +32 -0
  358. package/src/pages/catalog/catalog.module.d.ts +10 -0
  359. package/src/pages/debug/debug.component.d.ts +25 -0
  360. package/src/pages/debug/debug.module.d.ts +14 -0
  361. package/src/pages/empty-account/empty-account.component.d.ts +5 -0
  362. package/src/pages/empty-account/empty-account.module.d.ts +10 -0
  363. package/src/pages/legacy-product/legacy-product.component.d.ts +37 -0
  364. package/src/pages/legacy-product/legacy-product.module.d.ts +10 -0
  365. package/src/pages/product/product.component.d.ts +32 -0
  366. package/src/pages/product/product.module.d.ts +10 -0
  367. package/src/pages/record-not-found/record-not-found.component.d.ts +11 -0
  368. package/src/pages/record-not-found/record-not-found.module.d.ts +9 -0
  369. package/src/pages/remote/remote.component.d.ts +47 -0
  370. package/src/pages/remote/remote.module.d.ts +10 -0
  371. package/src/pages/remote/remote.types.d.ts +4 -0
  372. package/src/pages/shopping-cart/shopping-cart.component.d.ts +32 -0
  373. package/src/pages/shopping-cart/shopping-cart.module.d.ts +10 -0
  374. package/src/resolvers/flow.resolver.d.ts +16 -0
  375. package/src/resolvers/quote.resolver.d.ts +20 -0
  376. package/src/services/doc-gen.service.d.ts +13 -0
  377. package/src/services/flow-dialog.service.d.ts +26 -0
  378. package/src/services/flow-router.service.d.ts +36 -0
  379. package/src/services/flow.service.d.ts +17 -0
  380. package/src/services/index.d.ts +1 -0
  381. package/src/types/context-route.types.d.ts +5 -0
  382. package/src/types/flow-customization.types.d.ts +11 -0
  383. package/src/types/index.d.ts +2 -0
  384. package/src/types/route.types.d.ts +9 -0
  385. package/src/utils/flow.utils.d.ts +8 -0
  386. package/src/utils/index.d.ts +1 -0
  387. package/veloceapps-sdk.d.ts +5 -0
@@ -0,0 +1,708 @@
1
+ import * as angularCore from '@angular/core';
2
+ import * as angularForms from '@angular/forms';
3
+ import { CatalogApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, PicklistsApiService, PriceApiService, QuoteApiService, RampApiService, SalesforceApiService } from '@veloceapps/api';
4
+ import { ConfigurationService, FlowConfigurationService, LineItemWorker, ProductImagesService, QuoteDraftService } from '@veloceapps/sdk/core';
5
+ import * as lodash from 'lodash';
6
+ import * as rxjs from 'rxjs';
7
+ import * as rxjsOperators from 'rxjs/operators';
8
+ import * as cmsActions from './cms.actions';
9
+ import { IntegrationState } from './services/integration.state';
10
+ import { TemplatesService } from './services/templates.service';
11
+ export declare const vendorMap: {
12
+ '@angular/core': typeof angularCore;
13
+ '@angular/forms': typeof angularForms;
14
+ rxjs: typeof rxjs;
15
+ 'rxjs/operators': typeof rxjsOperators;
16
+ lodash: {
17
+ default: lodash.LoDashStatic;
18
+ VERSION: string;
19
+ templateSettings: lodash.TemplateSettings;
20
+ chunk<T>(array: lodash.List<T> | null | undefined, size?: number | undefined): T[][];
21
+ compact<T_1>(array: lodash.List<false | "" | 0 | T_1 | null | undefined> | null | undefined): T_1[];
22
+ concat<T_2>(...values: lodash.Many<T_2>[]): T_2[];
23
+ difference<T_3>(array: lodash.List<T_3> | null | undefined, ...values: lodash.List<T_3>[]): T_3[];
24
+ differenceBy<T1, T2>(array: lodash.List<T1> | null | undefined, values: lodash.List<T2>, iteratee: lodash.ValueIteratee<T1 | T2>): T1[];
25
+ differenceBy<T1_1, T2_1, T3>(array: lodash.List<T1_1> | null | undefined, values1: lodash.List<T2_1>, values2: lodash.List<T3>, iteratee: lodash.ValueIteratee<T1_1 | T2_1 | T3>): T1_1[];
26
+ differenceBy<T1_2, T2_2, T3_1, T4>(array: lodash.List<T1_2> | null | undefined, values1: lodash.List<T2_2>, values2: lodash.List<T3_1>, values3: lodash.List<T4>, iteratee: lodash.ValueIteratee<T1_2 | T2_2 | T3_1 | T4>): T1_2[];
27
+ differenceBy<T1_3, T2_3, T3_2, T4_1, T5>(array: lodash.List<T1_3> | null | undefined, values1: lodash.List<T2_3>, values2: lodash.List<T3_2>, values3: lodash.List<T4_1>, values4: lodash.List<T5>, iteratee: lodash.ValueIteratee<T1_3 | T2_3 | T3_2 | T4_1 | T5>): T1_3[];
28
+ differenceBy<T1_4, T2_4, T3_3, T4_2, T5_1, T6>(array: lodash.List<T1_4> | null | undefined, values1: lodash.List<T2_4>, values2: lodash.List<T3_3>, values3: lodash.List<T4_2>, values4: lodash.List<T5_1>, values5: lodash.List<T6>, iteratee: lodash.ValueIteratee<T1_4 | T2_4 | T3_3 | T4_2 | T5_1 | T6>): T1_4[];
29
+ differenceBy<T1_5, T2_5, T3_4, T4_3, T5_2, T6_1, T7>(array: lodash.List<T1_5> | null | undefined, values1: lodash.List<T2_5>, values2: lodash.List<T3_4>, values3: lodash.List<T4_3>, values4: lodash.List<T5_2>, values5: lodash.List<T6_1>, ...values: (lodash.List<T7> | lodash.ValueIteratee<T1_5 | T2_5 | T3_4 | T4_3 | T5_2 | T6_1 | T7>)[]): T1_5[];
30
+ differenceBy<T_4>(array: lodash.List<T_4> | null | undefined, ...values: lodash.List<T_4>[]): T_4[];
31
+ differenceWith<T1_6, T2_6>(array: lodash.List<T1_6> | null | undefined, values: lodash.List<T2_6>, comparator: lodash.Comparator2<T1_6, T2_6>): T1_6[];
32
+ differenceWith<T1_7, T2_7, T3_5>(array: lodash.List<T1_7> | null | undefined, values1: lodash.List<T2_7>, values2: lodash.List<T3_5>, comparator: lodash.Comparator2<T1_7, T2_7 | T3_5>): T1_7[];
33
+ differenceWith<T1_8, T2_8, T3_6, T4_4>(array: lodash.List<T1_8> | null | undefined, values1: lodash.List<T2_8>, values2: lodash.List<T3_6>, ...values: (lodash.List<T4_4> | lodash.Comparator2<T1_8, T2_8 | T3_6 | T4_4>)[]): T1_8[];
34
+ differenceWith<T_5>(array: lodash.List<T_5> | null | undefined, ...values: lodash.List<T_5>[]): T_5[];
35
+ drop<T_6>(array: lodash.List<T_6> | null | undefined, n?: number | undefined): T_6[];
36
+ dropRight<T_7>(array: lodash.List<T_7> | null | undefined, n?: number | undefined): T_7[];
37
+ dropRightWhile<T_8>(array: lodash.List<T_8> | null | undefined, predicate?: lodash.ListIteratee<T_8> | undefined): T_8[];
38
+ dropWhile<T_9>(array: lodash.List<T_9> | null | undefined, predicate?: lodash.ListIteratee<T_9> | undefined): T_9[];
39
+ fill<T_10>(array: any[] | null | undefined, value: T_10): T_10[];
40
+ fill<T_11>(array: lodash.List<any> | null | undefined, value: T_11): lodash.List<T_11>;
41
+ fill<T_12, U>(array: U[] | null | undefined, value: T_12, start?: number | undefined, end?: number | undefined): (T_12 | U)[];
42
+ fill<T_13, U_1>(array: lodash.List<U_1> | null | undefined, value: T_13, start?: number | undefined, end?: number | undefined): lodash.List<T_13 | U_1>;
43
+ findIndex<T_14>(array: lodash.List<T_14> | null | undefined, predicate?: lodash.ListIterateeCustom<T_14, boolean> | undefined, fromIndex?: number | undefined): number;
44
+ findLastIndex<T_15>(array: lodash.List<T_15> | null | undefined, predicate?: lodash.ListIterateeCustom<T_15, boolean> | undefined, fromIndex?: number | undefined): number;
45
+ first: <T_16>(array: lodash.List<T_16> | null | undefined) => T_16 | undefined;
46
+ flatten<T_17>(array: lodash.List<lodash.Many<T_17>> | null | undefined): T_17[];
47
+ flattenDeep<T_18>(array: lodash.ListOfRecursiveArraysOrValues<T_18> | null | undefined): lodash.Flat<T_18>[];
48
+ flattenDepth<T_19>(array: lodash.ListOfRecursiveArraysOrValues<T_19> | null | undefined, depth?: number | undefined): T_19[];
49
+ fromPairs<T_20>(pairs: lodash.List<[lodash.PropertyName, T_20]> | null | undefined): lodash.Dictionary<T_20>;
50
+ fromPairs(pairs: lodash.List<any[]> | null | undefined): lodash.Dictionary<any>;
51
+ head<T_16>(array: lodash.List<T_16> | null | undefined): T_16 | undefined;
52
+ indexOf<T_21>(array: lodash.List<T_21> | null | undefined, value: T_21, fromIndex?: number | undefined): number;
53
+ initial<T_22>(array: lodash.List<T_22> | null | undefined): T_22[];
54
+ intersection<T_23>(...arrays: (lodash.List<T_23> | null | undefined)[]): T_23[];
55
+ intersectionBy<T1_9, T2_9>(array: lodash.List<T1_9> | null, values: lodash.List<T2_9>, iteratee: lodash.ValueIteratee<T1_9 | T2_9>): T1_9[];
56
+ intersectionBy<T1_10, T2_10, T3_7>(array: lodash.List<T1_10> | null, values1: lodash.List<T2_10>, values2: lodash.List<T3_7>, iteratee: lodash.ValueIteratee<T1_10 | T2_10 | T3_7>): T1_10[];
57
+ intersectionBy<T1_11, T2_11, T3_8, T4_5>(array: lodash.List<T1_11> | null | undefined, values1: lodash.List<T2_11>, values2: lodash.List<T3_8>, ...values: (lodash.List<T4_5> | lodash.ValueIteratee<T1_11 | T2_11 | T3_8 | T4_5>)[]): T1_11[];
58
+ intersectionBy<T_24>(array?: lodash.List<T_24> | null | undefined, ...values: lodash.List<T_24>[]): T_24[];
59
+ intersectionBy<T_25>(...values: (lodash.List<T_25> | lodash.ValueIteratee<T_25>)[]): T_25[];
60
+ intersectionWith<T1_12, T2_12>(array: lodash.List<T1_12> | null | undefined, values: lodash.List<T2_12>, comparator: lodash.Comparator2<T1_12, T2_12>): T1_12[];
61
+ intersectionWith<T1_13, T2_13, T3_9>(array: lodash.List<T1_13> | null | undefined, values1: lodash.List<T2_13>, values2: lodash.List<T3_9>, comparator: lodash.Comparator2<T1_13, T2_13 | T3_9>): T1_13[];
62
+ intersectionWith<T1_14, T2_14, T3_10, T4_6>(array: lodash.List<T1_14> | null | undefined, values1: lodash.List<T2_14>, values2: lodash.List<T3_10>, ...values: (lodash.List<T4_6> | lodash.Comparator2<T1_14, T2_14 | T3_10 | T4_6>)[]): T1_14[];
63
+ intersectionWith<T_26>(array?: lodash.List<T_26> | null | undefined, ...values: (lodash.List<T_26> | lodash.Comparator2<T_26, never>)[]): T_26[];
64
+ join(array: lodash.List<any> | null | undefined, separator?: string | undefined): string;
65
+ last<T_27>(array: lodash.List<T_27> | null | undefined): T_27 | undefined;
66
+ lastIndexOf<T_28>(array: lodash.List<T_28> | null | undefined, value: T_28, fromIndex?: number | true | undefined): number;
67
+ nth<T_29>(array: lodash.List<T_29> | null | undefined, n?: number | undefined): T_29 | undefined;
68
+ pull<T_30>(array: T_30[], ...values: T_30[]): T_30[];
69
+ pull<T_31>(array: lodash.List<T_31>, ...values: T_31[]): lodash.List<T_31>;
70
+ pullAll<T_32>(array: T_32[], values?: lodash.List<T_32> | undefined): T_32[];
71
+ pullAll<T_33>(array: lodash.List<T_33>, values?: lodash.List<T_33> | undefined): lodash.List<T_33>;
72
+ pullAllBy<T_34>(array: T_34[], values?: lodash.List<T_34> | undefined, iteratee?: lodash.ValueIteratee<T_34> | undefined): T_34[];
73
+ pullAllBy<T_35>(array: lodash.List<T_35>, values?: lodash.List<T_35> | undefined, iteratee?: lodash.ValueIteratee<T_35> | undefined): lodash.List<T_35>;
74
+ pullAllBy<T1_15, T2_15>(array: T1_15[], values: lodash.List<T2_15>, iteratee: lodash.ValueIteratee<T1_15 | T2_15>): T1_15[];
75
+ pullAllBy<T1_16, T2_16>(array: lodash.List<T1_16>, values: lodash.List<T2_16>, iteratee: lodash.ValueIteratee<T1_16 | T2_16>): lodash.List<T1_16>;
76
+ pullAllWith<T_36>(array: T_36[], values?: lodash.List<T_36> | undefined, comparator?: lodash.Comparator<T_36> | undefined): T_36[];
77
+ pullAllWith<T_37>(array: lodash.List<T_37>, values?: lodash.List<T_37> | undefined, comparator?: lodash.Comparator<T_37> | undefined): lodash.List<T_37>;
78
+ pullAllWith<T1_17, T2_17>(array: T1_17[], values: lodash.List<T2_17>, comparator: lodash.Comparator2<T1_17, T2_17>): T1_17[];
79
+ pullAllWith<T1_18, T2_18>(array: lodash.List<T1_18>, values: lodash.List<T2_18>, comparator: lodash.Comparator2<T1_18, T2_18>): lodash.List<T1_18>;
80
+ pullAt<T_38>(array: T_38[], ...indexes: lodash.Many<number>[]): T_38[];
81
+ pullAt<T_39>(array: lodash.List<T_39>, ...indexes: lodash.Many<number>[]): lodash.List<T_39>;
82
+ remove<T_40>(array: lodash.List<T_40>, predicate?: lodash.ListIteratee<T_40> | undefined): T_40[];
83
+ reverse<TList extends lodash.List<any>>(array: TList): TList;
84
+ slice<T_41>(array: lodash.List<T_41> | null | undefined, start?: number | undefined, end?: number | undefined): T_41[];
85
+ sortedIndex<T_42>(array: lodash.List<T_42> | null | undefined, value: T_42): number;
86
+ sortedIndex<T_43>(array: lodash.List<T_43> | null | undefined, value: T_43): number;
87
+ sortedIndexBy<T_44>(array: lodash.List<T_44> | null | undefined, value: T_44, iteratee?: lodash.ValueIteratee<T_44> | undefined): number;
88
+ sortedIndexOf<T_45>(array: lodash.List<T_45> | null | undefined, value: T_45): number;
89
+ sortedLastIndex<T_46>(array: lodash.List<T_46> | null | undefined, value: T_46): number;
90
+ sortedLastIndexBy<T_47>(array: lodash.List<T_47> | null | undefined, value: T_47, iteratee: lodash.ValueIteratee<T_47>): number;
91
+ sortedLastIndexOf<T_48>(array: lodash.List<T_48> | null | undefined, value: T_48): number;
92
+ sortedUniq<T_49>(array: lodash.List<T_49> | null | undefined): T_49[];
93
+ sortedUniqBy<T_50>(array: lodash.List<T_50> | null | undefined, iteratee: lodash.ValueIteratee<T_50>): T_50[];
94
+ tail<T_51>(array: lodash.List<T_51> | null | undefined): T_51[];
95
+ take<T_52>(array: lodash.List<T_52> | null | undefined, n?: number | undefined): T_52[];
96
+ takeRight<T_53>(array: lodash.List<T_53> | null | undefined, n?: number | undefined): T_53[];
97
+ takeRightWhile<T_54>(array: lodash.List<T_54> | null | undefined, predicate?: lodash.ListIteratee<T_54> | undefined): T_54[];
98
+ takeWhile<T_55>(array: lodash.List<T_55> | null | undefined, predicate?: lodash.ListIteratee<T_55> | undefined): T_55[];
99
+ union<T_56>(...arrays: (lodash.List<T_56> | null | undefined)[]): T_56[];
100
+ unionBy<T_57>(arrays: lodash.List<T_57> | null | undefined, iteratee?: lodash.ValueIteratee<T_57> | undefined): T_57[];
101
+ unionBy<T_58>(arrays1: lodash.List<T_58> | null | undefined, arrays2: lodash.List<T_58> | null | undefined, iteratee?: lodash.ValueIteratee<T_58> | undefined): T_58[];
102
+ unionBy<T_59>(arrays1: lodash.List<T_59> | null | undefined, arrays2: lodash.List<T_59> | null | undefined, arrays3: lodash.List<T_59> | null | undefined, iteratee?: lodash.ValueIteratee<T_59> | undefined): T_59[];
103
+ unionBy<T_60>(arrays1: lodash.List<T_60> | null | undefined, arrays2: lodash.List<T_60> | null | undefined, arrays3: lodash.List<T_60> | null | undefined, arrays4: lodash.List<T_60> | null | undefined, iteratee?: lodash.ValueIteratee<T_60> | undefined): T_60[];
104
+ unionBy<T_61>(arrays1: lodash.List<T_61> | null | undefined, arrays2: lodash.List<T_61> | null | undefined, arrays3: lodash.List<T_61> | null | undefined, arrays4: lodash.List<T_61> | null | undefined, arrays5: lodash.List<T_61> | null | undefined, ...iteratee: (lodash.ValueIteratee<T_61> | lodash.List<T_61> | null | undefined)[]): T_61[];
105
+ unionWith<T_62>(arrays: lodash.List<T_62> | null | undefined, comparator?: lodash.Comparator<T_62> | undefined): T_62[];
106
+ unionWith<T_63>(arrays: lodash.List<T_63> | null | undefined, arrays2: lodash.List<T_63> | null | undefined, comparator?: lodash.Comparator<T_63> | undefined): T_63[];
107
+ unionWith<T_64>(arrays: lodash.List<T_64> | null | undefined, arrays2: lodash.List<T_64> | null | undefined, arrays3: lodash.List<T_64> | null | undefined, ...comparator: (lodash.Comparator<T_64> | lodash.List<T_64> | null | undefined)[]): T_64[];
108
+ uniq<T_65>(array: lodash.List<T_65> | null | undefined): T_65[];
109
+ uniqBy<T_66>(array: lodash.List<T_66> | null | undefined, iteratee: lodash.ValueIteratee<T_66>): T_66[];
110
+ uniqWith<T_67>(array: lodash.List<T_67> | null | undefined, comparator?: lodash.Comparator<T_67> | undefined): T_67[];
111
+ unzip<T_68>(array: T_68[][] | lodash.List<lodash.List<T_68>> | null | undefined): T_68[][];
112
+ unzipWith<T_69, TResult>(array: lodash.List<lodash.List<T_69>> | null | undefined, iteratee: (...values: T_69[]) => TResult): TResult[];
113
+ unzipWith<T_70>(array: lodash.List<lodash.List<T_70>> | null | undefined): T_70[][];
114
+ without<T_71>(array: lodash.List<T_71> | null | undefined, ...values: T_71[]): T_71[];
115
+ xor<T_72>(...arrays: (lodash.List<T_72> | null | undefined)[]): T_72[];
116
+ xorBy<T_73>(arrays: lodash.List<T_73> | null | undefined, iteratee?: lodash.ValueIteratee<T_73> | undefined): T_73[];
117
+ xorBy<T_74>(arrays: lodash.List<T_74> | null | undefined, arrays2: lodash.List<T_74> | null | undefined, iteratee?: lodash.ValueIteratee<T_74> | undefined): T_74[];
118
+ xorBy<T_75>(arrays: lodash.List<T_75> | null | undefined, arrays2: lodash.List<T_75> | null | undefined, arrays3: lodash.List<T_75> | null | undefined, ...iteratee: (lodash.ValueIteratee<T_75> | lodash.List<T_75> | null | undefined)[]): T_75[];
119
+ xorWith<T_76>(arrays: lodash.List<T_76> | null | undefined, comparator?: lodash.Comparator<T_76> | undefined): T_76[];
120
+ xorWith<T_77>(arrays: lodash.List<T_77> | null | undefined, arrays2: lodash.List<T_77> | null | undefined, comparator?: lodash.Comparator<T_77> | undefined): T_77[];
121
+ xorWith<T_78>(arrays: lodash.List<T_78> | null | undefined, arrays2: lodash.List<T_78> | null | undefined, arrays3: lodash.List<T_78> | null | undefined, ...comparator: (lodash.Comparator<T_78> | lodash.List<T_78> | null | undefined)[]): T_78[];
122
+ zip<T1_19, T2_19>(arrays1: lodash.List<T1_19>, arrays2: lodash.List<T2_19>): [T1_19 | undefined, T2_19 | undefined][];
123
+ zip<T1_20, T2_20, T3_11>(arrays1: lodash.List<T1_20>, arrays2: lodash.List<T2_20>, arrays3: lodash.List<T3_11>): [T1_20 | undefined, T2_20 | undefined, T3_11 | undefined][];
124
+ zip<T1_21, T2_21, T3_12, T4_7>(arrays1: lodash.List<T1_21>, arrays2: lodash.List<T2_21>, arrays3: lodash.List<T3_12>, arrays4: lodash.List<T4_7>): [T1_21 | undefined, T2_21 | undefined, T3_12 | undefined, T4_7 | undefined][];
125
+ zip<T1_22, T2_22, T3_13, T4_8, T5_3>(arrays1: lodash.List<T1_22>, arrays2: lodash.List<T2_22>, arrays3: lodash.List<T3_13>, arrays4: lodash.List<T4_8>, arrays5: lodash.List<T5_3>): [T1_22 | undefined, T2_22 | undefined, T3_13 | undefined, T4_8 | undefined, T5_3 | undefined][];
126
+ zip<T_79>(...arrays: (lodash.List<T_79> | null | undefined)[]): (T_79 | undefined)[][];
127
+ zipObject<T_80>(props: lodash.List<lodash.PropertyName>, values: lodash.List<T_80>): lodash.Dictionary<T_80>;
128
+ zipObject(props?: lodash.List<lodash.PropertyName> | undefined): lodash.Dictionary<undefined>;
129
+ zipObjectDeep(paths?: lodash.List<lodash.PropertyPath> | undefined, values?: lodash.List<any> | undefined): object;
130
+ zipWith<T_81, TResult_1>(arrays: lodash.List<T_81>, iteratee: (value1: T_81) => TResult_1): TResult_1[];
131
+ zipWith<T1_23, T2_23, TResult_2>(arrays1: lodash.List<T1_23>, arrays2: lodash.List<T2_23>, iteratee: (value1: T1_23, value2: T2_23) => TResult_2): TResult_2[];
132
+ zipWith<T1_24, T2_24, T3_14, TResult_3>(arrays1: lodash.List<T1_24>, arrays2: lodash.List<T2_24>, arrays3: lodash.List<T3_14>, iteratee: (value1: T1_24, value2: T2_24, value3: T3_14) => TResult_3): TResult_3[];
133
+ zipWith<T1_25, T2_25, T3_15, T4_9, TResult_4>(arrays1: lodash.List<T1_25>, arrays2: lodash.List<T2_25>, arrays3: lodash.List<T3_15>, arrays4: lodash.List<T4_9>, iteratee: (value1: T1_25, value2: T2_25, value3: T3_15, value4: T4_9) => TResult_4): TResult_4[];
134
+ zipWith<T1_26, T2_26, T3_16, T4_10, T5_4, TResult_5>(arrays1: lodash.List<T1_26>, arrays2: lodash.List<T2_26>, arrays3: lodash.List<T3_16>, arrays4: lodash.List<T4_10>, arrays5: lodash.List<T5_4>, iteratee: (value1: T1_26, value2: T2_26, value3: T3_16, value4: T4_10, value5: T5_4) => TResult_5): TResult_5[];
135
+ zipWith<T_82, TResult_6>(...iteratee: (((...group: T_82[]) => TResult_6) | lodash.List<T_82> | null | undefined)[]): TResult_6[];
136
+ countBy<T_83>(collection: lodash.List<T_83> | null | undefined, iteratee?: lodash.ValueIteratee<T_83> | undefined): lodash.Dictionary<number>;
137
+ countBy<T_84 extends object>(collection: T_84 | null | undefined, iteratee?: lodash.ValueIteratee<T_84[keyof T_84]> | undefined): lodash.Dictionary<number>;
138
+ each: {
139
+ <T_85>(collection: T_85[], iteratee?: lodash.ArrayIterator<T_85, any> | undefined): T_85[];
140
+ (collection: string, iteratee?: lodash.StringIterator<any> | undefined): string;
141
+ <T_86>(collection: lodash.List<T_86>, iteratee?: lodash.ListIterator<T_86, any> | undefined): lodash.List<T_86>;
142
+ <T_87 extends object>(collection: T_87, iteratee?: lodash.ObjectIterator<T_87, any> | undefined): T_87;
143
+ <T_88, TArray extends T_88[] | null | undefined>(collection: TArray & (T_88[] | null | undefined), iteratee?: lodash.ArrayIterator<T_88, any> | undefined): TArray;
144
+ <TString extends string | null | undefined>(collection: TString, iteratee?: lodash.StringIterator<any> | undefined): TString;
145
+ <T_89, TList_1 extends lodash.List<T_89> | null | undefined>(collection: TList_1 & (lodash.List<T_89> | null | undefined), iteratee?: lodash.ListIterator<T_89, any> | undefined): TList_1;
146
+ <T_90 extends object>(collection: T_90 | null | undefined, iteratee?: lodash.ObjectIterator<T_90, any> | undefined): T_90 | null | undefined;
147
+ };
148
+ eachRight: {
149
+ <T_91>(collection: T_91[], iteratee?: lodash.ArrayIterator<T_91, any> | undefined): T_91[];
150
+ (collection: string, iteratee?: lodash.StringIterator<any> | undefined): string;
151
+ <T_92>(collection: lodash.List<T_92>, iteratee?: lodash.ListIterator<T_92, any> | undefined): lodash.List<T_92>;
152
+ <T_93 extends object>(collection: T_93, iteratee?: lodash.ObjectIterator<T_93, any> | undefined): T_93;
153
+ <T_94, TArray_1 extends T_94[] | null | undefined>(collection: TArray_1 & (T_94[] | null | undefined), iteratee?: lodash.ArrayIterator<T_94, any> | undefined): TArray_1;
154
+ <TString_1 extends string | null | undefined>(collection: TString_1, iteratee?: lodash.StringIterator<any> | undefined): TString_1;
155
+ <T_95, TList_2 extends lodash.List<T_95> | null | undefined>(collection: TList_2 & (lodash.List<T_95> | null | undefined), iteratee?: lodash.ListIterator<T_95, any> | undefined): TList_2;
156
+ <T_96 extends object>(collection: T_96 | null | undefined, iteratee?: lodash.ObjectIterator<T_96, any> | undefined): T_96 | null | undefined;
157
+ };
158
+ every<T_97>(collection: lodash.List<T_97> | null | undefined, predicate?: lodash.ListIterateeCustom<T_97, boolean> | undefined): boolean;
159
+ every<T_98 extends object>(collection: T_98 | null | undefined, predicate?: lodash.ObjectIterateeCustom<T_98, boolean> | undefined): boolean;
160
+ filter(collection: string | null | undefined, predicate?: lodash.StringIterator<boolean> | undefined): string[];
161
+ filter<T_99, S extends T_99>(collection: lodash.List<T_99> | null | undefined, predicate: lodash.ListIteratorTypeGuard<T_99, S>): S[];
162
+ filter<T_100>(collection: lodash.List<T_100> | null | undefined, predicate?: lodash.ListIterateeCustom<T_100, boolean> | undefined): T_100[];
163
+ filter<T_101 extends object, S_1 extends T_101[keyof T_101]>(collection: T_101 | null | undefined, predicate: lodash.ObjectIteratorTypeGuard<T_101, S_1>): S_1[];
164
+ filter<T_102 extends object>(collection: T_102 | null | undefined, predicate?: lodash.ObjectIterateeCustom<T_102, boolean> | undefined): T_102[keyof T_102][];
165
+ find<T_103, S_2 extends T_103>(collection: lodash.List<T_103> | null | undefined, predicate: lodash.ListIteratorTypeGuard<T_103, S_2>, fromIndex?: number | undefined): S_2 | undefined;
166
+ find<T_104>(collection: lodash.List<T_104> | null | undefined, predicate?: lodash.ListIterateeCustom<T_104, boolean> | undefined, fromIndex?: number | undefined): T_104 | undefined;
167
+ find<T_105 extends object, S_3 extends T_105[keyof T_105]>(collection: T_105 | null | undefined, predicate: lodash.ObjectIteratorTypeGuard<T_105, S_3>, fromIndex?: number | undefined): S_3 | undefined;
168
+ find<T_106 extends object>(collection: T_106 | null | undefined, predicate?: lodash.ObjectIterateeCustom<T_106, boolean> | undefined, fromIndex?: number | undefined): T_106[keyof T_106] | undefined;
169
+ findLast<T_107, S_4 extends T_107>(collection: lodash.List<T_107> | null | undefined, predicate: lodash.ListIteratorTypeGuard<T_107, S_4>, fromIndex?: number | undefined): S_4 | undefined;
170
+ findLast<T_108>(collection: lodash.List<T_108> | null | undefined, predicate?: lodash.ListIterateeCustom<T_108, boolean> | undefined, fromIndex?: number | undefined): T_108 | undefined;
171
+ findLast<T_109 extends object, S_5 extends T_109[keyof T_109]>(collection: T_109 | null | undefined, predicate: lodash.ObjectIteratorTypeGuard<T_109, S_5>, fromIndex?: number | undefined): S_5 | undefined;
172
+ findLast<T_110 extends object>(collection: T_110 | null | undefined, predicate?: lodash.ObjectIterateeCustom<T_110, boolean> | undefined, fromIndex?: number | undefined): T_110[keyof T_110] | undefined;
173
+ flatMap<T_111>(collection: lodash.Dictionary<lodash.Many<T_111>> | lodash.NumericDictionary<lodash.Many<T_111>> | null | undefined): T_111[];
174
+ flatMap(collection: object | null | undefined): any[];
175
+ flatMap<T_112, TResult_7>(collection: lodash.List<T_112> | null | undefined, iteratee: lodash.ListIterator<T_112, lodash.Many<TResult_7>>): TResult_7[];
176
+ flatMap<T_113 extends object, TResult_8>(collection: T_113 | null | undefined, iteratee: lodash.ObjectIterator<T_113, lodash.Many<TResult_8>>): TResult_8[];
177
+ flatMap(collection: object | null | undefined, iteratee: string): any[];
178
+ flatMap(collection: object | null | undefined, iteratee: object): boolean[];
179
+ flatMapDeep<T_114>(collection: lodash.Dictionary<T_114 | lodash.ListOfRecursiveArraysOrValues<T_114>> | lodash.NumericDictionary<T_114 | lodash.ListOfRecursiveArraysOrValues<T_114>> | null | undefined): T_114[];
180
+ flatMapDeep<T_115, TResult_9>(collection: lodash.List<T_115> | null | undefined, iteratee: lodash.ListIterator<T_115, TResult_9 | lodash.ListOfRecursiveArraysOrValues<TResult_9>>): TResult_9[];
181
+ flatMapDeep<T_116 extends object, TResult_10>(collection: T_116 | null | undefined, iteratee: lodash.ObjectIterator<T_116, TResult_10 | lodash.ListOfRecursiveArraysOrValues<TResult_10>>): TResult_10[];
182
+ flatMapDeep(collection: object | null | undefined, iteratee: string): any[];
183
+ flatMapDeep(collection: object | null | undefined, iteratee: object): boolean[];
184
+ flatMapDepth<T_117>(collection: lodash.Dictionary<T_117 | lodash.ListOfRecursiveArraysOrValues<T_117>> | lodash.NumericDictionary<T_117 | lodash.ListOfRecursiveArraysOrValues<T_117>> | null | undefined): T_117[];
185
+ flatMapDepth<T_118, TResult_11>(collection: lodash.List<T_118> | null | undefined, iteratee: lodash.ListIterator<T_118, TResult_11 | lodash.ListOfRecursiveArraysOrValues<TResult_11>>, depth?: number | undefined): TResult_11[];
186
+ flatMapDepth<T_119 extends object, TResult_12>(collection: T_119 | null | undefined, iteratee: lodash.ObjectIterator<T_119, TResult_12 | lodash.ListOfRecursiveArraysOrValues<TResult_12>>, depth?: number | undefined): TResult_12[];
187
+ flatMapDepth(collection: object | null | undefined, iteratee: string, depth?: number | undefined): any[];
188
+ flatMapDepth(collection: object | null | undefined, iteratee: object, depth?: number | undefined): boolean[];
189
+ forEach<T_85>(collection: T_85[], iteratee?: lodash.ArrayIterator<T_85, any> | undefined): T_85[];
190
+ forEach(collection: string, iteratee?: lodash.StringIterator<any> | undefined): string;
191
+ forEach<T_86>(collection: lodash.List<T_86>, iteratee?: lodash.ListIterator<T_86, any> | undefined): lodash.List<T_86>;
192
+ forEach<T_87 extends object>(collection: T_87, iteratee?: lodash.ObjectIterator<T_87, any> | undefined): T_87;
193
+ forEach<T_88, TArray extends T_88[] | null | undefined>(collection: TArray & (T_88[] | null | undefined), iteratee?: lodash.ArrayIterator<T_88, any> | undefined): TArray;
194
+ forEach<TString extends string | null | undefined>(collection: TString, iteratee?: lodash.StringIterator<any> | undefined): TString;
195
+ forEach<T_89, TList_1 extends lodash.List<T_89> | null | undefined>(collection: TList_1 & (lodash.List<T_89> | null | undefined), iteratee?: lodash.ListIterator<T_89, any> | undefined): TList_1;
196
+ forEach<T_90 extends object>(collection: T_90 | null | undefined, iteratee?: lodash.ObjectIterator<T_90, any> | undefined): T_90 | null | undefined;
197
+ forEachRight<T_91>(collection: T_91[], iteratee?: lodash.ArrayIterator<T_91, any> | undefined): T_91[];
198
+ forEachRight(collection: string, iteratee?: lodash.StringIterator<any> | undefined): string;
199
+ forEachRight<T_92>(collection: lodash.List<T_92>, iteratee?: lodash.ListIterator<T_92, any> | undefined): lodash.List<T_92>;
200
+ forEachRight<T_93 extends object>(collection: T_93, iteratee?: lodash.ObjectIterator<T_93, any> | undefined): T_93;
201
+ forEachRight<T_94, TArray_1 extends T_94[] | null | undefined>(collection: TArray_1 & (T_94[] | null | undefined), iteratee?: lodash.ArrayIterator<T_94, any> | undefined): TArray_1;
202
+ forEachRight<TString_1 extends string | null | undefined>(collection: TString_1, iteratee?: lodash.StringIterator<any> | undefined): TString_1;
203
+ forEachRight<T_95, TList_2 extends lodash.List<T_95> | null | undefined>(collection: TList_2 & (lodash.List<T_95> | null | undefined), iteratee?: lodash.ListIterator<T_95, any> | undefined): TList_2;
204
+ forEachRight<T_96 extends object>(collection: T_96 | null | undefined, iteratee?: lodash.ObjectIterator<T_96, any> | undefined): T_96 | null | undefined;
205
+ groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<T_120[]>;
206
+ groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<T_121[keyof T_121][]>;
207
+ includes<T_122>(collection: lodash.Dictionary<T_122> | lodash.NumericDictionary<T_122> | null | undefined, target: T_122, fromIndex?: number | undefined): boolean;
208
+ invokeMap(collection: object | null | undefined, methodName: string, ...args: any[]): any[];
209
+ invokeMap<TResult_13>(collection: object | null | undefined, method: (...args: any[]) => TResult_13, ...args: any[]): TResult_13[];
210
+ keyBy<T_123>(collection: lodash.List<T_123> | null | undefined, iteratee?: lodash.ValueIterateeCustom<T_123, lodash.PropertyName> | undefined): lodash.Dictionary<T_123>;
211
+ keyBy<T_124 extends object>(collection: T_124 | null | undefined, iteratee?: lodash.ValueIterateeCustom<T_124[keyof T_124], lodash.PropertyName> | undefined): lodash.Dictionary<T_124[keyof T_124]>;
212
+ map<T_125, TResult_14>(collection: T_125[] | null | undefined, iteratee: lodash.ArrayIterator<T_125, TResult_14>): TResult_14[];
213
+ map<T_126, TResult_15>(collection: lodash.List<T_126> | null | undefined, iteratee: lodash.ListIterator<T_126, TResult_15>): TResult_15[];
214
+ map<T_127>(collection: lodash.Dictionary<T_127> | lodash.NumericDictionary<T_127> | null | undefined): T_127[];
215
+ map<T_128 extends object, TResult_16>(collection: T_128 | null | undefined, iteratee: lodash.ObjectIterator<T_128, TResult_16>): TResult_16[];
216
+ map<T_129, K extends keyof T_129>(collection: lodash.Dictionary<T_129> | lodash.NumericDictionary<T_129> | null | undefined, iteratee: K): T_129[K][];
217
+ map<T_130>(collection: lodash.Dictionary<T_130> | lodash.NumericDictionary<T_130> | null | undefined, iteratee?: string | undefined): any[];
218
+ map<T_131>(collection: lodash.Dictionary<T_131> | lodash.NumericDictionary<T_131> | null | undefined, iteratee?: object | undefined): boolean[];
219
+ orderBy<T_132>(collection: lodash.List<T_132> | null | undefined, iteratees?: lodash.Many<lodash.ListIterator<T_132, unknown>> | undefined, orders?: lodash.Many<boolean | "asc" | "desc"> | undefined): T_132[];
220
+ orderBy<T_133>(collection: lodash.List<T_133> | null | undefined, iteratees?: lodash.Many<lodash.ListIteratee<T_133>> | undefined, orders?: lodash.Many<boolean | "asc" | "desc"> | undefined): T_133[];
221
+ orderBy<T_134 extends object>(collection: T_134 | null | undefined, iteratees?: lodash.Many<lodash.ObjectIterator<T_134, unknown>> | undefined, orders?: lodash.Many<boolean | "asc" | "desc"> | undefined): T_134[keyof T_134][];
222
+ orderBy<T_135 extends object>(collection: T_135 | null | undefined, iteratees?: lodash.Many<lodash.ObjectIteratee<T_135>> | undefined, orders?: lodash.Many<boolean | "asc" | "desc"> | undefined): T_135[keyof T_135][];
223
+ partition<T_136, U_2 extends T_136>(collection: lodash.List<T_136> | null | undefined, callback: lodash.ValueIteratorTypeGuard<T_136, U_2>): [U_2[], Exclude<T_136, U_2>[]];
224
+ partition<T_137>(collection: lodash.List<T_137> | null | undefined, callback: lodash.ValueIteratee<T_137>): [T_137[], T_137[]];
225
+ partition<T_138 extends object>(collection: T_138 | null | undefined, callback: lodash.ValueIteratee<T_138[keyof T_138]>): [T_138[keyof T_138][], T_138[keyof T_138][]];
226
+ reduce<T_139, TResult_17>(collection: T_139[] | null | undefined, callback: lodash.MemoListIterator<T_139, TResult_17, T_139[]>, accumulator: TResult_17): TResult_17;
227
+ reduce<T_140, TResult_18>(collection: lodash.List<T_140> | null | undefined, callback: lodash.MemoListIterator<T_140, TResult_18, lodash.List<T_140>>, accumulator: TResult_18): TResult_18;
228
+ reduce<T_141 extends object, TResult_19>(collection: T_141 | null | undefined, callback: lodash.MemoObjectIterator<T_141[keyof T_141], TResult_19, T_141>, accumulator: TResult_19): TResult_19;
229
+ reduce<T_142>(collection: T_142[] | null | undefined, callback: lodash.MemoListIterator<T_142, T_142, T_142[]>): T_142 | undefined;
230
+ reduce<T_143>(collection: lodash.List<T_143> | null | undefined, callback: lodash.MemoListIterator<T_143, T_143, lodash.List<T_143>>): T_143 | undefined;
231
+ reduce<T_144 extends object>(collection: T_144 | null | undefined, callback: lodash.MemoObjectIterator<T_144[keyof T_144], T_144[keyof T_144], T_144>): T_144[keyof T_144] | undefined;
232
+ reduceRight<T_145, TResult_20>(collection: T_145[] | null | undefined, callback: lodash.MemoListIterator<T_145, TResult_20, T_145[]>, accumulator: TResult_20): TResult_20;
233
+ reduceRight<T_146, TResult_21>(collection: lodash.List<T_146> | null | undefined, callback: lodash.MemoListIterator<T_146, TResult_21, lodash.List<T_146>>, accumulator: TResult_21): TResult_21;
234
+ reduceRight<T_147 extends object, TResult_22>(collection: T_147 | null | undefined, callback: lodash.MemoObjectIterator<T_147[keyof T_147], TResult_22, T_147>, accumulator: TResult_22): TResult_22;
235
+ reduceRight<T_148>(collection: T_148[] | null | undefined, callback: lodash.MemoListIterator<T_148, T_148, T_148[]>): T_148 | undefined;
236
+ reduceRight<T_149>(collection: lodash.List<T_149> | null | undefined, callback: lodash.MemoListIterator<T_149, T_149, lodash.List<T_149>>): T_149 | undefined;
237
+ reduceRight<T_150 extends object>(collection: T_150 | null | undefined, callback: lodash.MemoObjectIterator<T_150[keyof T_150], T_150[keyof T_150], T_150>): T_150[keyof T_150] | undefined;
238
+ reject(collection: string | null | undefined, predicate?: lodash.StringIterator<boolean> | undefined): string[];
239
+ reject<T_151>(collection: lodash.List<T_151> | null | undefined, predicate?: lodash.ListIterateeCustom<T_151, boolean> | undefined): T_151[];
240
+ reject<T_152 extends object>(collection: T_152 | null | undefined, predicate?: lodash.ObjectIterateeCustom<T_152, boolean> | undefined): T_152[keyof T_152][];
241
+ sample<T_153>(collection: lodash.Dictionary<T_153> | lodash.NumericDictionary<T_153> | null | undefined): T_153 | undefined;
242
+ sample<T_154 extends object>(collection: T_154 | null | undefined): T_154[keyof T_154] | undefined;
243
+ sampleSize<T_155>(collection: lodash.Dictionary<T_155> | lodash.NumericDictionary<T_155> | null | undefined, n?: number | undefined): T_155[];
244
+ sampleSize<T_156 extends object>(collection: T_156 | null | undefined, n?: number | undefined): T_156[keyof T_156][];
245
+ shuffle<T_157>(collection: lodash.List<T_157> | null | undefined): T_157[];
246
+ shuffle<T_158 extends object>(collection: T_158 | null | undefined): T_158[keyof T_158][];
247
+ size(collection: string | object | null | undefined): number;
248
+ some<T_159>(collection: lodash.List<T_159> | null | undefined, predicate?: lodash.ListIterateeCustom<T_159, boolean> | undefined): boolean;
249
+ some<T_160 extends object>(collection: T_160 | null | undefined, predicate?: lodash.ObjectIterateeCustom<T_160, boolean> | undefined): boolean;
250
+ sortBy<T_161>(collection: lodash.List<T_161> | null | undefined, ...iteratees: lodash.Many<lodash.ListIteratee<T_161>>[]): T_161[];
251
+ sortBy<T_162 extends object>(collection: T_162 | null | undefined, ...iteratees: lodash.Many<lodash.ObjectIteratee<T_162>>[]): T_162[keyof T_162][];
252
+ now(): number;
253
+ after<TFunc extends (...args: any[]) => any>(n: number, func: TFunc): TFunc;
254
+ ary(func: (...args: any[]) => any, n?: number | undefined): (...args: any[]) => any;
255
+ before<TFunc_1 extends (...args: any[]) => any>(n: number, func: TFunc_1): TFunc_1;
256
+ bind: lodash.FunctionBind;
257
+ bindKey: lodash.FunctionBindKey;
258
+ curry: lodash.Curry;
259
+ curryRight: lodash.CurryRight;
260
+ debounce<T_163 extends (...args: any) => any>(func: T_163, wait: number | undefined, options: lodash.DebounceSettingsLeading): lodash.DebouncedFuncLeading<T_163>;
261
+ debounce<T_164 extends (...args: any) => any>(func: T_164, wait?: number | undefined, options?: lodash.DebounceSettings | undefined): lodash.DebouncedFunc<T_164>;
262
+ defer(func: (...args: any[]) => any, ...args: any[]): number;
263
+ delay(func: (...args: any[]) => any, wait: number, ...args: any[]): number;
264
+ flip<T_165 extends (...args: any) => any>(func: T_165): T_165;
265
+ memoize: {
266
+ <T_166 extends (...args: any) => any>(func: T_166, resolver?: ((...args: Parameters<T_166>) => any) | undefined): T_166 & lodash.MemoizedFunction;
267
+ Cache: lodash.MapCacheConstructor;
268
+ };
269
+ negate<T_167 extends any[]>(predicate: (...args: T_167) => boolean): (...args: T_167) => boolean;
270
+ once<T_168 extends (...args: any) => any>(func: T_168): T_168;
271
+ overArgs(func: (...args: any[]) => any, ...transforms: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
272
+ partial: lodash.Partial;
273
+ partialRight: lodash.PartialRight;
274
+ rearg(func: (...args: any[]) => any, ...indexes: lodash.Many<number>[]): (...args: any[]) => any;
275
+ rest(func: (...args: any[]) => any, start?: number | undefined): (...args: any[]) => any;
276
+ spread<TResult_23>(func: (...args: any[]) => TResult_23, start?: number | undefined): (...args: any[]) => TResult_23;
277
+ throttle<T_169 extends (...args: any) => any>(func: T_169, wait?: number | undefined, options?: lodash.ThrottleSettings | undefined): lodash.DebouncedFunc<T_169>;
278
+ unary<T_170, TResult_24>(func: (arg1: T_170, ...args: any[]) => TResult_24): (arg1: T_170) => TResult_24;
279
+ wrap<T_171, TArgs, TResult_25>(value: T_171, wrapper: (value: T_171, ...args: TArgs[]) => TResult_25): (...args: TArgs[]) => TResult_25;
280
+ castArray<T_172>(value?: lodash.Many<T_172> | undefined): T_172[];
281
+ clone<T_173>(value: T_173): T_173;
282
+ cloneDeep<T_174>(value: T_174): T_174;
283
+ cloneDeepWith<T_175>(value: T_175, customizer: lodash.CloneDeepWithCustomizer<T_175>): any;
284
+ cloneDeepWith<T_176>(value: T_176): T_176;
285
+ cloneWith<T_177, TResult_26 extends string | number | boolean | object | null>(value: T_177, customizer: lodash.CloneWithCustomizer<T_177, TResult_26>): TResult_26;
286
+ cloneWith<T_178, TResult_27>(value: T_178, customizer: lodash.CloneWithCustomizer<T_178, TResult_27 | undefined>): T_178 | TResult_27;
287
+ cloneWith<T_179>(value: T_179): T_179;
288
+ conformsTo<T_180>(object: T_180, source: lodash.ConformsPredicateObject<T_180>): boolean;
289
+ eq(value: any, other: any): boolean;
290
+ gt(value: any, other: any): boolean;
291
+ gte(value: any, other: any): boolean;
292
+ isArguments(value?: any): value is IArguments;
293
+ isArray(value?: any): value is any[];
294
+ isArray<T_181>(value?: any): value is any[];
295
+ isArrayBuffer(value?: any): value is ArrayBuffer;
296
+ isArrayLike<T_182 extends {
297
+ __lodashAnyHack: any;
298
+ }>(t: T_182): boolean;
299
+ isArrayLike(value: ((...args: any[]) => any) | null | undefined): value is never;
300
+ isArrayLike(value: any): value is {
301
+ length: number;
302
+ };
303
+ isArrayLikeObject<T_183 extends {
304
+ __lodashAnyHack: any;
305
+ }>(value: T_183): boolean;
306
+ isArrayLikeObject(value: string | number | boolean | Function | ((...args: any[]) => any) | null | undefined): value is never;
307
+ isArrayLikeObject(value: any): value is object & {
308
+ length: number;
309
+ };
310
+ isBoolean(value?: any): value is boolean;
311
+ isBuffer(value?: any): boolean;
312
+ isDate(value?: any): value is Date;
313
+ isElement(value?: any): boolean;
314
+ isEmpty<T_184 extends {
315
+ __trapAny: any;
316
+ }>(value?: T_184 | undefined): boolean;
317
+ isEmpty(value: string): value is "";
318
+ isEmpty(value: lodash.List<any> | Map<any, any> | Set<any> | null | undefined): boolean;
319
+ isEmpty<T_185 extends object>(value: T_185 | null | undefined): value is lodash.EmptyObjectOf<T_185> | null | undefined;
320
+ isEmpty(value?: any): boolean;
321
+ isEqual(value: any, other: any): boolean;
322
+ isEqualWith(value: any, other: any, customizer?: lodash.IsEqualCustomizer | undefined): boolean;
323
+ isError(value: any): value is Error;
324
+ isFinite(value?: any): boolean;
325
+ isFunction(value: any): value is (...args: any[]) => any;
326
+ isInteger(value?: any): boolean;
327
+ isLength(value?: any): boolean;
328
+ isMap(value?: any): value is Map<any, any>;
329
+ isMatch(object: object, source: object): boolean;
330
+ isMatchWith(object: object, source: object, customizer: lodash.isMatchWithCustomizer): boolean;
331
+ isNaN(value?: any): boolean;
332
+ isNative(value: any): value is (...args: any[]) => any;
333
+ isNil(value: any): value is null | undefined;
334
+ isNull(value: any): value is null;
335
+ isNumber(value?: any): value is number;
336
+ isObject(value?: any): value is object;
337
+ isObjectLike(value?: any): boolean;
338
+ isPlainObject(value?: any): boolean;
339
+ isRegExp(value?: any): value is RegExp;
340
+ isSafeInteger(value: any): boolean;
341
+ isSet(value?: any): value is Set<any>;
342
+ isString(value?: any): value is string;
343
+ isSymbol(value: any): value is symbol;
344
+ isTypedArray(value: any): boolean;
345
+ isUndefined(value: any): value is undefined;
346
+ isWeakMap(value?: any): value is WeakMap<object, any>;
347
+ isWeakSet(value?: any): value is WeakSet<object>;
348
+ lt(value: any, other: any): boolean;
349
+ lte(value: any, other: any): boolean;
350
+ toArray<T_186>(value: lodash.Dictionary<T_186> | lodash.NumericDictionary<T_186> | null | undefined): T_186[];
351
+ toArray<T_187>(value: T_187): T_187[keyof T_187][];
352
+ toArray(): any[];
353
+ toFinite(value: any): number;
354
+ toInteger(value: any): number;
355
+ toLength(value: any): number;
356
+ toNumber(value: any): number;
357
+ toPlainObject(value?: any): any;
358
+ toSafeInteger(value: any): number;
359
+ toString(value: any): string;
360
+ add(augend: number, addend: number): number;
361
+ ceil(n: number, precision?: number | undefined): number;
362
+ divide(dividend: number, divisor: number): number;
363
+ floor(n: number, precision?: number | undefined): number;
364
+ max<T_188>(collection: lodash.List<T_188> | null | undefined): T_188 | undefined;
365
+ maxBy<T_189>(collection: lodash.List<T_189> | null | undefined, iteratee?: lodash.ValueIteratee<T_189> | undefined): T_189 | undefined;
366
+ mean(collection: lodash.List<any> | null | undefined): number;
367
+ meanBy<T_190>(collection: lodash.List<T_190> | null | undefined, iteratee?: lodash.ValueIteratee<T_190> | undefined): number;
368
+ min<T_191>(collection: lodash.List<T_191> | null | undefined): T_191 | undefined;
369
+ minBy<T_192>(collection: lodash.List<T_192> | null | undefined, iteratee?: lodash.ValueIteratee<T_192> | undefined): T_192 | undefined;
370
+ multiply(multiplier: number, multiplicand: number): number;
371
+ round(n: number, precision?: number | undefined): number;
372
+ subtract(minuend: number, subtrahend: number): number;
373
+ sum(collection: lodash.List<any> | null | undefined): number;
374
+ sumBy<T_193>(collection: lodash.List<T_193> | null | undefined, iteratee?: string | ((value: T_193) => number) | undefined): number;
375
+ clamp(number: number, lower: number, upper: number): number;
376
+ clamp(number: number, upper: number): number;
377
+ inRange(n: number, start: number, end?: number | undefined): boolean;
378
+ random(floating?: boolean | undefined): number;
379
+ random(max: number, floating?: boolean | undefined): number;
380
+ random(min: number, max: number, floating?: boolean | undefined): number;
381
+ random(min: number, index: string | number, guard: object): number;
382
+ assign<TObject, TSource>(object: TObject, source: TSource): TObject & TSource;
383
+ assign<TObject_1, TSource1, TSource2>(object: TObject_1, source1: TSource1, source2: TSource2): TObject_1 & TSource1 & TSource2;
384
+ assign<TObject_2, TSource1_1, TSource2_1, TSource3>(object: TObject_2, source1: TSource1_1, source2: TSource2_1, source3: TSource3): TObject_2 & TSource1_1 & TSource2_1 & TSource3;
385
+ assign<TObject_3, TSource1_2, TSource2_2, TSource3_1, TSource4>(object: TObject_3, source1: TSource1_2, source2: TSource2_2, source3: TSource3_1, source4: TSource4): TObject_3 & TSource1_2 & TSource2_2 & TSource3_1 & TSource4;
386
+ assign<TObject_4>(object: TObject_4): TObject_4;
387
+ assign(object: any, ...otherArgs: any[]): any;
388
+ assignIn<TObject_5, TSource_1>(object: TObject_5, source: TSource_1): TObject_5 & TSource_1;
389
+ assignIn<TObject_6, TSource1_3, TSource2_3>(object: TObject_6, source1: TSource1_3, source2: TSource2_3): TObject_6 & TSource1_3 & TSource2_3;
390
+ assignIn<TObject_7, TSource1_4, TSource2_4, TSource3_2>(object: TObject_7, source1: TSource1_4, source2: TSource2_4, source3: TSource3_2): TObject_7 & TSource1_4 & TSource2_4 & TSource3_2;
391
+ assignIn<TObject_8, TSource1_5, TSource2_5, TSource3_3, TSource4_1>(object: TObject_8, source1: TSource1_5, source2: TSource2_5, source3: TSource3_3, source4: TSource4_1): TObject_8 & TSource1_5 & TSource2_5 & TSource3_3 & TSource4_1;
392
+ assignIn<TObject_9>(object: TObject_9): TObject_9;
393
+ assignIn<TResult_28>(object: any, ...otherArgs: any[]): TResult_28;
394
+ assignInWith<TObject_10, TSource_2>(object: TObject_10, source: TSource_2, customizer: lodash.AssignCustomizer): TObject_10 & TSource_2;
395
+ assignInWith<TObject_11, TSource1_6, TSource2_6>(object: TObject_11, source1: TSource1_6, source2: TSource2_6, customizer: lodash.AssignCustomizer): TObject_11 & TSource1_6 & TSource2_6;
396
+ assignInWith<TObject_12, TSource1_7, TSource2_7, TSource3_4>(object: TObject_12, source1: TSource1_7, source2: TSource2_7, source3: TSource3_4, customizer: lodash.AssignCustomizer): TObject_12 & TSource1_7 & TSource2_7 & TSource3_4;
397
+ assignInWith<TObject_13, TSource1_8, TSource2_8, TSource3_5, TSource4_2>(object: TObject_13, source1: TSource1_8, source2: TSource2_8, source3: TSource3_5, source4: TSource4_2, customizer: lodash.AssignCustomizer): TObject_13 & TSource1_8 & TSource2_8 & TSource3_5 & TSource4_2;
398
+ assignInWith<TObject_14>(object: TObject_14): TObject_14;
399
+ assignInWith<TResult_29>(object: any, ...otherArgs: any[]): TResult_29;
400
+ assignWith<TObject_15, TSource_3>(object: TObject_15, source: TSource_3, customizer: lodash.AssignCustomizer): TObject_15 & TSource_3;
401
+ assignWith<TObject_16, TSource1_9, TSource2_9>(object: TObject_16, source1: TSource1_9, source2: TSource2_9, customizer: lodash.AssignCustomizer): TObject_16 & TSource1_9 & TSource2_9;
402
+ assignWith<TObject_17, TSource1_10, TSource2_10, TSource3_6>(object: TObject_17, source1: TSource1_10, source2: TSource2_10, source3: TSource3_6, customizer: lodash.AssignCustomizer): TObject_17 & TSource1_10 & TSource2_10 & TSource3_6;
403
+ assignWith<TObject_18, TSource1_11, TSource2_11, TSource3_7, TSource4_3>(object: TObject_18, source1: TSource1_11, source2: TSource2_11, source3: TSource3_7, source4: TSource4_3, customizer: lodash.AssignCustomizer): TObject_18 & TSource1_11 & TSource2_11 & TSource3_7 & TSource4_3;
404
+ assignWith<TObject_19>(object: TObject_19): TObject_19;
405
+ assignWith<TResult_30>(object: any, ...otherArgs: any[]): TResult_30;
406
+ at<T_194>(object: lodash.Dictionary<T_194> | lodash.NumericDictionary<T_194> | null | undefined, ...props: lodash.PropertyPath[]): T_194[];
407
+ at<T_195 extends object>(object: T_195 | null | undefined, ...props: lodash.Many<keyof T_195>[]): T_195[keyof T_195][];
408
+ create<T_196 extends object, U_3 extends object>(prototype: T_196, properties?: U_3 | undefined): T_196 & U_3;
409
+ defaults<TObject_20, TSource_4>(object: TObject_20, source: TSource_4): NonNullable<TSource_4 & TObject_20>;
410
+ defaults<TObject_21, TSource1_12, TSource2_12>(object: TObject_21, source1: TSource1_12, source2: TSource2_12): NonNullable<TSource2_12 & TSource1_12 & TObject_21>;
411
+ defaults<TObject_22, TSource1_13, TSource2_13, TSource3_8>(object: TObject_22, source1: TSource1_13, source2: TSource2_13, source3: TSource3_8): NonNullable<TSource3_8 & TSource2_13 & TSource1_13 & TObject_22>;
412
+ defaults<TObject_23, TSource1_14, TSource2_14, TSource3_9, TSource4_4>(object: TObject_23, source1: TSource1_14, source2: TSource2_14, source3: TSource3_9, source4: TSource4_4): NonNullable<TSource4_4 & TSource3_9 & TSource2_14 & TSource1_14 & TObject_23>;
413
+ defaults<TObject_24>(object: TObject_24): NonNullable<TObject_24>;
414
+ defaults(object: any, ...sources: any[]): any;
415
+ defaultsDeep(object: any, ...sources: any[]): any;
416
+ entries<T_197>(object?: lodash.Dictionary<T_197> | lodash.NumericDictionary<T_197> | undefined): [string, T_197][];
417
+ entries(object?: object | undefined): [string, any][];
418
+ entriesIn<T_198>(object?: lodash.Dictionary<T_198> | lodash.NumericDictionary<T_198> | undefined): [string, T_198][];
419
+ entriesIn(object?: object | undefined): [string, any][];
420
+ extend<TObject_25, TSource_5>(object: TObject_25, source: TSource_5): TObject_25 & TSource_5;
421
+ extend<TObject_26, TSource1_15, TSource2_15>(object: TObject_26, source1: TSource1_15, source2: TSource2_15): TObject_26 & TSource1_15 & TSource2_15;
422
+ extend<TObject_27, TSource1_16, TSource2_16, TSource3_10>(object: TObject_27, source1: TSource1_16, source2: TSource2_16, source3: TSource3_10): TObject_27 & TSource1_16 & TSource2_16 & TSource3_10;
423
+ extend<TObject_28, TSource1_17, TSource2_17, TSource3_11, TSource4_5>(object: TObject_28, source1: TSource1_17, source2: TSource2_17, source3: TSource3_11, source4: TSource4_5): TObject_28 & TSource1_17 & TSource2_17 & TSource3_11 & TSource4_5;
424
+ extend<TObject_29>(object: TObject_29): TObject_29;
425
+ extend<TResult_31>(object: any, ...otherArgs: any[]): TResult_31;
426
+ extendWith<TObject_30, TSource_6>(object: TObject_30, source: TSource_6, customizer: lodash.AssignCustomizer): TObject_30 & TSource_6;
427
+ extendWith<TObject_31, TSource1_18, TSource2_18>(object: TObject_31, source1: TSource1_18, source2: TSource2_18, customizer: lodash.AssignCustomizer): TObject_31 & TSource1_18 & TSource2_18;
428
+ extendWith<TObject_32, TSource1_19, TSource2_19, TSource3_12>(object: TObject_32, source1: TSource1_19, source2: TSource2_19, source3: TSource3_12, customizer: lodash.AssignCustomizer): TObject_32 & TSource1_19 & TSource2_19 & TSource3_12;
429
+ extendWith<TObject_33, TSource1_20, TSource2_20, TSource3_13, TSource4_6>(object: TObject_33, source1: TSource1_20, source2: TSource2_20, source3: TSource3_13, source4: TSource4_6, customizer: lodash.AssignCustomizer): TObject_33 & TSource1_20 & TSource2_20 & TSource3_13 & TSource4_6;
430
+ extendWith<TObject_34>(object: TObject_34): TObject_34;
431
+ extendWith<TResult_32>(object: any, ...otherArgs: any[]): TResult_32;
432
+ findKey<T_199>(object: T_199 | null | undefined, predicate?: lodash.ObjectIteratee<T_199> | undefined): string | undefined;
433
+ findLastKey<T_200>(object: T_200 | null | undefined, predicate?: lodash.ObjectIteratee<T_200> | undefined): string | undefined;
434
+ forIn<T_201>(object: T_201, iteratee?: lodash.ObjectIterator<T_201, any> | undefined): T_201;
435
+ forIn<T_202>(object: T_202 | null | undefined, iteratee?: lodash.ObjectIterator<T_202, any> | undefined): T_202 | null | undefined;
436
+ forInRight<T_203>(object: T_203, iteratee?: lodash.ObjectIterator<T_203, any> | undefined): T_203;
437
+ forInRight<T_204>(object: T_204 | null | undefined, iteratee?: lodash.ObjectIterator<T_204, any> | undefined): T_204 | null | undefined;
438
+ forOwn<T_205>(object: T_205, iteratee?: lodash.ObjectIterator<T_205, any> | undefined): T_205;
439
+ forOwn<T_206>(object: T_206 | null | undefined, iteratee?: lodash.ObjectIterator<T_206, any> | undefined): T_206 | null | undefined;
440
+ forOwnRight<T_207>(object: T_207, iteratee?: lodash.ObjectIterator<T_207, any> | undefined): T_207;
441
+ forOwnRight<T_208>(object: T_208 | null | undefined, iteratee?: lodash.ObjectIterator<T_208, any> | undefined): T_208 | null | undefined;
442
+ functions(object: any): string[];
443
+ functionsIn<T_209 extends {}>(object: any): string[];
444
+ get<TObject_35 extends object, TKey extends keyof TObject_35>(object: TObject_35, path: TKey | [TKey]): TObject_35[TKey];
445
+ get<TObject_36 extends object, TKey_1 extends keyof TObject_36>(object: TObject_36 | null | undefined, path: TKey_1 | [TKey_1]): TObject_36[TKey_1] | undefined;
446
+ get<TObject_37 extends object, TKey_2 extends keyof TObject_37, TDefault>(object: TObject_37 | null | undefined, path: TKey_2 | [TKey_2], defaultValue: TDefault): TDefault | Exclude<TObject_37[TKey_2], undefined>;
447
+ get<TObject_38 extends object, TKey1 extends keyof TObject_38, TKey2 extends keyof TObject_38[TKey1]>(object: TObject_38, path: [TKey1, TKey2]): TObject_38[TKey1][TKey2];
448
+ get<TObject_39 extends object, TKey1_1 extends keyof TObject_39, TKey2_1 extends keyof TObject_39[TKey1_1]>(object: TObject_39 | null | undefined, path: [TKey1_1, TKey2_1]): TObject_39[TKey1_1][TKey2_1] | undefined;
449
+ get<TObject_40 extends object, TKey1_2 extends keyof TObject_40, TKey2_2 extends keyof TObject_40[TKey1_2], TDefault_1>(object: TObject_40 | null | undefined, path: [TKey1_2, TKey2_2], defaultValue: TDefault_1): TDefault_1 | Exclude<TObject_40[TKey1_2][TKey2_2], undefined>;
450
+ get<TObject_41 extends object, TKey1_3 extends keyof TObject_41, TKey2_3 extends keyof TObject_41[TKey1_3], TKey3 extends keyof TObject_41[TKey1_3][TKey2_3]>(object: TObject_41, path: [TKey1_3, TKey2_3, TKey3]): TObject_41[TKey1_3][TKey2_3][TKey3];
451
+ get<TObject_42 extends object, TKey1_4 extends keyof TObject_42, TKey2_4 extends keyof TObject_42[TKey1_4], TKey3_1 extends keyof TObject_42[TKey1_4][TKey2_4]>(object: TObject_42 | null | undefined, path: [TKey1_4, TKey2_4, TKey3_1]): TObject_42[TKey1_4][TKey2_4][TKey3_1] | undefined;
452
+ get<TObject_43 extends object, TKey1_5 extends keyof TObject_43, TKey2_5 extends keyof TObject_43[TKey1_5], TKey3_2 extends keyof TObject_43[TKey1_5][TKey2_5], TDefault_2>(object: TObject_43 | null | undefined, path: [TKey1_5, TKey2_5, TKey3_2], defaultValue: TDefault_2): TDefault_2 | Exclude<TObject_43[TKey1_5][TKey2_5][TKey3_2], undefined>;
453
+ get<TObject_44 extends object, TKey1_6 extends keyof TObject_44, TKey2_6 extends keyof TObject_44[TKey1_6], TKey3_3 extends keyof TObject_44[TKey1_6][TKey2_6], TKey4 extends keyof TObject_44[TKey1_6][TKey2_6][TKey3_3]>(object: TObject_44, path: [TKey1_6, TKey2_6, TKey3_3, TKey4]): TObject_44[TKey1_6][TKey2_6][TKey3_3][TKey4];
454
+ get<TObject_45 extends object, TKey1_7 extends keyof TObject_45, TKey2_7 extends keyof TObject_45[TKey1_7], TKey3_4 extends keyof TObject_45[TKey1_7][TKey2_7], TKey4_1 extends keyof TObject_45[TKey1_7][TKey2_7][TKey3_4]>(object: TObject_45 | null | undefined, path: [TKey1_7, TKey2_7, TKey3_4, TKey4_1]): TObject_45[TKey1_7][TKey2_7][TKey3_4][TKey4_1] | undefined;
455
+ get<TObject_46 extends object, TKey1_8 extends keyof TObject_46, TKey2_8 extends keyof TObject_46[TKey1_8], TKey3_5 extends keyof TObject_46[TKey1_8][TKey2_8], TKey4_2 extends keyof TObject_46[TKey1_8][TKey2_8][TKey3_5], TDefault_3>(object: TObject_46 | null | undefined, path: [TKey1_8, TKey2_8, TKey3_5, TKey4_2], defaultValue: TDefault_3): TDefault_3 | Exclude<TObject_46[TKey1_8][TKey2_8][TKey3_5][TKey4_2], undefined>;
456
+ get<T_210>(object: lodash.NumericDictionary<T_210>, path: number): T_210;
457
+ get<T_211>(object: lodash.NumericDictionary<T_211> | null | undefined, path: number): T_211 | undefined;
458
+ get<T_212, TDefault_4>(object: lodash.NumericDictionary<T_212> | null | undefined, path: number, defaultValue: TDefault_4): T_212 | TDefault_4;
459
+ get<TDefault_5>(object: null | undefined, path: lodash.PropertyPath, defaultValue: TDefault_5): TDefault_5;
460
+ get(object: null | undefined, path: lodash.PropertyPath): undefined;
461
+ get(object: any, path: lodash.PropertyPath, defaultValue?: any): any;
462
+ has<T_213>(object: T_213, path: lodash.PropertyPath): boolean;
463
+ hasIn<T_214>(object: T_214, path: lodash.PropertyPath): boolean;
464
+ invert(object: object): lodash.Dictionary<string>;
465
+ invertBy<T_215>(object: lodash.Dictionary<T_215> | lodash.NumericDictionary<T_215> | null | undefined, interatee?: lodash.ValueIteratee<T_215> | undefined): lodash.Dictionary<string[]>;
466
+ invertBy<T_216 extends object>(object: T_216 | null | undefined, interatee?: lodash.ValueIteratee<T_216[keyof T_216]> | undefined): lodash.Dictionary<string[]>;
467
+ invoke(object: any, path: lodash.PropertyPath, ...args: any[]): any;
468
+ keys(object?: any): string[];
469
+ keysIn(object?: any): string[];
470
+ mapKeys<T_217>(object: lodash.List<T_217> | null | undefined, iteratee?: lodash.ListIteratee<T_217> | undefined): lodash.Dictionary<T_217>;
471
+ mapKeys<T_218 extends object>(object: T_218 | null | undefined, iteratee?: lodash.ObjectIteratee<T_218> | undefined): lodash.Dictionary<T_218[keyof T_218]>;
472
+ mapValues<TResult_33>(obj: string | null | undefined, callback: lodash.StringIterator<TResult_33>): lodash.NumericDictionary<TResult_33>;
473
+ mapValues<T_219 extends object, TResult_34>(obj: T_219 | null | undefined, callback: lodash.ObjectIterator<T_219, TResult_34>): { [P in keyof T_219]: TResult_34; };
474
+ mapValues<T_220>(obj: lodash.Dictionary<T_220> | lodash.NumericDictionary<T_220> | null | undefined, iteratee: object): lodash.Dictionary<boolean>;
475
+ mapValues<T_221 extends object>(obj: T_221 | null | undefined, iteratee: object): { [P_1 in keyof T_221]: boolean; };
476
+ mapValues<T_222, TKey_3 extends keyof T_222>(obj: lodash.Dictionary<T_222> | lodash.NumericDictionary<T_222> | null | undefined, iteratee: TKey_3): lodash.Dictionary<T_222[TKey_3]>;
477
+ mapValues<T_223>(obj: lodash.Dictionary<T_223> | lodash.NumericDictionary<T_223> | null | undefined, iteratee: string): lodash.Dictionary<any>;
478
+ mapValues<T_224 extends object>(obj: T_224 | null | undefined, iteratee: string): { [P_2 in keyof T_224]: any; };
479
+ mapValues(obj: string | null | undefined): lodash.NumericDictionary<string>;
480
+ mapValues<T_225>(obj: lodash.Dictionary<T_225> | lodash.NumericDictionary<T_225> | null | undefined): lodash.Dictionary<T_225>;
481
+ mapValues<T_226 extends object>(obj: T_226): T_226;
482
+ mapValues<T_227 extends object>(obj: T_227 | null | undefined): Partial<T_227>;
483
+ merge<TObject_47, TSource_7>(object: TObject_47, source: TSource_7): TObject_47 & TSource_7;
484
+ merge<TObject_48, TSource1_21, TSource2_21>(object: TObject_48, source1: TSource1_21, source2: TSource2_21): TObject_48 & TSource1_21 & TSource2_21;
485
+ merge<TObject_49, TSource1_22, TSource2_22, TSource3_14>(object: TObject_49, source1: TSource1_22, source2: TSource2_22, source3: TSource3_14): TObject_49 & TSource1_22 & TSource2_22 & TSource3_14;
486
+ merge<TObject_50, TSource1_23, TSource2_23, TSource3_15, TSource4_7>(object: TObject_50, source1: TSource1_23, source2: TSource2_23, source3: TSource3_15, source4: TSource4_7): TObject_50 & TSource1_23 & TSource2_23 & TSource3_15 & TSource4_7;
487
+ merge(object: any, ...otherArgs: any[]): any;
488
+ mergeWith<TObject_51, TSource_8>(object: TObject_51, source: TSource_8, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_51 & TSource_8;
489
+ mergeWith<TObject_52, TSource1_24, TSource2_24>(object: TObject_52, source1: TSource1_24, source2: TSource2_24, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_52 & TSource1_24 & TSource2_24;
490
+ mergeWith<TObject_53, TSource1_25, TSource2_25, TSource3_16>(object: TObject_53, source1: TSource1_25, source2: TSource2_25, source3: TSource3_16, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_53 & TSource1_25 & TSource2_25 & TSource3_16;
491
+ mergeWith<TObject_54, TSource1_26, TSource2_26, TSource3_17, TSource4_8>(object: TObject_54, source1: TSource1_26, source2: TSource2_26, source3: TSource3_17, source4: TSource4_8, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_54 & TSource1_26 & TSource2_26 & TSource3_17 & TSource4_8;
492
+ mergeWith(object: any, ...otherArgs: any[]): any;
493
+ omit<T_228 extends object, K_1 extends lodash.PropertyName[]>(object: T_228 | null | undefined, ...paths: K_1): Pick<T_228, Exclude<keyof T_228, K_1[number]>>;
494
+ omit<T_229 extends object, K_2 extends keyof T_229>(object: T_229 | null | undefined, ...paths: lodash.Many<K_2>[]): lodash.Omit<T_229, K_2>;
495
+ omit<T_230 extends object>(object: T_230 | null | undefined, ...paths: lodash.Many<lodash.PropertyName>[]): Partial<T_230>;
496
+ omitBy<T_231>(object: lodash.Dictionary<T_231> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_231> | undefined): lodash.Dictionary<T_231>;
497
+ omitBy<T_232>(object: lodash.NumericDictionary<T_232> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_232> | undefined): lodash.NumericDictionary<T_232>;
498
+ omitBy<T_233 extends object>(object: T_233 | null | undefined, predicate: lodash.ValueKeyIteratee<T_233[keyof T_233]>): Partial<T_233>;
499
+ pick<T_234 extends object, U_4 extends keyof T_234>(object: T_234, ...props: lodash.Many<U_4>[]): Pick<T_234, U_4>;
500
+ pick<T_235>(object: T_235 | null | undefined, ...props: lodash.PropertyPath[]): Partial<T_235>;
501
+ pickBy<T_236, S_6 extends T_236>(object: lodash.Dictionary<T_236> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_236, S_6>): lodash.Dictionary<S_6>;
502
+ pickBy<T_237, S_7 extends T_237>(object: lodash.NumericDictionary<T_237> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_237, S_7>): lodash.NumericDictionary<S_7>;
503
+ pickBy<T_238>(object: lodash.Dictionary<T_238> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_238> | undefined): lodash.Dictionary<T_238>;
504
+ pickBy<T_239>(object: lodash.NumericDictionary<T_239> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_239> | undefined): lodash.NumericDictionary<T_239>;
505
+ pickBy<T_240 extends object>(object: T_240 | null | undefined, predicate?: lodash.ValueKeyIteratee<T_240[keyof T_240]> | undefined): Partial<T_240>;
506
+ result<TResult_35>(object: any, path: lodash.PropertyPath, defaultValue?: TResult_35 | ((...args: any[]) => TResult_35) | undefined): TResult_35;
507
+ set<T_241 extends object>(object: T_241, path: lodash.PropertyPath, value: any): T_241;
508
+ set<TResult_36>(object: object, path: lodash.PropertyPath, value: any): TResult_36;
509
+ setWith<T_242 extends object>(object: T_242, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_242> | undefined): T_242;
510
+ setWith<T_243 extends object, TResult_37>(object: T_243, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_243> | undefined): TResult_37;
511
+ toPairs<T_244>(object?: lodash.Dictionary<T_244> | lodash.NumericDictionary<T_244> | undefined): [string, T_244][];
512
+ toPairs(object?: object | undefined): [string, any][];
513
+ toPairsIn<T_245>(object?: lodash.Dictionary<T_245> | lodash.NumericDictionary<T_245> | undefined): [string, T_245][];
514
+ toPairsIn(object?: object | undefined): [string, any][];
515
+ transform<T_246, TResult_38>(object: readonly T_246[], iteratee: lodash.MemoVoidArrayIterator<T_246, TResult_38>, accumulator?: TResult_38 | undefined): TResult_38;
516
+ transform<T_247, TResult_39>(object: lodash.Dictionary<T_247>, iteratee: lodash.MemoVoidDictionaryIterator<T_247, string, TResult_39>, accumulator?: TResult_39 | undefined): TResult_39;
517
+ transform<T_248 extends object, TResult_40>(object: T_248, iteratee: lodash.MemoVoidDictionaryIterator<T_248[keyof T_248], keyof T_248, TResult_40>, accumulator?: TResult_40 | undefined): TResult_40;
518
+ transform(object: any[]): any[];
519
+ transform(object: object): lodash.Dictionary<any>;
520
+ unset(object: any, path: lodash.PropertyPath): boolean;
521
+ update(object: object, path: lodash.PropertyPath, updater: (value: any) => any): any;
522
+ updateWith<T_249 extends object>(object: T_249, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_249> | undefined): T_249;
523
+ updateWith<T_250 extends object, TResult_41>(object: T_250, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_250> | undefined): TResult_41;
524
+ values<T_251>(object: lodash.Dictionary<T_251> | lodash.NumericDictionary<T_251> | lodash.List<T_251> | null | undefined): T_251[];
525
+ values<T_252 extends object>(object: T_252 | null | undefined): T_252[keyof T_252][];
526
+ values(object: any): any[];
527
+ valuesIn<T_253>(object: lodash.Dictionary<T_253> | lodash.NumericDictionary<T_253> | lodash.List<T_253> | null | undefined): T_253[];
528
+ valuesIn<T_254 extends object>(object: T_254 | null | undefined): T_254[keyof T_254][];
529
+ chain<TrapAny extends {
530
+ __lodashAnyHack: any;
531
+ }>(value: TrapAny): lodash.CollectionChain<any> & lodash.FunctionChain<any> & lodash.ObjectChain<any> & lodash.PrimitiveChain<any> & lodash.StringChain;
532
+ chain<T_255 extends null | undefined>(value: T_255): lodash.PrimitiveChain<T_255>;
533
+ chain(value: string): lodash.StringChain;
534
+ chain(value: string | null | undefined): lodash.StringNullableChain;
535
+ chain<T_256 extends (...args: any[]) => any>(value: T_256): lodash.FunctionChain<T_256>;
536
+ chain<T_257 = any>(value: lodash.List<T_257> | null | undefined): lodash.CollectionChain<T_257>;
537
+ chain<T_258 extends object>(value: T_258 | null | undefined): lodash.ObjectChain<T_258>;
538
+ chain<T_259>(value: T_259): lodash.PrimitiveChain<T_259>;
539
+ tap<T_260>(value: T_260, interceptor: (value: T_260) => void): T_260;
540
+ thru<T_261, TResult_42>(value: T_261, interceptor: (value: T_261) => TResult_42): TResult_42;
541
+ camelCase(string?: string | undefined): string;
542
+ capitalize(string?: string | undefined): string;
543
+ deburr(string?: string | undefined): string;
544
+ endsWith(string?: string | undefined, target?: string | undefined, position?: number | undefined): boolean;
545
+ escape(string?: string | undefined): string;
546
+ escapeRegExp(string?: string | undefined): string;
547
+ kebabCase(string?: string | undefined): string;
548
+ lowerCase(string?: string | undefined): string;
549
+ lowerFirst(string?: string | undefined): string;
550
+ pad(string?: string | undefined, length?: number | undefined, chars?: string | undefined): string;
551
+ padEnd(string?: string | undefined, length?: number | undefined, chars?: string | undefined): string;
552
+ padStart(string?: string | undefined, length?: number | undefined, chars?: string | undefined): string;
553
+ parseInt(string: string, radix?: number | undefined): number;
554
+ repeat(string?: string | undefined, n?: number | undefined): string;
555
+ replace(string: string, pattern: string | RegExp, replacement: string | lodash.ReplaceFunction): string;
556
+ replace(pattern: string | RegExp, replacement: string | lodash.ReplaceFunction): string;
557
+ snakeCase(string?: string | undefined): string;
558
+ split(string: string | null | undefined, separator?: string | RegExp | undefined, limit?: number | undefined): string[];
559
+ split(string: string | null | undefined, index: string | number, guard: object): string[];
560
+ startCase(string?: string | undefined): string;
561
+ startsWith(string?: string | undefined, target?: string | undefined, position?: number | undefined): boolean;
562
+ template(string?: string | undefined, options?: lodash.TemplateOptions | undefined): lodash.TemplateExecutor;
563
+ toLower(string?: string | undefined): string;
564
+ toUpper(string?: string | undefined): string;
565
+ trim(string?: string | undefined, chars?: string | undefined): string;
566
+ trim(string: string, index: string | number, guard: object): string;
567
+ trimEnd(string?: string | undefined, chars?: string | undefined): string;
568
+ trimEnd(string: string, index: string | number, guard: object): string;
569
+ trimStart(string?: string | undefined, chars?: string | undefined): string;
570
+ trimStart(string: string, index: string | number, guard: object): string;
571
+ truncate(string?: string | undefined, options?: lodash.TruncateOptions | undefined): string;
572
+ unescape(string?: string | undefined): string;
573
+ upperCase(string?: string | undefined): string;
574
+ upperFirst(string?: string | undefined): string;
575
+ words(string?: string | undefined, pattern?: string | RegExp | undefined): string[];
576
+ words(string: string, index: string | number, guard: object): string[];
577
+ attempt<TResult_43>(func: (...args: any[]) => TResult_43, ...args: any[]): Error | TResult_43;
578
+ bindAll<T_262>(object: T_262, ...methodNames: lodash.Many<string>[]): T_262;
579
+ cond<R>(pairs: lodash.CondPairNullary<R>[]): () => R;
580
+ cond<T_263, R_1>(pairs: lodash.CondPairUnary<T_263, R_1>[]): (Target: T_263) => R_1;
581
+ conforms<T_264>(source: lodash.ConformsPredicateObject<T_264>): (value: T_264) => boolean;
582
+ constant<T_265>(value: T_265): () => T_265;
583
+ defaultTo<T_266>(value: T_266 | null | undefined, defaultValue: T_266): T_266;
584
+ defaultTo<T_267, TDefault_6>(value: T_267 | null | undefined, defaultValue: TDefault_6): T_267 | TDefault_6;
585
+ flow<A extends any[], R1, R2, R3, R4, R5, R6, R7>(f1: (...args: A) => R1, f2: (a: R1) => R2, f3: (a: R2) => R3, f4: (a: R3) => R4, f5: (a: R4) => R5, f6: (a: R5) => R6, f7: (a: R6) => R7): (...args: A) => R7;
586
+ flow<A_1 extends any[], R1_1, R2_1, R3_1, R4_1, R5_1, R6_1, R7_1>(f1: (...args: A_1) => R1_1, f2: (a: R1_1) => R2_1, f3: (a: R2_1) => R3_1, f4: (a: R3_1) => R4_1, f5: (a: R4_1) => R5_1, f6: (a: R5_1) => R6_1, f7: (a: R6_1) => R7_1, ...func: lodash.Many<(a: any) => any>[]): (...args: A_1) => any;
587
+ flow<A_2 extends any[], R1_2, R2_2, R3_2, R4_2, R5_2, R6_2>(f1: (...args: A_2) => R1_2, f2: (a: R1_2) => R2_2, f3: (a: R2_2) => R3_2, f4: (a: R3_2) => R4_2, f5: (a: R4_2) => R5_2, f6: (a: R5_2) => R6_2): (...args: A_2) => R6_2;
588
+ flow<A_3 extends any[], R1_3, R2_3, R3_3, R4_3, R5_3>(f1: (...args: A_3) => R1_3, f2: (a: R1_3) => R2_3, f3: (a: R2_3) => R3_3, f4: (a: R3_3) => R4_3, f5: (a: R4_3) => R5_3): (...args: A_3) => R5_3;
589
+ flow<A_4 extends any[], R1_4, R2_4, R3_4, R4_4>(f1: (...args: A_4) => R1_4, f2: (a: R1_4) => R2_4, f3: (a: R2_4) => R3_4, f4: (a: R3_4) => R4_4): (...args: A_4) => R4_4;
590
+ flow<A_5 extends any[], R1_5, R2_5, R3_5>(f1: (...args: A_5) => R1_5, f2: (a: R1_5) => R2_5, f3: (a: R2_5) => R3_5): (...args: A_5) => R3_5;
591
+ flow<A_6 extends any[], R1_6, R2_6>(f1: (...args: A_6) => R1_6, f2: (a: R1_6) => R2_6): (...args: A_6) => R2_6;
592
+ flow(...func: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
593
+ flowRight<A_7 extends any[], R1_7, R2_7, R3_6, R4_5, R5_4, R6_3, R7_2>(f7: (a: R6_3) => R7_2, f6: (a: R5_4) => R6_3, f5: (a: R4_5) => R5_4, f4: (a: R3_6) => R4_5, f3: (a: R2_7) => R3_6, f2: (a: R1_7) => R2_7, f1: (...args: A_7) => R1_7): (...args: A_7) => R7_2;
594
+ flowRight<A_8 extends any[], R1_8, R2_8, R3_7, R4_6, R5_5, R6_4>(f6: (a: R5_5) => R6_4, f5: (a: R4_6) => R5_5, f4: (a: R3_7) => R4_6, f3: (a: R2_8) => R3_7, f2: (a: R1_8) => R2_8, f1: (...args: A_8) => R1_8): (...args: A_8) => R6_4;
595
+ flowRight<A_9 extends any[], R1_9, R2_9, R3_8, R4_7, R5_6>(f5: (a: R4_7) => R5_6, f4: (a: R3_8) => R4_7, f3: (a: R2_9) => R3_8, f2: (a: R1_9) => R2_9, f1: (...args: A_9) => R1_9): (...args: A_9) => R5_6;
596
+ flowRight<A_10 extends any[], R1_10, R2_10, R3_9, R4_8>(f4: (a: R3_9) => R4_8, f3: (a: R2_10) => R3_9, f2: (a: R1_10) => R2_10, f1: (...args: A_10) => R1_10): (...args: A_10) => R4_8;
597
+ flowRight<A_11 extends any[], R1_11, R2_11, R3_10>(f3: (a: R2_11) => R3_10, f2: (a: R1_11) => R2_11, f1: (...args: A_11) => R1_11): (...args: A_11) => R3_10;
598
+ flowRight<A_12 extends any[], R1_12, R2_12>(f2: (a: R1_12) => R2_12, f1: (...args: A_12) => R1_12): (...args: A_12) => R2_12;
599
+ flowRight(...func: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
600
+ identity<T_268>(value: T_268): T_268;
601
+ identity(): undefined;
602
+ iteratee<TFunction extends (...args: any[]) => any>(func: TFunction): TFunction;
603
+ iteratee(func: string | number | symbol | object): (...args: any[]) => any;
604
+ matches<T_269>(source: T_269): (value: any) => boolean;
605
+ matches<T_270, V>(source: T_270): (value: V) => boolean;
606
+ matchesProperty<T_271>(path: lodash.PropertyPath, srcValue: T_271): (value: any) => boolean;
607
+ matchesProperty<T_272, V_1>(path: lodash.PropertyPath, srcValue: T_272): (value: V_1) => boolean;
608
+ method(path: lodash.PropertyPath, ...args: any[]): (object: any) => any;
609
+ methodOf(object: object, ...args: any[]): (path: lodash.PropertyPath) => any;
610
+ mixin<TObject_55>(object: TObject_55, source: lodash.Dictionary<(...args: any[]) => any>, options?: lodash.MixinOptions | undefined): TObject_55;
611
+ mixin<TResult_44>(source: lodash.Dictionary<(...args: any[]) => any>, options?: lodash.MixinOptions | undefined): lodash.LoDashStatic;
612
+ noConflict(): lodash.LoDashStatic;
613
+ noop(...args: any[]): void;
614
+ nthArg(n?: number | undefined): (...args: any[]) => any;
615
+ over<TResult_45>(...iteratees: lodash.Many<(...args: any[]) => TResult_45>[]): (...args: any[]) => TResult_45[];
616
+ overEvery<T_273, Result1 extends T_273, Result2 extends T_273>(predicates_0: (arg: T_273) => arg is Result1, predicates_1: (arg: T_273) => arg is Result2): (arg: T_273) => arg is Result1 & Result2;
617
+ overEvery<T_274>(...predicates: lodash.Many<(...args: T_274[]) => boolean>[]): (...args: T_274[]) => boolean;
618
+ overSome<T_275, Result1_1 extends T_275, Result2_1 extends T_275>(predicates_0: (arg: T_275) => arg is Result1_1, predicates_1: (arg: T_275) => arg is Result2_1): (arg: T_275) => arg is Result1_1 | Result2_1;
619
+ overSome<T_276>(...predicates: lodash.Many<(...args: T_276[]) => boolean>[]): (...args: T_276[]) => boolean;
620
+ property<TObj, TResult_46>(path: lodash.PropertyPath): (obj: TObj) => TResult_46;
621
+ propertyOf<T_277 extends {}>(object: T_277): (path: lodash.PropertyPath) => any;
622
+ range(start: number, end?: number | undefined, step?: number | undefined): number[];
623
+ range(end: number, index: string | number, guard: object): number[];
624
+ rangeRight(start: number, end?: number | undefined, step?: number | undefined): number[];
625
+ rangeRight(end: number, index: string | number, guard: object): number[];
626
+ runInContext(context?: object | undefined): lodash.LoDashStatic;
627
+ stubArray(): any[];
628
+ stubFalse(): false;
629
+ stubFalse(): false;
630
+ stubObject(): any;
631
+ stubString(): string;
632
+ stubTrue(): true;
633
+ stubTrue(): true;
634
+ times<TResult_47>(n: number, iteratee: (num: number) => TResult_47): TResult_47[];
635
+ times(n: number): number[];
636
+ toPath(value: any): string[];
637
+ uniqueId(prefix?: string | undefined): string;
638
+ };
639
+ '@veloceapps/sdk/core': {
640
+ findLineItem: (id: string, lineItems: import("@veloceapps/core").LineItem[]) => import("@veloceapps/core").LineItem | undefined;
641
+ findLineItemWithComparator: (lineItems: import("@veloceapps/core").LineItem[], comparator: (li: import("@veloceapps/core").LineItem) => boolean) => import("@veloceapps/core").LineItem | undefined;
642
+ insertLineItem: (lineItem: import("@veloceapps/core").LineItem, parentId: string, toInsert: import("@veloceapps/core").LineItem) => import("@veloceapps/core").LineItem;
643
+ removeLineItem: (lineItem: import("@veloceapps/core").LineItem, idToRemove: string) => import("@veloceapps/core").LineItem;
644
+ replaceLineItem: (lineItem: import("@veloceapps/core").LineItem, replaceTo: import("@veloceapps/core").LineItem) => import("@veloceapps/core").LineItem;
645
+ mapAttributes: (attributes: import("@veloceapps/core").Attribute[]) => lodash.Dictionary<any>;
646
+ getAttributes: (attributes: import("@veloceapps/core").Attribute[], names?: string[] | undefined) => import("@veloceapps/core").Attribute[];
647
+ upsertAttributes: (originalAttributes: import("@veloceapps/core").Attribute[], attributesToUpsert: {
648
+ name: string;
649
+ value: any;
650
+ }[]) => import("@veloceapps/core").Attribute[];
651
+ patchAttributes: (rootLineItem: import("@veloceapps/core").LineItem, id: string, attrs: {
652
+ name: string;
653
+ value: any;
654
+ }[]) => import("@veloceapps/core").LineItem;
655
+ getAttributeValue: (attributes: import("@veloceapps/core").Attribute[], name: string) => any;
656
+ generateLineItem: (port: string, type: string, parentId: string, attributes?: {
657
+ name: string;
658
+ value: any;
659
+ }[] | undefined, lineItems?: import("@veloceapps/core").LineItem[] | undefined) => import("@veloceapps/core").LineItem;
660
+ getRecommendedPrices: (portDomain: import("@veloceapps/core").PortDomain, type: string) => {
661
+ net: number;
662
+ list: number;
663
+ };
664
+ ConfigurationService: typeof ConfigurationService;
665
+ QuoteDraftService: typeof QuoteDraftService;
666
+ FlowConfigurationService: typeof FlowConfigurationService;
667
+ LineItemWorker: typeof LineItemWorker;
668
+ ProductImagesService: typeof ProductImagesService;
669
+ };
670
+ '@veloceapps/sdk/cms': {
671
+ TemplatesService: typeof TemplatesService;
672
+ IntegrationState: typeof IntegrationState;
673
+ FlowAction: typeof cmsActions.FlowAction;
674
+ ConfigureProductAction: ({ lineItemId, productId, }: {
675
+ lineItemId?: string | undefined;
676
+ productId?: string | undefined;
677
+ }) => import("@veloceapps/sdk/cms").IntegrationAction<any>;
678
+ NavigateBackAction: () => import("@veloceapps/sdk/cms").IntegrationAction<any>;
679
+ NavigateToCatalogAction: () => import("@veloceapps/sdk/cms").IntegrationAction<any>;
680
+ ApplyProductConfigurationAction: () => import("@veloceapps/sdk/cms").IntegrationAction<any>;
681
+ OpenDocGenAction: () => import("@veloceapps/sdk/cms").IntegrationAction<any>;
682
+ CloseDocGenAction: () => import("@veloceapps/sdk/cms").IntegrationAction<any>;
683
+ RemoteApplyAction: () => import("@veloceapps/sdk/cms").IntegrationAction<any>;
684
+ RemoteCancelAction: () => import("@veloceapps/sdk/cms").IntegrationAction<any>;
685
+ SwitchObjectAction: (payload: {
686
+ id: string;
687
+ }) => import("@veloceapps/sdk/cms").IntegrationAction<any>;
688
+ SetDefaultMetrics: (metrics: import("@veloceapps/sdk/cms").Metric[]) => import("@veloceapps/sdk/cms").IntegrationAction<any>;
689
+ DEFAULT_PLUGINS_TOKEN: angularCore.InjectionToken<typeof import("./engine/models/plugin").Plugin[]>;
690
+ UI_DEFINITION_METADATA: angularCore.InjectionToken<import("@veloceapps/sdk/core").UIDefinitionMetadata>;
691
+ ELEMENT_METADATA: angularCore.InjectionToken<import("@veloceapps/sdk/cms").ElementMetadata>;
692
+ SHARED_ELEMENT_METADATA: angularCore.InjectionToken<import("@veloceapps/sdk/cms").ElementMetadata>;
693
+ ELEMENT_CONFIG: angularCore.InjectionToken<import("@veloceapps/sdk/cms").ElementConfig>;
694
+ VENDOR_MAP: angularCore.InjectionToken<lodash.Dictionary<any>>;
695
+ };
696
+ '@veloceapps/api': {
697
+ SalesforceApiService: typeof SalesforceApiService;
698
+ QuoteApiService: typeof QuoteApiService;
699
+ DocumentTemplatesApiService: typeof DocumentTemplatesApiService;
700
+ DocumentAttachmentApiService: typeof DocumentAttachmentApiService;
701
+ RampApiService: typeof RampApiService;
702
+ CatalogApiService: typeof CatalogApiService;
703
+ DeltaApiService: typeof DeltaApiService;
704
+ PicklistsApiService: typeof PicklistsApiService;
705
+ PriceApiService: typeof PriceApiService;
706
+ };
707
+ };
708
+ export declare type VendorMap = typeof vendorMap;