new-front-common-library 16.1.32-ROY-1 → 16.1.32-ROY-3

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 (603) hide show
  1. package/karma.conf.js +44 -0
  2. package/ng-package.json +10 -0
  3. package/package.json +2 -19
  4. package/src/lib/new-front-common-library.component.spec.ts +25 -0
  5. package/src/lib/new-front-common-library.component.ts +20 -0
  6. package/src/lib/new-front-common-library.module.ts +26 -0
  7. package/src/lib/new-front-common-library.service.spec.ts +16 -0
  8. package/src/lib/new-front-common-library.service.ts +10 -0
  9. package/src/lib/util/animations/actions.animation.ts +16 -0
  10. package/src/lib/util/animations/fade.animation.ts +16 -0
  11. package/src/lib/util/array.service.ts +14 -0
  12. package/src/lib/util/component/header/header.component.html +389 -0
  13. package/src/lib/util/component/header/header.component.scss +265 -0
  14. package/src/lib/util/component/header/header.component.ts +245 -0
  15. package/src/lib/util/component/header/menu/menu.component.html +52 -0
  16. package/src/lib/util/component/header/menu/menu.component.scss +127 -0
  17. package/src/lib/util/component/header/menu/menu.component.spec.ts +21 -0
  18. package/src/lib/util/component/header/menu/menu.component.ts +94 -0
  19. package/src/lib/util/component/header/menu/menu.const.ts +546 -0
  20. package/src/lib/util/component/header/menu/menu.model.ts +26 -0
  21. package/src/lib/util/component/overlay/overlay.component.css +20 -0
  22. package/src/lib/util/component/overlay/overlay.component.html +10 -0
  23. package/src/lib/util/component/overlay/overlay.component.ts +42 -0
  24. package/src/lib/util/component/overlay/overlay.service.ts +23 -0
  25. package/src/lib/util/component/popup/popup-login/popup-login.component.css +3 -0
  26. package/src/lib/util/component/popup/popup-login/popup-login.component.html +29 -0
  27. package/src/lib/util/component/popup/popup-login/popup-login.component.ts +96 -0
  28. package/src/lib/util/component/sub-header/sub-header.component.css +136 -0
  29. package/src/lib/util/component/sub-header/sub-header.component.html +20 -0
  30. package/src/lib/util/component/sub-header/sub-header.component.spec.ts +25 -0
  31. package/src/lib/util/component/sub-header/sub-header.component.ts +37 -0
  32. package/src/lib/util/config.ts +15 -0
  33. package/src/lib/util/date/PeriodModel.ts +7 -0
  34. package/src/lib/util/date/date-format-constants.ts +12 -0
  35. package/src/lib/util/date/date.util.ts +222 -0
  36. package/src/lib/util/decorators/theme.decorator.ts +24 -0
  37. package/src/lib/util/decorators/user.decorator.ts +30 -0
  38. package/src/lib/util/directives/my-number-formatter-directive.ts +32 -0
  39. package/src/lib/util/directives/show-if-truncated.directive.ts +19 -0
  40. package/src/lib/util/enums/family.enum.ts +4 -0
  41. package/src/lib/util/enums/rapid-search-item-type.enum.ts +11 -0
  42. package/src/lib/util/enums/status-color.enum.ts +9 -0
  43. package/src/lib/util/event/header/header-events.service.ts +20 -0
  44. package/src/lib/util/event/storage/local-storage-events.service.ts +15 -0
  45. package/src/lib/util/event/storage/session-storage-events.service.ts +15 -0
  46. package/src/lib/util/http/http-params.builder.ts +33 -0
  47. package/src/lib/util/i18n/de.ts +173 -0
  48. package/src/lib/util/i18n/en.ts +173 -0
  49. package/src/lib/util/i18n/fr.ts +174 -0
  50. package/src/lib/util/i18n/multi-translate-http-loader.ts +31 -0
  51. package/src/lib/util/models/any-line.model.ts +45 -0
  52. package/src/lib/util/models/audio-content.model.ts +40 -0
  53. package/src/lib/util/models/authPermission.model.ts +17 -0
  54. package/src/lib/util/models/authUser.model.ts +28 -0
  55. package/src/lib/util/models/basic-hierarchy.model.ts +8 -0
  56. package/src/lib/util/models/basic.model.ts +31 -0
  57. package/src/lib/util/models/box-set-item.model.ts +23 -0
  58. package/src/lib/util/models/commercial/deal-rapid-search-model.ts +10 -0
  59. package/src/lib/util/models/commercial/invoice-rapid-search-model.ts +25 -0
  60. package/src/lib/util/models/commercial/work-record-rapid-search-model.ts +28 -0
  61. package/src/lib/util/models/custom-typings.d.ts +166 -0
  62. package/src/lib/util/models/disc-program.model.ts +29 -0
  63. package/src/lib/util/models/disc.model.ts +26 -0
  64. package/src/lib/util/models/eventType.model.ts +7 -0
  65. package/src/lib/util/models/expenditure-commitment/purchase-order-file.model.ts +27 -0
  66. package/src/lib/util/models/expenditure-commitment/purchase-order-rapid-search.model.ts +10 -0
  67. package/src/lib/util/models/family.model.ts +6 -0
  68. package/{lib/util/models/index.d.ts → src/lib/util/models/index.ts} +1 -0
  69. package/src/lib/util/models/lang-line.model.ts +31 -0
  70. package/src/lib/util/models/legal/contract-rapid-search-model.ts +13 -0
  71. package/src/lib/util/models/legal/contract-work.model.ts +43 -0
  72. package/src/lib/util/models/legal/contract-work2.model.ts +39 -0
  73. package/src/lib/util/models/legal/type-status-rapid-search.model.ts +5 -0
  74. package/src/lib/util/models/media-line.model.ts +20 -0
  75. package/src/lib/util/models/menu-language.model.ts +16 -0
  76. package/src/lib/util/models/milo/territory.model.ts +19 -0
  77. package/src/lib/util/models/module.model.ts +9 -0
  78. package/src/lib/util/models/permission.model.ts +21 -0
  79. package/src/lib/util/models/product-box-set.model.ts +19 -0
  80. package/src/lib/util/models/product-disc-detail.model.ts +25 -0
  81. package/src/lib/util/models/product-disc.model.ts +31 -0
  82. package/src/lib/util/models/product-division.model.ts +35 -0
  83. package/src/lib/util/models/product-type.model.ts +26 -0
  84. package/src/lib/util/models/product.model.ts +73 -0
  85. package/src/lib/util/models/program.model.ts +34 -0
  86. package/src/lib/util/models/purchase-order/purchase-order.model.ts +61 -0
  87. package/src/lib/util/models/referential/WorkVersionArticleDto.ts +20 -0
  88. package/src/lib/util/models/referential/adress-type.model.ts +13 -0
  89. package/src/lib/util/models/referential/adress.model.ts +31 -0
  90. package/src/lib/util/models/referential/attached-file.model.ts +21 -0
  91. package/src/lib/util/models/referential/bank-account.model.ts +25 -0
  92. package/src/lib/util/models/referential/bank-accounts.model.ts +34 -0
  93. package/src/lib/util/models/referential/basic-hierarchy.model.ts +8 -0
  94. package/src/lib/util/models/referential/broadcast-list-item.model.ts +19 -0
  95. package/src/lib/util/models/referential/color.model.ts +16 -0
  96. package/src/lib/util/models/referential/company.model.ts +17 -0
  97. package/src/lib/util/models/referential/content-type.model.ts +22 -0
  98. package/src/lib/util/models/referential/content.model.ts +26 -0
  99. package/src/lib/util/models/referential/cost-center-criteria-values.model.ts +17 -0
  100. package/src/lib/util/models/referential/cost-center-criteria.model.ts +23 -0
  101. package/src/lib/util/models/referential/cost-center.model.ts +37 -0
  102. package/src/lib/util/models/referential/coutry.model.ts +17 -0
  103. package/src/lib/util/models/referential/currency.model.ts +22 -0
  104. package/src/lib/util/models/referential/editorial-content.model.ts +37 -0
  105. package/src/lib/util/models/referential/fixing.model.ts +21 -0
  106. package/src/lib/util/models/referential/flat-media.model.ts +19 -0
  107. package/src/lib/util/models/referential/format-image.model.ts +17 -0
  108. package/src/lib/util/models/referential/format-type.model.ts +16 -0
  109. package/src/lib/util/models/referential/format.model.ts +17 -0
  110. package/src/lib/util/models/referential/fsk-index.model.ts +36 -0
  111. package/src/lib/util/models/referential/fsk.model.ts +53 -0
  112. package/src/lib/util/models/referential/function.model.ts +25 -0
  113. package/src/lib/util/models/referential/genre.model.ts +17 -0
  114. package/src/lib/util/models/referential/invoice-product-type.model.ts +24 -0
  115. package/src/lib/util/models/referential/keywords.model.ts +16 -0
  116. package/src/lib/util/models/referential/language.model.ts +22 -0
  117. package/src/lib/util/models/referential/media-filter.model.ts +10 -0
  118. package/src/lib/util/models/referential/media.model.ts +21 -0
  119. package/src/lib/util/models/referential/module.model.ts +21 -0
  120. package/{lib/util/models/referential/parameter.model.d.ts → src/lib/util/models/referential/parameter.model.ts} +2 -0
  121. package/src/lib/util/models/referential/participant.model.ts +31 -0
  122. package/src/lib/util/models/referential/person.model.ts +30 -0
  123. package/src/lib/util/models/referential/po/WorkRestrictionPO.ts +11 -0
  124. package/src/lib/util/models/referential/project-status.model.ts +16 -0
  125. package/src/lib/util/models/referential/quota.model.ts +17 -0
  126. package/src/lib/util/models/referential/referential-entity-state.model.ts +22 -0
  127. package/src/lib/util/models/referential/referential-value.model.ts +21 -0
  128. package/src/lib/util/models/referential/referentiel.model.ts +29 -0
  129. package/src/lib/util/models/referential/restriction.model.ts +26 -0
  130. package/src/lib/util/models/referential/sap-order.model.ts +48 -0
  131. package/src/lib/util/models/referential/service-error.model.ts +16 -0
  132. package/src/lib/util/models/referential/sound.model.ts +16 -0
  133. package/src/lib/util/models/referential/territories-languages.model.ts +19 -0
  134. package/src/lib/util/models/referential/territory-filter.model.ts +6 -0
  135. package/src/lib/util/models/referential/territory.model.ts +27 -0
  136. package/src/lib/util/models/referential/theme.model.ts +17 -0
  137. package/src/lib/util/models/referential/third-party-address-rapid-search.model.ts +8 -0
  138. package/src/lib/util/models/referential/third-party-creation-request.model.ts +59 -0
  139. package/src/lib/util/models/referential/third-party-module.model.ts +21 -0
  140. package/src/lib/util/models/referential/third-party-rapid-search.model.ts +10 -0
  141. package/src/lib/util/models/referential/third-party.model.ts +100 -0
  142. package/src/lib/util/models/referential/translated-value-model.ts +20 -0
  143. package/src/lib/util/models/referential/tva.model.ts +17 -0
  144. package/src/lib/util/models/referential/type-export.model.ts +17 -0
  145. package/src/lib/util/models/referential/type-tva-company-territory.model.ts +36 -0
  146. package/src/lib/util/models/referential/type-tva.model.ts +29 -0
  147. package/{lib/util/models/referential/user-form.model.d.ts → src/lib/util/models/referential/user-form.model.ts} +2 -0
  148. package/src/lib/util/models/referential/work-addons-model.ts +36 -0
  149. package/src/lib/util/models/referential/work-appartenance.model.ts +17 -0
  150. package/src/lib/util/models/referential/work-genre.model.ts +21 -0
  151. package/src/lib/util/models/referential/work-language.model.ts +21 -0
  152. package/src/lib/util/models/referential/work-milo.model.ts +65 -0
  153. package/src/lib/util/models/referential/work-participant.model.ts +28 -0
  154. package/src/lib/util/models/referential/work-restrictions-model.ts +34 -0
  155. package/src/lib/util/models/referential/work-theme.model.ts +21 -0
  156. package/src/lib/util/models/referential/work-title.model.ts +27 -0
  157. package/src/lib/util/models/referential/work-version-origin.model.ts +20 -0
  158. package/src/lib/util/models/referential/work-version-rapid-search.model.ts +10 -0
  159. package/src/lib/util/models/referential/work-versions-used.model.ts +22 -0
  160. package/src/lib/util/models/referential/work-versions.model.ts +47 -0
  161. package/src/lib/util/models/referential/work-year-production.model.ts +16 -0
  162. package/src/lib/util/models/referential/work.model.ts +88 -0
  163. package/src/lib/util/models/referential/zone.model.ts +16 -0
  164. package/src/lib/util/models/referentiel.model.ts +29 -0
  165. package/src/lib/util/models/search-response.model.ts +7 -0
  166. package/src/lib/util/models/section.model.ts +11 -0
  167. package/src/lib/util/models/select/options.model.ts +8 -0
  168. package/src/lib/util/models/select/select.model.ts +4 -0
  169. package/src/lib/util/models/subsidiary.model.ts +10 -0
  170. package/src/lib/util/models/subtitle-content.model.ts +39 -0
  171. package/src/lib/util/models/user-video.model.ts +29 -0
  172. package/src/lib/util/models/user.model.ts +41 -0
  173. package/src/lib/util/models/video/product-rapid-search.model.ts +10 -0
  174. package/src/lib/util/models/video/support-rapid-search.model.ts +7 -0
  175. package/src/lib/util/models/video-content.model.ts +37 -0
  176. package/src/lib/util/number.validator.ts +123 -0
  177. package/src/lib/util/paginator/custom-paginator-configuration.ts +68 -0
  178. package/src/lib/util/permissions/permissions.service.ts +47 -0
  179. package/src/lib/util/pipes/capitalizefirst.pipe.ts +39 -0
  180. package/src/lib/util/pipes/comma-separated-number.pipe.ts +9 -0
  181. package/src/lib/util/pipes/common-translate.pipe.ts +37 -0
  182. package/src/lib/util/pipes/display-html.pipe.ts +15 -0
  183. package/src/lib/util/pipes/display-null.pipe.ts +19 -0
  184. package/src/lib/util/pipes/format-currency.pipe.ts +26 -0
  185. package/src/lib/util/pipes/format-duration.pipe.ts +16 -0
  186. package/src/lib/util/pipes/format-number-input.pipe.ts +19 -0
  187. package/src/lib/util/pipes/local-date.pipe.ts +29 -0
  188. package/src/lib/util/pipes/my-number.pipe.ts +51 -0
  189. package/src/lib/util/pipes/third-party-address-search.pipe.ts +12 -0
  190. package/src/lib/util/pipes/third-party-address.pipe.ts +13 -0
  191. package/src/lib/util/pipes/trim-string.pipe.ts +24 -0
  192. package/src/lib/util/regex/regex.service.ts +94 -0
  193. package/src/lib/util/regex/regex.spec.ts +45 -0
  194. package/src/lib/util/services/api/commercial-api.service.ts +23 -0
  195. package/src/lib/util/services/api/common-api.service.ts +121 -0
  196. package/src/lib/util/services/api/legal-api.service.ts +27 -0
  197. package/src/lib/util/services/api/video-api.service.ts +45 -0
  198. package/src/lib/util/services/auth/auth.service.spec.ts +16 -0
  199. package/src/lib/util/services/auth/auth.service.ts +14 -0
  200. package/src/lib/util/services/elasticsearch/elasticsearch.service.ts +179 -0
  201. package/src/lib/util/services/elasticsearch/subsidiaries.service.ts +48 -0
  202. package/src/lib/util/services/form-action/form-actions-events.service.ts +25 -0
  203. package/src/lib/util/services/guard/auth.guard.ts +44 -0
  204. package/src/lib/util/services/guard/login.guard.ts +26 -0
  205. package/src/lib/util/services/history/history.service.ts +38 -0
  206. package/src/lib/util/services/interceptor/auth.interceptor.ts +66 -0
  207. package/src/lib/util/services/jwt-security/aes.service.ts +48 -0
  208. package/src/lib/util/services/jwt-security/interceptorhttp.service.ts +98 -0
  209. package/src/lib/util/services/jwt-security/jwt.helpher.ts +38 -0
  210. package/src/lib/util/services/storage/local-storage.service.ts +36 -0
  211. package/src/lib/util/services/storage/session-storage.service.ts +39 -0
  212. package/src/lib/util/services/translate-language/lang.service.ts +26 -0
  213. package/src/lib/util/services/user/user-subsidiary.service.spec.ts +207 -0
  214. package/src/lib/util/services/user/user-subsidiary.service.ts +21 -0
  215. package/src/lib/util/sort.ts +27 -0
  216. package/src/lib/util/theme/theme-event.service.ts +15 -0
  217. package/src/lib/util/toaster/toaster-events.service.ts +32 -0
  218. package/src/lib/util/util.module.ts +185 -0
  219. package/{public-api.d.ts → src/public-api.ts} +17 -2
  220. package/src/test.ts +13 -0
  221. package/tsconfig.lib.json +19 -0
  222. package/tsconfig.lib.prod.json +10 -0
  223. package/tsconfig.spec.json +17 -0
  224. package/esm2022/lib/util/array.service.mjs +0 -19
  225. package/esm2022/lib/util/component/header/header.component.mjs +0 -221
  226. package/esm2022/lib/util/component/header/menu/menu.component.mjs +0 -96
  227. package/esm2022/lib/util/component/header/menu/menu.const.mjs +0 -544
  228. package/esm2022/lib/util/component/header/menu/menu.model.mjs +0 -2
  229. package/esm2022/lib/util/component/overlay/overlay.component.mjs +0 -40
  230. package/esm2022/lib/util/component/overlay/overlay.service.mjs +0 -24
  231. package/esm2022/lib/util/component/popup/popup-login/popup-login.component.mjs +0 -90
  232. package/esm2022/lib/util/component/sub-header/sub-header.component.mjs +0 -44
  233. package/esm2022/lib/util/config.mjs +0 -8
  234. package/esm2022/lib/util/date/PeriodModel.mjs +0 -8
  235. package/esm2022/lib/util/date/date-format-constants.mjs +0 -12
  236. package/esm2022/lib/util/date/date.util.mjs +0 -218
  237. package/esm2022/lib/util/decorators/theme.decorator.mjs +0 -22
  238. package/esm2022/lib/util/decorators/user.decorator.mjs +0 -25
  239. package/esm2022/lib/util/directives/my-number-formatter-directive.mjs +0 -34
  240. package/esm2022/lib/util/directives/show-if-truncated.directive.mjs +0 -25
  241. package/esm2022/lib/util/enums/family.enum.mjs +0 -6
  242. package/esm2022/lib/util/enums/rapid-search-item-type.enum.mjs +0 -12
  243. package/esm2022/lib/util/enums/status-color.enum.mjs +0 -11
  244. package/esm2022/lib/util/event/header/header-events.service.mjs +0 -21
  245. package/esm2022/lib/util/event/storage/local-storage-events.service.mjs +0 -17
  246. package/esm2022/lib/util/event/storage/session-storage-events.service.mjs +0 -18
  247. package/esm2022/lib/util/http/http-params.builder.mjs +0 -27
  248. package/esm2022/lib/util/i18n/de.mjs +0 -158
  249. package/esm2022/lib/util/i18n/en.mjs +0 -158
  250. package/esm2022/lib/util/i18n/fr.mjs +0 -158
  251. package/esm2022/lib/util/i18n/multi-translate-http-loader.mjs +0 -21
  252. package/esm2022/lib/util/interfaces/permissions.interface.mjs +0 -2
  253. package/esm2022/lib/util/models/any-line.model.mjs +0 -37
  254. package/esm2022/lib/util/models/audio-content.model.mjs +0 -27
  255. package/esm2022/lib/util/models/authPermission.model.mjs +0 -16
  256. package/esm2022/lib/util/models/authUser.model.mjs +0 -21
  257. package/esm2022/lib/util/models/basic.model.mjs +0 -14
  258. package/esm2022/lib/util/models/box-set-item.model.mjs +0 -19
  259. package/esm2022/lib/util/models/commercial/deal-rapid-search-model.mjs +0 -3
  260. package/esm2022/lib/util/models/commercial/invoice-rapid-search-model.mjs +0 -9
  261. package/esm2022/lib/util/models/commercial/work-record-rapid-search-model.mjs +0 -13
  262. package/esm2022/lib/util/models/disc-program.model.mjs +0 -26
  263. package/esm2022/lib/util/models/disc.model.mjs +0 -22
  264. package/esm2022/lib/util/models/eventType.model.mjs +0 -7
  265. package/esm2022/lib/util/models/expenditure-commitment/purchase-order-file.model.mjs +0 -22
  266. package/esm2022/lib/util/models/expenditure-commitment/purchase-order-rapid-search.model.mjs +0 -3
  267. package/esm2022/lib/util/models/family.model.mjs +0 -7
  268. package/esm2022/lib/util/models/index.mjs +0 -101
  269. package/esm2022/lib/util/models/lang-line.model.mjs +0 -27
  270. package/esm2022/lib/util/models/legal/contract-rapid-search-model.mjs +0 -3
  271. package/esm2022/lib/util/models/legal/contract-work.model.mjs +0 -23
  272. package/esm2022/lib/util/models/legal/contract-work2.model.mjs +0 -21
  273. package/esm2022/lib/util/models/legal/type-status-rapid-search.model.mjs +0 -3
  274. package/esm2022/lib/util/models/media-line.model.mjs +0 -18
  275. package/esm2022/lib/util/models/menu-language.model.mjs +0 -15
  276. package/esm2022/lib/util/models/permission.model.mjs +0 -20
  277. package/esm2022/lib/util/models/product-box-set.model.mjs +0 -16
  278. package/esm2022/lib/util/models/product-disc-detail.model.mjs +0 -22
  279. package/esm2022/lib/util/models/product-disc.model.mjs +0 -27
  280. package/esm2022/lib/util/models/product-division.model.mjs +0 -29
  281. package/esm2022/lib/util/models/product-type.model.mjs +0 -22
  282. package/esm2022/lib/util/models/product.model.mjs +0 -62
  283. package/esm2022/lib/util/models/program.model.mjs +0 -28
  284. package/esm2022/lib/util/models/purchase-order/purchase-order.model.mjs +0 -53
  285. package/esm2022/lib/util/models/referential/WorkVersionArticleDto.mjs +0 -17
  286. package/esm2022/lib/util/models/referential/adress-type.model.mjs +0 -14
  287. package/esm2022/lib/util/models/referential/adress.model.mjs +0 -28
  288. package/esm2022/lib/util/models/referential/attached-file.model.mjs +0 -17
  289. package/esm2022/lib/util/models/referential/bank-account.model.mjs +0 -24
  290. package/esm2022/lib/util/models/referential/bank-accounts.model.mjs +0 -31
  291. package/esm2022/lib/util/models/referential/basic-hierarchy.model.mjs +0 -8
  292. package/esm2022/lib/util/models/referential/broadcast-list-item.model.mjs +0 -13
  293. package/esm2022/lib/util/models/referential/color.model.mjs +0 -16
  294. package/esm2022/lib/util/models/referential/company.model.mjs +0 -16
  295. package/esm2022/lib/util/models/referential/content-type.model.mjs +0 -17
  296. package/esm2022/lib/util/models/referential/content.model.mjs +0 -22
  297. package/esm2022/lib/util/models/referential/cost-center-criteria-values.model.mjs +0 -14
  298. package/esm2022/lib/util/models/referential/cost-center-criteria.model.mjs +0 -13
  299. package/esm2022/lib/util/models/referential/cost-center.model.mjs +0 -28
  300. package/esm2022/lib/util/models/referential/coutry.model.mjs +0 -16
  301. package/esm2022/lib/util/models/referential/currency.model.mjs +0 -20
  302. package/esm2022/lib/util/models/referential/editorial-content.model.mjs +0 -18
  303. package/esm2022/lib/util/models/referential/fixing.model.mjs +0 -16
  304. package/esm2022/lib/util/models/referential/flat-media.model.mjs +0 -18
  305. package/esm2022/lib/util/models/referential/format-image.model.mjs +0 -16
  306. package/esm2022/lib/util/models/referential/format-type.model.mjs +0 -16
  307. package/esm2022/lib/util/models/referential/format.model.mjs +0 -17
  308. package/esm2022/lib/util/models/referential/fsk-index.model.mjs +0 -20
  309. package/esm2022/lib/util/models/referential/fsk.model.mjs +0 -22
  310. package/esm2022/lib/util/models/referential/function.model.mjs +0 -23
  311. package/esm2022/lib/util/models/referential/genre.model.mjs +0 -17
  312. package/esm2022/lib/util/models/referential/invoice-product-type.model.mjs +0 -22
  313. package/esm2022/lib/util/models/referential/keywords.model.mjs +0 -13
  314. package/esm2022/lib/util/models/referential/language.model.mjs +0 -18
  315. package/esm2022/lib/util/models/referential/media-filter.model.mjs +0 -3
  316. package/esm2022/lib/util/models/referential/media.model.mjs +0 -20
  317. package/esm2022/lib/util/models/referential/module.model.mjs +0 -20
  318. package/esm2022/lib/util/models/referential/parameter.model.mjs +0 -2
  319. package/esm2022/lib/util/models/referential/participant.model.mjs +0 -20
  320. package/esm2022/lib/util/models/referential/person.model.mjs +0 -23
  321. package/esm2022/lib/util/models/referential/project-status.model.mjs +0 -16
  322. package/esm2022/lib/util/models/referential/quota.model.mjs +0 -17
  323. package/esm2022/lib/util/models/referential/referential-entity-state.model.mjs +0 -16
  324. package/esm2022/lib/util/models/referential/referential-value.model.mjs +0 -16
  325. package/esm2022/lib/util/models/referential/referentiel.model.mjs +0 -26
  326. package/esm2022/lib/util/models/referential/restriction.model.mjs +0 -20
  327. package/esm2022/lib/util/models/referential/sap-order.model.mjs +0 -20
  328. package/esm2022/lib/util/models/referential/service-error.model.mjs +0 -15
  329. package/esm2022/lib/util/models/referential/sound.model.mjs +0 -16
  330. package/esm2022/lib/util/models/referential/territories-languages.model.mjs +0 -16
  331. package/esm2022/lib/util/models/referential/territory-filter.model.mjs +0 -3
  332. package/esm2022/lib/util/models/referential/territory.model.mjs +0 -17
  333. package/esm2022/lib/util/models/referential/theme.model.mjs +0 -17
  334. package/esm2022/lib/util/models/referential/third-party-address-rapid-search.model.mjs +0 -3
  335. package/esm2022/lib/util/models/referential/third-party-creation-request.model.mjs +0 -44
  336. package/esm2022/lib/util/models/referential/third-party-module.model.mjs +0 -20
  337. package/esm2022/lib/util/models/referential/third-party-rapid-search.model.mjs +0 -3
  338. package/esm2022/lib/util/models/referential/third-party.model.mjs +0 -83
  339. package/esm2022/lib/util/models/referential/translated-value-model.mjs +0 -16
  340. package/esm2022/lib/util/models/referential/tva.model.mjs +0 -16
  341. package/esm2022/lib/util/models/referential/type-export.model.mjs +0 -16
  342. package/esm2022/lib/util/models/referential/type-tva-company-territory.model.mjs +0 -32
  343. package/esm2022/lib/util/models/referential/type-tva.model.mjs +0 -25
  344. package/esm2022/lib/util/models/referential/user-form.model.mjs +0 -2
  345. package/esm2022/lib/util/models/referential/work-addons-model.mjs +0 -16
  346. package/esm2022/lib/util/models/referential/work-appartenance.model.mjs +0 -17
  347. package/esm2022/lib/util/models/referential/work-genre.model.mjs +0 -16
  348. package/esm2022/lib/util/models/referential/work-language.model.mjs +0 -16
  349. package/esm2022/lib/util/models/referential/work-milo.model.mjs +0 -61
  350. package/esm2022/lib/util/models/referential/work-participant.model.mjs +0 -21
  351. package/esm2022/lib/util/models/referential/work-restrictions-model.mjs +0 -13
  352. package/esm2022/lib/util/models/referential/work-theme.model.mjs +0 -16
  353. package/esm2022/lib/util/models/referential/work-title.model.mjs +0 -20
  354. package/esm2022/lib/util/models/referential/work-version-origin.model.mjs +0 -16
  355. package/esm2022/lib/util/models/referential/work-version-rapid-search.model.mjs +0 -3
  356. package/esm2022/lib/util/models/referential/work-versions-used.model.mjs +0 -19
  357. package/esm2022/lib/util/models/referential/work-versions.model.mjs +0 -27
  358. package/esm2022/lib/util/models/referential/work-year-production.model.mjs +0 -13
  359. package/esm2022/lib/util/models/referential/work.model.mjs +0 -22
  360. package/esm2022/lib/util/models/referential/zone.model.mjs +0 -14
  361. package/esm2022/lib/util/models/referentiel.model.mjs +0 -26
  362. package/esm2022/lib/util/models/search-response.model.mjs +0 -10
  363. package/esm2022/lib/util/models/section.model.mjs +0 -8
  364. package/esm2022/lib/util/models/select/options.model.mjs +0 -8
  365. package/esm2022/lib/util/models/select/select.model.mjs +0 -7
  366. package/esm2022/lib/util/models/subsidiary.model.mjs +0 -8
  367. package/esm2022/lib/util/models/subtitle-content.model.mjs +0 -28
  368. package/esm2022/lib/util/models/user-video.model.mjs +0 -22
  369. package/esm2022/lib/util/models/user.model.mjs +0 -35
  370. package/esm2022/lib/util/models/video/product-rapid-search.model.mjs +0 -3
  371. package/esm2022/lib/util/models/video/support-rapid-search.model.mjs +0 -3
  372. package/esm2022/lib/util/models/video-content.model.mjs +0 -18
  373. package/esm2022/lib/util/number.validator.mjs +0 -129
  374. package/esm2022/lib/util/paginator/custom-paginator-configuration.mjs +0 -59
  375. package/esm2022/lib/util/permissions/permissions.service.mjs +0 -49
  376. package/esm2022/lib/util/pipes/capitalizefirst.pipe.mjs +0 -41
  377. package/esm2022/lib/util/pipes/comma-separated-number.pipe.mjs +0 -15
  378. package/esm2022/lib/util/pipes/common-translate.pipe.mjs +0 -38
  379. package/esm2022/lib/util/pipes/display-html.pipe.mjs +0 -20
  380. package/esm2022/lib/util/pipes/display-null.pipe.mjs +0 -24
  381. package/esm2022/lib/util/pipes/format-currency.pipe.mjs +0 -31
  382. package/esm2022/lib/util/pipes/format-duration.pipe.mjs +0 -23
  383. package/esm2022/lib/util/pipes/format-number-input.pipe.mjs +0 -22
  384. package/esm2022/lib/util/pipes/local-date.pipe.mjs +0 -27
  385. package/esm2022/lib/util/pipes/my-number.pipe.mjs +0 -44
  386. package/esm2022/lib/util/pipes/third-party-address-search.pipe.mjs +0 -15
  387. package/esm2022/lib/util/pipes/third-party-address.pipe.mjs +0 -16
  388. package/esm2022/lib/util/pipes/trim-string.pipe.mjs +0 -25
  389. package/esm2022/lib/util/regex/regex.service.mjs +0 -94
  390. package/esm2022/lib/util/services/api/commercial-api.service.mjs +0 -28
  391. package/esm2022/lib/util/services/api/common-api.service.mjs +0 -98
  392. package/esm2022/lib/util/services/api/legal-api.service.mjs +0 -32
  393. package/esm2022/lib/util/services/api/video-api.service.mjs +0 -45
  394. package/esm2022/lib/util/services/auth/auth.service.mjs +0 -18
  395. package/esm2022/lib/util/services/elasticsearch/elasticsearch.service.mjs +0 -166
  396. package/esm2022/lib/util/services/elasticsearch/subsidiaries.service.mjs +0 -48
  397. package/esm2022/lib/util/services/form-action/form-actions-events.service.mjs +0 -25
  398. package/esm2022/lib/util/services/guard/auth.guard.mjs +0 -32
  399. package/esm2022/lib/util/services/guard/login.guard.mjs +0 -23
  400. package/esm2022/lib/util/services/history/history.service.mjs +0 -39
  401. package/esm2022/lib/util/services/interceptor/auth.interceptor.mjs +0 -53
  402. package/esm2022/lib/util/services/jwt-security/aes.service.mjs +0 -34
  403. package/esm2022/lib/util/services/jwt-security/interceptorhttp.service.mjs +0 -18
  404. package/esm2022/lib/util/services/jwt-security/jwt.helpher.mjs +0 -34
  405. package/esm2022/lib/util/services/storage/local-storage.service.mjs +0 -36
  406. package/esm2022/lib/util/services/storage/session-storage.service.mjs +0 -38
  407. package/esm2022/lib/util/services/translate-language/lang.service.mjs +0 -31
  408. package/esm2022/lib/util/services/user/user-subsidiary.service.mjs +0 -22
  409. package/esm2022/lib/util/sort.mjs +0 -22
  410. package/esm2022/lib/util/theme/theme-event.service.mjs +0 -17
  411. package/esm2022/lib/util/toaster/toaster-events.service.mjs +0 -32
  412. package/esm2022/lib/util/util.module.mjs +0 -281
  413. package/esm2022/new-front-common-library.mjs +0 -5
  414. package/esm2022/public-api.mjs +0 -59
  415. package/fesm2022/new-front-common-library.mjs +0 -5695
  416. package/fesm2022/new-front-common-library.mjs.map +0 -1
  417. package/index.d.ts +0 -5
  418. package/lib/util/array.service.d.ts +0 -7
  419. package/lib/util/component/header/header.component.d.ts +0 -74
  420. package/lib/util/component/header/menu/menu.component.d.ts +0 -27
  421. package/lib/util/component/header/menu/menu.const.d.ts +0 -2
  422. package/lib/util/component/header/menu/menu.model.d.ts +0 -23
  423. package/lib/util/component/overlay/overlay.component.d.ts +0 -17
  424. package/lib/util/component/overlay/overlay.service.d.ts +0 -13
  425. package/lib/util/component/popup/popup-login/popup-login.component.d.ts +0 -35
  426. package/lib/util/component/sub-header/sub-header.component.d.ts +0 -13
  427. package/lib/util/config.d.ts +0 -8
  428. package/lib/util/date/PeriodModel.d.ts +0 -6
  429. package/lib/util/date/date-format-constants.d.ts +0 -25
  430. package/lib/util/date/date.util.d.ts +0 -16
  431. package/lib/util/decorators/theme.decorator.d.ts +0 -1
  432. package/lib/util/decorators/user.decorator.d.ts +0 -1
  433. package/lib/util/directives/my-number-formatter-directive.d.ts +0 -15
  434. package/lib/util/directives/show-if-truncated.directive.d.ts +0 -11
  435. package/lib/util/enums/family.enum.d.ts +0 -4
  436. package/lib/util/enums/rapid-search-item-type.enum.d.ts +0 -10
  437. package/lib/util/enums/status-color.enum.d.ts +0 -9
  438. package/lib/util/event/header/header-events.service.d.ts +0 -11
  439. package/lib/util/event/storage/local-storage-events.service.d.ts +0 -9
  440. package/lib/util/event/storage/session-storage-events.service.d.ts +0 -10
  441. package/lib/util/http/http-params.builder.d.ts +0 -9
  442. package/lib/util/i18n/de.d.ts +0 -141
  443. package/lib/util/i18n/en.d.ts +0 -141
  444. package/lib/util/i18n/fr.d.ts +0 -141
  445. package/lib/util/i18n/multi-translate-http-loader.d.ts +0 -14
  446. package/lib/util/models/any-line.model.d.ts +0 -24
  447. package/lib/util/models/audio-content.model.d.ts +0 -27
  448. package/lib/util/models/authPermission.model.d.ts +0 -7
  449. package/lib/util/models/authUser.model.d.ts +0 -16
  450. package/lib/util/models/basic.model.d.ts +0 -11
  451. package/lib/util/models/box-set-item.model.d.ts +0 -12
  452. package/lib/util/models/commercial/deal-rapid-search-model.d.ts +0 -10
  453. package/lib/util/models/commercial/invoice-rapid-search-model.d.ts +0 -18
  454. package/lib/util/models/commercial/work-record-rapid-search-model.d.ts +0 -21
  455. package/lib/util/models/disc-program.model.d.ts +0 -9
  456. package/lib/util/models/disc.model.d.ts +0 -15
  457. package/lib/util/models/eventType.model.d.ts +0 -5
  458. package/lib/util/models/expenditure-commitment/purchase-order-file.model.d.ts +0 -8
  459. package/lib/util/models/expenditure-commitment/purchase-order-rapid-search.model.d.ts +0 -10
  460. package/lib/util/models/family.model.d.ts +0 -5
  461. package/lib/util/models/lang-line.model.d.ts +0 -18
  462. package/lib/util/models/legal/contract-rapid-search-model.d.ts +0 -10
  463. package/lib/util/models/legal/contract-work.model.d.ts +0 -27
  464. package/lib/util/models/legal/contract-work2.model.d.ts +0 -23
  465. package/lib/util/models/legal/type-status-rapid-search.model.d.ts +0 -5
  466. package/lib/util/models/media-line.model.d.ts +0 -9
  467. package/lib/util/models/menu-language.model.d.ts +0 -6
  468. package/lib/util/models/permission.model.d.ts +0 -12
  469. package/lib/util/models/product-box-set.model.d.ts +0 -8
  470. package/lib/util/models/product-disc-detail.model.d.ts +0 -14
  471. package/lib/util/models/product-disc.model.d.ts +0 -11
  472. package/lib/util/models/product-division.model.d.ts +0 -15
  473. package/lib/util/models/product-type.model.d.ts +0 -7
  474. package/lib/util/models/product.model.d.ts +0 -52
  475. package/lib/util/models/program.model.d.ts +0 -21
  476. package/lib/util/models/purchase-order/purchase-order.model.d.ts +0 -40
  477. package/lib/util/models/referential/WorkVersionArticleDto.d.ts +0 -10
  478. package/lib/util/models/referential/adress-type.model.d.ts +0 -5
  479. package/lib/util/models/referential/adress.model.d.ts +0 -20
  480. package/lib/util/models/referential/attached-file.model.d.ts +0 -11
  481. package/lib/util/models/referential/bank-account.model.d.ts +0 -15
  482. package/lib/util/models/referential/bank-accounts.model.d.ts +0 -17
  483. package/lib/util/models/referential/basic-hierarchy.model.d.ts +0 -6
  484. package/lib/util/models/referential/broadcast-list-item.model.d.ts +0 -8
  485. package/lib/util/models/referential/color.model.d.ts +0 -6
  486. package/lib/util/models/referential/company.model.d.ts +0 -7
  487. package/lib/util/models/referential/content-type.model.d.ts +0 -12
  488. package/lib/util/models/referential/content.model.d.ts +0 -7
  489. package/lib/util/models/referential/cost-center-criteria-values.model.d.ts +0 -7
  490. package/lib/util/models/referential/cost-center-criteria.model.d.ts +0 -12
  491. package/lib/util/models/referential/cost-center.model.d.ts +0 -18
  492. package/lib/util/models/referential/coutry.model.d.ts +0 -7
  493. package/lib/util/models/referential/currency.model.d.ts +0 -11
  494. package/lib/util/models/referential/editorial-content.model.d.ts +0 -25
  495. package/lib/util/models/referential/fixing.model.d.ts +0 -10
  496. package/lib/util/models/referential/flat-media.model.d.ts +0 -9
  497. package/lib/util/models/referential/format-image.model.d.ts +0 -7
  498. package/lib/util/models/referential/format-type.model.d.ts +0 -6
  499. package/lib/util/models/referential/format.model.d.ts +0 -7
  500. package/lib/util/models/referential/fsk-index.model.d.ts +0 -22
  501. package/lib/util/models/referential/fsk.model.d.ts +0 -37
  502. package/lib/util/models/referential/function.model.d.ts +0 -8
  503. package/lib/util/models/referential/genre.model.d.ts +0 -7
  504. package/lib/util/models/referential/invoice-product-type.model.d.ts +0 -7
  505. package/lib/util/models/referential/keywords.model.d.ts +0 -6
  506. package/lib/util/models/referential/language.model.d.ts +0 -11
  507. package/lib/util/models/referential/media-filter.model.d.ts +0 -10
  508. package/lib/util/models/referential/media.model.d.ts +0 -11
  509. package/lib/util/models/referential/module.model.d.ts +0 -11
  510. package/lib/util/models/referential/participant.model.d.ts +0 -11
  511. package/lib/util/models/referential/person.model.d.ts +0 -13
  512. package/lib/util/models/referential/project-status.model.d.ts +0 -6
  513. package/lib/util/models/referential/quota.model.d.ts +0 -7
  514. package/lib/util/models/referential/referential-entity-state.model.d.ts +0 -11
  515. package/lib/util/models/referential/referential-value.model.d.ts +0 -11
  516. package/lib/util/models/referential/referentiel.model.d.ts +0 -12
  517. package/lib/util/models/referential/restriction.model.d.ts +0 -9
  518. package/lib/util/models/referential/sap-order.model.d.ts +0 -27
  519. package/lib/util/models/referential/service-error.model.d.ts +0 -13
  520. package/lib/util/models/referential/sound.model.d.ts +0 -6
  521. package/lib/util/models/referential/territories-languages.model.d.ts +0 -8
  522. package/lib/util/models/referential/territory-filter.model.d.ts +0 -6
  523. package/lib/util/models/referential/territory.model.d.ts +0 -12
  524. package/lib/util/models/referential/theme.model.d.ts +0 -7
  525. package/lib/util/models/referential/third-party-address-rapid-search.model.d.ts +0 -8
  526. package/lib/util/models/referential/third-party-creation-request.model.d.ts +0 -48
  527. package/lib/util/models/referential/third-party-module.model.d.ts +0 -11
  528. package/lib/util/models/referential/third-party-rapid-search.model.d.ts +0 -8
  529. package/lib/util/models/referential/third-party.model.d.ts +0 -45
  530. package/lib/util/models/referential/translated-value-model.d.ts +0 -10
  531. package/lib/util/models/referential/tva.model.d.ts +0 -7
  532. package/lib/util/models/referential/type-export.model.d.ts +0 -7
  533. package/lib/util/models/referential/type-tva-company-territory.model.d.ts +0 -18
  534. package/lib/util/models/referential/type-tva.model.d.ts +0 -10
  535. package/lib/util/models/referential/work-addons-model.d.ts +0 -25
  536. package/lib/util/models/referential/work-appartenance.model.d.ts +0 -7
  537. package/lib/util/models/referential/work-genre.model.d.ts +0 -11
  538. package/lib/util/models/referential/work-language.model.d.ts +0 -11
  539. package/lib/util/models/referential/work-milo.model.d.ts +0 -46
  540. package/lib/util/models/referential/work-participant.model.d.ts +0 -10
  541. package/lib/util/models/referential/work-restrictions-model.d.ts +0 -18
  542. package/lib/util/models/referential/work-theme.model.d.ts +0 -11
  543. package/lib/util/models/referential/work-title.model.d.ts +0 -10
  544. package/lib/util/models/referential/work-version-origin.model.d.ts +0 -10
  545. package/lib/util/models/referential/work-version-rapid-search.model.d.ts +0 -9
  546. package/lib/util/models/referential/work-versions-used.model.d.ts +0 -12
  547. package/lib/util/models/referential/work-versions.model.d.ts +0 -29
  548. package/lib/util/models/referential/work-year-production.model.d.ts +0 -6
  549. package/lib/util/models/referential/work.model.d.ts +0 -74
  550. package/lib/util/models/referential/zone.model.d.ts +0 -6
  551. package/lib/util/models/referentiel.model.d.ts +0 -12
  552. package/lib/util/models/search-response.model.d.ts +0 -7
  553. package/lib/util/models/section.model.d.ts +0 -7
  554. package/lib/util/models/select/options.model.d.ts +0 -6
  555. package/lib/util/models/select/select.model.d.ts +0 -5
  556. package/lib/util/models/subsidiary.model.d.ts +0 -7
  557. package/lib/util/models/subtitle-content.model.d.ts +0 -26
  558. package/lib/util/models/user-video.model.d.ts +0 -10
  559. package/lib/util/models/user.model.d.ts +0 -27
  560. package/lib/util/models/video/product-rapid-search.model.d.ts +0 -8
  561. package/lib/util/models/video/support-rapid-search.model.d.ts +0 -6
  562. package/lib/util/models/video-content.model.d.ts +0 -24
  563. package/lib/util/number.validator.d.ts +0 -14
  564. package/lib/util/paginator/custom-paginator-configuration.d.ts +0 -16
  565. package/lib/util/permissions/permissions.service.d.ts +0 -15
  566. package/lib/util/pipes/capitalizefirst.pipe.d.ts +0 -8
  567. package/lib/util/pipes/comma-separated-number.pipe.d.ts +0 -7
  568. package/lib/util/pipes/common-translate.pipe.d.ts +0 -12
  569. package/lib/util/pipes/display-html.pipe.d.ts +0 -10
  570. package/lib/util/pipes/display-null.pipe.d.ts +0 -8
  571. package/lib/util/pipes/format-currency.pipe.d.ts +0 -10
  572. package/lib/util/pipes/format-duration.pipe.d.ts +0 -7
  573. package/lib/util/pipes/format-number-input.pipe.d.ts +0 -7
  574. package/lib/util/pipes/local-date.pipe.d.ts +0 -9
  575. package/lib/util/pipes/my-number.pipe.d.ts +0 -11
  576. package/lib/util/pipes/third-party-address-search.pipe.d.ts +0 -8
  577. package/lib/util/pipes/third-party-address.pipe.d.ts +0 -8
  578. package/lib/util/pipes/trim-string.pipe.d.ts +0 -7
  579. package/lib/util/regex/regex.service.d.ts +0 -12
  580. package/lib/util/services/api/commercial-api.service.d.ts +0 -12
  581. package/lib/util/services/api/common-api.service.d.ts +0 -27
  582. package/lib/util/services/api/legal-api.service.d.ts +0 -15
  583. package/lib/util/services/api/video-api.service.d.ts +0 -17
  584. package/lib/util/services/auth/auth.service.d.ts +0 -9
  585. package/lib/util/services/elasticsearch/elasticsearch.service.d.ts +0 -35
  586. package/lib/util/services/elasticsearch/subsidiaries.service.d.ts +0 -12
  587. package/lib/util/services/form-action/form-actions-events.service.d.ts +0 -14
  588. package/lib/util/services/guard/auth.guard.d.ts +0 -2
  589. package/lib/util/services/guard/login.guard.d.ts +0 -1
  590. package/lib/util/services/history/history.service.d.ts +0 -10
  591. package/lib/util/services/interceptor/auth.interceptor.d.ts +0 -16
  592. package/lib/util/services/jwt-security/aes.service.d.ts +0 -12
  593. package/lib/util/services/jwt-security/interceptorhttp.service.d.ts +0 -8
  594. package/lib/util/services/jwt-security/jwt.helpher.d.ts +0 -4
  595. package/lib/util/services/storage/local-storage.service.d.ts +0 -13
  596. package/lib/util/services/storage/session-storage.service.d.ts +0 -13
  597. package/lib/util/services/translate-language/lang.service.d.ts +0 -14
  598. package/lib/util/services/user/user-subsidiary.service.d.ts +0 -9
  599. package/lib/util/sort.d.ts +0 -4
  600. package/lib/util/theme/theme-event.service.d.ts +0 -9
  601. package/lib/util/toaster/toaster-events.service.d.ts +0 -15
  602. package/lib/util/util.module.d.ts +0 -49
  603. /package/{lib/util/interfaces/permissions.interface.d.ts → src/lib/util/interfaces/permissions.interface.ts} +0 -0
@@ -1,11 +0,0 @@
1
- /**
2
- * Created by hbentaher on 23/08/2017.
3
- */
4
- export declare class ReferentialValueModel {
5
- category: string;
6
- label: string;
7
- order: number;
8
- id: number;
9
- constructor();
10
- fromJSON(json: any): this;
11
- }
@@ -1,12 +0,0 @@
1
- export declare class ReferentielModel {
2
- id: number;
3
- active: boolean;
4
- category: string;
5
- label: string;
6
- order: number;
7
- codeRef: string;
8
- orderCode: any;
9
- constructor();
10
- fromJSON(json: any): this;
11
- fromJSONs(jsons: any): ReferentielModel[];
12
- }
@@ -1,9 +0,0 @@
1
- export declare class RestrictionModel {
2
- id: number;
3
- label: string;
4
- code: string;
5
- order: number;
6
- constructor();
7
- fromJSON(json: any): this;
8
- fromJSONs(jsons: any): RestrictionModel[];
9
- }
@@ -1,27 +0,0 @@
1
- import { ParameterModel } from './parameter.model';
2
- export declare class SapOrderModel {
3
- id: number;
4
- orderCode: string;
5
- designation: string;
6
- company: string;
7
- codeCompany: string;
8
- managmentCompany: string;
9
- category: string;
10
- subCategory: string;
11
- systemStatus: string;
12
- buLabel: string;
13
- validationDate: any;
14
- closingDate: any;
15
- technicalClosingDate: any;
16
- process: string;
17
- displayRow: string;
18
- codeManagmentCompany: string;
19
- params: ParameterModel[];
20
- workTitleVo: string;
21
- workStatusProject: string;
22
- miloCode: string;
23
- costCenterCategory: string;
24
- constructor();
25
- fromJSON(json: any): this;
26
- fromJSONs(jsons: any): SapOrderModel[];
27
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * Created by vsliwka on 02/03/2017.
3
- */
4
- export declare class ServiceErrorModel {
5
- LEVEL_WARN: string;
6
- LEVEL_ERROR: string;
7
- errorMessageKey: string;
8
- status: number;
9
- severity: string;
10
- parameters: string[];
11
- statusText: string;
12
- constructor();
13
- }
@@ -1,6 +0,0 @@
1
- export declare class SoundModel {
2
- id: number;
3
- label: string;
4
- constructor(id?: number, label?: string);
5
- fromJSON(json: any): this;
6
- }
@@ -1,8 +0,0 @@
1
- import { BasicModel } from '../basic.model';
2
- export declare class TerritoriesLanguagesModel {
3
- id: number;
4
- country: string;
5
- languages: BasicModel[];
6
- constructor(id?: number, country?: string, languages?: BasicModel[]);
7
- fromJSON(json: any): this;
8
- }
@@ -1,6 +0,0 @@
1
- export declare class TerritoryFilterModel {
2
- id: number;
3
- label: string;
4
- codeISO: string;
5
- listIdParent: number[];
6
- }
@@ -1,12 +0,0 @@
1
- import { LanguageModel } from './language.model';
2
- export declare class TerritoryModel {
3
- id: number;
4
- label: string;
5
- codeISO: string;
6
- isGroup: boolean;
7
- groupTerritoryList: TerritoryModel[];
8
- languages: LanguageModel[];
9
- flagCode: string;
10
- constructor();
11
- fromJSON(json: any): this;
12
- }
@@ -1,7 +0,0 @@
1
- export declare class ThemeModel {
2
- id: number;
3
- order: string;
4
- label: string;
5
- constructor(id?: number, order?: string, label?: string);
6
- fromJSON(json: any): this;
7
- }
@@ -1,8 +0,0 @@
1
- export declare class ThirdPartyAddressRapidSearchModel {
2
- street: string;
3
- zipCode: string;
4
- city: string;
5
- countryEn: string;
6
- countryDe: string;
7
- countryFr: string;
8
- }
@@ -1,48 +0,0 @@
1
- import { TerritoryModel } from './territory.model';
2
- import { MediaModel } from './media.model';
3
- import { CurrencyModel } from './currency.model';
4
- export declare class ThirdPartyCreationRequestModel {
5
- id: number;
6
- requestType: string;
7
- supplierType: string;
8
- dateCreation: any;
9
- userCreation: string;
10
- service: string;
11
- tel: string;
12
- label: string;
13
- address: string;
14
- zipCode: string;
15
- country: TerritoryModel;
16
- city: string;
17
- intraCommunautaireTvaNumber: string;
18
- siret: string;
19
- socialSecurity: string;
20
- agessaAgrement: string;
21
- existMilo: boolean;
22
- blocageReason: string;
23
- miloIdentification: string;
24
- miloBlockedCompta: boolean;
25
- miloBlockedMM: boolean;
26
- email: string;
27
- thirdPartyType: string;
28
- honoraire: boolean;
29
- currency: CurrencyModel;
30
- amount: string;
31
- commandeVerso: boolean;
32
- commandeRambo: boolean;
33
- commandeBBP: boolean;
34
- contratRambo: boolean;
35
- clientType: string;
36
- clientCountry: TerritoryModel;
37
- mediaCountry: MediaModel;
38
- clientHermes: boolean;
39
- clientContratRambo: boolean;
40
- clientContratRamboUTD: boolean;
41
- clientVenteSD: boolean;
42
- clientAutres: boolean;
43
- category: string;
44
- personCompanyType: string;
45
- statusCreationRequest: boolean;
46
- constructor();
47
- fromJSON(json: any): this;
48
- }
@@ -1,11 +0,0 @@
1
- export declare class ThirdPartyModuleModel {
2
- id: number;
3
- thirdPartyId: number;
4
- thirdPartyCodeSap: string;
5
- moduleId: number;
6
- module: string;
7
- checked: boolean;
8
- action: string;
9
- constructor(id?: number, thirdPartyId?: number, thirdPartyCodeSap?: string, moduleId?: number, module?: string, checked?: boolean, action?: string);
10
- fromJSON(json: any): this;
11
- }
@@ -1,8 +0,0 @@
1
- import { ThirdPartyAddressRapidSearchModel } from "./third-party-address-rapid-search.model";
2
- export declare class ThirdPartyRapidSearchModel {
3
- id: number;
4
- companyOrPersonName: string;
5
- code: string;
6
- docType: string;
7
- address: ThirdPartyAddressRapidSearchModel;
8
- }
@@ -1,45 +0,0 @@
1
- import { AdressModel } from './adress.model';
2
- import { BankAccountModel } from './bank-account.model';
3
- import { MediaModel } from './media.model';
4
- import { LanguageModel } from './language.model';
5
- import { TerritoryModel } from './territory.model';
6
- import { ThirdPartyModuleModel } from './third-party-module.model';
7
- import { BroadcastListItem } from './broadcast-list-item.model';
8
- export declare class ThirdPartyModel {
9
- id: number;
10
- companyOrPersonName: string;
11
- code: string;
12
- corelId: number;
13
- idMaster: string;
14
- clientOrProviderCategory: string;
15
- thirdPartyType: string;
16
- thirdPartyCPType: string;
17
- poThirdPartyCPType: string;
18
- tel: string;
19
- fax: string;
20
- buyingBlocked: boolean;
21
- sellingBlocked: boolean;
22
- firstName: string;
23
- address: AdressModel;
24
- addresses: AdressModel[];
25
- thirdPartyModules: ThirdPartyModuleModel[];
26
- blocked: boolean;
27
- bankAccount: BankAccountModel;
28
- companyName1: string;
29
- companyName2: string;
30
- siret: string;
31
- siren: string;
32
- codeSap: string;
33
- name: string;
34
- managingTerritory: TerritoryModel;
35
- managingMedia: MediaModel;
36
- managingLanguage: LanguageModel;
37
- versionTimeStamp: string;
38
- addressesToDelete: AdressModel[];
39
- tpModulesToDelete: ThirdPartyModuleModel[];
40
- broadcast?: BroadcastListItem[];
41
- constructor();
42
- fromJSON(json: any): this;
43
- static getCustomField(thirdPartyModel: ThirdPartyModel): string;
44
- static getAddress(thirdPartyModel: ThirdPartyModel): string;
45
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * Created by vsliwka on 10/05/2017.
3
- */
4
- export declare class TranslatedValueModel {
5
- id: number;
6
- label: string;
7
- order: number;
8
- constructor();
9
- fromJSON(json: any): this;
10
- }
@@ -1,7 +0,0 @@
1
- export declare class TvaModel {
2
- id: number;
3
- code: string;
4
- label: string;
5
- constructor(id?: number, code?: string, label?: string);
6
- fromJSON(json: any): this;
7
- }
@@ -1,7 +0,0 @@
1
- export declare class TypeExportModel {
2
- id: number;
3
- codeTypeExport: string;
4
- nameTypeExport: string;
5
- constructor();
6
- fromJSON(json: any): this;
7
- }
@@ -1,18 +0,0 @@
1
- import { InvoiceProductTypeModel } from './invoice-product-type.model';
2
- import { TypeTvaModel } from './type-tva.model';
3
- import { TerritoryModel } from './territory.model';
4
- import { ZoneModel } from './zone.model';
5
- export declare class TypeTvaCompanyTerritoryModel {
6
- id: number;
7
- label: string;
8
- codeLlabel: string;
9
- typeTva: TypeTvaModel;
10
- companyCode: string;
11
- invoiceProductType: InvoiceProductTypeModel;
12
- activated: boolean;
13
- territory: TerritoryModel;
14
- zone: ZoneModel;
15
- constructor();
16
- fromJSON(json: any): this;
17
- fromJSONs(jsons: any): TypeTvaCompanyTerritoryModel[];
18
- }
@@ -1,10 +0,0 @@
1
- export declare class TypeTvaModel {
2
- id: number;
3
- codeTva: string;
4
- rate: number;
5
- label: string;
6
- codeLabel: string;
7
- constructor();
8
- fromJSON(json: any): this;
9
- fromJSONs(jsons: any): TypeTvaModel[];
10
- }
@@ -1,25 +0,0 @@
1
- import { TranslatedValueModel } from './translated-value-model';
2
- import { LanguageModel } from './language.model';
3
- /**
4
- * Created by vsliwka on 10/05/2017.
5
- */
6
- export declare class WorkAddonsModel {
7
- id: number;
8
- workId: number;
9
- addonType: TranslatedValueModel;
10
- countryIsoCode: string;
11
- addonContent: string;
12
- titleCmpl: string;
13
- authorCmpl: string;
14
- originCmpl: string;
15
- dateCmpl: string;
16
- synopsisType: TranslatedValueModel;
17
- sourceType: TranslatedValueModel;
18
- sourceLink: string;
19
- sourceNote: string;
20
- episodeNumber: number;
21
- isOnline: boolean;
22
- language: LanguageModel;
23
- constructor();
24
- fromJSON(json: any): this;
25
- }
@@ -1,7 +0,0 @@
1
- export declare class WorkAppartenanceModel {
2
- id: number;
3
- label: string;
4
- displayOrder: number;
5
- constructor(id?: number, label?: string, displayOrder?: number);
6
- fromJSON(json: any): this;
7
- }
@@ -1,11 +0,0 @@
1
- /**
2
- * Created by vsliwka on 20/04/2017.
3
- */
4
- export declare class WorkGenreModel {
5
- id: number;
6
- workId: number;
7
- label: string;
8
- order: number;
9
- constructor();
10
- fromJSON(json: any): this;
11
- }
@@ -1,11 +0,0 @@
1
- /**
2
- * Created by vsliwka on 20/04/2017.
3
- */
4
- export declare class WorkLanguageModel {
5
- id: number;
6
- workId: number;
7
- label: string;
8
- principalLanguage: number;
9
- constructor();
10
- fromJSON(json: any): this;
11
- }
@@ -1,46 +0,0 @@
1
- export declare class WorkMiloModel {
2
- id: number;
3
- idWorkMilo: number;
4
- miloCode: string;
5
- title: string;
6
- titleFr: string;
7
- completeTitle: string;
8
- mainTitle: string;
9
- genre: string;
10
- yearOfProduction: string;
11
- isoCode: string;
12
- idVersionMilo: number;
13
- checked: boolean;
14
- langueOri: string;
15
- codeOrdre: string;
16
- designation: string;
17
- processus: string;
18
- societe: string;
19
- societeGestion: string;
20
- sousCategorie: string;
21
- statutProjet: string;
22
- orderCode: string;
23
- referenceCurrencyCode: any;
24
- company: string;
25
- managmentCompany: string;
26
- category: string;
27
- subCategory: string;
28
- buLabel: string;
29
- process: string;
30
- valdiationDate: Date;
31
- closingDate: Date;
32
- technicalClosingDate: Date;
33
- systemStatus: string;
34
- quota: string;
35
- genres: string;
36
- languages: string;
37
- versions: any;
38
- idDivision: number;
39
- codeSap: string;
40
- percentage: number;
41
- index: number;
42
- uuid: string;
43
- constructor();
44
- fromJSON(json: any): this;
45
- fromJSONs(jsons: any): WorkMiloModel[];
46
- }
@@ -1,10 +0,0 @@
1
- import { ParticipantModel } from './participant.model';
2
- export declare class WorkParticipantModel {
3
- id: number;
4
- workId: number;
5
- participant: ParticipantModel;
6
- orderInFunction: number;
7
- constructor();
8
- fromJSON(json: any): this;
9
- fromJSONs(jsons: any): ParticipantModel[];
10
- }
@@ -1,18 +0,0 @@
1
- /**
2
- * Created by vsliwka on 30/05/2017.
3
- */
4
- import { TerritoryModel } from './territory.model';
5
- import { RestrictionModel } from './restriction.model';
6
- export declare class WorkRestrictionModel {
7
- id: number;
8
- workId: number;
9
- restriction: RestrictionModel;
10
- country: TerritoryModel;
11
- countryIsoCode: string;
12
- label: string;
13
- code: string;
14
- order: number;
15
- type: string;
16
- constructor();
17
- fromJSON(json: any): this;
18
- }
@@ -1,11 +0,0 @@
1
- /**
2
- * Created by vsliwka on 20/04/2017.
3
- */
4
- export declare class WorkThemeModel {
5
- id: number;
6
- workId: number;
7
- label: string;
8
- principalTheme: number;
9
- constructor();
10
- fromJSON(json: any): this;
11
- }
@@ -1,10 +0,0 @@
1
- export declare class WorkTitleModel {
2
- miloCode: string;
3
- completeTitle: string;
4
- titleVO: string;
5
- title: string;
6
- yearOfProduction: string;
7
- constructor();
8
- fromJSON(json: any): this;
9
- fromJSONs(jsons: any): WorkTitleModel[];
10
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * Created by vsliwka on 21/04/2017.
3
- */
4
- export declare class WorkVersionOriginModel {
5
- id: number;
6
- label: string;
7
- value: number;
8
- constructor();
9
- fromJSON(json: any): this;
10
- }
@@ -1,9 +0,0 @@
1
- export declare class WorkVersionRapidSearchModel {
2
- id: number;
3
- miloCode: string;
4
- workId: number;
5
- title: string;
6
- codeIso: string;
7
- yearOfProduction: number;
8
- docType: string;
9
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * Created by vsliwka on 21/04/2017.
3
- */
4
- /**
5
- * Created by vsliwka on 20/04/2017.
6
- */
7
- export declare class WorkVersionUsedModel {
8
- id: number;
9
- label: string;
10
- constructor();
11
- fromJSON(json: any): this;
12
- }
@@ -1,29 +0,0 @@
1
- import { WorkVersionArticleModel } from './WorkVersionArticleDto';
2
- import { TerritoryModel } from './territory.model';
3
- import { LanguageModel } from './language.model';
4
- import { WorkVersionUsedModel } from './work-versions-used.model';
5
- import { WorkVersionOriginModel } from './work-version-origin.model';
6
- import { ReferentialEntityStateModel } from './referential-entity-state.model';
7
- /**
8
- * Created by vsliwka on 20/04/2017.
9
- */
10
- export declare class WorkVersionModel {
11
- id: number;
12
- workId: number;
13
- title: string;
14
- principal: boolean;
15
- order: number;
16
- origin: WorkVersionOriginModel;
17
- article: WorkVersionArticleModel;
18
- articleId: number;
19
- country: TerritoryModel;
20
- used: WorkVersionUsedModel;
21
- languageVersion: LanguageModel;
22
- restrictionTv: string;
23
- restrictionCine: string;
24
- entityState: ReferentialEntityStateModel;
25
- countryLabel: string;
26
- isEpisode: boolean;
27
- constructor();
28
- fromJSON(json: any): this;
29
- }
@@ -1,6 +0,0 @@
1
- export declare class WorkYearProductionModel {
2
- id: number;
3
- label: string;
4
- constructor();
5
- fromJSON(json: any): this;
6
- }
@@ -1,74 +0,0 @@
1
- import { ParticipantModel } from './participant.model';
2
- import { SapOrderModel } from './sap-order.model';
3
- import { WorkVersionModel } from './work-versions.model';
4
- import { WorkAddonsModel } from './work-addons-model';
5
- import { WorkRestrictionModel } from './work-restrictions-model';
6
- import { WorkThemeModel } from './work-theme.model';
7
- import { WorkGenreModel } from './work-genre.model';
8
- import { WorkLanguageModel } from './work-language.model';
9
- import { ColorModel } from './color.model';
10
- import { QuotaModel } from './quota.model';
11
- import { SoundModel } from './sound.model';
12
- import { FormatModel } from './format.model';
13
- import { WorkAppartenanceModel } from './work-appartenance.model';
14
- import { FormatImageModel } from './format-image.model';
15
- import { ProjectStatusModel } from './project-status.model';
16
- import { FormatTypeModel } from './format-type.model';
17
- import { WorkYearProductionModel } from './work-year-production.model';
18
- import { EditorialContentModel } from './editorial-content.model';
19
- import { KeywordsModel } from './keywords.model';
20
- import { WorkParticipantModel } from './work-participant.model';
21
- /**
22
- * Created by vsliwka on 05/04/2017.
23
- */
24
- export declare class WorkModel {
25
- id: number;
26
- titleVO: string;
27
- territory: string;
28
- duration: any;
29
- expired: boolean;
30
- episodeNumber: number;
31
- clientLanguageTitle: string;
32
- title: string;
33
- completeTitle: string;
34
- miloCode: string;
35
- isoCode: string;
36
- eidrCode: string;
37
- idIMDB: string;
38
- workType: string;
39
- yearOfProduction: WorkYearProductionModel;
40
- director: string;
41
- participants: ParticipantModel[];
42
- workParticipants: WorkParticipantModel[];
43
- sapOrders: SapOrderModel[];
44
- versions: WorkVersionModel[];
45
- addons: WorkAddonsModel[];
46
- tvRestrictions: WorkRestrictionModel[];
47
- movieRestrictions: WorkRestrictionModel[];
48
- themes: WorkThemeModel[];
49
- genres: WorkGenreModel[];
50
- languages: WorkLanguageModel[];
51
- arthouse: string;
52
- color: ColorModel;
53
- quota: QuotaModel;
54
- sound: SoundModel;
55
- format: FormatModel;
56
- workAppartenance: WorkAppartenanceModel;
57
- formatImage: FormatImageModel;
58
- projectStatus: ProjectStatusModel;
59
- formatType: FormatTypeModel;
60
- genresSelected: any[];
61
- themesSelected: any[];
62
- languageSelected: any[];
63
- sapOrderId: number;
64
- customOrderLabel: string;
65
- percentage: number;
66
- keyInSession: string;
67
- editorialContents: EditorialContentModel[];
68
- workKeywords: KeywordsModel[];
69
- exportableSap: boolean;
70
- header: boolean;
71
- seriesWorkId?: number;
72
- constructor();
73
- fromJSON(json: any): this;
74
- }
@@ -1,6 +0,0 @@
1
- export declare class ZoneModel {
2
- id: number;
3
- label: string;
4
- constructor();
5
- fromJSON(json: any): this;
6
- }
@@ -1,12 +0,0 @@
1
- export declare class ReferentielModel {
2
- id: number;
3
- active: boolean;
4
- category: string;
5
- label: string;
6
- order: number;
7
- codeRef: string;
8
- orderCode: any;
9
- constructor();
10
- fromJSON(json: any): this;
11
- fromJSONs(jsons: any): ReferentielModel[];
12
- }
@@ -1,7 +0,0 @@
1
- export declare class SearchResponseModel {
2
- content: any[];
3
- totalNumberOfPages: number;
4
- totalNumberOfContracts: number;
5
- allSearchResultIds: number[];
6
- totalResponseLenght: number;
7
- }
@@ -1,7 +0,0 @@
1
- import { PermissionModel } from './permission.model';
2
- export declare class SectionModel {
3
- id: number;
4
- sectionName: string;
5
- permissions: PermissionModel[];
6
- constructor();
7
- }