@sumaris-net/ngx-components 18.12.13 → 18.14.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 (1405) hide show
  1. package/.editorconfig +24 -0
  2. package/.eslintrc.json +95 -0
  3. package/.gitattribute +1 -0
  4. package/.github/CONTRIBUTING.md +10 -0
  5. package/.github/ISSUE_TEMPLATE.md +6 -0
  6. package/.github/PULL_REQUEST_TEMPLATE.md +10 -0
  7. package/.github/github_disclaimer.md +14 -0
  8. package/.gitlab-ci.yml +46 -0
  9. package/.graphqlconfig +15 -0
  10. package/.prettierignore +9 -0
  11. package/.prettierrc.json +17 -0
  12. package/angular.json +239 -0
  13. package/capacitor.config.ts +49 -0
  14. package/doc/changelog.md +11 -0
  15. package/doc/feed/feed-en.json +26 -0
  16. package/doc/feed/feed-fr.json +26 -0
  17. package/graphql.config.yml +13 -0
  18. package/ionic.config.json +7 -0
  19. package/karma.conf.js +38 -0
  20. package/ng-package.json +21 -0
  21. package/package.json +133 -19
  22. package/public_api.ts +436 -0
  23. package/resources/README.md +7 -0
  24. package/resources/icon/TODO.md +11 -0
  25. package/resources/icon.png +0 -0
  26. package/resources/icon.png.md5 +1 -0
  27. package/resources/icon.xcf +0 -0
  28. package/resources/ios/icon/icon-1024.png +0 -0
  29. package/resources/ios/icon/icon-108@2x.png +0 -0
  30. package/resources/ios/icon/icon-20.png +0 -0
  31. package/resources/ios/icon/icon-20@2x.png +0 -0
  32. package/resources/ios/icon/icon-20@3x.png +0 -0
  33. package/resources/ios/icon/icon-24@2x.png +0 -0
  34. package/resources/ios/icon/icon-27.5@2x.png +0 -0
  35. package/resources/ios/icon/icon-29.png +0 -0
  36. package/resources/ios/icon/icon-29@2x.png +0 -0
  37. package/resources/ios/icon/icon-29@3x.png +0 -0
  38. package/resources/ios/icon/icon-40.png +0 -0
  39. package/resources/ios/icon/icon-40@2x.png +0 -0
  40. package/resources/ios/icon/icon-40@3x.png +0 -0
  41. package/resources/ios/icon/icon-44@2x.png +0 -0
  42. package/resources/ios/icon/icon-50.png +0 -0
  43. package/resources/ios/icon/icon-50@2x.png +0 -0
  44. package/resources/ios/icon/icon-60.png +0 -0
  45. package/resources/ios/icon/icon-60@2x.png +0 -0
  46. package/resources/ios/icon/icon-60@3x.png +0 -0
  47. package/resources/ios/icon/icon-72.png +0 -0
  48. package/resources/ios/icon/icon-72@2x.png +0 -0
  49. package/resources/ios/icon/icon-76.png +0 -0
  50. package/resources/ios/icon/icon-76@2x.png +0 -0
  51. package/resources/ios/icon/icon-83.5@2x.png +0 -0
  52. package/resources/ios/icon/icon-86@2x.png +0 -0
  53. package/resources/ios/icon/icon-98@2x.png +0 -0
  54. package/resources/ios/icon/icon-small.png +0 -0
  55. package/resources/ios/icon/icon-small@2x.png +0 -0
  56. package/resources/ios/icon/icon-small@3x.png +0 -0
  57. package/resources/ios/icon/icon.png +0 -0
  58. package/resources/ios/icon/icon@2x.png +0 -0
  59. package/resources/ios/splash/Default-1792h~iphone.png +0 -0
  60. package/resources/ios/splash/Default-2436h.png +0 -0
  61. package/resources/ios/splash/Default-2688h~iphone.png +0 -0
  62. package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
  63. package/resources/ios/splash/Default-667h.png +0 -0
  64. package/resources/ios/splash/Default-736h.png +0 -0
  65. package/resources/ios/splash/Default-Landscape-1792h~iphone.png +0 -0
  66. package/resources/ios/splash/Default-Landscape-2436h.png +0 -0
  67. package/resources/ios/splash/Default-Landscape-2688h~iphone.png +0 -0
  68. package/resources/ios/splash/Default-Landscape-736h.png +0 -0
  69. package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
  70. package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
  71. package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
  72. package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
  73. package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
  74. package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
  75. package/resources/ios/splash/Default@2x~iphone.png +0 -0
  76. package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
  77. package/resources/ios/splash/Default~iphone.png +0 -0
  78. package/resources/splash.png +0 -0
  79. package/resources/splash.png.md5 +1 -0
  80. package/scripts/build-android.sh +18 -0
  81. package/scripts/docker-start.sh +6 -0
  82. package/scripts/emulate-android.sh +17 -0
  83. package/scripts/env-android.sh +83 -0
  84. package/scripts/env-clean.sh +23 -0
  85. package/scripts/env-global.sh +154 -0
  86. package/scripts/install-android-sdk-tools.sh +73 -0
  87. package/scripts/ionic-update.sh +24 -0
  88. package/scripts/node/build-i18n.js +37 -0
  89. package/scripts/node/playground.ts +9 -0
  90. package/scripts/node/resources.js +108 -0
  91. package/scripts/release.sh +162 -0
  92. package/scripts/run-android.sh +59 -0
  93. package/scripts/test.sh +19 -0
  94. package/src/app/admin/admin-routing.module.ts +26 -0
  95. package/src/app/admin/admin.module.ts +20 -0
  96. package/src/app/admin/services/filter/person.filter.ts +86 -0
  97. package/src/app/admin/services/person.service.ts +244 -0
  98. package/src/app/admin/services/validator/person.validator.ts +86 -0
  99. package/src/app/admin/users/users.html +613 -0
  100. package/src/app/admin/users/users.module.ts +32 -0
  101. package/src/app/admin/users/users.scss +80 -0
  102. package/src/app/admin/users/users.ts +387 -0
  103. package/src/app/app-routing.module.ts +165 -0
  104. package/src/app/app.component.html +18 -0
  105. package/src/app/app.component.scss +4 -0
  106. package/src/app/app.component.ts +257 -0
  107. package/src/app/app.module.ts +366 -0
  108. package/src/app/core/about/about.modal.html +145 -0
  109. package/src/app/core/about/about.modal.scss +22 -0
  110. package/src/app/core/about/about.modal.ts +69 -0
  111. package/src/app/core/about/about.module.ts +14 -0
  112. package/src/app/core/account/account.module.ts +43 -0
  113. package/src/app/core/account/account.page.html +329 -0
  114. package/src/app/core/account/account.page.scss +20 -0
  115. package/src/app/core/account/account.page.ts +389 -0
  116. package/src/app/core/account/new-token.form.html +90 -0
  117. package/src/app/core/account/new-token.form.ts +99 -0
  118. package/src/app/core/account/new-token.modal.html +52 -0
  119. package/src/app/core/account/new-token.modal.ts +68 -0
  120. package/src/app/core/account/password/change-password.form.html +62 -0
  121. package/src/app/core/account/password/change-password.form.scss +0 -0
  122. package/src/app/core/account/password/change-password.form.ts +58 -0
  123. package/src/app/core/account/password/change-password.module.ts +14 -0
  124. package/src/app/core/account/password/change-password.page.html +41 -0
  125. package/src/app/core/account/password/change-password.page.scss +49 -0
  126. package/src/app/core/account/password/change-password.page.ts +158 -0
  127. package/src/app/core/account/token.table.html +160 -0
  128. package/src/app/core/account/token.table.scss +7 -0
  129. package/src/app/core/account/token.table.ts +160 -0
  130. package/src/app/core/auth/auth.form.html +108 -0
  131. package/src/app/core/auth/auth.form.scss +0 -0
  132. package/src/app/core/auth/auth.form.ts +165 -0
  133. package/src/app/core/auth/auth.modal.html +50 -0
  134. package/src/app/core/auth/auth.modal.scss +0 -0
  135. package/src/app/core/auth/auth.modal.ts +78 -0
  136. package/src/app/core/auth/auth.module.ts +35 -0
  137. package/src/app/core/auth/reset-password.modal.html +59 -0
  138. package/src/app/core/auth/reset-password.modal.ts +83 -0
  139. package/src/app/core/core.module.ts +72 -0
  140. package/src/app/core/core.testing.module.ts +80 -0
  141. package/src/app/core/form/array/form-array.ts +409 -0
  142. package/src/app/core/form/array/testing/form-array-test.module.ts +15 -0
  143. package/src/app/core/form/array/testing/form-array.test.html +196 -0
  144. package/src/app/core/form/array/testing/form-array.test.ts +119 -0
  145. package/src/app/core/form/buttons/form-buttons-bar.component.html +82 -0
  146. package/src/app/core/form/buttons/form-buttons-bar.component.scss +19 -0
  147. package/src/app/core/form/buttons/form-buttons-bar.component.ts +89 -0
  148. package/src/app/core/form/buttons/form-buttons-bar.module.ts +20 -0
  149. package/src/app/core/form/entity/editor.class.ts +295 -0
  150. package/src/app/core/form/entity/entity-editor-modal.class.ts +494 -0
  151. package/src/app/core/form/entity/entity-editor.class.ts +894 -0
  152. package/src/app/core/form/entity/entity-metadata.component.html +57 -0
  153. package/src/app/core/form/entity/entity-metadata.component.scss +40 -0
  154. package/src/app/core/form/entity/entity-metadata.component.ts +18 -0
  155. package/src/app/core/form/entity/entity.module.ts +20 -0
  156. package/src/app/core/form/entity/tab-editor.class.ts +224 -0
  157. package/src/app/core/form/form-container.class.ts +381 -0
  158. package/src/app/core/form/form.class.ts +377 -0
  159. package/src/app/core/form/form.module.ts +38 -0
  160. package/src/app/core/form/form.utils.ts +336 -0
  161. package/src/app/core/form/list/list.form.html +68 -0
  162. package/src/app/core/form/list/list.form.scss +40 -0
  163. package/src/app/core/form/list/list.form.ts +266 -0
  164. package/src/app/core/form/list/list.module.ts +20 -0
  165. package/src/app/core/form/properties/properties.form.html +160 -0
  166. package/src/app/core/form/properties/properties.form.scss +21 -0
  167. package/src/app/core/form/properties/properties.form.ts +331 -0
  168. package/src/app/core/form/properties/properties.module.ts +24 -0
  169. package/src/app/core/form/properties/properties.table.html +228 -0
  170. package/src/app/core/form/properties/properties.table.scss +0 -0
  171. package/src/app/core/form/properties/properties.table.ts +275 -0
  172. package/src/app/core/form/properties/properties.utils.ts +391 -0
  173. package/src/app/core/form/properties/property.validator.ts +82 -0
  174. package/src/app/core/form/properties/testing/properties-form.test.html +23 -0
  175. package/src/app/core/form/properties/testing/properties-form.test.ts +109 -0
  176. package/src/app/core/form/properties/testing/properties-form.testing.module.ts +14 -0
  177. package/src/app/core/form/text-popover/testing/text-popover.testing.html +50 -0
  178. package/src/app/core/form/text-popover/testing/text-popover.testing.module.ts +21 -0
  179. package/src/app/core/form/text-popover/testing/text-popover.testing.ts +76 -0
  180. package/src/app/core/form/text-popover/text-popover.component.html +89 -0
  181. package/src/app/core/form/text-popover/text-popover.component.scss +7 -0
  182. package/src/app/core/form/text-popover/text-popover.component.ts +176 -0
  183. package/src/app/core/form/text-popover/text-popover.module.ts +19 -0
  184. package/src/app/core/form/username/username.form.html +27 -0
  185. package/src/app/core/form/username/username.form.ts +44 -0
  186. package/src/app/core/form/username/username.module.ts +12 -0
  187. package/src/app/core/graphql/graphql.module.ts +7 -0
  188. package/src/app/core/graphql/graphql.service.ts +962 -0
  189. package/src/app/core/graphql/graphql.utils.ts +166 -0
  190. package/src/app/core/home/home.html +327 -0
  191. package/src/app/core/home/home.module.ts +31 -0
  192. package/src/app/core/home/home.scss +300 -0
  193. package/src/app/core/home/home.ts +453 -0
  194. package/src/app/core/icon/icon.component.html +19 -0
  195. package/src/app/core/icon/icon.component.ts +22 -0
  196. package/src/app/core/icon/icon.module.ts +13 -0
  197. package/src/app/core/install/install-upgrade-card.component.html +144 -0
  198. package/src/app/core/install/install-upgrade-card.component.scss +3 -0
  199. package/src/app/core/install/install-upgrade-card.component.ts +445 -0
  200. package/src/app/core/install/install-upgrade-card.module.ts +18 -0
  201. package/src/app/core/menu/menu.component.html +219 -0
  202. package/src/app/core/menu/menu.component.scss +304 -0
  203. package/src/app/core/menu/menu.component.ts +251 -0
  204. package/src/app/core/menu/menu.filter.ts +28 -0
  205. package/src/app/core/menu/menu.model.ts +356 -0
  206. package/src/app/core/menu/menu.module.ts +27 -0
  207. package/src/app/core/menu/menu.service.ts +727 -0
  208. package/src/app/core/menu/sub-menu-tab.directive.ts +99 -0
  209. package/src/app/core/menu/testing/menu-other.testing.ts +57 -0
  210. package/src/app/core/menu/testing/menu.testing.html +143 -0
  211. package/src/app/core/menu/testing/menu.testing.module.ts +52 -0
  212. package/src/app/core/menu/testing/menu.testing.scss +5 -0
  213. package/src/app/core/menu/testing/menu.testing.ts +175 -0
  214. package/src/app/core/offline/update-offline-mode-card.component.html +39 -0
  215. package/src/app/core/offline/update-offline-mode-card.component.scss +3 -0
  216. package/src/app/core/offline/update-offline-mode-card.component.ts +23 -0
  217. package/src/app/core/offline/update-offline-mode-card.module.ts +20 -0
  218. package/src/app/core/peer/select-peer.modal.html +317 -0
  219. package/src/app/core/peer/select-peer.modal.scss +41 -0
  220. package/src/app/core/peer/select-peer.modal.ts +366 -0
  221. package/src/app/core/peer/select-peer.module.ts +23 -0
  222. package/src/app/core/register/register-confirm.page.html +51 -0
  223. package/src/app/core/register/register-confirm.page.scss +56 -0
  224. package/src/app/core/register/register-confirm.page.ts +90 -0
  225. package/src/app/core/register/register.form.html +143 -0
  226. package/src/app/core/register/register.form.scss +10 -0
  227. package/src/app/core/register/register.form.ts +218 -0
  228. package/src/app/core/register/register.modal.html +66 -0
  229. package/src/app/core/register/register.modal.ts +50 -0
  230. package/src/app/core/register/register.module.ts +15 -0
  231. package/src/app/core/services/account.service.ts +1567 -0
  232. package/src/app/core/services/auth-guard.service.ts +70 -0
  233. package/src/app/core/services/base-entity-service.class.ts +659 -0
  234. package/src/app/core/services/base-graphql-service.class.ts +319 -0
  235. package/src/app/core/services/base58.ts +90 -0
  236. package/src/app/core/services/config/core.config.ts +263 -0
  237. package/src/app/core/services/config.service.ts +425 -0
  238. package/src/app/core/services/crypto.service.ts +126 -0
  239. package/src/app/core/services/errors.ts +80 -0
  240. package/src/app/core/services/local-settings.service.spec.ts +39 -0
  241. package/src/app/core/services/local-settings.service.ts +610 -0
  242. package/src/app/core/services/model/account.model.ts +188 -0
  243. package/src/app/core/services/model/config.model.ts +116 -0
  244. package/src/app/core/services/model/department.model.ts +34 -0
  245. package/src/app/core/services/model/entity.decorators.ts +110 -0
  246. package/src/app/core/services/model/entity.model.ts +409 -0
  247. package/src/app/core/services/model/filter.model.ts +127 -0
  248. package/src/app/core/services/model/history.model.ts +25 -0
  249. package/src/app/core/services/model/model.enum.ts +10 -0
  250. package/src/app/core/services/model/node-feature.model.ts +31 -0
  251. package/src/app/core/services/model/peer.model.ts +119 -0
  252. package/src/app/core/services/model/person.model.ts +122 -0
  253. package/src/app/core/services/model/referential.model.ts +253 -0
  254. package/src/app/core/services/model/settings.model.ts +37 -0
  255. package/src/app/core/services/model/token.model.ts +60 -0
  256. package/src/app/core/services/model/tree-item-entity.model.ts +256 -0
  257. package/src/app/core/services/network.service.spec.ts +47 -0
  258. package/src/app/core/services/network.service.ts +771 -0
  259. package/src/app/core/services/network.types.ts +7 -0
  260. package/src/app/core/services/network.utils.ts +83 -0
  261. package/src/app/core/services/pipes/account.pipes.ts +22 -0
  262. package/src/app/core/services/pipes/department-to-string.pipe.ts +13 -0
  263. package/src/app/core/services/pipes/person-to-string.pipe.ts +13 -0
  264. package/src/app/core/services/pipes/pipes.module.ts +30 -0
  265. package/src/app/core/services/pipes/referential-to-string.pipe.ts +18 -0
  266. package/src/app/core/services/pipes/usage-mode.pipes.ts +23 -0
  267. package/src/app/core/services/platform.service.spec.ts +50 -0
  268. package/src/app/core/services/platform.service.ts +694 -0
  269. package/src/app/core/services/storage/entities-storage.service.ts +557 -0
  270. package/src/app/core/services/storage/entity-store.class.ts +589 -0
  271. package/src/app/core/services/testing/local-settings.config.ts +35 -0
  272. package/src/app/core/services/testing/referential-filter.model.ts +28 -0
  273. package/src/app/core/services/testing/referential.validator.ts +58 -0
  274. package/src/app/core/services/testing/user-settings.config.ts +77 -0
  275. package/src/app/core/services/validator/account.validator.ts +50 -0
  276. package/src/app/core/services/validator/base.validator.class.ts +51 -0
  277. package/src/app/core/services/validator/local-settings.validator.ts +59 -0
  278. package/src/app/core/services/validator/user-settings.validator.ts +22 -0
  279. package/src/app/core/services/validator/user-token.validator.ts +54 -0
  280. package/src/app/core/settings/settings.module.ts +15 -0
  281. package/src/app/core/settings/settings.page.html +300 -0
  282. package/src/app/core/settings/settings.page.ts +455 -0
  283. package/src/app/core/table/async-table.class.ts +2021 -0
  284. package/src/app/core/table/column/actions-column.component.html +219 -0
  285. package/src/app/core/table/column/actions-column.component.scss +17 -0
  286. package/src/app/core/table/column/actions-column.component.ts +83 -0
  287. package/src/app/core/table/column/nav-actions-column.component.html +119 -0
  288. package/src/app/core/table/column/nav-actions-column.component.ts +108 -0
  289. package/src/app/core/table/column/row-field.component.html +43 -0
  290. package/src/app/core/table/column/row-field.component.scss +0 -0
  291. package/src/app/core/table/column/row-field.component.ts +63 -0
  292. package/src/app/core/table/entities-async-table-datasource.class.ts +515 -0
  293. package/src/app/core/table/entities-table-datasource.class.ts +503 -0
  294. package/src/app/core/table/memory-table.class.ts +56 -0
  295. package/src/app/core/table/table-select-columns.component.html +56 -0
  296. package/src/app/core/table/table-select-columns.component.ts +49 -0
  297. package/src/app/core/table/table.class.ts +2082 -0
  298. package/src/app/core/table/table.model.ts +39 -0
  299. package/src/app/core/table/table.module.ts +28 -0
  300. package/src/app/core/table/table.pipes.ts +87 -0
  301. package/src/app/core/table/table.utils.ts +42 -0
  302. package/src/app/core/table/testing/multi-table.testing.html +456 -0
  303. package/src/app/core/table/testing/multi-table.testing.ts +263 -0
  304. package/src/app/core/table/testing/table-validator.service.ts +29 -0
  305. package/src/app/core/table/testing/table.testing.html +556 -0
  306. package/src/app/core/table/testing/table.testing.module.ts +16 -0
  307. package/src/app/core/table/testing/table.testing.scss +32 -0
  308. package/src/app/core/table/testing/table.testing.ts +329 -0
  309. package/src/app/core/table/testing/table2-validator.service.ts +19 -0
  310. package/src/app/core/table/testing/table2.testing.html +470 -0
  311. package/src/app/core/table/testing/table2.testing.scss +25 -0
  312. package/src/app/core/table/testing/table2.testing.ts +274 -0
  313. package/src/app/shared/alerts.ts +296 -0
  314. package/src/app/shared/audio/audio.testing.html +29 -0
  315. package/src/app/shared/audio/audio.testing.module.ts +21 -0
  316. package/src/app/shared/audio/audio.testing.ts +27 -0
  317. package/src/app/shared/audio/audio.ts +273 -0
  318. package/src/app/shared/base64.utils.ts +66 -0
  319. package/src/app/shared/capacitor/keyboard.ts +38 -0
  320. package/src/app/shared/capacitor/plugins.ts +12 -0
  321. package/src/app/shared/constants.ts +19 -0
  322. package/src/app/shared/dates.ts +206 -0
  323. package/src/app/shared/debug/debug-service.class.ts +7 -0
  324. package/src/app/shared/debug/debug.component.html +13 -0
  325. package/src/app/shared/debug/debug.component.scss +21 -0
  326. package/src/app/shared/debug/debug.component.spec.ts +24 -0
  327. package/src/app/shared/debug/debug.component.ts +25 -0
  328. package/src/app/shared/debug/debug.module.ts +14 -0
  329. package/src/app/shared/directives/autofocus.directive.ts +93 -0
  330. package/src/app/shared/directives/autoresize.directive.ts +67 -0
  331. package/src/app/shared/directives/autotitle.directive.ts +17 -0
  332. package/src/app/shared/directives/directives.module.ts +16 -0
  333. package/src/app/shared/directives/drag-and-drop.directive.ts +46 -0
  334. package/src/app/shared/directives/ng-var.directive.ts +31 -0
  335. package/src/app/shared/directives/resizable/resizable.component.ts +48 -0
  336. package/src/app/shared/directives/resizable/resizable.directive.ts +43 -0
  337. package/src/app/shared/directives/resizable/resizable.module.ts +9 -0
  338. package/src/app/shared/directives/resizable/resizable.style.scss +37 -0
  339. package/src/app/shared/directives/resizable/resizable.template.html +6 -0
  340. package/src/app/shared/directives/throttled-click.directive.ts +36 -0
  341. package/src/app/shared/events.ts +93 -0
  342. package/src/app/shared/file/csv.utils.ts +123 -0
  343. package/src/app/shared/file/file.service.ts +129 -0
  344. package/src/app/shared/file/file.utils.ts +142 -0
  345. package/src/app/shared/file/images.utils.ts +214 -0
  346. package/src/app/shared/file/json.utils.ts +82 -0
  347. package/src/app/shared/file/uri.utils.ts +31 -0
  348. package/src/app/shared/file/url.utils.ts +193 -0
  349. package/src/app/shared/focusable.ts +8 -0
  350. package/src/app/shared/form/field.component.html +380 -0
  351. package/src/app/shared/form/field.component.scss +7 -0
  352. package/src/app/shared/form/field.component.ts +344 -0
  353. package/src/app/shared/form/field.model.ts +158 -0
  354. package/src/app/shared/form/loading-spinner.ts +16 -0
  355. package/src/app/shared/forms.ts +651 -0
  356. package/src/app/shared/functions.spec.ts +197 -0
  357. package/src/app/shared/functions.ts +694 -0
  358. package/src/app/shared/geolocation/geolocation.utils.ts +105 -0
  359. package/src/app/shared/gesture/gesture-config.ts +43 -0
  360. package/src/app/shared/gesture/hammer.utils.ts +14 -0
  361. package/src/app/shared/graph/colors.utils.ts +69 -0
  362. package/src/app/shared/graph/graph-colors.ts +270 -0
  363. package/src/app/shared/guard/component-dirty.guard.ts +67 -0
  364. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.html +11 -0
  365. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.scss +37 -0
  366. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.ts +14 -0
  367. package/src/app/shared/hotkeys/hotkeys.service.ts +165 -0
  368. package/src/app/shared/hotkeys/shared-hotkeys.module.ts +15 -0
  369. package/src/app/shared/http/http.utils.ts +95 -0
  370. package/src/app/shared/image/gallery/image-gallery.component.html +282 -0
  371. package/src/app/shared/image/gallery/image-gallery.component.scss +218 -0
  372. package/src/app/shared/image/gallery/image-gallery.component.ts +434 -0
  373. package/src/app/shared/image/gallery/image-gallery.module.ts +35 -0
  374. package/src/app/shared/image/gallery/testing/gallegry.model.testing.ts +23 -0
  375. package/src/app/shared/image/gallery/testing/gallery.service.testing.ts +99 -0
  376. package/src/app/shared/image/gallery/testing/gallery.testing.html +27 -0
  377. package/src/app/shared/image/gallery/testing/gallery.testing.module.ts +39 -0
  378. package/src/app/shared/image/gallery/testing/gallery.testing.ts +34 -0
  379. package/src/app/shared/image/image.model.ts +8 -0
  380. package/src/app/shared/image/image.module.ts +12 -0
  381. package/src/app/shared/image/image.service.ts +111 -0
  382. package/src/app/shared/image/image.testing.module.ts +16 -0
  383. package/src/app/shared/inputs.ts +330 -0
  384. package/src/app/shared/interceptors/progess.interceptor.ts +24 -0
  385. package/src/app/shared/logging/log-level.model.ts +53 -0
  386. package/src/app/shared/logging/logger.model.ts +117 -0
  387. package/src/app/shared/logging/logging-service.class.ts +131 -0
  388. package/src/app/shared/logging/logging-service.config.ts +29 -0
  389. package/src/app/shared/logging/logging-service.module.ts +19 -0
  390. package/src/app/shared/markdown/markdown.component.html +55 -0
  391. package/src/app/shared/markdown/markdown.component.scss +75 -0
  392. package/src/app/shared/markdown/markdown.component.ts +350 -0
  393. package/src/app/shared/markdown/markdown.directive.ts +28 -0
  394. package/src/app/shared/markdown/markdown.modal.html +42 -0
  395. package/src/app/shared/markdown/markdown.modal.ts +91 -0
  396. package/src/app/shared/markdown/markdown.module.ts +65 -0
  397. package/src/app/shared/markdown/markdown.service.ts +234 -0
  398. package/src/app/shared/markdown/markdown.utils.ts +90 -0
  399. package/src/app/shared/markdown/testing/markdown.test.html +50 -0
  400. package/src/app/shared/markdown/testing/markdown.test.ts +49 -0
  401. package/src/app/shared/markdown/testing/markdown.testing.module.ts +22 -0
  402. package/src/app/shared/material/autocomplete/material.autocomplete.config.ts +127 -0
  403. package/src/app/shared/material/autocomplete/material.autocomplete.html +400 -0
  404. package/src/app/shared/material/autocomplete/material.autocomplete.module.ts +41 -0
  405. package/src/app/shared/material/autocomplete/material.autocomplete.scss +54 -0
  406. package/src/app/shared/material/autocomplete/material.autocomplete.ts +1375 -0
  407. package/src/app/shared/material/autocomplete/material.autocomplete.utils.ts +21 -0
  408. package/src/app/shared/material/autocomplete/testing/autocomplete.test.html +1164 -0
  409. package/src/app/shared/material/autocomplete/testing/autocomplete.test.spec.ts +33 -0
  410. package/src/app/shared/material/autocomplete/testing/autocomplete.test.ts +272 -0
  411. package/src/app/shared/material/badge/badge.directive.ts +217 -0
  412. package/src/app/shared/material/badge/badge.module.ts +12 -0
  413. package/src/app/shared/material/badge/badge.test.html +275 -0
  414. package/src/app/shared/material/badge/badge.test.ts +34 -0
  415. package/src/app/shared/material/boolean/boolean.module.ts +36 -0
  416. package/src/app/shared/material/boolean/material.boolean.html +271 -0
  417. package/src/app/shared/material/boolean/material.boolean.scss +27 -0
  418. package/src/app/shared/material/boolean/material.boolean.ts +343 -0
  419. package/src/app/shared/material/boolean/testing/boolean.test.page.html +469 -0
  420. package/src/app/shared/material/boolean/testing/boolean.test.page.ts +66 -0
  421. package/src/app/shared/material/chips/chips.module.ts +38 -0
  422. package/src/app/shared/material/chips/material.chips.html +233 -0
  423. package/src/app/shared/material/chips/material.chips.scss +67 -0
  424. package/src/app/shared/material/chips/material.chips.ts +834 -0
  425. package/src/app/shared/material/chips/testing/chips.test.html +207 -0
  426. package/src/app/shared/material/chips/testing/chips.test.ts +169 -0
  427. package/src/app/shared/material/datetime/datetime.module.ts +42 -0
  428. package/src/app/shared/material/datetime/material.date.html +186 -0
  429. package/src/app/shared/material/datetime/material.date.scss +17 -0
  430. package/src/app/shared/material/datetime/material.date.ts +512 -0
  431. package/src/app/shared/material/datetime/material.dateshort.html +194 -0
  432. package/src/app/shared/material/datetime/material.dateshort.scss +23 -0
  433. package/src/app/shared/material/datetime/material.dateshort.ts +497 -0
  434. package/src/app/shared/material/datetime/material.datetime.html +325 -0
  435. package/src/app/shared/material/datetime/material.datetime.scss +87 -0
  436. package/src/app/shared/material/datetime/material.datetime.ts +758 -0
  437. package/src/app/shared/material/datetime/testing/mat-date-time.test.html +794 -0
  438. package/src/app/shared/material/datetime/testing/mat-date-time.test.ts +155 -0
  439. package/src/app/shared/material/datetime/testing/mat-date.test.html +564 -0
  440. package/src/app/shared/material/datetime/testing/mat-date.test.ts +145 -0
  441. package/src/app/shared/material/datetime/testing/mat-dateshort.test.html +530 -0
  442. package/src/app/shared/material/datetime/testing/mat-dateshort.test.ts +133 -0
  443. package/src/app/shared/material/duration/duration.module.ts +33 -0
  444. package/src/app/shared/material/duration/duration.utils.ts +18 -0
  445. package/src/app/shared/material/duration/material.duration.html +116 -0
  446. package/src/app/shared/material/duration/material.duration.scss +28 -0
  447. package/src/app/shared/material/duration/material.duration.ts +308 -0
  448. package/src/app/shared/material/duration/testing/mat-duration.test.html +170 -0
  449. package/src/app/shared/material/duration/testing/mat-duration.test.ts +88 -0
  450. package/src/app/shared/material/latlong/latlong.utils.ts +376 -0
  451. package/src/app/shared/material/latlong/material.latlong-input.html +95 -0
  452. package/src/app/shared/material/latlong/material.latlong-input.scss +66 -0
  453. package/src/app/shared/material/latlong/material.latlong-input.ts +445 -0
  454. package/src/app/shared/material/latlong/material.latlong.html +90 -0
  455. package/src/app/shared/material/latlong/material.latlong.module.ts +37 -0
  456. package/src/app/shared/material/latlong/material.latlong.scss +0 -0
  457. package/src/app/shared/material/latlong/material.latlong.ts +203 -0
  458. package/src/app/shared/material/latlong/testing/latlong.test.html +1008 -0
  459. package/src/app/shared/material/latlong/testing/latlong.test.ts +144 -0
  460. package/src/app/shared/material/material.animations.ts +269 -0
  461. package/src/app/shared/material/material.config.ts +5 -0
  462. package/src/app/shared/material/material.module.ts +94 -0
  463. package/src/app/shared/material/material.testing.module.ts +192 -0
  464. package/src/app/shared/material/memory/memory.utils.ts +57 -0
  465. package/src/app/shared/material/numpad/numpad.animation.ts +1 -0
  466. package/src/app/shared/material/numpad/numpad.append-to-input.directive.ts +110 -0
  467. package/src/app/shared/material/numpad/numpad.component.ts +73 -0
  468. package/src/app/shared/material/numpad/numpad.container.html +37 -0
  469. package/src/app/shared/material/numpad/numpad.container.scss +55 -0
  470. package/src/app/shared/material/numpad/numpad.container.ts +152 -0
  471. package/src/app/shared/material/numpad/numpad.content.html +13 -0
  472. package/src/app/shared/material/numpad/numpad.content.ts +10 -0
  473. package/src/app/shared/material/numpad/numpad.directive.ts +159 -0
  474. package/src/app/shared/material/numpad/numpad.dom-service.ts +35 -0
  475. package/src/app/shared/material/numpad/numpad.model.ts +53 -0
  476. package/src/app/shared/material/numpad/numpad.module.ts +18 -0
  477. package/src/app/shared/material/numpad/testing/numpad.test.html +146 -0
  478. package/src/app/shared/material/numpad/testing/numpad.test.ts +44 -0
  479. package/src/app/shared/material/paginator/material.paginator-i18n.ts +47 -0
  480. package/src/app/shared/material/stepper/material.stepper-i18n.ts +17 -0
  481. package/src/app/shared/material/swipe/material.swipe.html +85 -0
  482. package/src/app/shared/material/swipe/material.swipe.scss +55 -0
  483. package/src/app/shared/material/swipe/material.swipe.ts +366 -0
  484. package/src/app/shared/material/swipe/swipe.module.ts +29 -0
  485. package/src/app/shared/material/swipe/testing/swipe.test.html +112 -0
  486. package/src/app/shared/material/swipe/testing/swipe.test.ts +74 -0
  487. package/src/app/shared/material/test/test-component.css +22 -0
  488. package/src/app/shared/material/test/test-component.html +40 -0
  489. package/src/app/shared/material/test/test-component.ts +295 -0
  490. package/src/app/shared/material/testing/common.test.html +227 -0
  491. package/src/app/shared/material/testing/common.test.ts +126 -0
  492. package/src/app/shared/material/text/testing/text-form.testing.html +213 -0
  493. package/src/app/shared/material/text/testing/text-form.testing.ts +30 -0
  494. package/src/app/shared/material/text/text-form.component.html +63 -0
  495. package/src/app/shared/material/text/text-form.component.scss +8 -0
  496. package/src/app/shared/material/text/text-form.component.ts +177 -0
  497. package/src/app/shared/material/text/text-form.module.ts +36 -0
  498. package/src/app/shared/modules.ts +12 -0
  499. package/src/app/shared/named-filter/named-filter-selector.component.html +77 -0
  500. package/src/app/shared/named-filter/named-filter-selector.component.scss +3 -0
  501. package/src/app/shared/named-filter/named-filter-selector.component.ts +287 -0
  502. package/src/app/shared/named-filter/named-filter.model.ts +64 -0
  503. package/src/app/shared/named-filter/named-filter.module.ts +15 -0
  504. package/src/app/shared/named-filter/named-filter.service.ts +100 -0
  505. package/src/app/shared/named-filter/testing/named-filter-selector.testing.html +61 -0
  506. package/src/app/shared/named-filter/testing/named-filter-selector.testing.ts +80 -0
  507. package/src/app/shared/named-filter/testing/named-filter.testing.module.ts +20 -0
  508. package/src/app/shared/named-filter/testing/named-filter.testing.service.ts +83 -0
  509. package/src/app/shared/observables.ts +139 -0
  510. package/src/app/shared/pipes/arrays.pipe.ts +153 -0
  511. package/src/app/shared/pipes/badge.pipes.ts +18 -0
  512. package/src/app/shared/pipes/colors.pipe.ts +24 -0
  513. package/src/app/shared/pipes/date-diff-duration.pipe.ts +53 -0
  514. package/src/app/shared/pipes/date-format.pipe.ts +73 -0
  515. package/src/app/shared/pipes/date-from-now.pipe.ts +17 -0
  516. package/src/app/shared/pipes/dates.pipe.ts +13 -0
  517. package/src/app/shared/pipes/display-with.pipe.ts +13 -0
  518. package/src/app/shared/pipes/duration.pipe.spec.ts +41 -0
  519. package/src/app/shared/pipes/duration.pipe.ts +28 -0
  520. package/src/app/shared/pipes/file-size.pipe.ts +50 -0
  521. package/src/app/shared/pipes/form.pipes.ts +209 -0
  522. package/src/app/shared/pipes/highlight.pipe.ts +41 -0
  523. package/src/app/shared/pipes/html.pipes.ts +49 -0
  524. package/src/app/shared/pipes/latlong-format.pipe.ts +28 -0
  525. package/src/app/shared/pipes/maps.pipe.ts +41 -0
  526. package/src/app/shared/pipes/maskito.pipe.ts +68 -0
  527. package/src/app/shared/pipes/math.pipes.ts +46 -0
  528. package/src/app/shared/pipes/ng-init.pipe.ts +13 -0
  529. package/src/app/shared/pipes/number-format.pipe.ts +11 -0
  530. package/src/app/shared/pipes/observable.pipes.ts +46 -0
  531. package/src/app/shared/pipes/pipes.module.ts +162 -0
  532. package/src/app/shared/pipes/property.pipes.ts +115 -0
  533. package/src/app/shared/pipes/selection.pipes.ts +165 -0
  534. package/src/app/shared/pipes/string.pipes.ts +128 -0
  535. package/src/app/shared/pipes/translate-context.pipe.ts +27 -0
  536. package/src/app/shared/pipes/types.pipes.ts +52 -0
  537. package/src/app/shared/pipes/url.pipes.ts +29 -0
  538. package/src/app/shared/platforms.ts +99 -0
  539. package/src/app/shared/print/print.service.ts +337 -0
  540. package/src/app/shared/regexps.ts +112 -0
  541. package/src/app/shared/rx-state/rx-state.decorators.ts +281 -0
  542. package/src/app/shared/rx-state/rx-state.module.ts +11 -0
  543. package/src/app/shared/rx-state/rx-state.types.ts +5 -0
  544. package/src/app/shared/services/entity-service.class.ts +120 -0
  545. package/src/app/shared/services/job.utils.ts +124 -0
  546. package/src/app/shared/services/memory-entity-service.class.ts +435 -0
  547. package/src/app/shared/services/progress-bar.service.ts +40 -0
  548. package/src/app/shared/services/startable-observable-service.class.ts +129 -0
  549. package/src/app/shared/services/startable-service.class.ts +120 -0
  550. package/src/app/shared/services/storage.utils.ts +53 -0
  551. package/src/app/shared/services/translate-context.service.ts +112 -0
  552. package/src/app/shared/services/validator-service.class.ts +13 -0
  553. package/src/app/shared/services.ts +134 -0
  554. package/src/app/shared/shared-routing.module.ts +69 -0
  555. package/src/app/shared/shared.module.spec.ts +13 -0
  556. package/src/app/shared/shared.module.ts +168 -0
  557. package/src/app/shared/shared.testing.module.ts +61 -0
  558. package/src/app/shared/storage/storage-explorer.component.html +160 -0
  559. package/src/app/shared/storage/storage-explorer.component.scss +37 -0
  560. package/src/app/shared/storage/storage-explorer.component.spec.ts +24 -0
  561. package/src/app/shared/storage/storage-explorer.component.ts +268 -0
  562. package/src/app/shared/storage/storage-explorer.module.ts +24 -0
  563. package/src/app/shared/storage/storage-explorer.testing-routing.module.ts +19 -0
  564. package/src/app/shared/storage/storage-explorer.testing.module.ts +19 -0
  565. package/src/app/shared/storage/storage.service.ts +131 -0
  566. package/src/app/shared/storage/storage.utils.ts +25 -0
  567. package/src/app/shared/testing/maskito.test.html +40 -0
  568. package/src/app/shared/testing/maskito.test.ts +33 -0
  569. package/src/app/shared/testing/observable.test.html +53 -0
  570. package/src/app/shared/testing/observable.test.scss +3 -0
  571. package/src/app/shared/testing/observable.test.ts +101 -0
  572. package/src/app/shared/testing/tests.page.html +22 -0
  573. package/src/app/shared/testing/tests.page.ts +32 -0
  574. package/src/app/shared/toast/toast.testing.html +50 -0
  575. package/src/app/shared/toast/toast.testing.module.ts +22 -0
  576. package/src/app/shared/toast/toast.testing.ts +52 -0
  577. package/src/app/shared/toast/toasts.ts +161 -0
  578. package/src/app/shared/toolbar/modal-toolbar.html +30 -0
  579. package/src/app/shared/toolbar/modal-toolbar.scss +0 -0
  580. package/src/app/shared/toolbar/modal-toolbar.ts +64 -0
  581. package/src/app/shared/toolbar/toolbar.html +68 -0
  582. package/src/app/shared/toolbar/toolbar.module.ts +18 -0
  583. package/src/app/shared/toolbar/toolbar.scss +0 -0
  584. package/src/app/shared/toolbar/toolbar.ts +262 -0
  585. package/src/app/shared/types.ts +44 -0
  586. package/src/app/shared/upload-file/testing/upload-file.testing.html +30 -0
  587. package/src/app/shared/upload-file/testing/upload-file.testing.module.ts +21 -0
  588. package/src/app/shared/upload-file/testing/upload-file.testing.ts +65 -0
  589. package/src/app/shared/upload-file/upload-file-popover.component.html +46 -0
  590. package/src/app/shared/upload-file/upload-file-popover.component.scss +6 -0
  591. package/src/app/shared/upload-file/upload-file-popover.component.ts +115 -0
  592. package/src/app/shared/upload-file/upload-file.component.html +57 -0
  593. package/src/app/shared/upload-file/upload-file.component.scss +60 -0
  594. package/src/app/shared/upload-file/upload-file.component.ts +222 -0
  595. package/src/app/shared/upload-file/upload-file.model.ts +40 -0
  596. package/src/app/shared/validator/form-error-adapter.class.ts +139 -0
  597. package/src/app/shared/validator/validators.ts +725 -0
  598. package/src/app/shared/version/versions.ts +89 -0
  599. package/src/app/social/config/social.config.ts +10 -0
  600. package/src/app/social/feed/discourse/discourse-feed.service.ts +216 -0
  601. package/src/app/social/feed/discourse/discourse.model.ts +9 -0
  602. package/src/app/social/feed/discourse/discourse.utils.ts +210 -0
  603. package/src/app/social/feed/feed.component.html +85 -0
  604. package/src/app/social/feed/feed.component.scss +59 -0
  605. package/src/app/social/feed/feed.component.spec.ts +24 -0
  606. package/src/app/social/feed/feed.component.ts +115 -0
  607. package/src/app/social/feed/feed.directive.ts +164 -0
  608. package/src/app/social/feed/feed.model.ts +139 -0
  609. package/src/app/social/feed/feed.module.ts +13 -0
  610. package/src/app/social/feed/feed.service.ts +14 -0
  611. package/src/app/social/job/job.module.ts +14 -0
  612. package/src/app/social/job/progression/job-progression.component.html +19 -0
  613. package/src/app/social/job/progression/job-progression.component.scss +15 -0
  614. package/src/app/social/job/progression/job-progression.component.ts +39 -0
  615. package/src/app/social/job/progression/job-progression.icon.html +32 -0
  616. package/src/app/social/job/progression/job-progression.icon.scss +7 -0
  617. package/src/app/social/job/progression/job-progression.icon.ts +277 -0
  618. package/src/app/social/job/progression/job-progression.list.html +25 -0
  619. package/src/app/social/job/progression/job-progression.list.scss +17 -0
  620. package/src/app/social/job/progression/job-progression.list.ts +40 -0
  621. package/src/app/social/job/progression/job-progression.model.ts +26 -0
  622. package/src/app/social/job/progression/job-progression.service.ts +97 -0
  623. package/src/app/social/job/testing/job-progression.testing.html +11 -0
  624. package/src/app/social/job/testing/job-progression.testing.service.ts +33 -0
  625. package/src/app/social/job/testing/job-progression.testing.ts +28 -0
  626. package/src/app/social/job/testing/job.testing.module.ts +13 -0
  627. package/src/app/social/message/message.form.html +71 -0
  628. package/src/app/social/message/message.form.scss +6 -0
  629. package/src/app/social/message/message.form.ts +128 -0
  630. package/src/app/social/message/message.modal.html +68 -0
  631. package/src/app/social/message/message.modal.ts +117 -0
  632. package/src/app/social/message/message.model.ts +78 -0
  633. package/src/app/social/message/message.module.ts +14 -0
  634. package/src/app/social/message/message.service.ts +104 -0
  635. package/src/app/social/social.errors.ts +10 -0
  636. package/src/app/social/social.module.ts +23 -0
  637. package/src/app/social/social.testing.module.ts +33 -0
  638. package/src/app/social/user-event/notification/user-event-notification.icon.html +49 -0
  639. package/src/app/social/user-event/notification/user-event-notification.icon.scss +4 -0
  640. package/src/app/social/user-event/notification/user-event-notification.icon.ts +176 -0
  641. package/src/app/social/user-event/notification/user-event-notification.list.html +151 -0
  642. package/src/app/social/user-event/notification/user-event-notification.list.scss +73 -0
  643. package/src/app/social/user-event/notification/user-event-notification.list.ts +282 -0
  644. package/src/app/social/user-event/notification/user-event-notification.modal.html +71 -0
  645. package/src/app/social/user-event/notification/user-event-notification.modal.ts +60 -0
  646. package/src/app/social/user-event/testing/user-event.testing.html +54 -0
  647. package/src/app/social/user-event/testing/user-event.testing.model.ts +142 -0
  648. package/src/app/social/user-event/testing/user-event.testing.module.ts +13 -0
  649. package/src/app/social/user-event/testing/user-event.testing.service.ts +161 -0
  650. package/src/app/social/user-event/testing/user-event.testing.ts +300 -0
  651. package/src/app/social/user-event/user-event.model.ts +55 -0
  652. package/src/app/social/user-event/user-event.module.ts +16 -0
  653. package/src/app/social/user-event/user-event.service.ts +686 -0
  654. package/src/assets/i18n/en-US.json +5 -1
  655. package/src/assets/i18n/en.json +5 -0
  656. package/src/assets/i18n/fr.json +7 -1
  657. package/src/assets/manifest.json +1 -1
  658. package/src/browserslist +9 -0
  659. package/src/environments/environment.class.ts +113 -0
  660. package/src/environments/environment.loader.ts +90 -0
  661. package/src/environments/environment.prod.ts +49 -0
  662. package/src/environments/environment.test.ts +92 -0
  663. package/src/environments/environment.ts +136 -0
  664. package/src/favicon.ico +0 -0
  665. package/src/global.scss +13 -0
  666. package/src/index.html +76 -0
  667. package/src/main.ts +19 -0
  668. package/src/polyfills.ts +34 -0
  669. package/src/schema.graphql +4381 -0
  670. package/src/service-worker.js +31 -0
  671. package/src/test.ts +30 -0
  672. package/src/theme/_ngx-components.scss +4 -1
  673. package/src/theme/_theme.variables.scss +1 -1
  674. package/tsconfig-cs.json +57 -0
  675. package/tsconfig.app.json +15 -0
  676. package/tsconfig.json +48 -0
  677. package/tsconfig.spec.json +18 -0
  678. package/esm2022/public_api.mjs +0 -380
  679. package/esm2022/src/app/admin/admin-routing.module.mjs +0 -34
  680. package/esm2022/src/app/admin/admin.module.mjs +0 -32
  681. package/esm2022/src/app/admin/services/filter/person.filter.mjs +0 -76
  682. package/esm2022/src/app/admin/services/person.service.mjs +0 -184
  683. package/esm2022/src/app/admin/services/validator/person.validator.mjs +0 -72
  684. package/esm2022/src/app/admin/users/users.mjs +0 -379
  685. package/esm2022/src/app/admin/users/users.module.mjs +0 -56
  686. package/esm2022/src/app/core/about/about.modal.mjs +0 -86
  687. package/esm2022/src/app/core/about/about.module.mjs +0 -22
  688. package/esm2022/src/app/core/account/account.module.mjs +0 -75
  689. package/esm2022/src/app/core/account/account.page.mjs +0 -364
  690. package/esm2022/src/app/core/account/new-token.form.mjs +0 -106
  691. package/esm2022/src/app/core/account/new-token.modal.mjs +0 -66
  692. package/esm2022/src/app/core/account/password/change-password.form.mjs +0 -63
  693. package/esm2022/src/app/core/account/password/change-password.module.mjs +0 -22
  694. package/esm2022/src/app/core/account/password/change-password.page.mjs +0 -150
  695. package/esm2022/src/app/core/account/token.table.mjs +0 -157
  696. package/esm2022/src/app/core/auth/auth.form.mjs +0 -159
  697. package/esm2022/src/app/core/auth/auth.modal.mjs +0 -76
  698. package/esm2022/src/app/core/auth/auth.module.mjs +0 -56
  699. package/esm2022/src/app/core/auth/reset-password.modal.mjs +0 -89
  700. package/esm2022/src/app/core/core.module.mjs +0 -151
  701. package/esm2022/src/app/core/core.testing.module.mjs +0 -107
  702. package/esm2022/src/app/core/form/array/form-array.mjs +0 -328
  703. package/esm2022/src/app/core/form/array/testing/form-array-test.module.mjs +0 -23
  704. package/esm2022/src/app/core/form/array/testing/form-array.test.mjs +0 -94
  705. package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +0 -108
  706. package/esm2022/src/app/core/form/buttons/form-buttons-bar.module.mjs +0 -31
  707. package/esm2022/src/app/core/form/entity/editor.class.mjs +0 -268
  708. package/esm2022/src/app/core/form/entity/entity-editor-modal.class.mjs +0 -420
  709. package/esm2022/src/app/core/form/entity/entity-editor.class.mjs +0 -741
  710. package/esm2022/src/app/core/form/entity/entity-metadata.component.mjs +0 -24
  711. package/esm2022/src/app/core/form/entity/entity.module.mjs +0 -32
  712. package/esm2022/src/app/core/form/entity/tab-editor.class.mjs +0 -190
  713. package/esm2022/src/app/core/form/form-container.class.mjs +0 -341
  714. package/esm2022/src/app/core/form/form.class.mjs +0 -337
  715. package/esm2022/src/app/core/form/form.module.mjs +0 -70
  716. package/esm2022/src/app/core/form/form.utils.mjs +0 -232
  717. package/esm2022/src/app/core/form/list/list.form.mjs +0 -235
  718. package/esm2022/src/app/core/form/list/list.module.mjs +0 -31
  719. package/esm2022/src/app/core/form/properties/properties.form.mjs +0 -317
  720. package/esm2022/src/app/core/form/properties/properties.module.mjs +0 -37
  721. package/esm2022/src/app/core/form/properties/properties.table.mjs +0 -264
  722. package/esm2022/src/app/core/form/properties/properties.utils.mjs +0 -304
  723. package/esm2022/src/app/core/form/properties/property.validator.mjs +0 -70
  724. package/esm2022/src/app/core/form/properties/testing/properties-form.test.mjs +0 -104
  725. package/esm2022/src/app/core/form/properties/testing/properties-form.testing.module.mjs +0 -23
  726. package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.mjs +0 -73
  727. package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +0 -30
  728. package/esm2022/src/app/core/form/text-popover/text-popover.component.mjs +0 -161
  729. package/esm2022/src/app/core/form/text-popover/text-popover.module.mjs +0 -31
  730. package/esm2022/src/app/core/form/username/username.form.mjs +0 -55
  731. package/esm2022/src/app/core/form/username/username.module.mjs +0 -20
  732. package/esm2022/src/app/core/graphql/graphql.module.mjs +0 -14
  733. package/esm2022/src/app/core/graphql/graphql.service.mjs +0 -781
  734. package/esm2022/src/app/core/graphql/graphql.utils.mjs +0 -119
  735. package/esm2022/src/app/core/home/home.mjs +0 -382
  736. package/esm2022/src/app/core/home/home.module.mjs +0 -46
  737. package/esm2022/src/app/core/icon/icon.component.mjs +0 -40
  738. package/esm2022/src/app/core/icon/icon.module.mjs +0 -20
  739. package/esm2022/src/app/core/install/install-upgrade-card.component.mjs +0 -394
  740. package/esm2022/src/app/core/install/install-upgrade-card.module.mjs +0 -31
  741. package/esm2022/src/app/core/menu/menu.component.mjs +0 -258
  742. package/esm2022/src/app/core/menu/menu.model.mjs +0 -272
  743. package/esm2022/src/app/core/menu/menu.module.mjs +0 -47
  744. package/esm2022/src/app/core/menu/menu.service.mjs +0 -666
  745. package/esm2022/src/app/core/menu/sub-menu-tab.directive.mjs +0 -109
  746. package/esm2022/src/app/core/menu/testing/menu-other.testing.mjs +0 -50
  747. package/esm2022/src/app/core/menu/testing/menu.testing.mjs +0 -158
  748. package/esm2022/src/app/core/menu/testing/menu.testing.module.mjs +0 -60
  749. package/esm2022/src/app/core/offline/update-offline-mode-card.component.mjs +0 -28
  750. package/esm2022/src/app/core/offline/update-offline-mode-card.module.mjs +0 -31
  751. package/esm2022/src/app/core/peer/select-peer.modal.mjs +0 -344
  752. package/esm2022/src/app/core/peer/select-peer.module.mjs +0 -36
  753. package/esm2022/src/app/core/register/register-confirm.page.mjs +0 -90
  754. package/esm2022/src/app/core/register/register.form.mjs +0 -194
  755. package/esm2022/src/app/core/register/register.modal.mjs +0 -55
  756. package/esm2022/src/app/core/register/register.module.mjs +0 -23
  757. package/esm2022/src/app/core/services/account.service.mjs +0 -1358
  758. package/esm2022/src/app/core/services/auth-guard.service.mjs +0 -74
  759. package/esm2022/src/app/core/services/base-entity-service.class.mjs +0 -485
  760. package/esm2022/src/app/core/services/base-graphql-service.class.mjs +0 -230
  761. package/esm2022/src/app/core/services/base58.mjs +0 -83
  762. package/esm2022/src/app/core/services/config/core.config.mjs +0 -258
  763. package/esm2022/src/app/core/services/config.service.mjs +0 -384
  764. package/esm2022/src/app/core/services/crypto.service.mjs +0 -107
  765. package/esm2022/src/app/core/services/errors.mjs +0 -54
  766. package/esm2022/src/app/core/services/local-settings.service.mjs +0 -516
  767. package/esm2022/src/app/core/services/model/account.model.mjs +0 -178
  768. package/esm2022/src/app/core/services/model/config.model.mjs +0 -107
  769. package/esm2022/src/app/core/services/model/department.model.mjs +0 -35
  770. package/esm2022/src/app/core/services/model/entity.decorators.mjs +0 -97
  771. package/esm2022/src/app/core/services/model/entity.model.mjs +0 -338
  772. package/esm2022/src/app/core/services/model/filter.model.mjs +0 -93
  773. package/esm2022/src/app/core/services/model/history.model.mjs +0 -2
  774. package/esm2022/src/app/core/services/model/model.enum.mjs +0 -11
  775. package/esm2022/src/app/core/services/model/node-feature.model.mjs +0 -31
  776. package/esm2022/src/app/core/services/model/peer.model.mjs +0 -113
  777. package/esm2022/src/app/core/services/model/person.model.mjs +0 -114
  778. package/esm2022/src/app/core/services/model/referential.model.mjs +0 -205
  779. package/esm2022/src/app/core/services/model/settings.model.mjs +0 -6
  780. package/esm2022/src/app/core/services/model/token.model.mjs +0 -57
  781. package/esm2022/src/app/core/services/model/tree-item-entity.model.mjs +0 -220
  782. package/esm2022/src/app/core/services/network.service.mjs +0 -638
  783. package/esm2022/src/app/core/services/network.types.mjs +0 -2
  784. package/esm2022/src/app/core/services/network.utils.mjs +0 -35
  785. package/esm2022/src/app/core/services/pipes/account.pipes.mjs +0 -38
  786. package/esm2022/src/app/core/services/pipes/department-to-string.pipe.mjs +0 -23
  787. package/esm2022/src/app/core/services/pipes/person-to-string.pipe.mjs +0 -23
  788. package/esm2022/src/app/core/services/pipes/pipes.module.mjs +0 -54
  789. package/esm2022/src/app/core/services/pipes/referential-to-string.pipe.mjs +0 -21
  790. package/esm2022/src/app/core/services/pipes/usage-mode.pipes.mjs +0 -37
  791. package/esm2022/src/app/core/services/platform.service.mjs +0 -627
  792. package/esm2022/src/app/core/services/storage/entities-storage.service.mjs +0 -427
  793. package/esm2022/src/app/core/services/storage/entity-store.class.mjs +0 -450
  794. package/esm2022/src/app/core/services/testing/referential-filter.model.mjs +0 -25
  795. package/esm2022/src/app/core/services/testing/referential.validator.mjs +0 -46
  796. package/esm2022/src/app/core/services/validator/account.validator.mjs +0 -45
  797. package/esm2022/src/app/core/services/validator/base.validator.class.mjs +0 -49
  798. package/esm2022/src/app/core/services/validator/local-settings.validator.mjs +0 -57
  799. package/esm2022/src/app/core/services/validator/user-settings.validator.mjs +0 -27
  800. package/esm2022/src/app/core/services/validator/user-token.validator.mjs +0 -55
  801. package/esm2022/src/app/core/settings/settings.module.mjs +0 -23
  802. package/esm2022/src/app/core/settings/settings.page.mjs +0 -403
  803. package/esm2022/src/app/core/table/async-table.class.mjs +0 -1813
  804. package/esm2022/src/app/core/table/column/actions-column.component.mjs +0 -130
  805. package/esm2022/src/app/core/table/column/nav-actions-column.component.mjs +0 -117
  806. package/esm2022/src/app/core/table/column/row-field.component.mjs +0 -116
  807. package/esm2022/src/app/core/table/entities-async-table-datasource.class.mjs +0 -415
  808. package/esm2022/src/app/core/table/entities-table-datasource.class.mjs +0 -407
  809. package/esm2022/src/app/core/table/memory-table.class.mjs +0 -57
  810. package/esm2022/src/app/core/table/table-select-columns.component.mjs +0 -46
  811. package/esm2022/src/app/core/table/table.class.mjs +0 -1869
  812. package/esm2022/src/app/core/table/table.model.mjs +0 -21
  813. package/esm2022/src/app/core/table/table.module.mjs +0 -51
  814. package/esm2022/src/app/core/table/table.pipes.mjs +0 -77
  815. package/esm2022/src/app/core/table/table.utils.mjs +0 -34
  816. package/esm2022/src/app/core/table/testing/table-validator.service.mjs +0 -32
  817. package/esm2022/src/app/core/table/testing/table.testing.mjs +0 -329
  818. package/esm2022/src/app/core/table/testing/table.testing.module.mjs +0 -25
  819. package/esm2022/src/app/core/table/testing/table2-validator.service.mjs +0 -25
  820. package/esm2022/src/app/core/table/testing/table2.testing.mjs +0 -273
  821. package/esm2022/src/app/shared/alerts.mjs +0 -243
  822. package/esm2022/src/app/shared/audio/audio.mjs +0 -255
  823. package/esm2022/src/app/shared/audio/audio.testing.mjs +0 -32
  824. package/esm2022/src/app/shared/audio/audio.testing.module.mjs +0 -30
  825. package/esm2022/src/app/shared/capacitor/keyboard.mjs +0 -42
  826. package/esm2022/src/app/shared/capacitor/plugins.mjs +0 -9
  827. package/esm2022/src/app/shared/constants.mjs +0 -16
  828. package/esm2022/src/app/shared/dates.mjs +0 -180
  829. package/esm2022/src/app/shared/debug/debug-service.class.mjs +0 -3
  830. package/esm2022/src/app/shared/debug/debug.component.mjs +0 -44
  831. package/esm2022/src/app/shared/debug/debug.module.mjs +0 -23
  832. package/esm2022/src/app/shared/directives/autofocus.directive.mjs +0 -91
  833. package/esm2022/src/app/shared/directives/autoresize.directive.mjs +0 -75
  834. package/esm2022/src/app/shared/directives/autotitle.directive.mjs +0 -30
  835. package/esm2022/src/app/shared/directives/directives.module.mjs +0 -24
  836. package/esm2022/src/app/shared/directives/drag-and-drop.directive.mjs +0 -52
  837. package/esm2022/src/app/shared/directives/ng-var.directive.mjs +0 -33
  838. package/esm2022/src/app/shared/directives/resizable/resizable.component.mjs +0 -62
  839. package/esm2022/src/app/shared/directives/resizable/resizable.directive.mjs +0 -45
  840. package/esm2022/src/app/shared/directives/resizable/resizable.module.mjs +0 -17
  841. package/esm2022/src/app/shared/directives/throttled-click.directive.mjs +0 -43
  842. package/esm2022/src/app/shared/events.mjs +0 -64
  843. package/esm2022/src/app/shared/file/csv.utils.mjs +0 -97
  844. package/esm2022/src/app/shared/file/file.service.mjs +0 -118
  845. package/esm2022/src/app/shared/file/file.utils.mjs +0 -117
  846. package/esm2022/src/app/shared/file/images.utils.mjs +0 -186
  847. package/esm2022/src/app/shared/file/json.utils.mjs +0 -58
  848. package/esm2022/src/app/shared/file/uri.utils.mjs +0 -29
  849. package/esm2022/src/app/shared/file/url.utils.mjs +0 -195
  850. package/esm2022/src/app/shared/focusable.mjs +0 -6
  851. package/esm2022/src/app/shared/form/field.component.mjs +0 -393
  852. package/esm2022/src/app/shared/form/field.model.mjs +0 -82
  853. package/esm2022/src/app/shared/form/loading-spinner.mjs +0 -35
  854. package/esm2022/src/app/shared/forms.mjs +0 -573
  855. package/esm2022/src/app/shared/functions.mjs +0 -672
  856. package/esm2022/src/app/shared/geolocation/geolocation.utils.mjs +0 -86
  857. package/esm2022/src/app/shared/gesture/gesture-config.mjs +0 -46
  858. package/esm2022/src/app/shared/gesture/hammer.utils.mjs +0 -2
  859. package/esm2022/src/app/shared/graph/colors.utils.mjs +0 -60
  860. package/esm2022/src/app/shared/graph/graph-colors.mjs +0 -214
  861. package/esm2022/src/app/shared/guard/component-dirty.guard.mjs +0 -65
  862. package/esm2022/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +0 -23
  863. package/esm2022/src/app/shared/hotkeys/hotkeys.service.mjs +0 -147
  864. package/esm2022/src/app/shared/hotkeys/shared-hotkeys.module.mjs +0 -24
  865. package/esm2022/src/app/shared/http/http.utils.mjs +0 -56
  866. package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +0 -443
  867. package/esm2022/src/app/shared/image/gallery/image-gallery.module.mjs +0 -62
  868. package/esm2022/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +0 -26
  869. package/esm2022/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +0 -87
  870. package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +0 -37
  871. package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +0 -59
  872. package/esm2022/src/app/shared/image/image.model.mjs +0 -2
  873. package/esm2022/src/app/shared/image/image.module.mjs +0 -24
  874. package/esm2022/src/app/shared/image/image.service.mjs +0 -109
  875. package/esm2022/src/app/shared/inputs.mjs +0 -279
  876. package/esm2022/src/app/shared/interceptors/progess.interceptor.mjs +0 -27
  877. package/esm2022/src/app/shared/logging/log-level.model.mjs +0 -48
  878. package/esm2022/src/app/shared/logging/logger.model.mjs +0 -47
  879. package/esm2022/src/app/shared/logging/logging-service.class.mjs +0 -125
  880. package/esm2022/src/app/shared/logging/logging-service.config.mjs +0 -2
  881. package/esm2022/src/app/shared/logging/logging-service.module.mjs +0 -30
  882. package/esm2022/src/app/shared/markdown/markdown.component.mjs +0 -321
  883. package/esm2022/src/app/shared/markdown/markdown.directive.mjs +0 -34
  884. package/esm2022/src/app/shared/markdown/markdown.modal.mjs +0 -99
  885. package/esm2022/src/app/shared/markdown/markdown.module.mjs +0 -87
  886. package/esm2022/src/app/shared/markdown/markdown.service.mjs +0 -204
  887. package/esm2022/src/app/shared/markdown/markdown.utils.mjs +0 -87
  888. package/esm2022/src/app/shared/markdown/testing/markdown.test.mjs +0 -55
  889. package/esm2022/src/app/shared/markdown/testing/markdown.testing.module.mjs +0 -30
  890. package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +0 -46
  891. package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +0 -1313
  892. package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +0 -79
  893. package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.utils.mjs +0 -18
  894. package/esm2022/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +0 -242
  895. package/esm2022/src/app/shared/material/badge/badge.directive.mjs +0 -251
  896. package/esm2022/src/app/shared/material/badge/badge.module.mjs +0 -20
  897. package/esm2022/src/app/shared/material/badge/badge.test.mjs +0 -42
  898. package/esm2022/src/app/shared/material/boolean/boolean.module.mjs +0 -67
  899. package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +0 -371
  900. package/esm2022/src/app/shared/material/boolean/testing/boolean.test.page.mjs +0 -72
  901. package/esm2022/src/app/shared/material/chips/chips.module.mjs +0 -71
  902. package/esm2022/src/app/shared/material/chips/material.chips.mjs +0 -836
  903. package/esm2022/src/app/shared/material/chips/testing/chips.test.mjs +0 -151
  904. package/esm2022/src/app/shared/material/datetime/datetime.module.mjs +0 -76
  905. package/esm2022/src/app/shared/material/datetime/material.date.mjs +0 -471
  906. package/esm2022/src/app/shared/material/datetime/material.dateshort.mjs +0 -457
  907. package/esm2022/src/app/shared/material/datetime/material.datetime.mjs +0 -693
  908. package/esm2022/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +0 -136
  909. package/esm2022/src/app/shared/material/datetime/testing/mat-date.test.mjs +0 -127
  910. package/esm2022/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +0 -118
  911. package/esm2022/src/app/shared/material/duration/duration.module.mjs +0 -61
  912. package/esm2022/src/app/shared/material/duration/duration.utils.mjs +0 -16
  913. package/esm2022/src/app/shared/material/duration/material.duration.mjs +0 -283
  914. package/esm2022/src/app/shared/material/duration/testing/mat-duration.test.mjs +0 -85
  915. package/esm2022/src/app/shared/material/latlong/latlong.utils.mjs +0 -319
  916. package/esm2022/src/app/shared/material/latlong/material.latlong-input.mjs +0 -432
  917. package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +0 -231
  918. package/esm2022/src/app/shared/material/latlong/material.latlong.module.mjs +0 -68
  919. package/esm2022/src/app/shared/material/latlong/testing/latlong.test.mjs +0 -137
  920. package/esm2022/src/app/shared/material/material.animations.mjs +0 -200
  921. package/esm2022/src/app/shared/material/material.config.mjs +0 -3
  922. package/esm2022/src/app/shared/material/material.module.mjs +0 -229
  923. package/esm2022/src/app/shared/material/material.testing.module.mjs +0 -245
  924. package/esm2022/src/app/shared/material/paginator/material.paginator-i18n.mjs +0 -51
  925. package/esm2022/src/app/shared/material/stepper/material.stepper-i18n.mjs +0 -23
  926. package/esm2022/src/app/shared/material/swipe/material.swipe.mjs +0 -379
  927. package/esm2022/src/app/shared/material/swipe/swipe.module.mjs +0 -52
  928. package/esm2022/src/app/shared/material/swipe/testing/swipe.test.mjs +0 -67
  929. package/esm2022/src/app/shared/material/test/test-component.mjs +0 -264
  930. package/esm2022/src/app/shared/material/testing/common.test.mjs +0 -111
  931. package/esm2022/src/app/shared/material/text/testing/text-form.testing.mjs +0 -42
  932. package/esm2022/src/app/shared/material/text/text-form.component.mjs +0 -205
  933. package/esm2022/src/app/shared/material/text/text-form.module.mjs +0 -63
  934. package/esm2022/src/app/shared/modules.mjs +0 -12
  935. package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +0 -303
  936. package/esm2022/src/app/shared/named-filter/named-filter.model.mjs +0 -49
  937. package/esm2022/src/app/shared/named-filter/named-filter.module.mjs +0 -24
  938. package/esm2022/src/app/shared/named-filter/named-filter.service.mjs +0 -69
  939. package/esm2022/src/app/shared/named-filter/testing/named-filter-selector.testing.mjs +0 -74
  940. package/esm2022/src/app/shared/named-filter/testing/named-filter.testing.module.mjs +0 -28
  941. package/esm2022/src/app/shared/observables.mjs +0 -100
  942. package/esm2022/src/app/shared/pipes/arrays.pipe.mjs +0 -217
  943. package/esm2022/src/app/shared/pipes/badge.pipes.mjs +0 -24
  944. package/esm2022/src/app/shared/pipes/colors.pipe.mjs +0 -29
  945. package/esm2022/src/app/shared/pipes/date-diff-duration.pipe.mjs +0 -50
  946. package/esm2022/src/app/shared/pipes/date-format.pipe.mjs +0 -72
  947. package/esm2022/src/app/shared/pipes/date-from-now.pipe.mjs +0 -28
  948. package/esm2022/src/app/shared/pipes/dates.pipe.mjs +0 -18
  949. package/esm2022/src/app/shared/pipes/display-with.pipe.mjs +0 -23
  950. package/esm2022/src/app/shared/pipes/duration.pipe.mjs +0 -34
  951. package/esm2022/src/app/shared/pipes/file-size.pipe.mjs +0 -53
  952. package/esm2022/src/app/shared/pipes/form.pipes.mjs +0 -219
  953. package/esm2022/src/app/shared/pipes/highlight.pipe.mjs +0 -50
  954. package/esm2022/src/app/shared/pipes/html.pipes.mjs +0 -69
  955. package/esm2022/src/app/shared/pipes/latlong-format.pipe.mjs +0 -42
  956. package/esm2022/src/app/shared/pipes/maps.pipe.mjs +0 -65
  957. package/esm2022/src/app/shared/pipes/maskito.pipe.mjs +0 -67
  958. package/esm2022/src/app/shared/pipes/math.pipes.mjs +0 -77
  959. package/esm2022/src/app/shared/pipes/ng-init.pipe.mjs +0 -19
  960. package/esm2022/src/app/shared/pipes/number-format.pipe.mjs +0 -17
  961. package/esm2022/src/app/shared/pipes/observable.pipes.mjs +0 -63
  962. package/esm2022/src/app/shared/pipes/pipes.module.mjs +0 -285
  963. package/esm2022/src/app/shared/pipes/property.pipes.mjs +0 -135
  964. package/esm2022/src/app/shared/pipes/selection.pipes.mjs +0 -179
  965. package/esm2022/src/app/shared/pipes/string.pipes.mjs +0 -183
  966. package/esm2022/src/app/shared/pipes/translate-context.pipe.mjs +0 -44
  967. package/esm2022/src/app/shared/pipes/types.pipes.mjs +0 -74
  968. package/esm2022/src/app/shared/pipes/url.pipes.mjs +0 -35
  969. package/esm2022/src/app/shared/platforms.mjs +0 -81
  970. package/esm2022/src/app/shared/print/print.service.mjs +0 -305
  971. package/esm2022/src/app/shared/regexps.mjs +0 -96
  972. package/esm2022/src/app/shared/rx-state/rx-state.decorators.mjs +0 -217
  973. package/esm2022/src/app/shared/rx-state/rx-state.module.mjs +0 -19
  974. package/esm2022/src/app/shared/rx-state/rx-state.types.mjs +0 -2
  975. package/esm2022/src/app/shared/services/entity-service.class.mjs +0 -10
  976. package/esm2022/src/app/shared/services/job.utils.mjs +0 -92
  977. package/esm2022/src/app/shared/services/memory-entity-service.class.mjs +0 -353
  978. package/esm2022/src/app/shared/services/progress-bar.service.mjs +0 -31
  979. package/esm2022/src/app/shared/services/startable-observable-service.class.mjs +0 -118
  980. package/esm2022/src/app/shared/services/startable-service.class.mjs +0 -107
  981. package/esm2022/src/app/shared/services/translate-context.service.mjs +0 -107
  982. package/esm2022/src/app/shared/services/validator-service.class.mjs +0 -2
  983. package/esm2022/src/app/shared/services.mjs +0 -85
  984. package/esm2022/src/app/shared/shared-routing.module.mjs +0 -72
  985. package/esm2022/src/app/shared/shared.module.mjs +0 -229
  986. package/esm2022/src/app/shared/shared.testing.module.mjs +0 -108
  987. package/esm2022/src/app/shared/storage/storage-explorer.component.mjs +0 -279
  988. package/esm2022/src/app/shared/storage/storage-explorer.module.mjs +0 -42
  989. package/esm2022/src/app/shared/storage/storage-explorer.testing-routing.module.mjs +0 -27
  990. package/esm2022/src/app/shared/storage/storage-explorer.testing.module.mjs +0 -25
  991. package/esm2022/src/app/shared/storage/storage.service.mjs +0 -134
  992. package/esm2022/src/app/shared/storage/storage.utils.mjs +0 -13
  993. package/esm2022/src/app/shared/testing/maskito.test.mjs +0 -41
  994. package/esm2022/src/app/shared/testing/observable.test.mjs +0 -94
  995. package/esm2022/src/app/shared/testing/tests.page.mjs +0 -37
  996. package/esm2022/src/app/shared/toast/toast.testing.mjs +0 -54
  997. package/esm2022/src/app/shared/toast/toast.testing.module.mjs +0 -31
  998. package/esm2022/src/app/shared/toast/toasts.mjs +0 -134
  999. package/esm2022/src/app/shared/toolbar/modal-toolbar.mjs +0 -62
  1000. package/esm2022/src/app/shared/toolbar/toolbar.mjs +0 -267
  1001. package/esm2022/src/app/shared/toolbar/toolbar.module.mjs +0 -26
  1002. package/esm2022/src/app/shared/types.mjs +0 -2
  1003. package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.mjs +0 -59
  1004. package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +0 -30
  1005. package/esm2022/src/app/shared/upload-file/upload-file-popover.component.mjs +0 -109
  1006. package/esm2022/src/app/shared/upload-file/upload-file.component.mjs +0 -216
  1007. package/esm2022/src/app/shared/upload-file/upload-file.model.mjs +0 -26
  1008. package/esm2022/src/app/shared/validator/form-error-adapter.class.mjs +0 -115
  1009. package/esm2022/src/app/shared/validator/validators.mjs +0 -621
  1010. package/esm2022/src/app/shared/version/versions.mjs +0 -81
  1011. package/esm2022/src/app/social/job/job.module.mjs +0 -23
  1012. package/esm2022/src/app/social/job/progression/job-progression.component.mjs +0 -35
  1013. package/esm2022/src/app/social/job/progression/job-progression.icon.mjs +0 -235
  1014. package/esm2022/src/app/social/job/progression/job-progression.list.mjs +0 -47
  1015. package/esm2022/src/app/social/job/progression/job-progression.model.mjs +0 -29
  1016. package/esm2022/src/app/social/job/progression/job-progression.service.mjs +0 -91
  1017. package/esm2022/src/app/social/job/testing/job-progression.testing.mjs +0 -38
  1018. package/esm2022/src/app/social/job/testing/job-progression.testing.service.mjs +0 -34
  1019. package/esm2022/src/app/social/job/testing/job.testing.module.mjs +0 -22
  1020. package/esm2022/src/app/social/message/message.form.mjs +0 -141
  1021. package/esm2022/src/app/social/message/message.modal.mjs +0 -110
  1022. package/esm2022/src/app/social/message/message.model.mjs +0 -75
  1023. package/esm2022/src/app/social/message/message.module.mjs +0 -22
  1024. package/esm2022/src/app/social/message/message.service.mjs +0 -110
  1025. package/esm2022/src/app/social/social.errors.mjs +0 -10
  1026. package/esm2022/src/app/social/social.module.mjs +0 -22
  1027. package/esm2022/src/app/social/social.testing.module.mjs +0 -40
  1028. package/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +0 -127
  1029. package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +0 -260
  1030. package/esm2022/src/app/social/user-event/testing/user-event.testing.mjs +0 -257
  1031. package/esm2022/src/app/social/user-event/testing/user-event.testing.model.mjs +0 -129
  1032. package/esm2022/src/app/social/user-event/testing/user-event.testing.module.mjs +0 -22
  1033. package/esm2022/src/app/social/user-event/testing/user-event.testing.service.mjs +0 -128
  1034. package/esm2022/src/app/social/user-event/user-event.model.mjs +0 -2
  1035. package/esm2022/src/app/social/user-event/user-event.module.mjs +0 -23
  1036. package/esm2022/src/app/social/user-event/user-event.service.mjs +0 -512
  1037. package/esm2022/src/environments/environment.class.mjs +0 -65
  1038. package/esm2022/src/environments/environment.loader.mjs +0 -77
  1039. package/esm2022/src/environments/environment.mjs +0 -109
  1040. package/esm2022/sumaris-net.ngx-components.mjs +0 -5
  1041. package/fesm2022/sumaris-net.ngx-components.mjs +0 -48900
  1042. package/fesm2022/sumaris-net.ngx-components.mjs.map +0 -1
  1043. package/index.d.ts +0 -5
  1044. package/public_api.d.ts +0 -344
  1045. package/src/app/admin/admin-routing.module.d.ts +0 -9
  1046. package/src/app/admin/admin.module.d.ts +0 -10
  1047. package/src/app/admin/services/filter/person.filter.d.ts +0 -22
  1048. package/src/app/admin/services/person.service.d.ts +0 -37
  1049. package/src/app/admin/services/validator/person.validator.d.ts +0 -23
  1050. package/src/app/admin/users/users.d.ts +0 -61
  1051. package/src/app/admin/users/users.module.d.ts +0 -14
  1052. package/src/app/core/about/about.modal.d.ts +0 -32
  1053. package/src/app/core/about/about.module.d.ts +0 -11
  1054. package/src/app/core/account/account.module.d.ts +0 -18
  1055. package/src/app/core/account/account.page.d.ts +0 -83
  1056. package/src/app/core/account/new-token.form.d.ts +0 -29
  1057. package/src/app/core/account/new-token.modal.d.ts +0 -29
  1058. package/src/app/core/account/password/change-password.form.d.ts +0 -19
  1059. package/src/app/core/account/password/change-password.module.d.ts +0 -11
  1060. package/src/app/core/account/password/change-password.page.d.ts +0 -36
  1061. package/src/app/core/account/token.table.d.ts +0 -27
  1062. package/src/app/core/auth/auth.form.d.ts +0 -38
  1063. package/src/app/core/auth/auth.modal.d.ts +0 -24
  1064. package/src/app/core/auth/auth.module.d.ts +0 -13
  1065. package/src/app/core/auth/reset-password.modal.d.ts +0 -29
  1066. package/src/app/core/core.module.d.ts +0 -28
  1067. package/src/app/core/core.testing.module.d.ts +0 -15
  1068. package/src/app/core/form/array/form-array.d.ts +0 -137
  1069. package/src/app/core/form/array/testing/form-array-test.module.d.ts +0 -12
  1070. package/src/app/core/form/array/testing/form-array.test.d.ts +0 -26
  1071. package/src/app/core/form/buttons/form-buttons-bar.component.d.ts +0 -37
  1072. package/src/app/core/form/buttons/form-buttons-bar.module.d.ts +0 -9
  1073. package/src/app/core/form/entity/editor.class.d.ts +0 -84
  1074. package/src/app/core/form/entity/entity-editor-modal.class.d.ts +0 -126
  1075. package/src/app/core/form/entity/entity-editor.class.d.ts +0 -204
  1076. package/src/app/core/form/entity/entity-metadata.component.d.ts +0 -13
  1077. package/src/app/core/form/entity/entity.module.d.ts +0 -10
  1078. package/src/app/core/form/entity/tab-editor.class.d.ts +0 -66
  1079. package/src/app/core/form/form-container.class.d.ts +0 -127
  1080. package/src/app/core/form/form.class.d.ts +0 -144
  1081. package/src/app/core/form/form.module.d.ts +0 -14
  1082. package/src/app/core/form/form.utils.d.ts +0 -287
  1083. package/src/app/core/form/list/list.form.d.ts +0 -81
  1084. package/src/app/core/form/list/list.module.d.ts +0 -9
  1085. package/src/app/core/form/properties/properties.form.d.ts +0 -92
  1086. package/src/app/core/form/properties/properties.module.d.ts +0 -11
  1087. package/src/app/core/form/properties/properties.table.d.ts +0 -72
  1088. package/src/app/core/form/properties/properties.utils.d.ts +0 -59
  1089. package/src/app/core/form/properties/property.validator.d.ts +0 -27
  1090. package/src/app/core/form/properties/testing/properties-form.test.d.ts +0 -22
  1091. package/src/app/core/form/properties/testing/properties-form.testing.module.d.ts +0 -12
  1092. package/src/app/core/form/text-popover/testing/text-popover.testing.d.ts +0 -16
  1093. package/src/app/core/form/text-popover/testing/text-popover.testing.module.d.ts +0 -11
  1094. package/src/app/core/form/text-popover/text-popover.component.d.ts +0 -80
  1095. package/src/app/core/form/text-popover/text-popover.module.d.ts +0 -9
  1096. package/src/app/core/form/username/username.form.d.ts +0 -19
  1097. package/src/app/core/form/username/username.module.d.ts +0 -9
  1098. package/src/app/core/graphql/graphql.module.d.ts +0 -7
  1099. package/src/app/core/graphql/graphql.service.d.ts +0 -142
  1100. package/src/app/core/graphql/graphql.utils.d.ts +0 -47
  1101. package/src/app/core/home/home.d.ts +0 -109
  1102. package/src/app/core/home/home.module.d.ts +0 -14
  1103. package/src/app/core/icon/icon.component.d.ts +0 -13
  1104. package/src/app/core/icon/icon.module.d.ts +0 -9
  1105. package/src/app/core/install/install-upgrade-card.component.d.ts +0 -63
  1106. package/src/app/core/install/install-upgrade-card.module.d.ts +0 -9
  1107. package/src/app/core/menu/menu.component.d.ts +0 -66
  1108. package/src/app/core/menu/menu.model.d.ts +0 -144
  1109. package/src/app/core/menu/menu.module.d.ts +0 -12
  1110. package/src/app/core/menu/menu.service.d.ts +0 -93
  1111. package/src/app/core/menu/sub-menu-tab.directive.d.ts +0 -29
  1112. package/src/app/core/menu/testing/menu-other.testing.d.ts +0 -15
  1113. package/src/app/core/menu/testing/menu.testing.d.ts +0 -51
  1114. package/src/app/core/menu/testing/menu.testing.module.d.ts +0 -12
  1115. package/src/app/core/offline/update-offline-mode-card.component.d.ts +0 -11
  1116. package/src/app/core/offline/update-offline-mode-card.module.d.ts +0 -9
  1117. package/src/app/core/peer/select-peer.modal.d.ts +0 -101
  1118. package/src/app/core/peer/select-peer.module.d.ts +0 -12
  1119. package/src/app/core/register/register-confirm.page.d.ts +0 -24
  1120. package/src/app/core/register/register.form.d.ts +0 -49
  1121. package/src/app/core/register/register.modal.d.ts +0 -14
  1122. package/src/app/core/register/register.module.d.ts +0 -12
  1123. package/src/app/core/services/account.service.d.ts +0 -207
  1124. package/src/app/core/services/auth-guard.service.d.ts +0 -17
  1125. package/src/app/core/services/base-entity-service.class.d.ts +0 -135
  1126. package/src/app/core/services/base-graphql-service.class.d.ts +0 -77
  1127. package/src/app/core/services/base58.d.ts +0 -7
  1128. package/src/app/core/services/config/core.config.d.ts +0 -46
  1129. package/src/app/core/services/config.service.d.ts +0 -63
  1130. package/src/app/core/services/crypto.service.d.ts +0 -44
  1131. package/src/app/core/services/errors.d.ts +0 -65
  1132. package/src/app/core/services/local-settings.service.d.ts +0 -99
  1133. package/src/app/core/services/model/account.model.d.ts +0 -56
  1134. package/src/app/core/services/model/config.model.d.ts +0 -36
  1135. package/src/app/core/services/model/department.model.d.ts +0 -11
  1136. package/src/app/core/services/model/entity.decorators.d.ts +0 -17
  1137. package/src/app/core/services/model/entity.model.d.ts +0 -133
  1138. package/src/app/core/services/model/filter.model.d.ts +0 -37
  1139. package/src/app/core/services/model/history.model.d.ts +0 -20
  1140. package/src/app/core/services/model/model.enum.d.ts +0 -7
  1141. package/src/app/core/services/model/node-feature.model.d.ts +0 -14
  1142. package/src/app/core/services/model/peer.model.d.ts +0 -35
  1143. package/src/app/core/services/model/person.model.d.ts +0 -37
  1144. package/src/app/core/services/model/referential.model.d.ts +0 -84
  1145. package/src/app/core/services/model/settings.model.d.ts +0 -29
  1146. package/src/app/core/services/model/token.model.d.ts +0 -22
  1147. package/src/app/core/services/model/tree-item-entity.model.d.ts +0 -61
  1148. package/src/app/core/services/network.service.d.ts +0 -159
  1149. package/src/app/core/services/network.types.d.ts +0 -4
  1150. package/src/app/core/services/network.utils.d.ts +0 -38
  1151. package/src/app/core/services/pipes/account.pipes.d.ts +0 -15
  1152. package/src/app/core/services/pipes/department-to-string.pipe.d.ts +0 -9
  1153. package/src/app/core/services/pipes/person-to-string.pipe.d.ts +0 -11
  1154. package/src/app/core/services/pipes/pipes.module.d.ts +0 -11
  1155. package/src/app/core/services/pipes/referential-to-string.pipe.d.ts +0 -13
  1156. package/src/app/core/services/pipes/usage-mode.pipes.d.ts +0 -15
  1157. package/src/app/core/services/platform.service.d.ts +0 -110
  1158. package/src/app/core/services/storage/entities-storage.service.d.ts +0 -108
  1159. package/src/app/core/services/storage/entity-store.class.d.ts +0 -113
  1160. package/src/app/core/services/testing/referential-filter.model.d.ts +0 -9
  1161. package/src/app/core/services/testing/referential.validator.d.ts +0 -22
  1162. package/src/app/core/services/validator/account.validator.d.ts +0 -24
  1163. package/src/app/core/services/validator/base.validator.class.d.ts +0 -21
  1164. package/src/app/core/services/validator/local-settings.validator.d.ts +0 -18
  1165. package/src/app/core/services/validator/user-settings.validator.d.ts +0 -10
  1166. package/src/app/core/services/validator/user-token.validator.d.ts +0 -13
  1167. package/src/app/core/settings/settings.module.d.ts +0 -12
  1168. package/src/app/core/settings/settings.page.d.ts +0 -88
  1169. package/src/app/core/table/async-table.class.d.ts +0 -395
  1170. package/src/app/core/table/column/actions-column.component.d.ts +0 -62
  1171. package/src/app/core/table/column/nav-actions-column.component.d.ts +0 -46
  1172. package/src/app/core/table/column/row-field.component.d.ts +0 -40
  1173. package/src/app/core/table/entities-async-table-datasource.class.d.ts +0 -103
  1174. package/src/app/core/table/entities-table-datasource.class.d.ts +0 -102
  1175. package/src/app/core/table/memory-table.class.d.ts +0 -25
  1176. package/src/app/core/table/table-select-columns.component.d.ts +0 -22
  1177. package/src/app/core/table/table.class.d.ts +0 -400
  1178. package/src/app/core/table/table.model.d.ts +0 -31
  1179. package/src/app/core/table/table.module.d.ts +0 -14
  1180. package/src/app/core/table/table.pipes.d.ts +0 -29
  1181. package/src/app/core/table/table.utils.d.ts +0 -13
  1182. package/src/app/core/table/testing/table-validator.service.d.ts +0 -17
  1183. package/src/app/core/table/testing/table.testing.d.ts +0 -54
  1184. package/src/app/core/table/testing/table.testing.module.d.ts +0 -14
  1185. package/src/app/core/table/testing/table2-validator.service.d.ts +0 -15
  1186. package/src/app/core/table/testing/table2.testing.d.ts +0 -48
  1187. package/src/app/shared/alerts.d.ts +0 -55
  1188. package/src/app/shared/audio/audio.d.ts +0 -45
  1189. package/src/app/shared/audio/audio.testing.d.ts +0 -13
  1190. package/src/app/shared/audio/audio.testing.module.d.ts +0 -11
  1191. package/src/app/shared/capacitor/keyboard.d.ts +0 -16
  1192. package/src/app/shared/capacitor/plugins.d.ts +0 -7
  1193. package/src/app/shared/constants.d.ts +0 -13
  1194. package/src/app/shared/dates.d.ts +0 -61
  1195. package/src/app/shared/debug/debug-service.class.d.ts +0 -5
  1196. package/src/app/shared/debug/debug.component.d.ts +0 -14
  1197. package/src/app/shared/debug/debug.module.d.ts +0 -12
  1198. package/src/app/shared/directives/autofocus.directive.d.ts +0 -18
  1199. package/src/app/shared/directives/autoresize.directive.d.ts +0 -20
  1200. package/src/app/shared/directives/autotitle.directive.d.ts +0 -11
  1201. package/src/app/shared/directives/directives.module.d.ts +0 -14
  1202. package/src/app/shared/directives/drag-and-drop.directive.d.ts +0 -17
  1203. package/src/app/shared/directives/ng-var.directive.d.ts +0 -12
  1204. package/src/app/shared/directives/resizable/resizable.component.d.ts +0 -21
  1205. package/src/app/shared/directives/resizable/resizable.directive.d.ts +0 -12
  1206. package/src/app/shared/directives/resizable/resizable.module.d.ts +0 -8
  1207. package/src/app/shared/directives/throttled-click.directive.d.ts +0 -16
  1208. package/src/app/shared/events.d.ts +0 -29
  1209. package/src/app/shared/file/csv.utils.d.ts +0 -30
  1210. package/src/app/shared/file/file.service.d.ts +0 -23
  1211. package/src/app/shared/file/file.utils.d.ts +0 -20
  1212. package/src/app/shared/file/images.utils.d.ts +0 -36
  1213. package/src/app/shared/file/json.utils.d.ts +0 -19
  1214. package/src/app/shared/file/uri.utils.d.ts +0 -8
  1215. package/src/app/shared/file/url.utils.d.ts +0 -99
  1216. package/src/app/shared/focusable.d.ts +0 -4
  1217. package/src/app/shared/form/field.component.d.ts +0 -85
  1218. package/src/app/shared/form/field.model.d.ts +0 -82
  1219. package/src/app/shared/form/loading-spinner.d.ts +0 -8
  1220. package/src/app/shared/forms.d.ts +0 -162
  1221. package/src/app/shared/functions.d.ts +0 -206
  1222. package/src/app/shared/geolocation/geolocation.utils.d.ts +0 -19
  1223. package/src/app/shared/gesture/gesture-config.d.ts +0 -15
  1224. package/src/app/shared/gesture/hammer.utils.d.ts +0 -16
  1225. package/src/app/shared/graph/colors.utils.d.ts +0 -17
  1226. package/src/app/shared/graph/graph-colors.d.ts +0 -63
  1227. package/src/app/shared/guard/component-dirty.guard.d.ts +0 -14
  1228. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.d.ts +0 -8
  1229. package/src/app/shared/hotkeys/hotkeys.service.d.ts +0 -48
  1230. package/src/app/shared/hotkeys/shared-hotkeys.module.d.ts +0 -11
  1231. package/src/app/shared/http/http.utils.d.ts +0 -28
  1232. package/src/app/shared/image/gallery/image-gallery.component.d.ts +0 -137
  1233. package/src/app/shared/image/gallery/image-gallery.module.d.ts +0 -15
  1234. package/src/app/shared/image/gallery/testing/gallegry.model.testing.d.ts +0 -12
  1235. package/src/app/shared/image/gallery/testing/gallery.service.testing.d.ts +0 -33
  1236. package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +0 -16
  1237. package/src/app/shared/image/gallery/testing/gallery.testing.module.d.ts +0 -13
  1238. package/src/app/shared/image/image.model.d.ts +0 -7
  1239. package/src/app/shared/image/image.module.d.ts +0 -8
  1240. package/src/app/shared/image/image.service.d.ts +0 -36
  1241. package/src/app/shared/inputs.d.ts +0 -36
  1242. package/src/app/shared/interceptors/progess.interceptor.d.ts +0 -8
  1243. package/src/app/shared/logging/log-level.model.d.ts +0 -38
  1244. package/src/app/shared/logging/logger.model.d.ts +0 -68
  1245. package/src/app/shared/logging/logging-service.class.d.ts +0 -39
  1246. package/src/app/shared/logging/logging-service.config.d.ts +0 -25
  1247. package/src/app/shared/logging/logging-service.module.d.ts +0 -9
  1248. package/src/app/shared/markdown/markdown.component.d.ts +0 -86
  1249. package/src/app/shared/markdown/markdown.directive.d.ts +0 -13
  1250. package/src/app/shared/markdown/markdown.modal.d.ts +0 -49
  1251. package/src/app/shared/markdown/markdown.module.d.ts +0 -17
  1252. package/src/app/shared/markdown/markdown.service.d.ts +0 -37
  1253. package/src/app/shared/markdown/markdown.utils.d.ts +0 -26
  1254. package/src/app/shared/markdown/testing/markdown.test.d.ts +0 -18
  1255. package/src/app/shared/markdown/testing/markdown.testing.module.d.ts +0 -12
  1256. package/src/app/shared/material/autocomplete/material.autocomplete.config.d.ts +0 -74
  1257. package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +0 -211
  1258. package/src/app/shared/material/autocomplete/material.autocomplete.module.d.ts +0 -22
  1259. package/src/app/shared/material/autocomplete/material.autocomplete.utils.d.ts +0 -5
  1260. package/src/app/shared/material/autocomplete/testing/autocomplete.test.d.ts +0 -48
  1261. package/src/app/shared/material/badge/badge.directive.d.ts +0 -43
  1262. package/src/app/shared/material/badge/badge.module.d.ts +0 -10
  1263. package/src/app/shared/material/badge/badge.test.d.ts +0 -21
  1264. package/src/app/shared/material/boolean/boolean.module.d.ts +0 -20
  1265. package/src/app/shared/material/boolean/material.boolean.d.ts +0 -93
  1266. package/src/app/shared/material/boolean/testing/boolean.test.page.d.ts +0 -26
  1267. package/src/app/shared/material/chips/chips.module.d.ts +0 -21
  1268. package/src/app/shared/material/chips/material.chips.d.ts +0 -164
  1269. package/src/app/shared/material/chips/testing/chips.test.d.ts +0 -32
  1270. package/src/app/shared/material/datetime/datetime.module.d.ts +0 -24
  1271. package/src/app/shared/material/datetime/material.date.d.ts +0 -90
  1272. package/src/app/shared/material/datetime/material.dateshort.d.ts +0 -89
  1273. package/src/app/shared/material/datetime/material.datetime.d.ts +0 -116
  1274. package/src/app/shared/material/datetime/testing/mat-date-time.test.d.ts +0 -37
  1275. package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +0 -32
  1276. package/src/app/shared/material/datetime/testing/mat-dateshort.test.d.ts +0 -31
  1277. package/src/app/shared/material/duration/duration.module.d.ts +0 -18
  1278. package/src/app/shared/material/duration/duration.utils.d.ts +0 -2
  1279. package/src/app/shared/material/duration/material.duration.d.ts +0 -64
  1280. package/src/app/shared/material/duration/testing/mat-duration.test.d.ts +0 -23
  1281. package/src/app/shared/material/latlong/latlong.utils.d.ts +0 -59
  1282. package/src/app/shared/material/latlong/material.latlong-input.d.ts +0 -85
  1283. package/src/app/shared/material/latlong/material.latlong.d.ts +0 -90
  1284. package/src/app/shared/material/latlong/material.latlong.module.d.ts +0 -21
  1285. package/src/app/shared/material/latlong/testing/latlong.test.d.ts +0 -28
  1286. package/src/app/shared/material/material.animations.d.ts +0 -8
  1287. package/src/app/shared/material/material.config.d.ts +0 -3
  1288. package/src/app/shared/material/material.module.d.ts +0 -45
  1289. package/src/app/shared/material/material.testing.module.d.ts +0 -32
  1290. package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +0 -12
  1291. package/src/app/shared/material/stepper/material.stepper-i18n.d.ts +0 -10
  1292. package/src/app/shared/material/swipe/material.swipe.d.ts +0 -89
  1293. package/src/app/shared/material/swipe/swipe.module.d.ts +0 -16
  1294. package/src/app/shared/material/swipe/testing/swipe.test.d.ts +0 -22
  1295. package/src/app/shared/material/test/test-component.d.ts +0 -75
  1296. package/src/app/shared/material/testing/common.test.d.ts +0 -25
  1297. package/src/app/shared/material/text/testing/text-form.testing.d.ts +0 -19
  1298. package/src/app/shared/material/text/text-form.component.d.ts +0 -66
  1299. package/src/app/shared/material/text/text-form.module.d.ts +0 -16
  1300. package/src/app/shared/modules.d.ts +0 -9
  1301. package/src/app/shared/named-filter/named-filter-selector.component.d.ts +0 -62
  1302. package/src/app/shared/named-filter/named-filter.model.d.ts +0 -32
  1303. package/src/app/shared/named-filter/named-filter.module.d.ts +0 -13
  1304. package/src/app/shared/named-filter/named-filter.service.d.ts +0 -32
  1305. package/src/app/shared/named-filter/testing/named-filter-selector.testing.d.ts +0 -34
  1306. package/src/app/shared/named-filter/testing/named-filter.testing.module.d.ts +0 -10
  1307. package/src/app/shared/observables.d.ts +0 -30
  1308. package/src/app/shared/pipes/arrays.pipe.d.ts +0 -82
  1309. package/src/app/shared/pipes/badge.pipes.d.ts +0 -7
  1310. package/src/app/shared/pipes/colors.pipe.d.ts +0 -9
  1311. package/src/app/shared/pipes/date-diff-duration.pipe.d.ts +0 -25
  1312. package/src/app/shared/pipes/date-format.pipe.d.ts +0 -35
  1313. package/src/app/shared/pipes/date-from-now.pipe.d.ts +0 -12
  1314. package/src/app/shared/pipes/dates.pipe.d.ts +0 -10
  1315. package/src/app/shared/pipes/display-with.pipe.d.ts +0 -8
  1316. package/src/app/shared/pipes/duration.pipe.d.ts +0 -23
  1317. package/src/app/shared/pipes/file-size.pipe.d.ts +0 -30
  1318. package/src/app/shared/pipes/form.pipes.d.ts +0 -69
  1319. package/src/app/shared/pipes/highlight.pipe.d.ts +0 -11
  1320. package/src/app/shared/pipes/html.pipes.d.ts +0 -22
  1321. package/src/app/shared/pipes/latlong-format.pipe.d.ts +0 -20
  1322. package/src/app/shared/pipes/maps.pipe.d.ts +0 -23
  1323. package/src/app/shared/pipes/maskito.pipe.d.ts +0 -14
  1324. package/src/app/shared/pipes/math.pipes.d.ts +0 -26
  1325. package/src/app/shared/pipes/ng-init.pipe.d.ts +0 -8
  1326. package/src/app/shared/pipes/number-format.pipe.d.ts +0 -9
  1327. package/src/app/shared/pipes/observable.pipes.d.ts +0 -25
  1328. package/src/app/shared/pipes/pipes.module.d.ts +0 -35
  1329. package/src/app/shared/pipes/property.pipes.d.ts +0 -41
  1330. package/src/app/shared/pipes/selection.pipes.d.ts +0 -62
  1331. package/src/app/shared/pipes/string.pipes.d.ts +0 -68
  1332. package/src/app/shared/pipes/translate-context.pipe.d.ts +0 -17
  1333. package/src/app/shared/pipes/types.pipes.d.ts +0 -30
  1334. package/src/app/shared/pipes/url.pipes.d.ts +0 -27
  1335. package/src/app/shared/platforms.d.ts +0 -16
  1336. package/src/app/shared/print/print.service.d.ts +0 -94
  1337. package/src/app/shared/regexps.d.ts +0 -32
  1338. package/src/app/shared/rx-state/rx-state.decorators.d.ts +0 -43
  1339. package/src/app/shared/rx-state/rx-state.module.d.ts +0 -10
  1340. package/src/app/shared/rx-state/rx-state.types.d.ts +0 -4
  1341. package/src/app/shared/services/entity-service.class.d.ts +0 -75
  1342. package/src/app/shared/services/job.utils.d.ts +0 -20
  1343. package/src/app/shared/services/memory-entity-service.class.d.ts +0 -79
  1344. package/src/app/shared/services/progress-bar.service.d.ts +0 -20
  1345. package/src/app/shared/services/startable-observable-service.class.d.ts +0 -36
  1346. package/src/app/shared/services/startable-service.class.d.ts +0 -37
  1347. package/src/app/shared/services/translate-context.service.d.ts +0 -29
  1348. package/src/app/shared/services/validator-service.class.d.ts +0 -11
  1349. package/src/app/shared/services.d.ts +0 -17
  1350. package/src/app/shared/shared-routing.module.d.ts +0 -23
  1351. package/src/app/shared/shared.module.d.ts +0 -33
  1352. package/src/app/shared/shared.testing.module.d.ts +0 -20
  1353. package/src/app/shared/storage/storage-explorer.component.d.ts +0 -59
  1354. package/src/app/shared/storage/storage-explorer.module.d.ts +0 -13
  1355. package/src/app/shared/storage/storage-explorer.testing-routing.module.d.ts +0 -9
  1356. package/src/app/shared/storage/storage-explorer.testing.module.d.ts +0 -10
  1357. package/src/app/shared/storage/storage.service.d.ts +0 -22
  1358. package/src/app/shared/storage/storage.utils.d.ts +0 -19
  1359. package/src/app/shared/testing/maskito.test.d.ts +0 -10
  1360. package/src/app/shared/testing/observable.test.d.ts +0 -25
  1361. package/src/app/shared/testing/tests.page.d.ts +0 -20
  1362. package/src/app/shared/toast/toast.testing.d.ts +0 -15
  1363. package/src/app/shared/toast/toast.testing.module.d.ts +0 -12
  1364. package/src/app/shared/toast/toasts.d.ts +0 -16
  1365. package/src/app/shared/toolbar/modal-toolbar.d.ts +0 -21
  1366. package/src/app/shared/toolbar/toolbar.d.ts +0 -70
  1367. package/src/app/shared/toolbar/toolbar.module.d.ts +0 -16
  1368. package/src/app/shared/types.d.ts +0 -36
  1369. package/src/app/shared/upload-file/testing/upload-file.testing.d.ts +0 -21
  1370. package/src/app/shared/upload-file/testing/upload-file.testing.module.d.ts +0 -11
  1371. package/src/app/shared/upload-file/upload-file-popover.component.d.ts +0 -41
  1372. package/src/app/shared/upload-file/upload-file.component.d.ts +0 -50
  1373. package/src/app/shared/upload-file/upload-file.model.d.ts +0 -30
  1374. package/src/app/shared/validator/form-error-adapter.class.d.ts +0 -33
  1375. package/src/app/shared/validator/validators.d.ts +0 -139
  1376. package/src/app/shared/version/versions.d.ts +0 -26
  1377. package/src/app/social/job/job.module.d.ts +0 -12
  1378. package/src/app/social/job/progression/job-progression.component.d.ts +0 -23
  1379. package/src/app/social/job/progression/job-progression.icon.d.ts +0 -62
  1380. package/src/app/social/job/progression/job-progression.list.d.ts +0 -19
  1381. package/src/app/social/job/progression/job-progression.model.d.ts +0 -10
  1382. package/src/app/social/job/progression/job-progression.service.d.ts +0 -33
  1383. package/src/app/social/job/testing/job-progression.testing.d.ts +0 -13
  1384. package/src/app/social/job/testing/job-progression.testing.service.d.ts +0 -9
  1385. package/src/app/social/job/testing/job.testing.module.d.ts +0 -11
  1386. package/src/app/social/message/message.form.d.ts +0 -36
  1387. package/src/app/social/message/message.modal.d.ts +0 -43
  1388. package/src/app/social/message/message.model.d.ts +0 -33
  1389. package/src/app/social/message/message.module.d.ts +0 -12
  1390. package/src/app/social/message/message.service.d.ts +0 -32
  1391. package/src/app/social/social.errors.d.ts +0 -9
  1392. package/src/app/social/social.module.d.ts +0 -20
  1393. package/src/app/social/social.testing.module.d.ts +0 -13
  1394. package/src/app/social/user-event/notification/user-event-notification.icon.d.ts +0 -32
  1395. package/src/app/social/user-event/notification/user-event-notification.list.d.ts +0 -71
  1396. package/src/app/social/user-event/testing/user-event.testing.d.ts +0 -35
  1397. package/src/app/social/user-event/testing/user-event.testing.model.d.ts +0 -42
  1398. package/src/app/social/user-event/testing/user-event.testing.module.d.ts +0 -11
  1399. package/src/app/social/user-event/testing/user-event.testing.service.d.ts +0 -42
  1400. package/src/app/social/user-event/user-event.model.d.ts +0 -44
  1401. package/src/app/social/user-event/user-event.module.d.ts +0 -13
  1402. package/src/app/social/user-event/user-event.service.d.ts +0 -124
  1403. package/src/environments/environment.class.d.ts +0 -75
  1404. package/src/environments/environment.d.ts +0 -2
  1405. package/src/environments/environment.loader.d.ts +0 -24
@@ -0,0 +1,4381 @@
1
+ # This file was generated. Do not edit manually.
2
+
3
+ schema {
4
+ query: Query
5
+ mutation: Mutation
6
+ subscription: Subscription
7
+ }
8
+
9
+ type AccountVO {
10
+ avatar: String
11
+ creationDate: Date
12
+ department: DepartmentVO
13
+ email: String
14
+ firstName: String
15
+ hasAvatar: Boolean
16
+ id: Int
17
+ lastName: String
18
+ mainProfile: String
19
+ profiles: [String]
20
+ pubkey: String
21
+ settings: UserSettingsVO
22
+ statusId: Int
23
+ tokens: [UserTokenVO]
24
+ updateDate: Date
25
+ username: String
26
+ usernameExtranet: String
27
+ }
28
+
29
+ type ActivityCalendarVO {
30
+ basePortLocationIds: [Int]
31
+ comments: String
32
+ controlDate: Date
33
+ creationDate: Date
34
+ directSurveyInvestigation: Int
35
+ economicSurvey: Boolean
36
+ gearPhysicalFeatures: [GearPhysicalFeaturesVO]
37
+ gearUseFeatures: [GearUseFeaturesVO]
38
+ id: Int
39
+ "Get activity calendar's images"
40
+ images: [ImageAttachmentVO]
41
+ "Get measurement values (as a key/value map, using pmfmId as key)"
42
+ measurementValues: Map_Integer_StringScalar
43
+ observers: [PersonVO]
44
+ program: ProgramVO
45
+ qualificationComments: String
46
+ qualificationDate: Date
47
+ qualityFlag: Int
48
+ qualityFlagId: Int
49
+ recorderDepartment: DepartmentVO
50
+ recorderPerson: PersonVO
51
+ registrationLocationIds: [Int]
52
+ updateDate: Date
53
+ validationDate: Date
54
+ vesselDateTime: Date
55
+ vesselId: Int
56
+ vesselRegistrationPeriods: [ActivityCalendarVesselRegistrationPeriodVO]
57
+ vesselSnapshot: VesselSnapshotVO
58
+ vesselUseFeatures: [VesselUseFeaturesVO]
59
+ year: Int
60
+ }
61
+
62
+ type ActivityCalendarVesselRegistrationPeriodVO {
63
+ endDate: Date
64
+ id: Int
65
+ intRegistrationCode: String
66
+ qualityFlagId: Int
67
+ readonly: Boolean!
68
+ registrationCode: String
69
+ registrationLocation: LocationVO
70
+ startDate: Date
71
+ vessel: VesselVO
72
+ }
73
+
74
+ type AggregatedLandingVO {
75
+ id: Int
76
+ observedLocationId: Int
77
+ vesselActivities: [VesselActivityVO]
78
+ vesselDateTime: Date
79
+ vesselId: Int
80
+ vesselSnapshot: VesselSnapshotVO
81
+ }
82
+
83
+ type AggregationStrataVO {
84
+ aggColumnName: String
85
+ aggFunction: String
86
+ comments: String
87
+ creationDate: Date
88
+ description: String
89
+ entityName: String
90
+ id: Int
91
+ isDefault: Boolean
92
+ label: String
93
+ name: String
94
+ product: ExtractionProductVO
95
+ productId: Int
96
+ sheetName: String
97
+ spatialColumnName: String
98
+ statusId: Int
99
+ techColumnName: String
100
+ timeColumnName: String
101
+ updateDate: Date
102
+ }
103
+
104
+ type AggregationTechResultVO {
105
+ data: Map_String_ObjectScalar
106
+ }
107
+
108
+ type AppliedPeriodVO {
109
+ acquisitionNumber: Int
110
+ appliedStrategyId: Int
111
+ endDate: Date
112
+ startDate: Date
113
+ }
114
+
115
+ type AppliedStrategyVO {
116
+ appliedPeriods: [AppliedPeriodVO]
117
+ id: Int
118
+ location: ReferentialVO
119
+ strategyId: Int
120
+ }
121
+
122
+ type AuthTokenVO {
123
+ challenge: String
124
+ pubkey: String
125
+ signature: String
126
+ username: String
127
+ }
128
+
129
+ type BatchVO {
130
+ children: [BatchVO]
131
+ comments: String
132
+ controlDate: Date
133
+ exhaustiveInventory: Boolean
134
+ flags: Int!
135
+ id: Int
136
+ individualCount: Int
137
+ label: String
138
+ leaf: Boolean!
139
+ locationId: Int
140
+ "Get measurement values (as a key/value map, using pmfmId as key)"
141
+ measurementValues: Map_Integer_StringScalar
142
+ operation: OperationVO
143
+ operationId: Int
144
+ parent: BatchVO
145
+ parentId: Int
146
+ qualificationComments: String
147
+ qualificationDate: Date
148
+ qualityFlag: Int
149
+ qualityFlagId: Int
150
+ "Get batch quantification measurements"
151
+ quantificationMeasurements: [QuantificationMeasurementVO]
152
+ rankOrder: Int
153
+ recorderDepartment: DepartmentVO
154
+ recorderPerson: PersonVO
155
+ sale: SaleVO
156
+ saleId: Int
157
+ samplingRatio: Float
158
+ samplingRatioText: String
159
+ "Get batch sorting measurements"
160
+ sortingMeasurements: [MeasurementVO]
161
+ subgroupCount: Int
162
+ taxonGroup: ReferentialVO
163
+ taxonName: TaxonNameVO
164
+ updateDate: Date
165
+ validationDate: Date
166
+ }
167
+
168
+ type ConfigurationVO {
169
+ backgroundImages: [String]
170
+ comments: String
171
+ creationDate: Date
172
+ description: String
173
+ entityName: String
174
+ id: Int
175
+ label: String
176
+ largeLogo: String
177
+ name: String
178
+ partners: [DepartmentVO]
179
+ properties: Map_String_StringScalar
180
+ smallLogo: String
181
+ statusId: Int
182
+ updateDate: Date
183
+ }
184
+
185
+ type DataOriginVO {
186
+ acquisitionLevel: String
187
+ gearPhysicalFeaturesId: Int
188
+ gearUseFeaturesId: Int
189
+ program: ProgramVO
190
+ programId: Int
191
+ vesselUseFeaturesId: Int
192
+ }
193
+
194
+ type DenormalizedBatchSortingValueVO {
195
+ alphanumericalValue: String
196
+ batch: DenormalizedBatchVO
197
+ batchId: Int
198
+ id: Int
199
+ isInherited: Boolean
200
+ numericalValue: Float
201
+ parameter: ReferentialVO
202
+ pmfm: PmfmVO
203
+ pmfmId: Int
204
+ qualitativeValue: ReferentialVO
205
+ rankOrder: Int
206
+ unit: ReferentialVO
207
+ }
208
+
209
+ type DenormalizedBatchVO {
210
+ calculatedTaxonGroup: ReferentialVO
211
+ children: [DenormalizedBatchVO]
212
+ comments: String
213
+ elevateContextWeight: Float
214
+ elevateIndividualCount: Int
215
+ elevateRtpWeight: Float
216
+ elevateWeight: Float
217
+ exhaustiveInventory: Boolean
218
+ flatRankOrder: Short
219
+ id: Int
220
+ indirectContextWeight: Float
221
+ indirectIndividualCount: Int
222
+ indirectRtpWeight: Float
223
+ indirectWeight: Float
224
+ individualCount: Int
225
+ inheritedTaxonGroup: ReferentialVO
226
+ inheritedTaxonName: TaxonNameVO
227
+ isDiscard: Boolean
228
+ isLanding: Boolean
229
+ label: String
230
+ leaf: Boolean!
231
+ locationId: Int
232
+ measurementValues: Map_Integer_StringScalar
233
+ operation: OperationVO
234
+ operationId: Int
235
+ parent: DenormalizedBatchVO
236
+ parentId: Int
237
+ qualityFlagId: Int
238
+ rankOrder: Int
239
+ sale: SaleVO
240
+ saleId: Int
241
+ samplingRatio: Float
242
+ samplingRatioText: String
243
+ sortingValues: [DenormalizedBatchSortingValueVO]
244
+ sortingValuesText: String
245
+ taxonElevateContextWeight: Float
246
+ taxonElevateIndividualCount: Int
247
+ taxonGroup: ReferentialVO
248
+ taxonName: TaxonNameVO
249
+ treeIndent: String
250
+ treeLevel: Short
251
+ updateDate: Date
252
+ weight: Float
253
+ weightMethodId: Int
254
+ }
255
+
256
+ type DenormalizedPmfmStrategyVO {
257
+ acquisitionLevel: String
258
+ acquisitionNumber: Int
259
+ completeName: String
260
+ defaultValue: Float
261
+ detectionThreshold: Float
262
+ fractionId: Int
263
+ gearIds: [Int]
264
+ gears: [String]
265
+ id: Int
266
+ isComputed: Boolean
267
+ isEstimated: Boolean
268
+ isMandatory: Boolean
269
+ label: String
270
+ matrixId: Int
271
+ maxValue: Float
272
+ maximumNumberDecimals: Int
273
+ methodId: Int
274
+ minValue: Float
275
+ name: String
276
+ parameterId: Int
277
+ precision: Float
278
+ qualitativeValues: [ReferentialVO]
279
+ rankOrder: Int
280
+ referenceTaxonIds: [Int]
281
+ signifFiguresNumber: Int
282
+ strategyId: Int
283
+ taxonGroupIds: [Int]
284
+ type: String
285
+ unitLabel: String
286
+ updateDate: Date
287
+ }
288
+
289
+ type DenormalizedTripResultVO {
290
+ batchCount: Long!
291
+ executionTime: Long!
292
+ invalidBatchCount: Long!
293
+ message: String
294
+ operationCount: Long!
295
+ status: JobStatusEnum
296
+ tripCount: Long!
297
+ tripErrorCount: Long!
298
+ }
299
+
300
+ type DepartmentVO {
301
+ comments: String
302
+ creationDate: Date
303
+ description: String
304
+ entityName: String
305
+ hasLogo: Boolean
306
+ id: Int
307
+ label: String
308
+ "Get the level from a referential entity"
309
+ level: ReferentialVO
310
+ levelId: Int
311
+ logo: String
312
+ name: String
313
+ "Get referential's parent"
314
+ parent: ReferentialVO
315
+ parentId: Int
316
+ properties: Map_String_ObjectScalar
317
+ rankOrder: Int
318
+ siteUrl: String
319
+ statusId: Int
320
+ updateDate: Date
321
+ validityStatusId: Int
322
+ }
323
+
324
+ type DevicePositionVO {
325
+ controlDate: Date
326
+ creationDate: Date
327
+ dateTime: Date
328
+ id: Int
329
+ latitude: Float
330
+ longitude: Float
331
+ objectId: Int
332
+ objectType: ReferentialVO
333
+ qualificationComments: String
334
+ qualificationDate: Date
335
+ qualityFlag: Int
336
+ qualityFlagId: Int
337
+ recorderDepartment: DepartmentVO
338
+ recorderDepartmentId: Int
339
+ recorderPerson: PersonVO
340
+ recorderPersonId: Int
341
+ updateDate: Date
342
+ validationDate: Date
343
+ }
344
+
345
+ type ExpectedSaleVO {
346
+ id: Int
347
+ landing: LandingVO
348
+ landingId: Int
349
+ "Get expected sale measurement values"
350
+ measurementValues: Map_Integer_StringScalar
351
+ "Get expected sale measurements"
352
+ measurements: [MeasurementVO]
353
+ "Get expected sale's products"
354
+ products: [ProductVO]
355
+ saleDate: Date
356
+ saleLocation: LocationVO
357
+ saleType: ReferentialVO
358
+ trip: TripVO
359
+ tripId: Int
360
+ }
361
+
362
+ type ExtractionProductVO {
363
+ LABEL_SEPARATOR: String
364
+ category: ExtractionCategoryEnum
365
+ comments: String
366
+ creationDate: Date
367
+ description: String
368
+ docUrl: String
369
+ documentation: String
370
+ entityName: String
371
+ filterContent: String
372
+ format: String
373
+ hiddenColumnNames: Map_String_Set_StringScalar
374
+ id: Int
375
+ isSpatial: Boolean
376
+ label: String
377
+ name: String
378
+ parent: IExtractionType_PersonVO_DepartmentVO
379
+ parentId: Int
380
+ processingFrequencyId: Int
381
+ recorderDepartment: DepartmentVO
382
+ recorderPerson: PersonVO
383
+ sheetNames: [String]
384
+ statusId: Int
385
+ stratum: [AggregationStrataVO]
386
+ tableNameBySheetNameMap: Map_String_StringScalar
387
+ tableNames: [String]
388
+ tables: [ExtractionTableVO]
389
+ updateDate: Date
390
+ version: String
391
+ }
392
+
393
+ type ExtractionResultVO {
394
+ columns: [ExtractionTableColumnVO]
395
+ rows: [[String]]
396
+ total: BigDecimal
397
+ type: ExtractionTypeVO
398
+ }
399
+
400
+ type ExtractionTableColumnVO {
401
+ columnName: String
402
+ description: String
403
+ id: Int
404
+ label: String
405
+ name: String
406
+ rankOrder: Int
407
+ tableId: Int
408
+ type: String
409
+ values: [String]
410
+ }
411
+
412
+ type ExtractionTableVO {
413
+ columnValues: Map_String_List_ObjectScalar
414
+ columns: [ExtractionTableColumnVO]
415
+ comments: String
416
+ creationDate: Date
417
+ defaultAggColumn: String
418
+ defaultSpaceColumn: String
419
+ defaultTechColumn: String
420
+ description: String
421
+ entityName: String
422
+ id: Int
423
+ isSpatial: Boolean
424
+ label: String
425
+ name: String
426
+ product: ExtractionProductVO
427
+ productId: Int
428
+ rankOrder: Int
429
+ sheetName: String
430
+ statusId: Int
431
+ tableName: String
432
+ updateDate: Date
433
+ }
434
+
435
+ type ExtractionTypeVO {
436
+ LABEL_SEPARATOR: String
437
+ comments: String
438
+ creationDate: Date
439
+ description: String
440
+ "Get extraction documentation URL"
441
+ docUrl: String
442
+ format: String
443
+ id: Int
444
+ isSpatial: Boolean
445
+ label: String
446
+ name: String
447
+ parent: IExtractionType_PersonVO_DepartmentVO
448
+ parentId: Int
449
+ processingFrequencyId: Int
450
+ recorderDepartment: DepartmentVO
451
+ recorderPerson: PersonVO
452
+ sheetNames: [String]
453
+ statusId: Int
454
+ updateDate: Date
455
+ version: String
456
+ }
457
+
458
+ type FishingAreaVO {
459
+ depthGradient: ReferentialVO
460
+ distanceToCoastGradient: ReferentialVO
461
+ gearUseFeatures: GearUseFeaturesVO
462
+ gearUseFeaturesId: Int
463
+ id: Int
464
+ location: LocationVO
465
+ nearbySpecificArea: ReferentialVO
466
+ operation: OperationVO
467
+ operationId: Int
468
+ qualificationComments: String
469
+ qualificationDate: Date
470
+ qualityFlagId: Int
471
+ sale: SaleVO
472
+ saleId: Int
473
+ }
474
+
475
+ type GearPhysicalFeaturesVO {
476
+ activityCalendarId: Int
477
+ comments: String
478
+ controlDate: Date
479
+ creationDate: Date
480
+ dataOrigins: [DataOriginVO]
481
+ endDate: Date
482
+ flags: Int!
483
+ gear: ReferentialVO
484
+ id: Int
485
+ measurementValues: Map_Integer_StringScalar
486
+ metier: MetierVO
487
+ otherGear: ReferentialVO
488
+ program: ProgramVO
489
+ qualificationComments: String
490
+ qualificationDate: Date
491
+ qualityFlag: Int
492
+ qualityFlagId: Int
493
+ rankOrder: Short
494
+ recorderDepartment: DepartmentVO
495
+ recorderDepartmentId: Int
496
+ recorderPersonId: Int
497
+ startDate: Date
498
+ updateDate: Date
499
+ validationDate: Date
500
+ vessel: VesselSnapshotVO
501
+ vesselId: Int
502
+ vesselSnapshot: VesselSnapshotVO
503
+ }
504
+
505
+ type GearUseFeaturesVO {
506
+ activityCalendarId: Int
507
+ comments: String
508
+ controlDate: Date
509
+ creationDate: Date
510
+ dailyActivityCalendarId: Int
511
+ dataOrigins: [DataOriginVO]
512
+ endDate: Date
513
+ fishingAreas: [FishingAreaVO]
514
+ flags: Int!
515
+ gear: ReferentialVO
516
+ id: Int
517
+ "Get gear use features measurements"
518
+ measurementValues: Map_Integer_StringScalar
519
+ metier: MetierVO
520
+ otherGear: ReferentialVO
521
+ program: ProgramVO
522
+ qualificationComments: String
523
+ qualificationDate: Date
524
+ qualityFlag: Int
525
+ qualityFlagId: Int
526
+ rankOrder: Short
527
+ recorderDepartment: DepartmentVO
528
+ recorderDepartmentId: Int
529
+ recorderPersonId: Int
530
+ startDate: Date
531
+ updateDate: Date
532
+ validationDate: Date
533
+ vessel: VesselSnapshotVO
534
+ vesselId: Int
535
+ vesselSnapshot: VesselSnapshotVO
536
+ }
537
+
538
+ type IExtractionType_PersonVO_DepartmentVO {
539
+ LABEL_SEPARATOR: String
540
+ format: String
541
+ id: Int
542
+ isSpatial: Boolean
543
+ label: String
544
+ name: String
545
+ parent: IExtractionType_PersonVO_DepartmentVO
546
+ parentId: Int
547
+ sheetNames: [String]
548
+ statusId: Int
549
+ version: String
550
+ }
551
+
552
+ type ImageAttachmentVO {
553
+ comments: String
554
+ content: String
555
+ contentType: String
556
+ controlDate: Date
557
+ creationDate: Date
558
+ dataUrl: String
559
+ dateTime: Date
560
+ id: Int
561
+ objectId: Int
562
+ objectTypeId: Int
563
+ path: String
564
+ qualificationComments: String
565
+ qualificationDate: Date
566
+ qualityFlag: Int
567
+ qualityFlagId: Int
568
+ recorderDepartment: DepartmentVO
569
+ recorderPerson: PersonVO
570
+ updateDate: Date
571
+ "Get image url"
572
+ url: String
573
+ validationDate: Date
574
+ }
575
+
576
+ type JobProgressionVO {
577
+ current: Long!
578
+ id: Int
579
+ message: String
580
+ name: String
581
+ total: Long!
582
+ }
583
+
584
+ type JobVO {
585
+ SYSTEM_ISSUER: String
586
+ configuration: String
587
+ endDate: Date
588
+ id: Int
589
+ issuer: String
590
+ log: String
591
+ name: String
592
+ report: String
593
+ startDate: Date
594
+ status: JobStatusEnum
595
+ type: String
596
+ updateDate: Date
597
+ }
598
+
599
+ type LandingVO {
600
+ comments: String
601
+ controlDate: Date
602
+ creationDate: Date
603
+ dateTime: Date
604
+ hasSales: Boolean
605
+ hasSamples: Boolean
606
+ id: Int
607
+ location: LocationVO
608
+ "Get measurement values (as a key/value map, using pmfmId as key)"
609
+ measurementValues(pmfmIds: [Int]): Map_Integer_StringScalar
610
+ measurements: [MeasurementVO]
611
+ observedLocation: ObservedLocationVO
612
+ observedLocationId: Int
613
+ observers: [PersonVO]
614
+ "Get landing's products"
615
+ products: [ProductVO]
616
+ program: ProgramVO
617
+ qualificationComments: String
618
+ qualificationDate: Date
619
+ qualityFlag: Int
620
+ qualityFlagId: Int
621
+ rankOrder: Int
622
+ recorderDepartment: DepartmentVO
623
+ recorderPerson: PersonVO
624
+ saleIds: [Int]
625
+ "Get landing's sales"
626
+ sales: [SaleVO]
627
+ "Get landing's samples"
628
+ samples: [SampleVO]
629
+ "Get number of samples"
630
+ samplesCount: Long!
631
+ "Get landing's trip"
632
+ trip: TripVO
633
+ tripId: Int
634
+ updateDate: Date
635
+ validationDate: Date
636
+ vesselDateTime: Date
637
+ vesselId: Int
638
+ vesselSnapshot: VesselSnapshotVO
639
+ }
640
+
641
+ type LocationAssociationVO {
642
+ childId: Int
643
+ childSurfaceRatio: Float
644
+ comments: String
645
+ creationDate: Date
646
+ description: String
647
+ entityName: String
648
+ id: Int
649
+ label: String
650
+ "Get the level from a referential entity"
651
+ level: ReferentialVO
652
+ levelId: Int
653
+ name: String
654
+ "Get referential's parent"
655
+ parent: ReferentialVO
656
+ parentId: Int
657
+ properties: Map_String_ObjectScalar
658
+ rankOrder: Int
659
+ statusId: Int
660
+ updateDate: Date
661
+ validityStatusId: Int
662
+ }
663
+
664
+ type LocationVO {
665
+ children: [LocationAssociationVO]
666
+ comments: String
667
+ creationDate: Date
668
+ description: String
669
+ entityName: String
670
+ id: Int
671
+ label: String
672
+ "Get the level from a referential entity"
673
+ level: ReferentialVO
674
+ levelId: Int
675
+ name: String
676
+ "Get referential's parent"
677
+ parent: ReferentialVO
678
+ parentId: Int
679
+ parents: [LocationAssociationVO]
680
+ properties: Map_String_ObjectScalar
681
+ rankOrder: Int
682
+ statusId: Int
683
+ updateDate: Date
684
+ validityStatusId: Int
685
+ }
686
+
687
+ type MeasurementVO {
688
+ alphanumericalValue: String
689
+ controlDate: Date
690
+ creationDate: Date
691
+ digitCount: Int
692
+ entityName: String
693
+ id: Int
694
+ numericalValue: Float
695
+ "Get measurement's pmfm"
696
+ pmfm: PmfmVO
697
+ pmfmId: Int!
698
+ precisionValue: Float
699
+ qualitativeValue: ReferentialVO
700
+ qualityFlagId: Int
701
+ rankOrder: Short
702
+ recorderDepartment: DepartmentVO
703
+ recorderPerson: PersonVO
704
+ updateDate: Date
705
+ validationDate: Date
706
+ }
707
+
708
+ type MetierVO {
709
+ comments: String
710
+ creationDate: Date
711
+ description: String
712
+ entityName: String
713
+ gear: ReferentialVO
714
+ id: Int
715
+ label: String
716
+ "Get the level from a referential entity"
717
+ level: ReferentialVO
718
+ levelId: Int
719
+ name: String
720
+ "Get referential's parent"
721
+ parent: ReferentialVO
722
+ parentId: Int
723
+ properties: Map_String_ObjectScalar
724
+ rankOrder: Int
725
+ statusId: Int
726
+ taxonGroup: TaxonGroupVO
727
+ updateDate: Date
728
+ validityStatusId: Int
729
+ }
730
+
731
+ type MinMaxVO {
732
+ ZERO: MinMaxVO
733
+ aggMax: Float
734
+ aggMin: Float
735
+ max: Float
736
+ min: Float
737
+ techMax: Float
738
+ techMin: Float
739
+ }
740
+
741
+ "Mutation root"
742
+ type Mutation {
743
+ "Cancel a running Job"
744
+ cancelJob(id: Int!): JobVO
745
+ "Control a activityCalendar"
746
+ controlActivityCalendar(activityCalendar: ActivityCalendarVOInput!): ActivityCalendarVO
747
+ "Control a landing"
748
+ controlLanding(landing: LandingVOInput!): LandingVO
749
+ "Control an observed location"
750
+ controlObservedLocation(observedLocation: ObservedLocationVOInput, options: DataControlOptionsInput): ObservedLocationVO
751
+ "Control an operation"
752
+ controlOperation(operation: OperationVOInput!): OperationVO
753
+ "Control a trip"
754
+ controlTrip(trip: TripVOInput!): TripVO
755
+ "Create an account"
756
+ createAccount(account: AccountVOInput): AccountVO
757
+ "Delete an activity calendar"
758
+ deleteActivityCalendar(id: Int!): Boolean!
759
+ "Delete many activity calendar, by ids"
760
+ deleteActivityCalendars(ids: [Int]!): Boolean!
761
+ "Delete many aggregated landings"
762
+ deleteAggregatedLandings(filter: AggregatedLandingFilterVOInput, vesselIds: [Int]): Boolean!
763
+ "Delete a device position by id"
764
+ deleteDevicePosition(id: Int): Boolean!
765
+ "Delete many device positions by id"
766
+ deleteDevicePositions(ids: [Int]): Boolean!
767
+ "Delete many device positions by filter"
768
+ deleteDevicePositionsByFilter(filter: DevicePositionFilterVOInput): Boolean!
769
+ "Delete an observed location"
770
+ deleteLanding(id: Int!): Boolean!
771
+ "Delete many observed locations"
772
+ deleteLandings(ids: [Int]!): Boolean!
773
+ "Delete many named filters by ids"
774
+ deleteNamedFilter(id: Int, ids: [Int]): Boolean!
775
+ "Delete an observed location"
776
+ deleteObservedLocation(id: Int!): Boolean!
777
+ "Delete many observed locations"
778
+ deleteObservedLocations(ids: [Int]!): Boolean!
779
+ "Delete an operation"
780
+ deleteOperation(id: Int!): Boolean!
781
+ "Delete many operations"
782
+ deleteOperations(ids: [Int]!): Boolean!
783
+ "Delete many person (by ids)"
784
+ deletePersons(ids: [Int]): Boolean!
785
+ "Delete many products"
786
+ deleteProducts(ids: [Int]): Boolean!
787
+ "Delete a program"
788
+ deleteProgram(id: Int!): Boolean!
789
+ "Delete a referential (by id)"
790
+ deleteReferential(entityName: String, id: Int!): Boolean!
791
+ "Delete many referential (by ids)"
792
+ deleteReferentials(entityName: String, ids: [Int]): Boolean!
793
+ "Delete many round weight conversions"
794
+ deleteRoundWeightConversions(ids: [Int]): Boolean!
795
+ "Delete a sale"
796
+ deleteSale(id: Int!): Boolean!
797
+ "Delete many sales"
798
+ deleteSales(ids: [Int]!): Boolean!
799
+ "Delete a strategy"
800
+ deleteStrategy(id: Int!): Boolean!
801
+ "Delete an entity from the trash"
802
+ deleteTrashEntity(entityName: String, id: String): Boolean!
803
+ "Delete a trip"
804
+ deleteTrip(id: Int!): Boolean!
805
+ "Delete many trips"
806
+ deleteTrips(ids: [Int]!): Boolean!
807
+ "Delete a user event"
808
+ deleteUserEvent(id: Int!): Boolean!
809
+ "Delete many user events"
810
+ deleteUserEvents(ids: [Int]): Boolean!
811
+ "Delete a vessel (by vessel features id)"
812
+ deleteVessel(id: Int!): Boolean!
813
+ "Delete many vessels (by vessel features ids)"
814
+ deleteVessels(ids: [Int]!): Boolean!
815
+ "Delete many weight length conversions"
816
+ deleteWeightLengthConversions(ids: [Int]): Boolean!
817
+ "Mark as read user events"
818
+ markAsReadUserEvents(ids: [Int]): Boolean!
819
+ "Qualify a activityCalendar"
820
+ qualifyActivityCalendar(activityCalendar: ActivityCalendarVOInput!): ActivityCalendarVO
821
+ "Qualify an observed location"
822
+ qualifyObservedLocation(observedLocation: ObservedLocationVOInput): ObservedLocationVO
823
+ "Qualify a trip"
824
+ qualifyTrip(trip: TripVOInput!): TripVO
825
+ "Replace temporary vessels"
826
+ replaceVessels(temporaryVesselIds: [Int]!, validVesselId: Int!): Boolean!
827
+ "Run a job"
828
+ runJob(
829
+ "job issuer"
830
+ issuer: String = "SYSTEM",
831
+ "job parameters"
832
+ params: Map_String_ObjectScalar,
833
+ type: String!
834
+ ): JobVO
835
+ "Create or update an account"
836
+ saveAccount(account: AccountVOInput): AccountVO
837
+ "Create or update an observed location"
838
+ saveActivityCalendar(activityCalendar: ActivityCalendarVOInput): ActivityCalendarVO
839
+ "Create or update many observed locations"
840
+ saveActivityCalendars(activityCalendars: [ActivityCalendarVOInput]): [ActivityCalendarVO]
841
+ "Save aggregated landings"
842
+ saveAggregatedLandings(aggregatedLandings: [AggregatedLandingVOInput], filter: AggregatedLandingFilterVOInput): [AggregatedLandingVO]
843
+ "Save pod configuration"
844
+ saveConfiguration(config: ConfigurationVOInput): ConfigurationVO
845
+ "Create or update a department"
846
+ saveDepartment(department: DepartmentVOInput): DepartmentVO
847
+ "Save a device position"
848
+ saveDevicePosition(devicePosition: DevicePositionVOInput): DevicePositionVO
849
+ "Save many device positions"
850
+ saveDevicePositions(devicePositions: [DevicePositionVOInput]): [DevicePositionVO]
851
+ "Create or update a extraction product"
852
+ saveExtractionProduct(product: ExtractionProductVOInput!): ExtractionProductVO
853
+ "Create or update an landing"
854
+ saveLanding(landing: LandingVOInput): LandingVO
855
+ "Create or update many landings"
856
+ saveLandings(landings: [LandingVOInput]!): [LandingVO]
857
+ "Save a NamedFilter"
858
+ saveNamedFilter(namedFilter: NamedFilterVOInput, saveOptions: NamedFilterSaveOptionsInput): NamedFilterVO
859
+ "Save many named filters"
860
+ saveNamedFilters(namedFilters: [NamedFilterVOInput], saveOptions: NamedFilterSaveOptionsInput): [NamedFilterVO]
861
+ "Create or update an observed location"
862
+ saveObservedLocation(observedLocation: ObservedLocationVOInput, options: ObservedLocationSaveOptionsInput): ObservedLocationVO
863
+ "Create or update many observed locations"
864
+ saveObservedLocations(observedLocations: [ObservedLocationVOInput], options: ObservedLocationSaveOptionsInput): [ObservedLocationVO]
865
+ "Create or update an operation"
866
+ saveOperation(operation: OperationVOInput): OperationVO
867
+ "Create or update many operations"
868
+ saveOperations(operations: [OperationVOInput]!): [OperationVO]
869
+ "Create or update a parameter"
870
+ saveParameter(parameter: ParameterVOInput): ParameterVO
871
+ "Create or update many persons"
872
+ savePersons(persons: [PersonVOInput]): [PersonVO]
873
+ "Create or update a pmfm"
874
+ savePmfm(pmfm: PmfmVOInput): PmfmVO
875
+ "Save a program (with strategies)"
876
+ saveProgram(options: ProgramSaveOptionsInput, program: ProgramVOInput!): ProgramVO
877
+ "Create or update a referential"
878
+ saveReferential(referential: ReferentialVOInput): ReferentialVO
879
+ "Create or update many referential"
880
+ saveReferentials(referentials: [ReferentialVOInput]): [ReferentialVO]
881
+ "Save many round weight conversions"
882
+ saveRoundWeightConversions(data: [RoundWeightConversionVOInput]): [RoundWeightConversionVO]
883
+ "Create or update many sales"
884
+ saveSales(sales: [SaleVOInput]!): [SaleVO]
885
+ "Save user settings"
886
+ saveSettings(settings: UserSettingsVOInput): UserSettingsVO
887
+ "Save a software configuration"
888
+ saveSoftware(software: SoftwareVOInput): SoftwareVO
889
+ "Save a strategy"
890
+ saveStrategy(strategy: StrategyVOInput!): StrategyVO
891
+ "Save a Taxon name"
892
+ saveTaxonName(taxonName: TaxonNameVOInput!): TaxonNameVO
893
+ "Create or update a trip"
894
+ saveTrip(
895
+ options: TripSaveOptionsInput,
896
+ "@deprecated Use options"
897
+ saveOptions: TripSaveOptionsInput,
898
+ trip: TripVOInput!,
899
+ "@deprecated Use options"
900
+ withOperation: Boolean = false
901
+ ): TripVO
902
+ "Create or update many trips"
903
+ saveTrips(
904
+ options: TripSaveOptionsInput,
905
+ "@deprecated Use options"
906
+ saveOptions: TripSaveOptionsInput,
907
+ trips: [TripVOInput]!,
908
+ "@deprecated Use options"
909
+ withOperation: Boolean = false
910
+ ): [TripVO]
911
+ "Sent data to admin, for debug"
912
+ saveUserEvent(userEvent: UserEventVOInput): UserEventVO
913
+ "Create or update a vessel"
914
+ saveVessel(vessel: VesselVOInput!): VesselVO
915
+ "Create or update many vessels"
916
+ saveVessels(vessels: [VesselVOInput]!): [VesselVO]
917
+ "Save many weight length conversions"
918
+ saveWeightLengthConversions(data: [WeightLengthConversionVOInput]): [WeightLengthConversionVO]
919
+ "Sent a message"
920
+ sendMessage(message: MessageVOInput): Boolean!
921
+ "Share an existing file"
922
+ shareFile(fileName: String): String
923
+ "Unvalidate a activityCalendar"
924
+ unvalidateActivityCalendar(activityCalendar: ActivityCalendarVOInput!): ActivityCalendarVO
925
+ "Unvalidate an observed location"
926
+ unvalidateObservedLocation(observedLocation: ObservedLocationVOInput, options: DataValidateOptionsInput): ObservedLocationVO
927
+ "Unvalidate a trip"
928
+ unvalidateTrip(trip: TripVOInput!): TripVO
929
+ "Update an extraction product"
930
+ updateExtractionProduct(id: Int!): ExtractionProductVO
931
+ "Validate a activityCalendar"
932
+ validateActivityCalendar(activityCalendar: ActivityCalendarVOInput!): ActivityCalendarVO
933
+ "Validate an observed location"
934
+ validateObservedLocation(observedLocation: ObservedLocationVOInput, options: DataValidateOptionsInput): ObservedLocationVO
935
+ "Validate a trip"
936
+ validateTrip(trip: TripVOInput!): TripVO
937
+ }
938
+
939
+ type NamedFilterVO {
940
+ content: String
941
+ creationDate: Date
942
+ entityName: String
943
+ id: Int
944
+ name: String
945
+ recorderDepartment: DepartmentVO
946
+ recorderDepartmentId: Int
947
+ recorderPerson: PersonVO
948
+ recorderPersonId: Int
949
+ updateDate: Date
950
+ }
951
+
952
+ type ObservedLocationVO {
953
+ comments: String
954
+ controlDate: Date
955
+ creationDate: Date
956
+ endDateTime: Date
957
+ id: Int
958
+ landings: [LandingVO]
959
+ location: LocationVO
960
+ "Get measurement values (as a key/value map, using pmfmId as key)"
961
+ measurementValues: Map_Integer_StringScalar
962
+ "Get measurement values"
963
+ measurements: [MeasurementVO]
964
+ observers: [PersonVO]
965
+ program: ProgramVO
966
+ qualificationComments: String
967
+ qualificationDate: Date
968
+ qualityFlag: Int
969
+ qualityFlagId: Int
970
+ recorderDepartment: DepartmentVO
971
+ recorderPerson: PersonVO
972
+ "Get observed location's sampling strata"
973
+ samplingStrata: ReferentialVO
974
+ samplingStrataId: Int
975
+ startDateTime: Date
976
+ updateDate: Date
977
+ validationDate: Date
978
+ }
979
+
980
+ type OperationGroupVO {
981
+ comments: String
982
+ controlDate: Date
983
+ "Get operation group's fishing areas"
984
+ fishingAreas: [FishingAreaVO]
985
+ "Get operation group's gear measurements"
986
+ gearMeasurementValues: Map_Integer_StringScalar
987
+ "Get operation group's gear measurements"
988
+ gearMeasurements: [MeasurementVO]
989
+ hasCatch: Boolean
990
+ id: Int
991
+ "Get operation group's measurements"
992
+ measurementValues: Map_Integer_StringScalar
993
+ "Get operation group's measurements"
994
+ measurements: [MeasurementVO]
995
+ metier: MetierVO
996
+ "Get operation group's packets"
997
+ packets: [PacketVO]
998
+ physicalGearId: Int
999
+ "Get operation group's products"
1000
+ products: [ProductVO]
1001
+ qualificationComments: String
1002
+ qualificationDate: Date
1003
+ qualityFlag: Int
1004
+ qualityFlagId: Int
1005
+ rankOrderOnPeriod: Int
1006
+ recorderDepartment: DepartmentVO
1007
+ "Get operation group's samples"
1008
+ samples: [SampleVO]
1009
+ trip: TripVO
1010
+ tripId: Int
1011
+ updateDate: Date
1012
+ validationDate: Date
1013
+ }
1014
+
1015
+ type OperationVO {
1016
+ "Get operation's batches"
1017
+ batches: [BatchVO]
1018
+ catchBatch: BatchVO
1019
+ childOperation: OperationVO
1020
+ childOperationId: Int
1021
+ comments: String
1022
+ controlDate: Date
1023
+ endDateTime: Date
1024
+ "Get operation's fishing areas"
1025
+ fishingAreas: [FishingAreaVO]
1026
+ fishingEndDateTime: Date
1027
+ fishingStartDateTime: Date
1028
+ "Get operation's gear measurements"
1029
+ gearMeasurementValues: Map_Integer_StringScalar
1030
+ "Get operation's gear measurements"
1031
+ gearMeasurements: [MeasurementVO]
1032
+ hasCatch: Boolean
1033
+ id: Int
1034
+ "Get operation's measurements"
1035
+ measurementValues: Map_Integer_StringScalar
1036
+ "Get operation's measurements"
1037
+ measurements(pmfmIds: [Int]): [MeasurementVO]
1038
+ "Get operation's metier"
1039
+ metier: MetierVO
1040
+ parentOperation: OperationVO
1041
+ parentOperationId: Int
1042
+ physicalGear: PhysicalGearVO
1043
+ physicalGearId: Int
1044
+ "Get operation's position"
1045
+ positions: [VesselPositionVO]
1046
+ qualificationComments: String
1047
+ qualificationDate: Date
1048
+ qualityFlag: Int
1049
+ qualityFlagId: Int
1050
+ rankOrder: Int
1051
+ rankOrderOnPeriod: Int
1052
+ recorderDepartment: DepartmentVO
1053
+ "Get operation's samples"
1054
+ samples: [SampleVO]
1055
+ startDateTime: Date
1056
+ trip: TripVO
1057
+ tripId: Int
1058
+ updateDate: Date
1059
+ validationDate: Date
1060
+ }
1061
+
1062
+ type PacketCompositionVO {
1063
+ id: Int
1064
+ rankOrder: Int
1065
+ ratios: [Int]
1066
+ taxonGroup: ReferentialVO
1067
+ }
1068
+
1069
+ type PacketVO {
1070
+ comments: String
1071
+ composition: [PacketCompositionVO]
1072
+ controlDate: Date
1073
+ id: Int
1074
+ number: Int
1075
+ operation: OperationVO
1076
+ operationId: Int
1077
+ qualificationComments: String
1078
+ qualificationDate: Date
1079
+ qualityFlag: Int
1080
+ qualityFlagId: Int
1081
+ rankOrder: Int
1082
+ recorderDepartment: DepartmentVO
1083
+ recorderPerson: PersonVO
1084
+ sampledWeights: [Float]
1085
+ updateDate: Date
1086
+ validationDate: Date
1087
+ weight: Float
1088
+ }
1089
+
1090
+ type ParameterVO {
1091
+ comments: String
1092
+ creationDate: Date
1093
+ description: String
1094
+ entityName: String
1095
+ id: Int
1096
+ label: String
1097
+ "Get the level from a referential entity"
1098
+ level: ReferentialVO
1099
+ levelId: Int
1100
+ name: String
1101
+ parameterGroupId: Int
1102
+ "Get referential's parent"
1103
+ parent: ReferentialVO
1104
+ parentId: Int
1105
+ properties: Map_String_ObjectScalar
1106
+ qualitativeValues: [ReferentialVO]
1107
+ rankOrder: Int
1108
+ statusId: Int
1109
+ type: String
1110
+ updateDate: Date
1111
+ validityStatusId: Int
1112
+ }
1113
+
1114
+ type PersonVO {
1115
+ avatar: String
1116
+ creationDate: Date
1117
+ department: DepartmentVO
1118
+ email: String
1119
+ firstName: String
1120
+ hasAvatar: Boolean
1121
+ id: Int
1122
+ lastName: String
1123
+ mainProfile: String
1124
+ profiles: [String]
1125
+ pubkey: String
1126
+ statusId: Int
1127
+ updateDate: Date
1128
+ username: String
1129
+ usernameExtranet: String
1130
+ }
1131
+
1132
+ type PhysicalGearVO {
1133
+ children: [PhysicalGearVO]
1134
+ comments: String
1135
+ controlDate: Date
1136
+ creationDate: Date
1137
+ flags: Int!
1138
+ gear: ReferentialVO
1139
+ id: Int
1140
+ leaf: Boolean!
1141
+ "Get physical gear measurements"
1142
+ measurementValues: Map_Integer_StringScalar
1143
+ "Get physical gear measurements"
1144
+ measurements: [MeasurementVO]
1145
+ parent: PhysicalGearVO
1146
+ parentId: Int
1147
+ program: ProgramVO
1148
+ qualificationComments: String
1149
+ qualificationDate: Date
1150
+ qualityFlag: Int
1151
+ qualityFlagId: Int
1152
+ rankOrder: Int
1153
+ recorderDepartment: DepartmentVO
1154
+ recorderPerson: PersonVO
1155
+ "Get physical gear's trip"
1156
+ trip: TripVO
1157
+ tripId: Int
1158
+ updateDate: Date
1159
+ validationDate: Date
1160
+ }
1161
+
1162
+ type PmfmStrategyVO {
1163
+ acquisitionLevel: String
1164
+ acquisitionNumber: Int
1165
+ defaultValue: Float
1166
+ "Get strategy fraction"
1167
+ fraction: ReferentialVO
1168
+ fractionId: Int
1169
+ gearIds: [Int]
1170
+ gears: [String]
1171
+ id: Int
1172
+ isMandatory: Boolean
1173
+ "Get strategy matrix"
1174
+ matrix: ReferentialVO
1175
+ matrixId: Int
1176
+ maxValue: Float
1177
+ "Get strategy method"
1178
+ method: ReferentialVO
1179
+ methodId: Int
1180
+ minValue: Float
1181
+ "Get strategy parameter"
1182
+ parameter: ReferentialVO
1183
+ parameterId: Int
1184
+ "Get strategy pmfm"
1185
+ pmfm: PmfmVO
1186
+ pmfmId: Int
1187
+ rankOrder: Int
1188
+ referenceTaxonIds: [Int]
1189
+ strategyId: Int
1190
+ taxonGroupIds: [Int]
1191
+ updateDate: Date
1192
+ }
1193
+
1194
+ type PmfmVO {
1195
+ comments: String
1196
+ "Get PMFM's complete name"
1197
+ completeName: String
1198
+ creationDate: Date
1199
+ defaultValue: Float
1200
+ description: String
1201
+ detectionThreshold: Float
1202
+ entityName: String
1203
+ "Get PMFM's fraction"
1204
+ fraction: ReferentialVO
1205
+ fractionId: Int
1206
+ id: Int
1207
+ isCalculated: Boolean
1208
+ isEstimated: Boolean
1209
+ label: String
1210
+ "Get the level from a referential entity"
1211
+ level: ReferentialVO
1212
+ levelId: Int
1213
+ "Get PMFM's matrix"
1214
+ matrix: ReferentialVO
1215
+ matrixId: Int
1216
+ maxValue: Float
1217
+ maximumNumberDecimals: Int
1218
+ "Get PMFM's method"
1219
+ method: ReferentialVO
1220
+ methodId: Int
1221
+ minValue: Float
1222
+ name: String
1223
+ "Get PMFM's parameter"
1224
+ parameter: ParameterVO
1225
+ parameterId: Int
1226
+ "Get referential's parent"
1227
+ parent: ReferentialVO
1228
+ parentId: Int
1229
+ precision: Float
1230
+ properties: Map_String_ObjectScalar
1231
+ qualitativeValues: [ReferentialVO]
1232
+ rankOrder: Int
1233
+ signifFiguresNumber: Int
1234
+ statusId: Int
1235
+ type: String
1236
+ "Get PMFM's unit"
1237
+ unit: ReferentialVO
1238
+ unitId: Int
1239
+ unitLabel: String
1240
+ updateDate: Date
1241
+ validityStatusId: Int
1242
+ }
1243
+
1244
+ type ProductVO {
1245
+ batch: BatchVO
1246
+ batchId: Int
1247
+ comments: String
1248
+ controlDate: Date
1249
+ cost: Float
1250
+ creationDate: Date
1251
+ dressingId: Int
1252
+ expectedSale: ExpectedSaleVO
1253
+ expectedSaleId: Int
1254
+ id: Int
1255
+ individualCount: Int
1256
+ label: String
1257
+ landing: LandingVO
1258
+ landingId: Int
1259
+ "Get measurement values (as a key/value map, using pmfmId as key)"
1260
+ measurementValues: Map_Integer_StringScalar
1261
+ operation: OperationVO
1262
+ operationId: Int
1263
+ preservationId: Int
1264
+ qualificationComments: String
1265
+ qualificationDate: Date
1266
+ qualityFlag: Int
1267
+ qualityFlagId: Int
1268
+ rankOrder: Int
1269
+ recorderDepartment: DepartmentVO
1270
+ recorderPerson: PersonVO
1271
+ sale: SaleVO
1272
+ saleId: Int
1273
+ saleType: ReferentialVO
1274
+ sizeCategoryId: Int
1275
+ subgroupCount: Float
1276
+ taxonGroup: ReferentialVO
1277
+ updateDate: Date
1278
+ validationDate: Date
1279
+ weight: Float
1280
+ weightCalculated: Boolean!
1281
+ }
1282
+
1283
+ type ProgramDepartmentVO {
1284
+ department: ReferentialVO
1285
+ id: Int
1286
+ location: ReferentialVO
1287
+ privilege: ReferentialVO
1288
+ programId: Int
1289
+ updateDate: Date
1290
+ }
1291
+
1292
+ type ProgramPersonVO {
1293
+ id: Int
1294
+ location: ReferentialVO
1295
+ person: PersonVO
1296
+ privilege: ReferentialVO
1297
+ programId: Int
1298
+ referencePerson: PersonVO
1299
+ updateDate: Date
1300
+ }
1301
+
1302
+ type ProgramVO {
1303
+ "Get program acquisition level's labels"
1304
+ acquisitionLevelLabels: [String]
1305
+ "Get program's acquisition levels"
1306
+ acquisitionLevels: [ReferentialVO]
1307
+ comments: String
1308
+ creationDate: Date
1309
+ departments: [ProgramDepartmentVO]
1310
+ description: String
1311
+ entityName: String
1312
+ "Get program's gear classification"
1313
+ gearClassification: ReferentialVO
1314
+ gearClassificationId: Int
1315
+ id: Int
1316
+ label: String
1317
+ locationClassificationIds: [Int]
1318
+ "Get program's location classifications"
1319
+ locationClassifications: [ReferentialVO]
1320
+ locationIds: [Int]
1321
+ locations: [ReferentialVO]
1322
+ name: String
1323
+ persons: [ProgramPersonVO]
1324
+ "Get current user program's privileges"
1325
+ privileges: [String]
1326
+ properties: Map_String_StringScalar
1327
+ statusId: Int
1328
+ "Get program's strategies"
1329
+ strategies(filter: StrategyFilterVOInput): [StrategyVO]
1330
+ "Get program's taxon group type"
1331
+ taxonGroupType: ReferentialVO
1332
+ taxonGroupTypeId: Int
1333
+ updateDate: Date
1334
+ }
1335
+
1336
+ type QuantificationMeasurementVO {
1337
+ alphanumericalValue: String
1338
+ controlDate: Date
1339
+ creationDate: Date
1340
+ digitCount: Int
1341
+ entityName: String
1342
+ id: Int
1343
+ isReferenceQuantification: Boolean
1344
+ numericalValue: Float
1345
+ "Get measurement's pmfm"
1346
+ pmfm: PmfmVO
1347
+ pmfmId: Int!
1348
+ precisionValue: Float
1349
+ qualitativeValue: ReferentialVO
1350
+ qualityFlagId: Int
1351
+ rankOrder: Short
1352
+ recorderDepartment: DepartmentVO
1353
+ recorderPerson: PersonVO
1354
+ subgroupNumber: Short
1355
+ updateDate: Date
1356
+ validationDate: Date
1357
+ }
1358
+
1359
+ "Query root"
1360
+ type Query {
1361
+ "Load a user account"
1362
+ account(pubkey: String): AccountVO
1363
+ "Get an activity calendar, by id"
1364
+ activityCalendar(id: Int!): ActivityCalendarVO
1365
+ "Search in activity calendars"
1366
+ activityCalendars(filter: ActivityCalendarFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "year", sortDirection: String = "desc", trash: Boolean = false): [ActivityCalendarVO]
1367
+ "Get total number of observed locations"
1368
+ activityCalendarsCount(filter: ActivityCalendarFilterVOInput, trash: Boolean = false): Long!
1369
+ "Find aggregated landings by filter"
1370
+ aggregatedLandings(filter: AggregatedLandingFilterVOInput): [AggregatedLandingVO]
1371
+ "Execute an aggregation and return as GeoJson"
1372
+ aggregationGeoJson(cacheDuration: String, filter: ExtractionFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String, sortDirection: String = "asc", strata: AggregationStrataVOInput, type: ExtractionTypeVOInput!): ObjectScalar
1373
+ "Execute an aggregation and return as GeoJson"
1374
+ aggregationTech(filter: ExtractionFilterVOInput, sortBy: String, sortDirection: String = "asc", strata: AggregationStrataVOInput, type: ExtractionTypeVOInput!): AggregationTechResultVO
1375
+ "Execute an aggregation and return as GeoJson"
1376
+ aggregationTechMinMax(filter: ExtractionFilterVOInput, strata: AggregationStrataVOInput, type: ExtractionTypeVOInput!): MinMaxVO
1377
+ "Search in analytic references"
1378
+ analyticReferences(filter: ReferentialFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "label", sortDirection: String = "asc"): [ReferentialVO]
1379
+ "Get analytic references count"
1380
+ analyticReferencesCount(filter: ReferentialFilterVOInput): Long
1381
+ "Ask for a new auth challenge"
1382
+ authChallenge: AuthTokenVO
1383
+ "Authenticate using a token"
1384
+ authenticate(token: String): Boolean!
1385
+ "Get cache statistics"
1386
+ cacheStatistics: Map_String_Map_String_LongScalar
1387
+ "Clear a single cache or all caches"
1388
+ clearCache(name: String = ""): Boolean!
1389
+ "Load pod configuration"
1390
+ configuration(
1391
+ "Should included all enumerations values in properties ?"
1392
+ inherited: Boolean = true
1393
+ ): ConfigurationVO
1394
+ "Confirm an account email"
1395
+ confirmAccountEmail(code: String, email: String): Boolean!
1396
+ "Check if trip has been denormalized or not"
1397
+ denormalizeTrip(id: Int!): DenormalizedTripResultVO
1398
+ "Get denormalized batches"
1399
+ denormalizedBatches(filter: DenormalizedBatchesFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String, sortDirection: String = "desc"): [DenormalizedBatchVO]
1400
+ "Get a department"
1401
+ department(id: Int!): DepartmentVO
1402
+ "Search in departments"
1403
+ departments(filter: DepartmentFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "name", sortDirection: String = "asc"): [DepartmentVO]
1404
+ "Find device position by id"
1405
+ devicePosition(fetchOptions: DataFetchOptionsInput, id: Int): DevicePositionVO
1406
+ "Find device positions by filter"
1407
+ devicePositions(fetchOptions: DataFetchOptionsInput, filter: DevicePositionFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "id", sortDirection: String = "asc"): [DevicePositionVO]
1408
+ "Get device position count"
1409
+ devicePositionsCount(filter: DevicePositionFilterVOInput): Long!
1410
+ "Read extraction data"
1411
+ extraction(cacheDuration: String, filter: ExtractionFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String, sortDirection: String = "asc", strata: AggregationStrataVOInput, type: ExtractionTypeVOInput!): Json
1412
+ "Read columns from an extraction"
1413
+ extractionColumns(sheet: String, type: ExtractionTypeVOInput!): [ExtractionTableColumnVO]
1414
+ "Extract data into a file"
1415
+ extractionFile(filter: ExtractionFilterVOInput, strata: AggregationStrataVOInput, type: ExtractionTypeVOInput!): String
1416
+ "Get one extraction product"
1417
+ extractionProduct(id: Int!): ExtractionProductVO
1418
+ "Get all available extraction products"
1419
+ extractionProducts(filter: ExtractionTypeFilterVOInput): [ExtractionProductVO]
1420
+ "Preview some extraction rows"
1421
+ extractionRows(cacheDuration: String, filter: ExtractionFilterVOInput, offset: Int = 0, size: Int = 100, sortBy: String, sortDirection: String = "asc", strata: AggregationStrataVOInput, type: ExtractionTypeVOInput!): ExtractionResultVO
1422
+ "Get all available extraction types"
1423
+ extractionTypes(filter: ExtractionTypeFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String, sortDirection: String = "desc"): [ExtractionTypeVO] @deprecated(reason: "Use liveExtractionTypes and aggregationTypes")
1424
+ "Search filter"
1425
+ images(filter: ImageAttachmentFilterVOInput, offset: Int = 0, size: Int = 100, sortBy: String, sortDirection: String = "desc"): [ImageAttachmentVO]
1426
+ "Import a list of activity calendar from a CSV file"
1427
+ importActivityCalendars(fileName: String): JobVO
1428
+ "Import vessels from a SIOP file"
1429
+ importSiopVessels(fileName: String): JobVO
1430
+ "Check if email exists (from a md5 hash)"
1431
+ isEmailExists(email: String, hash: String): Boolean!
1432
+ "Get a job"
1433
+ job(id: Int!): JobVO
1434
+ "Get all job types"
1435
+ jobTypes: [String]
1436
+ "Search in jobs"
1437
+ jobs(filter: JobFilterVOInput, page: PageInput): [JobVO]
1438
+ "Get a landing, by id"
1439
+ landing(id: Int!): LandingVO
1440
+ "Search in landings"
1441
+ landings(filter: LandingFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "dateTime", sortDirection: String = "asc", trash: Boolean = false): [LandingVO]
1442
+ "Get total number of landings"
1443
+ landingsCount(filter: LandingFilterVOInput, trash: Boolean = false): Long!
1444
+ "Get last update date of all referential"
1445
+ lastUpdateDate: Date
1446
+ "Get a metier by id"
1447
+ metier(id: Int!): MetierVO
1448
+ "Search in metiers"
1449
+ metiers(filter: MetierFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "name", sortDirection: String = "asc"): [MetierVO]
1450
+ "Count metiers"
1451
+ metiersCount(filter: MetierFilterVOInput): Long
1452
+ "Find NamedFilter by id"
1453
+ namedFilter(id: Int): NamedFilterVO
1454
+ "Find many named filters"
1455
+ namedFilters(filter: NamedFilterFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "id", sortDirection: String = "asc"): [NamedFilterVO]
1456
+ "Get named filters count"
1457
+ namedFiltersCount(filter: NamedFilterFilterVOInput): Long!
1458
+ "Get an observed location, by id"
1459
+ observedLocation(id: Int!): ObservedLocationVO
1460
+ "Search in observed locations"
1461
+ observedLocations(filter: ObservedLocationFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "startDateTime", sortDirection: String = "asc", trash: Boolean = false): [ObservedLocationVO]
1462
+ "Get total number of observed locations"
1463
+ observedLocationsCount(filter: ObservedLocationFilterVOInput, trash: Boolean = false): Long!
1464
+ "Get an operation"
1465
+ operation(id: Int!): OperationVO
1466
+ "Get trip's operation groups"
1467
+ operationGroups(filter: OperationFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "rankOrderOnPeriod", sortDirection: String = "asc"): [OperationGroupVO]
1468
+ "Search in operations"
1469
+ operations(filter: OperationFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "startDateTime", sortDirection: String = "desc"): [OperationVO]
1470
+ "Get operations count"
1471
+ operationsCount(filter: OperationFilterVOInput): Long!
1472
+ "Get a parameter"
1473
+ parameter(id: Int, label: String): ParameterVO
1474
+ "Search in persons"
1475
+ persons(filter: PersonFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "pubkey", sortDirection: String = "asc"): [PersonVO]
1476
+ "Get total persons count"
1477
+ personsCount(filter: PersonFilterVOInput): Long!
1478
+ "Get a physical gear"
1479
+ physicalGear(id: Int!): PhysicalGearVO
1480
+ "Get physical gears"
1481
+ physicalGears(filter: PhysicalGearFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "rankOrder", sortDirection: String = "asc"): [PhysicalGearVO]
1482
+ "Get a PMFM"
1483
+ pmfm(id: Int, label: String): PmfmVO
1484
+ "Search in PMFM"
1485
+ pmfms(filter: ReferentialFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "label", sortDirection: String = "asc"): [PmfmVO]
1486
+ "Get a program"
1487
+ program(id: Int, label: String): ProgramVO
1488
+ "Search in programs"
1489
+ programs(filter: ProgramFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "label", sortDirection: String = "asc"): [ProgramVO]
1490
+ "Get programs count"
1491
+ programsCount(filter: ProgramFilterVOInput): Long
1492
+ "Search in referenceTaxons"
1493
+ referenceTaxonExists(id: Int): Boolean
1494
+ "Load one referential, by entityName and id"
1495
+ referential(entityName: String, id: Int): ReferentialVO
1496
+ "Get all levels from entityName"
1497
+ referentialLevels(entityName: String): [ReferentialVO]
1498
+ "Get all types of referential"
1499
+ referentialTypes: [ReferentialTypeVO]
1500
+ "Search in referentials"
1501
+ referentials(entityName: String, filter: ReferentialFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "label", sortDirection: String = "asc"): [ReferentialVO]
1502
+ "Get referentials count"
1503
+ referentialsCount(entityName: String, filter: ReferentialFilterVOInput): Long
1504
+ "Reset account pubkey"
1505
+ resetAccountPubkey(token: String, username: String): Boolean!
1506
+ "Search in round weight conversions"
1507
+ roundWeightConversions(filter: RoundWeightConversionFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "id", sortDirection: String = "asc"): [RoundWeightConversionVO]
1508
+ "Search in round weight conversions"
1509
+ roundWeightConversionsCount(filter: RoundWeightConversionFilterVOInput): Long
1510
+ "Get sale by id"
1511
+ sale(id: Int!): SaleVO
1512
+ "Get total number of samples"
1513
+ samplesCount(filter: SampleFilterVOInput): Long!
1514
+ "Resent confirmation email"
1515
+ sendAccountConfirmationEmail(email: String, locale: String = "en_GB"): Boolean!
1516
+ "Send an email to be able to reset account password"
1517
+ sendResetPasswordEmail(locale: String = "en_GB", username: String): Boolean!
1518
+ "A software config"
1519
+ software(id: Int, label: String): SoftwareVO
1520
+ "Search in strategies"
1521
+ strategies(filter: StrategyFilterVOInput!, offset: Int = 0, size: Int = 1000, sortBy: String = "label", sortDirection: String = "asc"): [StrategyVO]
1522
+ "Get already filled analytic references"
1523
+ strategiesAnalyticReferences(programId: Int!): [String]
1524
+ "Get strategies count"
1525
+ strategiesCount(filter: StrategyFilterVOInput): Long
1526
+ "Get already filled departments"
1527
+ strategiesDepartments(programId: Int!): [Int]
1528
+ "Get already filled locations"
1529
+ strategiesLocations(locationClassification: LocationClassificationEnum, programId: Int!): [Int]
1530
+ "Get already filled PMFM or one of parameter, matrix, fraction, method"
1531
+ strategiesPmfms(field: String = "pmfm", programId: Int!, referenceTaxonId: Int): [Int]
1532
+ "Get already filled values from entityName"
1533
+ strategiesReferentials(
1534
+ entityName: String,
1535
+ "only for Location entities"
1536
+ locationClassification: LocationClassificationEnum,
1537
+ offset: Int = 0,
1538
+ programId: Int!,
1539
+ size: Int = 100,
1540
+ sortBy: String = "label",
1541
+ sortDirection: String = "asc"
1542
+ ): [ReferentialVO]
1543
+ "Get already filled taxon names"
1544
+ strategiesTaxonNames(programId: Int!): [Int]
1545
+ "Get a strategy"
1546
+ strategy(id: Int!): StrategyVO
1547
+ "Get next label for strategy"
1548
+ strategyNextLabel(labelPrefix: String = "", nbDigit: Int = 0, programId: Int!): String
1549
+ "Get next sample label for strategy"
1550
+ strategyNextSampleLabel(labelSeparator: String = "", nbDigit: Int = 0, strategyLabel: String!): String
1551
+ "Search in taxon groups"
1552
+ taxonGroups(filter: ReferentialFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "name", sortDirection: String = "asc"): [TaxonGroupVO]
1553
+ "Count taxon groups"
1554
+ taxonGroupsCount(filter: ReferentialFilterVOInput): Long
1555
+ "Get a Taxon Name"
1556
+ taxonName(id: Int, label: String): TaxonNameVO
1557
+ "Get taxon name count"
1558
+ taxonNameCount(filter: TaxonNameFilterVOInput): Long
1559
+ "Search in taxon names"
1560
+ taxonNames(filter: TaxonNameFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "name", sortDirection: String = "asc"): [TaxonNameVO]
1561
+ "Get trash content"
1562
+ trashEntities(entityName: String, offset: Int = 0, size: Int = 1000, sortBy: String = "updateDate", sortDirection: String = "desc"): [String]
1563
+ "Get trash file content"
1564
+ trashEntity(entityName: String, id: String): String
1565
+ "Get a trip, by id"
1566
+ trip(id: Int!): TripVO
1567
+ "Search in trips"
1568
+ trips(filter: TripFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String, sortDirection: String = "desc", trash: Boolean = false): [TripVO]
1569
+ "Get trips count"
1570
+ tripsCount(filter: TripFilterVOInput, trash: Boolean = false): Long!
1571
+ "Update account pubkey"
1572
+ updateAccountPubkey(pubkey: String): Boolean!
1573
+ "Search in user events"
1574
+ userEvents(filter: UserEventFilterVOInput, page: PageInput): [UserEventVO]
1575
+ "Count user events"
1576
+ userEventsCount(filter: UserEventFilterVOInput): Long
1577
+ "Get a vessel"
1578
+ vessel(
1579
+ id: Int,
1580
+ "@deprecated Use 'id'"
1581
+ vesselId: Int
1582
+ ): VesselVO
1583
+ "Get vessel features history"
1584
+ vesselFeaturesHistory(filter: VesselFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "startDate", sortDirection: String = "asc", vesselId: Int): [VesselFeaturesVO]
1585
+ "Get vessel features history count"
1586
+ vesselFeaturesHistoryCount(filter: VesselFilterVOInput, vesselId: Int): Long
1587
+ "Get a vesselOwner"
1588
+ vesselOwner(id: Int): VesselOwnerVO
1589
+ "Get vessel owner history"
1590
+ vesselOwnerHistory(filter: VesselFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "startDate", sortDirection: String = "asc", vesselId: Int): [VesselOwnerPeriodVO]
1591
+ "Get total vessel owner history count"
1592
+ vesselOwnerHistoryCount(filter: VesselFilterVOInput, vesselId: Int): Long
1593
+ "Get vessel registration history"
1594
+ vesselRegistrationHistory(filter: VesselFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "startDate", sortDirection: String = "asc", vesselId: Int): [VesselRegistrationPeriodVO]
1595
+ "Get vessel registration history count"
1596
+ vesselRegistrationHistoryCount(filter: VesselFilterVOInput, vesselId: Int): Long
1597
+ "Search in vessel snapshots"
1598
+ vesselSnapshots(filter: VesselFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "exteriorMarking", sortDirection: String = "asc"): [VesselSnapshotVO]
1599
+ "Get total vessel snapshots count"
1600
+ vesselSnapshotsCount(filter: VesselFilterVOInput): Long
1601
+ "Search in vessels"
1602
+ vessels(filter: VesselFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String, sortDirection: String = "asc"): [VesselVO]
1603
+ "Get total vessels count"
1604
+ vesselsCount(filter: VesselFilterVOInput): Long!
1605
+ "Search in weight length conversions"
1606
+ weightLengthConversions(filter: WeightLengthConversionFilterVOInput, offset: Int = 0, size: Int = 1000, sortBy: String = "id", sortDirection: String = "asc"): [WeightLengthConversionVO]
1607
+ "Search in weight length conversions"
1608
+ weightLengthConversionsCount(filter: WeightLengthConversionFilterVOInput): Long
1609
+ }
1610
+
1611
+ type ReferentialTypeVO {
1612
+ id: String
1613
+ level: String
1614
+ }
1615
+
1616
+ type ReferentialVO {
1617
+ comments: String
1618
+ creationDate: Date
1619
+ description: String
1620
+ entityName: String
1621
+ id: Int
1622
+ label: String
1623
+ "Get the level from a referential entity"
1624
+ level: ReferentialVO
1625
+ levelId: Int
1626
+ name: String
1627
+ "Get referential's parent"
1628
+ parent: ReferentialVO
1629
+ parentId: Int
1630
+ properties: Map_String_ObjectScalar
1631
+ rankOrder: Int
1632
+ statusId: Int
1633
+ updateDate: Date
1634
+ validityStatusId: Int
1635
+ }
1636
+
1637
+ type RoundWeightConversionVO {
1638
+ comments: String
1639
+ conversionCoefficient: Float
1640
+ creationDate: Date
1641
+ description: String
1642
+ "Get round weight conversion's dressing"
1643
+ dressing: ReferentialVO
1644
+ dressingId: Int
1645
+ endDate: Date
1646
+ id: Int
1647
+ "Get round weight conversion's location"
1648
+ location: LocationVO
1649
+ locationId: Int
1650
+ "Get round weight conversion's preserving"
1651
+ preserving: ReferentialVO
1652
+ preservingId: Int
1653
+ startDate: Date
1654
+ statusId: Int
1655
+ "Get round weight conversion's taxon group"
1656
+ taxonGroup: TaxonGroupVO
1657
+ taxonGroupId: Int
1658
+ updateDate: Date
1659
+ }
1660
+
1661
+ type SaleVO {
1662
+ batches: [BatchVO]
1663
+ catchBatch: BatchVO
1664
+ comments: String
1665
+ controlDate: Date
1666
+ creationDate: Date
1667
+ endDateTime: Date
1668
+ fishingAreas: [FishingAreaVO]
1669
+ id: Int
1670
+ landing: LandingVO
1671
+ landingId: Int
1672
+ "Get sale measurement values"
1673
+ measurementValues: Map_Integer_StringScalar
1674
+ "Get sale measurements"
1675
+ measurements: [MeasurementVO]
1676
+ observers: [PersonVO]
1677
+ "Get sale's products"
1678
+ products: [ProductVO]
1679
+ program: ProgramVO
1680
+ qualificationComments: String
1681
+ qualificationDate: Date
1682
+ qualityFlag: Int
1683
+ qualityFlagId: Int
1684
+ recorderDepartment: DepartmentVO
1685
+ recorderPerson: PersonVO
1686
+ saleLocation: LocationVO
1687
+ saleType: ReferentialVO
1688
+ startDateTime: Date
1689
+ trip: TripVO
1690
+ tripId: Int
1691
+ updateDate: Date
1692
+ validationDate: Date
1693
+ vesselDateTime: Date
1694
+ vesselId: Int
1695
+ vesselSnapshot: VesselSnapshotVO
1696
+ }
1697
+
1698
+ type SampleVO {
1699
+ batch: BatchVO
1700
+ batchId: Int
1701
+ children: [SampleVO]
1702
+ comments: String
1703
+ controlDate: Date
1704
+ creationDate: Date
1705
+ flags: Int!
1706
+ id: Int
1707
+ "Get sample's images"
1708
+ images: [ImageAttachmentVO]
1709
+ individualCount: Int
1710
+ label: String
1711
+ landing: LandingVO
1712
+ landingId: Int
1713
+ leaf: Boolean!
1714
+ matrix: ReferentialVO
1715
+ matrixId: Int
1716
+ "Get measurement values (as a key/value map, using pmfmId as key)"
1717
+ measurementValues: Map_Integer_StringScalar
1718
+ "Get sample measurements"
1719
+ measurements: [MeasurementVO]
1720
+ operation: OperationVO
1721
+ operationId: Int
1722
+ parent: SampleVO
1723
+ parentId: Int
1724
+ program: ProgramVO
1725
+ qualificationComments: String
1726
+ qualificationDate: Date
1727
+ qualityFlag: Int
1728
+ qualityFlagId: Int
1729
+ rankOrder: Int
1730
+ recorderDepartment: DepartmentVO
1731
+ recorderPerson: PersonVO
1732
+ sampleDate: Date
1733
+ size: Float
1734
+ sizeUnit: String
1735
+ tagId: String
1736
+ taxonGroup: ReferentialVO
1737
+ taxonName: TaxonNameVO
1738
+ updateDate: Date
1739
+ validationDate: Date
1740
+ }
1741
+
1742
+ type ScientificCruiseVO {
1743
+ comments: String
1744
+ controlDate: Date
1745
+ creationDate: Date
1746
+ departureDateTime: Date
1747
+ id: Int
1748
+ managerPerson: PersonVO
1749
+ name: String
1750
+ program: ProgramVO
1751
+ qualificationComments: String
1752
+ qualificationDate: Date
1753
+ qualityFlag: Int
1754
+ qualityFlagId: Int
1755
+ recorderDepartment: DepartmentVO
1756
+ recorderPerson: PersonVO
1757
+ reference: String
1758
+ returnDateTime: Date
1759
+ trip: TripVO
1760
+ tripId: Int
1761
+ updateDate: Date
1762
+ validationDate: Date
1763
+ vesselDateTime: Date
1764
+ vesselId: Int
1765
+ vesselSnapshot: VesselSnapshotVO
1766
+ }
1767
+
1768
+ type SoftwareVO {
1769
+ comments: String
1770
+ creationDate: Date
1771
+ description: String
1772
+ entityName: String
1773
+ id: Int
1774
+ label: String
1775
+ name: String
1776
+ properties: Map_String_StringScalar
1777
+ statusId: Int
1778
+ updateDate: Date
1779
+ }
1780
+
1781
+ type StrategyDepartmentVO {
1782
+ department: ReferentialVO
1783
+ id: Int
1784
+ location: ReferentialVO
1785
+ privilege: ReferentialVO
1786
+ strategyId: Int
1787
+ updateDate: Date
1788
+ }
1789
+
1790
+ type StrategyVO {
1791
+ analyticReference: String
1792
+ appliedStrategies: [AppliedStrategyVO]
1793
+ comments: String
1794
+ creationDate: Date
1795
+ "Get strategy's denormalized pmfms"
1796
+ denormalizedPmfms: [DenormalizedPmfmStrategyVO]
1797
+ departments: [StrategyDepartmentVO]
1798
+ description: String
1799
+ entityName: String
1800
+ gearIds: [Int]
1801
+ "Get strategy's gears"
1802
+ gears: [ReferentialVO]
1803
+ id: Int
1804
+ label: String
1805
+ name: String
1806
+ "Get strategy's pmfms"
1807
+ pmfms: [PmfmStrategyVO]
1808
+ programId: Int
1809
+ properties: Map_String_StringScalar
1810
+ statusId: Int
1811
+ taxonGroupIds: [Int]
1812
+ taxonGroups: [TaxonGroupStrategyVO]
1813
+ taxonNameIds: [Int]
1814
+ taxonNames: [TaxonNameStrategyVO]
1815
+ updateDate: Date
1816
+ }
1817
+
1818
+ "Subscription root"
1819
+ type Subscription {
1820
+ "Subscribe to user's authorized programs"
1821
+ authorizedPrograms(
1822
+ "Minimum interval to find changes, in seconds."
1823
+ interval: Int = 30,
1824
+ startWithActualValue: Boolean
1825
+ ): [ProgramVO]
1826
+ "Subscribe to last strategies update date"
1827
+ lastStrategiesUpdateDate(
1828
+ filter: StrategyFilterVOInput!,
1829
+ "Minimum interval to check, in seconds."
1830
+ interval: Int = 30
1831
+ ): Date
1832
+ "Subscribe to any account update"
1833
+ updateAccount(
1834
+ "Minimum interval to find changes, in seconds."
1835
+ interval: Int = 30
1836
+ ): AccountVO
1837
+ "Subscribe to changes on an activity calendar"
1838
+ updateActivityCalendar(
1839
+ id: Int!,
1840
+ "Minimum interval to find changes, in seconds."
1841
+ interval: Int = 30
1842
+ ): ActivityCalendarVO
1843
+ "Subscribe to changes on job progression"
1844
+ updateJobProgression(id: Int!, interval: Int): JobProgressionVO
1845
+ "Subscribe to changes on jobs"
1846
+ updateJobs(filter: JobFilterVOInput, interval: Int): [JobVO]
1847
+ "Subscribe to changes on an landing"
1848
+ updateLanding(
1849
+ id: Int!,
1850
+ "Minimum interval to find changes, in seconds."
1851
+ interval: Int = 30
1852
+ ): LandingVO
1853
+ "Subscribe to changes on an observed location"
1854
+ updateObservedLocation(
1855
+ id: Int!,
1856
+ "Minimum interval to find changes, in seconds."
1857
+ interval: Int = 30
1858
+ ): ObservedLocationVO
1859
+ "Subscribe to changes on an operation"
1860
+ updateOperation(
1861
+ id: Int!,
1862
+ "Minimum interval to find changes, in seconds."
1863
+ interval: Int = 30
1864
+ ): OperationVO
1865
+ "Subscribe to changes on a program"
1866
+ updateProgram(
1867
+ id: Int!,
1868
+ "Minimum interval to find changes, in seconds."
1869
+ interval: Int = 30
1870
+ ): ProgramVO
1871
+ "Subscribe to changes on program's strategies"
1872
+ updateProgramStrategies(
1873
+ "Minimum interval to find changes, in seconds."
1874
+ interval: Int = 30,
1875
+ programId: Int!
1876
+ ): [StrategyVO]
1877
+ "Subscribe to changes on a referential"
1878
+ updateReferential(
1879
+ entityName: String!,
1880
+ id: Int!,
1881
+ "Minimum interval to find changes, in seconds."
1882
+ interval: Int = 30
1883
+ ): ReferentialVO
1884
+ "Subscribe to changes on an sale"
1885
+ updateSale(
1886
+ id: Int!,
1887
+ "Minimum interval to find changes, in seconds."
1888
+ interval: Int = 30
1889
+ ): SaleVO
1890
+ "Subscribe to changes on a trip"
1891
+ updateTrip(
1892
+ id: Int!,
1893
+ "Minimum interval to find changes, in seconds."
1894
+ interval: Int = 30
1895
+ ): TripVO
1896
+ "Subscribe to changes on user events"
1897
+ updateUserEvents(
1898
+ filter: UserEventFilterVOInput,
1899
+ "Minimum interval to find changes, in seconds."
1900
+ interval: Int = 10
1901
+ ): [UserEventVO]
1902
+ "Subscribe to changes on user events count"
1903
+ updateUserEventsCount(
1904
+ filter: UserEventFilterVOInput,
1905
+ "Minimum interval to find changes, in seconds."
1906
+ interval: Int = 10
1907
+ ): Long
1908
+ }
1909
+
1910
+ type TaxonGroupStrategyVO {
1911
+ priorityLevel: Int
1912
+ strategyId: Int
1913
+ taxonGroup: TaxonGroupVO
1914
+ }
1915
+
1916
+ type TaxonGroupVO {
1917
+ comments: String
1918
+ creationDate: Date
1919
+ description: String
1920
+ entityName: String
1921
+ id: Int
1922
+ label: String
1923
+ "Get the level from a referential entity"
1924
+ level: ReferentialVO
1925
+ levelId: Int
1926
+ name: String
1927
+ "Get referential's parent"
1928
+ parent: ReferentialVO
1929
+ parentId: Int
1930
+ properties: Map_String_ObjectScalar
1931
+ rankOrder: Int
1932
+ statusId: Int
1933
+ "Get taxon group's taxons"
1934
+ taxonNames: [TaxonNameVO]
1935
+ updateDate: Date
1936
+ validityStatusId: Int
1937
+ }
1938
+
1939
+ type TaxonNameStrategyVO {
1940
+ isReferent: Boolean
1941
+ priorityLevel: Int
1942
+ referenceTaxonId: Int
1943
+ strategyId: Int
1944
+ taxonName: TaxonNameVO
1945
+ }
1946
+
1947
+ type TaxonNameVO {
1948
+ comments: String
1949
+ completeName: String
1950
+ creationDate: Date
1951
+ description: String
1952
+ endDate: Date
1953
+ entityName: String
1954
+ id: Int
1955
+ isNaming: Boolean
1956
+ isReferent: Boolean
1957
+ isVirtual: Boolean
1958
+ label: String
1959
+ "Get the level from a referential entity"
1960
+ level: ReferentialVO
1961
+ levelId: Int
1962
+ name: String
1963
+ "Get referential's parent"
1964
+ parent: ReferentialVO
1965
+ parentId: Int
1966
+ parentTaxonName: TaxonNameVO
1967
+ properties: Map_String_ObjectScalar
1968
+ rankOrder: Int
1969
+ referenceTaxonId: Int
1970
+ startDate: Date
1971
+ statusId: Int
1972
+ "Get taxon group's ids of a taxon name"
1973
+ taxonGroupIds: [Int]
1974
+ taxonomicLevel: ReferentialVO
1975
+ taxonomicLevelId: Int
1976
+ updateDate: Date
1977
+ upperRank: Int
1978
+ validityStatusId: Int
1979
+ }
1980
+
1981
+ type TripVO {
1982
+ TYPENAME: String
1983
+ comments: String
1984
+ controlDate: Date
1985
+ creationDate: Date
1986
+ departureDateTime: Date
1987
+ departureLocation: LocationVO
1988
+ "Get trip's unique expected sale"
1989
+ expectedSale: ExpectedSaleVO
1990
+ "Get trip's expected sales"
1991
+ expectedSales: [ExpectedSaleVO]
1992
+ "Get trip's fishing area"
1993
+ fishingArea: FishingAreaVO
1994
+ "Get trip's fishing areas"
1995
+ fishingAreas: [FishingAreaVO]
1996
+ "Get operation's gears"
1997
+ gears: [PhysicalGearVO]
1998
+ hasExpectedSales: Boolean
1999
+ hasSales: Boolean
2000
+ id: Int
2001
+ "Get trip's landing"
2002
+ landing: LandingVO
2003
+ landingId: Int
2004
+ "Get trip's measurements"
2005
+ measurementValues: Map_Integer_StringScalar
2006
+ "Get trip's measurements"
2007
+ measurements: [MeasurementVO]
2008
+ "Get trip metiers"
2009
+ metiers: [MetierVO]
2010
+ observedLocation: ObservedLocationVO
2011
+ observedLocationId: Int
2012
+ observers: [PersonVO]
2013
+ "Get trip's operation groups"
2014
+ operationGroups: [OperationGroupVO]
2015
+ "Get trip's operations"
2016
+ operations: [OperationVO]
2017
+ program: ProgramVO
2018
+ qualificationComments: String
2019
+ qualificationDate: Date
2020
+ qualityFlag: Int
2021
+ qualityFlagId: Int
2022
+ recorderDepartment: DepartmentVO
2023
+ recorderPerson: PersonVO
2024
+ returnDateTime: Date
2025
+ returnLocation: LocationVO
2026
+ "Get trip's unique sale"
2027
+ sale: SaleVO
2028
+ "Get trip's sales"
2029
+ sales: [SaleVO]
2030
+ "Get trip's sampling strata"
2031
+ samplingStrata: ReferentialVO
2032
+ samplingStrataId: Int
2033
+ scientificCruise: ScientificCruiseVO
2034
+ scientificCruiseId: Int
2035
+ updateDate: Date
2036
+ validationDate: Date
2037
+ vesselDateTime: Date
2038
+ vesselId: Int
2039
+ vesselSnapshot: VesselSnapshotVO
2040
+ }
2041
+
2042
+ type UserEventVO {
2043
+ content: String
2044
+ creationDate: Date
2045
+ eventType: String
2046
+ hasContent: Boolean
2047
+ hash: String
2048
+ id: Int
2049
+ issuer: String
2050
+ level: EventLevelEnum
2051
+ readDate: Date
2052
+ readSignature: String
2053
+ recipient: String
2054
+ signature: String
2055
+ source: String
2056
+ type: EventTypeEnum
2057
+ updateDate: Date
2058
+ }
2059
+
2060
+ type UserSettingsVO {
2061
+ content: String
2062
+ id: Int
2063
+ issuer: String
2064
+ latLongFormat: String
2065
+ locale: String
2066
+ nonce: String
2067
+ updateDate: Date
2068
+ }
2069
+
2070
+ type UserTokenVO {
2071
+ creationDate: Date
2072
+ expirationDate: Date
2073
+ flags: Int
2074
+ id: Int
2075
+ lastUsedDate: Date
2076
+ name: String
2077
+ pubkey: String
2078
+ token: String
2079
+ updateDate: Date
2080
+ }
2081
+
2082
+ type VesselActivityVO {
2083
+ comments: String
2084
+ date: Date
2085
+ landingId: Int
2086
+ measurementValues: Map_Integer_StringScalar
2087
+ metiers: [ReferentialVO]
2088
+ observedLocationId: Int
2089
+ rankOrder: Int
2090
+ recorderPersonId: Int
2091
+ tripId: Int
2092
+ }
2093
+
2094
+ type VesselFeaturesVO {
2095
+ administrativePower: Int
2096
+ auxiliaryPower: Int
2097
+ basePortLocation: LocationVO
2098
+ comments: String
2099
+ constructionYear: Int
2100
+ controlDate: Date
2101
+ creationDate: Date
2102
+ endDate: Date
2103
+ exteriorMarking: String
2104
+ grossTonnageGrt: Float
2105
+ grossTonnageGt: Float
2106
+ hullMaterial: ReferentialVO
2107
+ id: Int
2108
+ ircs: String
2109
+ isFpc: Boolean
2110
+ lengthOverAll: Float
2111
+ measurementValues: Map_Integer_StringScalar
2112
+ measurements: [MeasurementVO]
2113
+ name: String
2114
+ program: ProgramVO
2115
+ qualificationComments: String
2116
+ qualificationDate: Date
2117
+ qualityFlag: Int
2118
+ qualityFlagId: Int
2119
+ recorderDepartment: DepartmentVO
2120
+ recorderPerson: PersonVO
2121
+ startDate: Date
2122
+ updateDate: Date
2123
+ validationDate: Date
2124
+ vessel: VesselVO
2125
+ }
2126
+
2127
+ type VesselOwnerPeriodId {
2128
+ startDate: Date
2129
+ vessel: Int!
2130
+ vesselOwner: Int!
2131
+ }
2132
+
2133
+ "Vessel owner period"
2134
+ type VesselOwnerPeriodVO {
2135
+ endDate: Date
2136
+ id: VesselOwnerPeriodId
2137
+ startDate: Date
2138
+ vessel: VesselVO
2139
+ vesselId: Int
2140
+ vesselOwner: VesselOwnerVO
2141
+ vesselOwnerId: Int
2142
+ }
2143
+
2144
+ type VesselOwnerVO {
2145
+ activityStartDate: Date
2146
+ city: String
2147
+ countryLocation: LocationVO
2148
+ dateOfBirth: Date
2149
+ email: String
2150
+ faxNumber: String
2151
+ firstName: String
2152
+ id: Int
2153
+ lastName: String
2154
+ mobileNumber: String
2155
+ phoneNumber: String
2156
+ program: ProgramVO
2157
+ registrationCode: String
2158
+ retirementDate: Date
2159
+ street: String
2160
+ updateDate: Date
2161
+ zipCode: String
2162
+ }
2163
+
2164
+ type VesselPositionVO {
2165
+ controlDate: Date
2166
+ dateTime: Date
2167
+ id: Int
2168
+ latitude: Float
2169
+ longitude: Float
2170
+ operation: OperationVO
2171
+ operationId: Int
2172
+ qualityFlagId: Int
2173
+ recorderDepartment: DepartmentVO
2174
+ updateDate: Date
2175
+ validationDate: Date
2176
+ }
2177
+
2178
+ "Vessel registration period"
2179
+ type VesselRegistrationPeriodVO {
2180
+ endDate: Date
2181
+ id: Int
2182
+ intRegistrationCode: String
2183
+ qualityFlagId: Int
2184
+ registrationCode: String
2185
+ registrationLocation: LocationVO
2186
+ startDate: Date
2187
+ vessel: VesselVO
2188
+ }
2189
+
2190
+ type VesselSnapshotVO {
2191
+ administrativePower: Int
2192
+ basePortLocation: LocationVO
2193
+ comments: String
2194
+ controlDate: Date
2195
+ countryRegistrationLocation: LocationVO
2196
+ creationDate: Date
2197
+ empty(bean: VesselSnapshotVOInput, ignoredProperties: [String]): Boolean!
2198
+ endDate: Date
2199
+ exteriorMarking: String
2200
+ grossTonnageGrt: Float
2201
+ grossTonnageGt: Float
2202
+ id: Int
2203
+ intRegistrationCode: String
2204
+ lengthOverAll: Float
2205
+ "Get vessel's physical measurements"
2206
+ measurementValues: Map_Integer_StringScalar
2207
+ "Get vessel's physical measurements"
2208
+ measurements: [MeasurementVO]
2209
+ name: String
2210
+ program: ProgramVO
2211
+ qualificationComments: String
2212
+ qualificationDate: Date
2213
+ qualityFlag: Int
2214
+ qualityFlagId: Int
2215
+ recorderDepartment: DepartmentVO
2216
+ recorderPerson: PersonVO
2217
+ registrationCode: String
2218
+ registrationLocation: LocationVO
2219
+ startDate: Date
2220
+ updateDate: Date
2221
+ validationDate: Date
2222
+ vesselFeaturesId: Int
2223
+ vesselStatusId: Int
2224
+ vesselType: ReferentialVO
2225
+ }
2226
+
2227
+ type VesselUseFeaturesVO {
2228
+ activityCalendarId: Int
2229
+ basePortLocation: LocationVO
2230
+ comments: String
2231
+ controlDate: Date
2232
+ creationDate: Date
2233
+ dailyActivityCalendarId: Int
2234
+ dataOrigins: [DataOriginVO]
2235
+ endDate: Date
2236
+ flags: Int!
2237
+ id: Int
2238
+ isActive: Int
2239
+ "Get vessel use features measurements"
2240
+ measurementValues: Map_Integer_StringScalar
2241
+ program: ProgramVO
2242
+ qualificationComments: String
2243
+ qualificationDate: Date
2244
+ qualityFlag: Int
2245
+ qualityFlagId: Int
2246
+ recorderDepartment: DepartmentVO
2247
+ recorderDepartmentId: Int
2248
+ recorderPersonId: Int
2249
+ startDate: Date
2250
+ updateDate: Date
2251
+ validationDate: Date
2252
+ vessel: VesselSnapshotVO
2253
+ vesselId: Int
2254
+ vesselSnapshot: VesselSnapshotVO
2255
+ }
2256
+
2257
+ type VesselVO {
2258
+ comments: String
2259
+ controlDate: Date
2260
+ creationDate: Date
2261
+ id: Int
2262
+ program: ProgramVO
2263
+ qualificationComments: String
2264
+ qualificationDate: Date
2265
+ qualityFlag: Int
2266
+ qualityFlagId: Int
2267
+ recorderDepartment: DepartmentVO
2268
+ recorderPerson: PersonVO
2269
+ statusId: Int
2270
+ updateDate: Date
2271
+ validationDate: Date
2272
+ vesselFeatures: VesselFeaturesVO
2273
+ vesselRegistrationPeriod: VesselRegistrationPeriodVO
2274
+ vesselType: ReferentialVO
2275
+ }
2276
+
2277
+ type WeightLengthConversionVO {
2278
+ comments: String
2279
+ conversionCoefficientA: Float
2280
+ conversionCoefficientB: Float
2281
+ creationDate: Date
2282
+ description: String
2283
+ endMonth: Int
2284
+ id: Int
2285
+ "Get weight length conversion's length parameter"
2286
+ lengthParameter: ReferentialVO
2287
+ lengthParameterId: Int
2288
+ lengthPmfmIds: [Int]
2289
+ "Get weight length conversion's length unit"
2290
+ lengthUnit: ReferentialVO
2291
+ lengthUnitId: Int
2292
+ "Get weight length conversion's location"
2293
+ location: LocationVO
2294
+ locationId: Int
2295
+ originItemTypeId: Int
2296
+ rectangleLabels: [String]
2297
+ referenceTaxonId: Int
2298
+ "Get weight length conversion's sex"
2299
+ sex: ReferentialVO
2300
+ sexId: Int
2301
+ startMonth: Int
2302
+ statusId: Int
2303
+ "Get round weight conversion's taxon group"
2304
+ taxonName: TaxonNameVO
2305
+ updateDate: Date
2306
+ year: Int
2307
+ }
2308
+
2309
+ enum DataQualityStatusEnum {
2310
+ CONTROLLED
2311
+ MODIFIED
2312
+ QUALIFIED
2313
+ VALIDATED
2314
+ }
2315
+
2316
+ enum EventLevelEnum {
2317
+ DEBUG
2318
+ ERROR
2319
+ INFO
2320
+ WARNING
2321
+ }
2322
+
2323
+ enum EventTypeEnum {
2324
+ COMMENT
2325
+ DEBUG_DATA
2326
+ EMAIL
2327
+ FEED
2328
+ INBOX_MESSAGE
2329
+ JOB
2330
+ }
2331
+
2332
+ enum ExtractionCategoryEnum {
2333
+ LIVE
2334
+ PRODUCT
2335
+ }
2336
+
2337
+ enum JobStatusEnum {
2338
+ CANCELLED
2339
+ ERROR
2340
+ FATAL
2341
+ PENDING
2342
+ RUNNING
2343
+ SUCCESS
2344
+ WARNING
2345
+ }
2346
+
2347
+ enum LocationClassificationEnum {
2348
+ LAND
2349
+ SEA
2350
+ }
2351
+
2352
+ enum MessageTypeEnum {
2353
+ COMMENT
2354
+ DEBUG_DATA
2355
+ EMAIL
2356
+ FEED
2357
+ INBOX_MESSAGE
2358
+ }
2359
+
2360
+ enum SortDirection {
2361
+ ASC
2362
+ DESC
2363
+ }
2364
+
2365
+ "An arbitrary precision signed decimal"
2366
+ scalar BigDecimal
2367
+
2368
+ "Built-in scalar representing an instant in time"
2369
+ scalar Date
2370
+
2371
+ "Any JSON value"
2372
+ scalar Json
2373
+
2374
+ "A 64-bit signed integer"
2375
+ scalar Long
2376
+
2377
+ "Built-in scalar for map-like structures"
2378
+ scalar Map_Integer_StringScalar
2379
+
2380
+ "Built-in scalar for map-like structures"
2381
+ scalar Map_String_List_ObjectScalar
2382
+
2383
+ "Built-in scalar for map-like structures"
2384
+ scalar Map_String_Map_String_LongScalar
2385
+
2386
+ "Built-in scalar for map-like structures"
2387
+ scalar Map_String_ObjectScalar
2388
+
2389
+ "Built-in scalar for map-like structures"
2390
+ scalar Map_String_Set_StringScalar
2391
+
2392
+ "Built-in scalar for map-like structures"
2393
+ scalar Map_String_StringScalar
2394
+
2395
+ "Built-in scalar for dynamic values"
2396
+ scalar ObjectScalar
2397
+
2398
+ "A 16-bit signed integer"
2399
+ scalar Short
2400
+
2401
+ input AccountVOInput {
2402
+ avatar: String
2403
+ creationDate: Date
2404
+ department: DepartmentVOInput
2405
+ email: String
2406
+ firstName: String
2407
+ hasAvatar: Boolean
2408
+ id: Int
2409
+ lastName: String
2410
+ mainProfile: String
2411
+ profiles: [String]
2412
+ pubkey: String
2413
+ settings: UserSettingsVOInput
2414
+ statusId: Int
2415
+ tokens: [UserTokenVOInput]
2416
+ updateDate: Date
2417
+ username: String
2418
+ usernameExtranet: String
2419
+ }
2420
+
2421
+ input ActivityCalendarFilterVOInput {
2422
+ activityCalendarId: Int
2423
+ basePortLocationIds: [Int]
2424
+ dataQualityStatus: [DataQualityStatusEnum]
2425
+ directSurveyInvestigation: Int
2426
+ economicSurvey: Boolean
2427
+ endDate: Date
2428
+ excludedIds: [Int]
2429
+ includedIds: [Int]
2430
+ locationId: Int
2431
+ locationIds: [Int]
2432
+ observerPersonIds: [Int]
2433
+ programIds: [Int]
2434
+ programLabel: String
2435
+ qualityFlagIds: [Int]
2436
+ recorderDepartmentId: Int
2437
+ recorderPersonId: Int
2438
+ recorderPersonIds: [Int]
2439
+ registrationLocationId: Int
2440
+ registrationLocationIds: [Int]
2441
+ startDate: Date
2442
+ vesselId: Int
2443
+ vesselIds: [Int]
2444
+ vesselTypeId: Int
2445
+ vesselTypeIds: [Int]
2446
+ year: Int
2447
+ }
2448
+
2449
+ input ActivityCalendarVOInput {
2450
+ basePortLocationIds: [Int]
2451
+ comments: String
2452
+ controlDate: Date
2453
+ creationDate: Date
2454
+ directSurveyInvestigation: Int
2455
+ economicSurvey: Boolean
2456
+ gearPhysicalFeatures: [GearPhysicalFeaturesVOInput]
2457
+ gearUseFeatures: [GearUseFeaturesVOInput]
2458
+ id: Int
2459
+ images: [ImageAttachmentVOInput]
2460
+ measurementValues: Map_Integer_StringScalar
2461
+ observers: [PersonVOInput]
2462
+ program: ProgramVOInput
2463
+ qualificationComments: String
2464
+ qualificationDate: Date
2465
+ qualityFlag: Int
2466
+ qualityFlagId: Int
2467
+ recorderDepartment: DepartmentVOInput
2468
+ recorderPerson: PersonVOInput
2469
+ registrationLocationIds: [Int]
2470
+ updateDate: Date
2471
+ validationDate: Date
2472
+ vesselId: Int
2473
+ vesselRegistrationPeriods: [ActivityCalendarVesselRegistrationPeriodVOInput]
2474
+ vesselSnapshot: VesselSnapshotVOInput
2475
+ vesselUseFeatures: [VesselUseFeaturesVOInput]
2476
+ year: Int
2477
+ }
2478
+
2479
+ input ActivityCalendarVesselRegistrationPeriodVOInput {
2480
+ endDate: Date
2481
+ id: Int
2482
+ intRegistrationCode: String
2483
+ qualityFlagId: Int
2484
+ readonly: Boolean!
2485
+ registrationCode: String
2486
+ registrationLocation: LocationVOInput
2487
+ startDate: Date
2488
+ vessel: VesselVOInput
2489
+ }
2490
+
2491
+ input AggregatedLandingFilterVOInput {
2492
+ dataQualityStatus: [DataQualityStatusEnum]
2493
+ endDate: Date
2494
+ locationId: Int
2495
+ locationIds: [Int]
2496
+ observedLocationId: Int
2497
+ programIds: [Int]
2498
+ programLabel: String
2499
+ qualityFlagIds: [Int]
2500
+ recorderDepartmentId: Int
2501
+ recorderPersonId: Int
2502
+ startDate: Date
2503
+ }
2504
+
2505
+ input AggregatedLandingVOInput {
2506
+ id: Int
2507
+ observedLocationId: Int
2508
+ vesselActivities: [VesselActivityVOInput]
2509
+ vesselId: Int
2510
+ vesselSnapshot: VesselSnapshotVOInput
2511
+ }
2512
+
2513
+ input AggregationStrataVOInput {
2514
+ aggColumnName: String
2515
+ aggFunction: String
2516
+ comments: String
2517
+ creationDate: Date
2518
+ description: String
2519
+ entityName: String
2520
+ id: Int
2521
+ isDefault: Boolean
2522
+ label: String
2523
+ name: String
2524
+ product: ExtractionProductVOInput
2525
+ productId: Int
2526
+ sheetName: String
2527
+ spatialColumnName: String
2528
+ statusId: Int
2529
+ techColumnName: String
2530
+ timeColumnName: String
2531
+ updateDate: Date
2532
+ }
2533
+
2534
+ input AppliedPeriodVOInput {
2535
+ acquisitionNumber: Int
2536
+ appliedStrategyId: Int
2537
+ endDate: Date
2538
+ startDate: Date
2539
+ }
2540
+
2541
+ input AppliedStrategyVOInput {
2542
+ appliedPeriods: [AppliedPeriodVOInput]
2543
+ id: Int
2544
+ location: ReferentialVOInput
2545
+ strategyId: Int
2546
+ }
2547
+
2548
+ input BatchVOInput {
2549
+ children: [BatchVOInput]
2550
+ comments: String
2551
+ controlDate: Date
2552
+ exhaustiveInventory: Boolean
2553
+ id: Int
2554
+ individualCount: Int
2555
+ label: String
2556
+ locationId: Int
2557
+ measurementValues: Map_Integer_StringScalar
2558
+ operation: OperationVOInput
2559
+ operationId: Int
2560
+ parent: BatchVOInput
2561
+ parentId: Int
2562
+ qualificationComments: String
2563
+ qualificationDate: Date
2564
+ qualityFlag: Int
2565
+ qualityFlagId: Int
2566
+ quantificationMeasurements: [QuantificationMeasurementVOInput]
2567
+ rankOrder: Int
2568
+ recorderDepartment: DepartmentVOInput
2569
+ recorderPerson: PersonVOInput
2570
+ sale: SaleVOInput
2571
+ saleId: Int
2572
+ samplingRatio: Float
2573
+ samplingRatioText: String
2574
+ sortingMeasurements: [MeasurementVOInput]
2575
+ subgroupCount: Int
2576
+ taxonGroup: ReferentialVOInput
2577
+ taxonName: TaxonNameVOInput
2578
+ updateDate: Date
2579
+ validationDate: Date
2580
+ }
2581
+
2582
+ input ConfigurationVOInput {
2583
+ backgroundImages: [String]
2584
+ comments: String
2585
+ creationDate: Date
2586
+ description: String
2587
+ entityName: String
2588
+ id: Int
2589
+ label: String
2590
+ largeLogo: String
2591
+ name: String
2592
+ partners: [DepartmentVOInput]
2593
+ properties: Map_String_StringScalar
2594
+ smallLogo: String
2595
+ statusId: Int
2596
+ updateDate: Date
2597
+ }
2598
+
2599
+ input DataControlOptionsInput {
2600
+ withChildren: Boolean
2601
+ }
2602
+
2603
+ input DataFetchOptionsInput {
2604
+ withChildrenEntities: Boolean!
2605
+ withMeasurementValues: Boolean!
2606
+ withObservers: Boolean!
2607
+ withRecorderDepartment: Boolean!
2608
+ withRecorderPerson: Boolean!
2609
+ }
2610
+
2611
+ input DataOriginVOInput {
2612
+ acquisitionLevel: String
2613
+ gearPhysicalFeaturesId: Int
2614
+ gearUseFeaturesId: Int
2615
+ program: ProgramVOInput
2616
+ programId: Int
2617
+ vesselUseFeaturesId: Int
2618
+ }
2619
+
2620
+ input DataValidateOptionsInput {
2621
+ withChildren: Boolean
2622
+ }
2623
+
2624
+ input DenormalizedBatchesFilterVOInput {
2625
+ dataQualityStatus: [DataQualityStatusEnum]
2626
+ isDiscard: Boolean
2627
+ isLanding: Boolean
2628
+ observedLocationId: Int
2629
+ operationId: Int
2630
+ qualityFlagIds: [Int]
2631
+ recorderDepartmentId: Int
2632
+ saleId: Int
2633
+ tripId: Int
2634
+ }
2635
+
2636
+ input DenormalizedPmfmStrategyVOInput {
2637
+ acquisitionLevel: String
2638
+ acquisitionNumber: Int
2639
+ completeName: String
2640
+ defaultValue: Float
2641
+ detectionThreshold: Float
2642
+ fractionId: Int
2643
+ gearIds: [Int]
2644
+ gears: [String]
2645
+ id: Int
2646
+ isComputed: Boolean
2647
+ isEstimated: Boolean
2648
+ isMandatory: Boolean
2649
+ label: String
2650
+ matrixId: Int
2651
+ maxValue: Float
2652
+ maximumNumberDecimals: Int
2653
+ methodId: Int
2654
+ minValue: Float
2655
+ name: String
2656
+ parameterId: Int
2657
+ precision: Float
2658
+ qualitativeValues: [ReferentialVOInput]
2659
+ rankOrder: Int
2660
+ referenceTaxonIds: [Int]
2661
+ signifFiguresNumber: Int
2662
+ strategyId: Int
2663
+ taxonGroupIds: [Int]
2664
+ type: String
2665
+ unitLabel: String
2666
+ updateDate: Date
2667
+ }
2668
+
2669
+ input DepartmentFilterVOInput {
2670
+ excludedIds: [Int]
2671
+ id: Int
2672
+ includedIds: [Int]
2673
+ label: String
2674
+ levelId: Int
2675
+ levelIds: [Int]
2676
+ levelLabel: String
2677
+ levelLabels: [String]
2678
+ name: String
2679
+ searchAttribute: String
2680
+ searchJoin: String
2681
+ searchJoinLevelIds: [Int]
2682
+ searchText: String
2683
+ statusIds: [Int]
2684
+ withLogo: Boolean
2685
+ }
2686
+
2687
+ input DepartmentVOInput {
2688
+ comments: String
2689
+ creationDate: Date
2690
+ description: String
2691
+ entityName: String
2692
+ hasLogo: Boolean
2693
+ id: Int
2694
+ label: String
2695
+ level: ReferentialVOInput
2696
+ levelId: Int
2697
+ logo: String
2698
+ name: String
2699
+ parent: ReferentialVOInput
2700
+ parentId: Int
2701
+ properties: Map_String_ObjectScalar
2702
+ rankOrder: Int
2703
+ siteUrl: String
2704
+ statusId: Int
2705
+ updateDate: Date
2706
+ validityStatusId: Int
2707
+ }
2708
+
2709
+ input DevicePositionFilterVOInput {
2710
+ dataQualityStatus: [DataQualityStatusEnum]
2711
+ endDate: Date
2712
+ objectId: Int
2713
+ objectTypeId: Int
2714
+ objectTypeLabel: String
2715
+ qualityFlagIds: [Int]
2716
+ recorderDepartmentId: Int
2717
+ recorderPersonId: Int
2718
+ startDate: Date
2719
+ }
2720
+
2721
+ input DevicePositionVOInput {
2722
+ controlDate: Date
2723
+ creationDate: Date
2724
+ dateTime: Date
2725
+ id: Int
2726
+ latitude: Float
2727
+ longitude: Float
2728
+ objectId: Int
2729
+ objectType: ReferentialVOInput
2730
+ qualificationComments: String
2731
+ qualificationDate: Date
2732
+ qualityFlag: Int
2733
+ qualityFlagId: Int
2734
+ recorderDepartment: DepartmentVOInput
2735
+ recorderDepartmentId: Int
2736
+ recorderPerson: PersonVOInput
2737
+ recorderPersonId: Int
2738
+ updateDate: Date
2739
+ validationDate: Date
2740
+ }
2741
+
2742
+ input ExpectedSaleVOInput {
2743
+ id: Int
2744
+ landing: LandingVOInput
2745
+ landingId: Int
2746
+ measurementValues: Map_Integer_StringScalar
2747
+ measurements: [MeasurementVOInput]
2748
+ products: [ProductVOInput]
2749
+ saleDate: Date
2750
+ saleLocation: LocationVOInput
2751
+ saleType: ReferentialVOInput
2752
+ trip: TripVOInput
2753
+ tripId: Int
2754
+ }
2755
+
2756
+ input ExtractionFilterCriterionVOInput {
2757
+ name: String
2758
+ operator: String
2759
+ sheetName: String
2760
+ value: String
2761
+ values: [String]
2762
+ }
2763
+
2764
+ input ExtractionFilterVOInput {
2765
+ criteria: [ExtractionFilterCriterionVOInput]
2766
+ excludeColumnNames: [String]
2767
+ includeColumnNames: [String]
2768
+ meta: Map_String_ObjectScalar
2769
+ operator: String
2770
+ sheetName: String
2771
+ sheetNames: [String]
2772
+ }
2773
+
2774
+ input ExtractionProductVOInput {
2775
+ category: ExtractionCategoryEnum
2776
+ comments: String
2777
+ creationDate: Date
2778
+ description: String
2779
+ docUrl: String
2780
+ documentation: String
2781
+ entityName: String
2782
+ filterContent: String
2783
+ format: String
2784
+ id: Int
2785
+ isSpatial: Boolean
2786
+ label: String
2787
+ name: String
2788
+ parentId: Int
2789
+ processingFrequencyId: Int
2790
+ recorderDepartment: DepartmentVOInput
2791
+ recorderPerson: PersonVOInput
2792
+ statusId: Int
2793
+ stratum: [AggregationStrataVOInput]
2794
+ tables: [ExtractionTableVOInput]
2795
+ updateDate: Date
2796
+ version: String
2797
+ }
2798
+
2799
+ input ExtractionTableColumnVOInput {
2800
+ columnName: String
2801
+ description: String
2802
+ id: Int
2803
+ label: String
2804
+ name: String
2805
+ rankOrder: Int
2806
+ tableId: Int
2807
+ type: String
2808
+ values: [String]
2809
+ }
2810
+
2811
+ input ExtractionTableVOInput {
2812
+ columnValues: Map_String_List_ObjectScalar
2813
+ columns: [ExtractionTableColumnVOInput]
2814
+ comments: String
2815
+ creationDate: Date
2816
+ defaultAggColumn: String
2817
+ defaultSpaceColumn: String
2818
+ defaultTechColumn: String
2819
+ description: String
2820
+ entityName: String
2821
+ id: Int
2822
+ isSpatial: Boolean
2823
+ label: String
2824
+ name: String
2825
+ product: ExtractionProductVOInput
2826
+ productId: Int
2827
+ rankOrder: Int
2828
+ statusId: Int
2829
+ tableName: String
2830
+ updateDate: Date
2831
+ }
2832
+
2833
+ input ExtractionTypeFilterVOInput {
2834
+ category: String
2835
+ excludedIds: [Int]
2836
+ format: String
2837
+ formats: [String]
2838
+ id: Int
2839
+ includedIds: [Int]
2840
+ isSpatial: Boolean
2841
+ label: String
2842
+ levelId: Int
2843
+ levelIds: [Int]
2844
+ levelLabel: String
2845
+ levelLabels: [String]
2846
+ name: String
2847
+ parentId: Int
2848
+ recorderDepartmentId: Int
2849
+ recorderPersonId: Int
2850
+ searchAttribute: String
2851
+ searchJoin: String
2852
+ searchJoinLevelIds: [Int]
2853
+ searchText: String
2854
+ statusIds: [Int]
2855
+ version: String
2856
+ }
2857
+
2858
+ input ExtractionTypeVOInput {
2859
+ comments: String
2860
+ creationDate: Date
2861
+ description: String
2862
+ docUrl: String
2863
+ format: String
2864
+ id: Int
2865
+ isSpatial: Boolean
2866
+ label: String
2867
+ name: String
2868
+ parentId: Int
2869
+ processingFrequencyId: Int
2870
+ recorderDepartment: DepartmentVOInput
2871
+ recorderPerson: PersonVOInput
2872
+ sheetNames: [String]
2873
+ statusId: Int
2874
+ updateDate: Date
2875
+ version: String
2876
+ }
2877
+
2878
+ input FishingAreaVOInput {
2879
+ depthGradient: ReferentialVOInput
2880
+ distanceToCoastGradient: ReferentialVOInput
2881
+ gearUseFeatures: GearUseFeaturesVOInput
2882
+ gearUseFeaturesId: Int
2883
+ id: Int
2884
+ location: LocationVOInput
2885
+ nearbySpecificArea: ReferentialVOInput
2886
+ operation: OperationVOInput
2887
+ operationId: Int
2888
+ qualificationComments: String
2889
+ qualificationDate: Date
2890
+ qualityFlagId: Int
2891
+ sale: SaleVOInput
2892
+ saleId: Int
2893
+ }
2894
+
2895
+ input GearPhysicalFeaturesVOInput {
2896
+ activityCalendarId: Int
2897
+ comments: String
2898
+ controlDate: Date
2899
+ creationDate: Date
2900
+ dataOrigins: [DataOriginVOInput]
2901
+ endDate: Date
2902
+ gear: ReferentialVOInput
2903
+ id: Int
2904
+ measurementValues: Map_Integer_StringScalar
2905
+ metier: MetierVOInput
2906
+ otherGear: ReferentialVOInput
2907
+ program: ProgramVOInput
2908
+ qualificationComments: String
2909
+ qualificationDate: Date
2910
+ qualityFlag: Int
2911
+ qualityFlagId: Int
2912
+ rankOrder: Short
2913
+ recorderDepartment: DepartmentVOInput
2914
+ recorderDepartmentId: Int
2915
+ recorderPersonId: Int
2916
+ startDate: Date
2917
+ updateDate: Date
2918
+ validationDate: Date
2919
+ vessel: VesselSnapshotVOInput
2920
+ vesselId: Int
2921
+ vesselSnapshot: VesselSnapshotVOInput
2922
+ }
2923
+
2924
+ input GearUseFeaturesVOInput {
2925
+ activityCalendarId: Int
2926
+ comments: String
2927
+ controlDate: Date
2928
+ creationDate: Date
2929
+ dailyActivityCalendarId: Int
2930
+ dataOrigins: [DataOriginVOInput]
2931
+ endDate: Date
2932
+ fishingAreas: [FishingAreaVOInput]
2933
+ gear: ReferentialVOInput
2934
+ id: Int
2935
+ measurementValues: Map_Integer_StringScalar
2936
+ metier: MetierVOInput
2937
+ otherGear: ReferentialVOInput
2938
+ program: ProgramVOInput
2939
+ qualificationComments: String
2940
+ qualificationDate: Date
2941
+ qualityFlag: Int
2942
+ qualityFlagId: Int
2943
+ rankOrder: Short
2944
+ recorderDepartment: DepartmentVOInput
2945
+ recorderDepartmentId: Int
2946
+ recorderPersonId: Int
2947
+ startDate: Date
2948
+ updateDate: Date
2949
+ validationDate: Date
2950
+ vessel: VesselSnapshotVOInput
2951
+ vesselId: Int
2952
+ vesselSnapshot: VesselSnapshotVOInput
2953
+ }
2954
+
2955
+ input ImageAttachmentFilterVOInput {
2956
+ dataQualityStatus: [DataQualityStatusEnum]
2957
+ objectId: Int
2958
+ objectTypeId: Int
2959
+ qualityFlagIds: [Int]
2960
+ recorderDepartmentId: Int
2961
+ recorderPersonId: Int
2962
+ }
2963
+
2964
+ input ImageAttachmentVOInput {
2965
+ comments: String
2966
+ content: String
2967
+ contentType: String
2968
+ controlDate: Date
2969
+ creationDate: Date
2970
+ dataUrl: String
2971
+ dateTime: Date
2972
+ id: Int
2973
+ objectId: Int
2974
+ objectTypeId: Int
2975
+ path: String
2976
+ qualificationComments: String
2977
+ qualificationDate: Date
2978
+ qualityFlag: Int
2979
+ qualityFlagId: Int
2980
+ recorderDepartment: DepartmentVOInput
2981
+ recorderPerson: PersonVOInput
2982
+ updateDate: Date
2983
+ url: String
2984
+ validationDate: Date
2985
+ }
2986
+
2987
+ input JobFilterVOInput {
2988
+ excludedIds: [Int]
2989
+ id: Int
2990
+ includedIds: [Int]
2991
+ issuer: String
2992
+ issuerEmail: String
2993
+ lastUpdateDate: Date
2994
+ startedBefore: Date
2995
+ status: [JobStatusEnum]
2996
+ types: [String]
2997
+ }
2998
+
2999
+ input LandingFilterVOInput {
3000
+ dataQualityStatus: [DataQualityStatusEnum]
3001
+ endDate: Date
3002
+ excludeVesselIds: [Int]
3003
+ locationId: Int
3004
+ locationIds: [Int]
3005
+ observedLocationId: Int
3006
+ observerPersonIds: [Int]
3007
+ programIds: [Int]
3008
+ programLabel: String
3009
+ qualityFlagIds: [Int]
3010
+ recorderDepartmentId: Int
3011
+ recorderPersonId: Int
3012
+ sampleLabels: [String]
3013
+ sampleTagIds: [String]
3014
+ startDate: Date
3015
+ strategyLabels: [String]
3016
+ tripId: Int
3017
+ vesselId: Int
3018
+ vesselIds: [Int]
3019
+ vesselTypeId: Int
3020
+ vesselTypeIds: [Int]
3021
+ }
3022
+
3023
+ input LandingVOInput {
3024
+ comments: String
3025
+ controlDate: Date
3026
+ creationDate: Date
3027
+ dateTime: Date
3028
+ hasSales: Boolean
3029
+ hasSamples: Boolean
3030
+ id: Int
3031
+ location: LocationVOInput
3032
+ measurementValues: Map_Integer_StringScalar
3033
+ measurements: [MeasurementVOInput]
3034
+ observedLocation: ObservedLocationVOInput
3035
+ observedLocationId: Int
3036
+ observers: [PersonVOInput]
3037
+ program: ProgramVOInput
3038
+ qualificationComments: String
3039
+ qualificationDate: Date
3040
+ qualityFlag: Int
3041
+ qualityFlagId: Int
3042
+ rankOrder: Int
3043
+ recorderDepartment: DepartmentVOInput
3044
+ recorderPerson: PersonVOInput
3045
+ saleIds: [Int]
3046
+ sales: [SaleVOInput]
3047
+ samples: [SampleVOInput]
3048
+ samplesCount: Int
3049
+ trip: TripVOInput
3050
+ tripId: Int
3051
+ updateDate: Date
3052
+ validationDate: Date
3053
+ vesselId: Int
3054
+ vesselSnapshot: VesselSnapshotVOInput
3055
+ }
3056
+
3057
+ input LocationAssociationVOInput {
3058
+ childId: Int
3059
+ childSurfaceRatio: Float
3060
+ comments: String
3061
+ creationDate: Date
3062
+ description: String
3063
+ entityName: String
3064
+ id: Int
3065
+ label: String
3066
+ level: ReferentialVOInput
3067
+ levelId: Int
3068
+ name: String
3069
+ parent: ReferentialVOInput
3070
+ parentId: Int
3071
+ properties: Map_String_ObjectScalar
3072
+ rankOrder: Int
3073
+ statusId: Int
3074
+ updateDate: Date
3075
+ validityStatusId: Int
3076
+ }
3077
+
3078
+ input LocationVOInput {
3079
+ children: [LocationAssociationVOInput]
3080
+ comments: String
3081
+ creationDate: Date
3082
+ description: String
3083
+ entityName: String
3084
+ id: Int
3085
+ label: String
3086
+ level: ReferentialVOInput
3087
+ levelId: Int
3088
+ name: String
3089
+ parent: ReferentialVOInput
3090
+ parentId: Int
3091
+ parents: [LocationAssociationVOInput]
3092
+ properties: Map_String_ObjectScalar
3093
+ rankOrder: Int
3094
+ statusId: Int
3095
+ updateDate: Date
3096
+ validityStatusId: Int
3097
+ }
3098
+
3099
+ input MeasurementVOInput {
3100
+ alphanumericalValue: String
3101
+ controlDate: Date
3102
+ creationDate: Date
3103
+ digitCount: Int
3104
+ entityName: String
3105
+ id: Int
3106
+ numericalValue: Float
3107
+ pmfmId: Int!
3108
+ precisionValue: Float
3109
+ qualitativeValue: ReferentialVOInput
3110
+ qualityFlagId: Int
3111
+ rankOrder: Short
3112
+ recorderDepartment: DepartmentVOInput
3113
+ recorderPerson: PersonVOInput
3114
+ updateDate: Date
3115
+ validationDate: Date
3116
+ }
3117
+
3118
+ input MessageVOInput {
3119
+ body: String
3120
+ issuer: PersonVOInput
3121
+ issuerId: Int
3122
+ recipient: PersonVOInput
3123
+ recipientFilter: PersonFilterVOInput
3124
+ recipientId: Int
3125
+ recipients: [PersonVOInput]
3126
+ subject: String
3127
+ type: MessageTypeEnum
3128
+ }
3129
+
3130
+ input MetierFilterVOInput {
3131
+ endDate: Date
3132
+ excludedIds: [Int]
3133
+ excludedTripId: Int
3134
+ gearIds: [Int]
3135
+ id: Int
3136
+ includedIds: [Int]
3137
+ label: String
3138
+ levelId: Int
3139
+ levelIds: [Int]
3140
+ levelLabel: String
3141
+ levelLabels: [String]
3142
+ locationIds: [Int]
3143
+ name: String
3144
+ programLabel: String
3145
+ searchAttribute: String
3146
+ searchJoin: String
3147
+ searchJoinLevelIds: [Int]
3148
+ searchText: String
3149
+ startDate: Date
3150
+ statusIds: [Int]
3151
+ taxonGroupTypeIds: [Int]
3152
+ vesselId: Int
3153
+ }
3154
+
3155
+ input MetierVOInput {
3156
+ comments: String
3157
+ creationDate: Date
3158
+ description: String
3159
+ entityName: String
3160
+ gear: ReferentialVOInput
3161
+ id: Int
3162
+ label: String
3163
+ level: ReferentialVOInput
3164
+ levelId: Int
3165
+ name: String
3166
+ parent: ReferentialVOInput
3167
+ parentId: Int
3168
+ properties: Map_String_ObjectScalar
3169
+ rankOrder: Int
3170
+ statusId: Int
3171
+ taxonGroup: TaxonGroupVOInput
3172
+ updateDate: Date
3173
+ validityStatusId: Int
3174
+ }
3175
+
3176
+ input NamedFilterFilterVOInput {
3177
+ dataQualityStatus: [DataQualityStatusEnum]
3178
+ entityName: String
3179
+ qualityFlagIds: [Int]
3180
+ recorderDepartmentId: Int
3181
+ recorderPersonId: Int
3182
+ searchText: String
3183
+ }
3184
+
3185
+ input NamedFilterSaveOptionsInput {
3186
+ isDepartmentFilter: Boolean
3187
+ }
3188
+
3189
+ input NamedFilterVOInput {
3190
+ content: String
3191
+ creationDate: Date
3192
+ entityName: String
3193
+ id: Int
3194
+ name: String
3195
+ recorderDepartment: DepartmentVOInput
3196
+ recorderDepartmentId: Int
3197
+ recorderPerson: PersonVOInput
3198
+ recorderPersonId: Int
3199
+ updateDate: Date
3200
+ }
3201
+
3202
+ input ObservedLocationFilterVOInput {
3203
+ dataQualityStatus: [DataQualityStatusEnum]
3204
+ endDate: Date
3205
+ locationId: Int
3206
+ locationIds: [Int]
3207
+ observerPersonIds: [Int]
3208
+ programIds: [Int]
3209
+ programLabel: String
3210
+ qualityFlagIds: [Int]
3211
+ recorderDepartmentId: Int
3212
+ recorderDepartmentIds: [Int]
3213
+ recorderPersonId: Int
3214
+ startDate: Date
3215
+ vesselIds: [Int]
3216
+ }
3217
+
3218
+ input ObservedLocationSaveOptionsInput {
3219
+ withLanding: Boolean
3220
+ }
3221
+
3222
+ input ObservedLocationVOInput {
3223
+ comments: String
3224
+ controlDate: Date
3225
+ creationDate: Date
3226
+ endDateTime: Date
3227
+ id: Int
3228
+ landings: [LandingVOInput]
3229
+ location: LocationVOInput
3230
+ measurementValues: Map_Integer_StringScalar
3231
+ measurements: [MeasurementVOInput]
3232
+ observers: [PersonVOInput]
3233
+ program: ProgramVOInput
3234
+ qualificationComments: String
3235
+ qualificationDate: Date
3236
+ qualityFlag: Int
3237
+ qualityFlagId: Int
3238
+ recorderDepartment: DepartmentVOInput
3239
+ recorderPerson: PersonVOInput
3240
+ samplingStrata: ReferentialVOInput
3241
+ samplingStrataId: Int
3242
+ startDateTime: Date
3243
+ updateDate: Date
3244
+ validationDate: Date
3245
+ }
3246
+
3247
+ input OperationFilterVOInput {
3248
+ boundingBox: [Int]
3249
+ dataQualityStatus: [DataQualityStatusEnum]
3250
+ endDate: Date
3251
+ excludeChildOperation: Boolean
3252
+ excludedIds: [Int]
3253
+ gearIds: [Int]
3254
+ hasNoChildOperation: Boolean
3255
+ includedIds: [Int]
3256
+ needBatchDenormalization: Boolean
3257
+ physicalGearIds: [Int]
3258
+ programLabel: String
3259
+ qualityFlagIds: [Int]
3260
+ recorderDepartmentId: Int
3261
+ startDate: Date
3262
+ taxonGroupLabels: [String]
3263
+ tripId: Int
3264
+ vesselId: Int
3265
+ vesselIds: [Int]
3266
+ }
3267
+
3268
+ input OperationGroupVOInput {
3269
+ comments: String
3270
+ controlDate: Date
3271
+ fishingAreas: [FishingAreaVOInput]
3272
+ gearMeasurementValues: Map_Integer_StringScalar
3273
+ gearMeasurements: [MeasurementVOInput]
3274
+ hasCatch: Boolean
3275
+ id: Int
3276
+ measurementValues: Map_Integer_StringScalar
3277
+ measurements: [MeasurementVOInput]
3278
+ metier: MetierVOInput
3279
+ packets: [PacketVOInput]
3280
+ physicalGearId: Int
3281
+ products: [ProductVOInput]
3282
+ qualificationComments: String
3283
+ qualificationDate: Date
3284
+ qualityFlag: Int
3285
+ qualityFlagId: Int
3286
+ rankOrderOnPeriod: Int
3287
+ recorderDepartment: DepartmentVOInput
3288
+ samples: [SampleVOInput]
3289
+ trip: TripVOInput
3290
+ tripId: Int
3291
+ updateDate: Date
3292
+ validationDate: Date
3293
+ }
3294
+
3295
+ input OperationVOInput {
3296
+ batches: [BatchVOInput]
3297
+ catchBatch: BatchVOInput
3298
+ childOperation: OperationVOInput
3299
+ childOperationId: Int
3300
+ comments: String
3301
+ controlDate: Date
3302
+ endDateTime: Date
3303
+ fishingAreas: [FishingAreaVOInput]
3304
+ fishingEndDateTime: Date
3305
+ fishingStartDateTime: Date
3306
+ gearMeasurementValues: Map_Integer_StringScalar
3307
+ gearMeasurements: [MeasurementVOInput]
3308
+ hasCatch: Boolean
3309
+ id: Int
3310
+ measurementValues: Map_Integer_StringScalar
3311
+ measurements: [MeasurementVOInput]
3312
+ metier: MetierVOInput
3313
+ parentOperation: OperationVOInput
3314
+ parentOperationId: Int
3315
+ physicalGear: PhysicalGearVOInput
3316
+ physicalGearId: Int
3317
+ positions: [VesselPositionVOInput]
3318
+ qualificationComments: String
3319
+ qualificationDate: Date
3320
+ qualityFlag: Int
3321
+ qualityFlagId: Int
3322
+ rankOrder: Int
3323
+ rankOrderOnPeriod: Int
3324
+ recorderDepartment: DepartmentVOInput
3325
+ samples: [SampleVOInput]
3326
+ startDateTime: Date
3327
+ trip: TripVOInput
3328
+ tripId: Int
3329
+ updateDate: Date
3330
+ validationDate: Date
3331
+ }
3332
+
3333
+ input PacketCompositionVOInput {
3334
+ id: Int
3335
+ rankOrder: Int
3336
+ ratios: [Int]
3337
+ taxonGroup: ReferentialVOInput
3338
+ }
3339
+
3340
+ input PacketVOInput {
3341
+ comments: String
3342
+ composition: [PacketCompositionVOInput]
3343
+ controlDate: Date
3344
+ id: Int
3345
+ number: Int
3346
+ operation: OperationVOInput
3347
+ operationId: Int
3348
+ qualificationComments: String
3349
+ qualificationDate: Date
3350
+ qualityFlag: Int
3351
+ qualityFlagId: Int
3352
+ rankOrder: Int
3353
+ recorderDepartment: DepartmentVOInput
3354
+ recorderPerson: PersonVOInput
3355
+ sampledWeights: [Float]
3356
+ updateDate: Date
3357
+ validationDate: Date
3358
+ weight: Float
3359
+ }
3360
+
3361
+ input PageInput {
3362
+ offset: Long!
3363
+ size: Int!
3364
+ sortBy: String
3365
+ sortDirection: SortDirection
3366
+ }
3367
+
3368
+ input ParameterVOInput {
3369
+ comments: String
3370
+ creationDate: Date
3371
+ description: String
3372
+ entityName: String
3373
+ id: Int
3374
+ label: String
3375
+ level: ReferentialVOInput
3376
+ levelId: Int
3377
+ name: String
3378
+ parameterGroupId: Int
3379
+ parent: ReferentialVOInput
3380
+ parentId: Int
3381
+ properties: Map_String_ObjectScalar
3382
+ qualitativeValues: [ReferentialVOInput]
3383
+ rankOrder: Int
3384
+ statusId: Int
3385
+ type: String
3386
+ updateDate: Date
3387
+ validityStatusId: Int
3388
+ }
3389
+
3390
+ input PeriodVOInput {
3391
+ endDate: Date
3392
+ startDate: Date
3393
+ }
3394
+
3395
+ input PersonFilterVOInput {
3396
+ email: String
3397
+ excludedIds: [Int]
3398
+ firstName: String
3399
+ fullName: String
3400
+ id: Int
3401
+ includedIds: [Int]
3402
+ label: String
3403
+ lastName: String
3404
+ levelId: Int
3405
+ levelIds: [Int]
3406
+ levelLabel: String
3407
+ levelLabels: [String]
3408
+ name: String
3409
+ pubkey: String
3410
+ searchAttribute: String
3411
+ searchAttributes: [String]
3412
+ searchJoin: String
3413
+ searchJoinLevelIds: [Int]
3414
+ searchText: String
3415
+ statusIds: [Int]
3416
+ userProfileId: Int
3417
+ userProfileIds: [Int]
3418
+ userProfiles: [String]
3419
+ username: String
3420
+ }
3421
+
3422
+ input PersonVOInput {
3423
+ avatar: String
3424
+ creationDate: Date
3425
+ department: DepartmentVOInput
3426
+ email: String
3427
+ firstName: String
3428
+ hasAvatar: Boolean
3429
+ id: Int
3430
+ lastName: String
3431
+ mainProfile: String
3432
+ profiles: [String]
3433
+ pubkey: String
3434
+ statusId: Int
3435
+ updateDate: Date
3436
+ username: String
3437
+ usernameExtranet: String
3438
+ }
3439
+
3440
+ input PhysicalGearFilterVOInput {
3441
+ dataQualityStatus: [DataQualityStatusEnum]
3442
+ endDate: Date
3443
+ excludeChildGear: Boolean
3444
+ excludeParentGear: Boolean
3445
+ excludeParentGearId: Int
3446
+ excludeTripId: Int
3447
+ locationId: Int
3448
+ locationIds: [Int]
3449
+ parentGearId: Int
3450
+ programIds: [Int]
3451
+ programLabel: String
3452
+ qualityFlagIds: [Int]
3453
+ recorderDepartmentId: Int
3454
+ recorderPersonId: Int
3455
+ startDate: Date
3456
+ tripId: Int
3457
+ vesselId: Int
3458
+ vesselIds: [Int]
3459
+ }
3460
+
3461
+ input PhysicalGearVOInput {
3462
+ children: [PhysicalGearVOInput]
3463
+ comments: String
3464
+ controlDate: Date
3465
+ creationDate: Date
3466
+ gear: ReferentialVOInput
3467
+ id: Int
3468
+ measurementValues: Map_Integer_StringScalar
3469
+ measurements: [MeasurementVOInput]
3470
+ parent: PhysicalGearVOInput
3471
+ parentId: Int
3472
+ program: ProgramVOInput
3473
+ qualificationComments: String
3474
+ qualificationDate: Date
3475
+ qualityFlag: Int
3476
+ qualityFlagId: Int
3477
+ rankOrder: Int
3478
+ recorderDepartment: DepartmentVOInput
3479
+ recorderPerson: PersonVOInput
3480
+ trip: TripVOInput
3481
+ tripId: Int
3482
+ updateDate: Date
3483
+ validationDate: Date
3484
+ }
3485
+
3486
+ input PmfmStrategyVOInput {
3487
+ acquisitionLevel: String
3488
+ acquisitionNumber: Int
3489
+ defaultValue: Float
3490
+ fraction: ReferentialVOInput
3491
+ fractionId: Int
3492
+ gearIds: [Int]
3493
+ gears: [String]
3494
+ id: Int
3495
+ isMandatory: Boolean
3496
+ matrix: ReferentialVOInput
3497
+ matrixId: Int
3498
+ maxValue: Float
3499
+ method: ReferentialVOInput
3500
+ methodId: Int
3501
+ minValue: Float
3502
+ parameter: ReferentialVOInput
3503
+ parameterId: Int
3504
+ pmfm: PmfmVOInput
3505
+ pmfmId: Int
3506
+ rankOrder: Int
3507
+ referenceTaxonIds: [Int]
3508
+ strategyId: Int
3509
+ taxonGroupIds: [Int]
3510
+ updateDate: Date
3511
+ }
3512
+
3513
+ input PmfmVOInput {
3514
+ comments: String
3515
+ completeName: String
3516
+ creationDate: Date
3517
+ defaultValue: Float
3518
+ description: String
3519
+ detectionThreshold: Float
3520
+ entityName: String
3521
+ fractionId: Int
3522
+ id: Int
3523
+ isCalculated: Boolean
3524
+ isEstimated: Boolean
3525
+ label: String
3526
+ level: ReferentialVOInput
3527
+ levelId: Int
3528
+ matrixId: Int
3529
+ maxValue: Float
3530
+ maximumNumberDecimals: Int
3531
+ methodId: Int
3532
+ minValue: Float
3533
+ name: String
3534
+ parameterId: Int
3535
+ parent: ReferentialVOInput
3536
+ parentId: Int
3537
+ precision: Float
3538
+ properties: Map_String_ObjectScalar
3539
+ qualitativeValues: [ReferentialVOInput]
3540
+ rankOrder: Int
3541
+ signifFiguresNumber: Int
3542
+ statusId: Int
3543
+ type: String
3544
+ unitId: Int
3545
+ unitLabel: String
3546
+ updateDate: Date
3547
+ validityStatusId: Int
3548
+ }
3549
+
3550
+ input ProductVOInput {
3551
+ batch: BatchVOInput
3552
+ batchId: Int
3553
+ comments: String
3554
+ controlDate: Date
3555
+ cost: Float
3556
+ creationDate: Date
3557
+ dressingId: Int
3558
+ expectedSale: ExpectedSaleVOInput
3559
+ expectedSaleId: Int
3560
+ id: Int
3561
+ individualCount: Int
3562
+ label: String
3563
+ landing: LandingVOInput
3564
+ landingId: Int
3565
+ measurementValues: Map_Integer_StringScalar
3566
+ operation: OperationVOInput
3567
+ operationId: Int
3568
+ preservationId: Int
3569
+ qualificationComments: String
3570
+ qualificationDate: Date
3571
+ qualityFlag: Int
3572
+ qualityFlagId: Int
3573
+ rankOrder: Int
3574
+ recorderDepartment: DepartmentVOInput
3575
+ recorderPerson: PersonVOInput
3576
+ sale: SaleVOInput
3577
+ saleId: Int
3578
+ saleType: ReferentialVOInput
3579
+ sizeCategoryId: Int
3580
+ subgroupCount: Float
3581
+ taxonGroup: ReferentialVOInput
3582
+ updateDate: Date
3583
+ validationDate: Date
3584
+ weight: Float
3585
+ weightCalculated: Boolean!
3586
+ }
3587
+
3588
+ input ProgramDepartmentVOInput {
3589
+ department: ReferentialVOInput
3590
+ id: Int
3591
+ location: ReferentialVOInput
3592
+ privilege: ReferentialVOInput
3593
+ programId: Int
3594
+ updateDate: Date
3595
+ }
3596
+
3597
+ input ProgramFilterVOInput {
3598
+ acquisitionLevelLabels: [String]
3599
+ excludedIds: [Int]
3600
+ id: Int
3601
+ includedIds: [Int]
3602
+ label: String
3603
+ levelId: Int
3604
+ levelIds: [Int]
3605
+ levelLabel: String
3606
+ levelLabels: [String]
3607
+ minUpdateDate: Date
3608
+ name: String
3609
+ searchAttribute: String
3610
+ searchJoin: String
3611
+ searchJoinLevelIds: [Int]
3612
+ searchText: String
3613
+ statusIds: [Int]
3614
+ withProperty: String
3615
+ }
3616
+
3617
+ input ProgramPersonVOInput {
3618
+ id: Int
3619
+ location: ReferentialVOInput
3620
+ person: PersonVOInput
3621
+ privilege: ReferentialVOInput
3622
+ programId: Int
3623
+ referencePerson: PersonVOInput
3624
+ updateDate: Date
3625
+ }
3626
+
3627
+ input ProgramSaveOptionsInput {
3628
+ withDepartments: Boolean
3629
+ withPersons: Boolean
3630
+ withStrategies: Boolean
3631
+ }
3632
+
3633
+ input ProgramVOInput {
3634
+ acquisitionLevelLabels: [String]
3635
+ acquisitionLevels: [ReferentialVOInput]
3636
+ comments: String
3637
+ creationDate: Date
3638
+ departments: [ProgramDepartmentVOInput]
3639
+ description: String
3640
+ entityName: String
3641
+ gearClassification: ReferentialVOInput
3642
+ gearClassificationId: Int
3643
+ id: Int
3644
+ label: String
3645
+ locationClassificationIds: [Int]
3646
+ locationClassifications: [ReferentialVOInput]
3647
+ locationIds: [Int]
3648
+ locations: [ReferentialVOInput]
3649
+ name: String
3650
+ persons: [ProgramPersonVOInput]
3651
+ privileges: [String]
3652
+ properties: Map_String_StringScalar
3653
+ statusId: Int
3654
+ strategies: [StrategyVOInput]
3655
+ taxonGroupType: ReferentialVOInput
3656
+ taxonGroupTypeId: Int
3657
+ updateDate: Date
3658
+ }
3659
+
3660
+ input QuantificationMeasurementVOInput {
3661
+ alphanumericalValue: String
3662
+ controlDate: Date
3663
+ creationDate: Date
3664
+ digitCount: Int
3665
+ entityName: String
3666
+ id: Int
3667
+ isReferenceQuantification: Boolean
3668
+ numericalValue: Float
3669
+ pmfmId: Int!
3670
+ precisionValue: Float
3671
+ qualitativeValue: ReferentialVOInput
3672
+ qualityFlagId: Int
3673
+ rankOrder: Short
3674
+ recorderDepartment: DepartmentVOInput
3675
+ recorderPerson: PersonVOInput
3676
+ subgroupNumber: Short
3677
+ updateDate: Date
3678
+ validationDate: Date
3679
+ }
3680
+
3681
+ input ReferentialFilterVOInput {
3682
+ excludedIds: [Int]
3683
+ id: Int
3684
+ includedIds: [Int]
3685
+ label: String
3686
+ levelId: Int
3687
+ levelIds: [Int]
3688
+ levelLabel: String
3689
+ levelLabels: [String]
3690
+ locationIds: [Int]
3691
+ name: String
3692
+ searchAttribute: String
3693
+ searchJoin: String
3694
+ searchJoinLevelIds: [Int]
3695
+ searchText: String
3696
+ statusIds: [Int]
3697
+ }
3698
+
3699
+ input ReferentialVOInput {
3700
+ comments: String
3701
+ creationDate: Date
3702
+ description: String
3703
+ entityName: String
3704
+ id: Int
3705
+ label: String
3706
+ level: ReferentialVOInput
3707
+ levelId: Int
3708
+ name: String
3709
+ parent: ReferentialVOInput
3710
+ parentId: Int
3711
+ properties: Map_String_ObjectScalar
3712
+ rankOrder: Int
3713
+ statusId: Int
3714
+ updateDate: Date
3715
+ validityStatusId: Int
3716
+ }
3717
+
3718
+ input RoundWeightConversionFilterVOInput {
3719
+ date: Date
3720
+ dressingIds: [Int]
3721
+ locationIds: [Int]
3722
+ preservingIds: [Int]
3723
+ statusIds: [Int]
3724
+ taxonGroupIds: [Int]
3725
+ }
3726
+
3727
+ input RoundWeightConversionVOInput {
3728
+ comments: String
3729
+ conversionCoefficient: Float
3730
+ creationDate: Date
3731
+ description: String
3732
+ dressing: ReferentialVOInput
3733
+ dressingId: Int
3734
+ endDate: Date
3735
+ id: Int
3736
+ location: LocationVOInput
3737
+ locationId: Int
3738
+ preserving: ReferentialVOInput
3739
+ preservingId: Int
3740
+ startDate: Date
3741
+ statusId: Int
3742
+ taxonGroup: TaxonGroupVOInput
3743
+ taxonGroupId: Int
3744
+ updateDate: Date
3745
+ }
3746
+
3747
+ input SaleVOInput {
3748
+ batches: [BatchVOInput]
3749
+ catchBatch: BatchVOInput
3750
+ comments: String
3751
+ controlDate: Date
3752
+ creationDate: Date
3753
+ endDateTime: Date
3754
+ fishingAreas: [FishingAreaVOInput]
3755
+ id: Int
3756
+ landing: LandingVOInput
3757
+ landingId: Int
3758
+ measurementValues: Map_Integer_StringScalar
3759
+ measurements: [MeasurementVOInput]
3760
+ observers: [PersonVOInput]
3761
+ products: [ProductVOInput]
3762
+ program: ProgramVOInput
3763
+ qualificationComments: String
3764
+ qualificationDate: Date
3765
+ qualityFlag: Int
3766
+ qualityFlagId: Int
3767
+ recorderDepartment: DepartmentVOInput
3768
+ recorderPerson: PersonVOInput
3769
+ saleLocation: LocationVOInput
3770
+ saleType: ReferentialVOInput
3771
+ startDateTime: Date
3772
+ trip: TripVOInput
3773
+ tripId: Int
3774
+ updateDate: Date
3775
+ validationDate: Date
3776
+ vesselId: Int
3777
+ vesselSnapshot: VesselSnapshotVOInput
3778
+ }
3779
+
3780
+ input SampleFilterVOInput {
3781
+ dataQualityStatus: [DataQualityStatusEnum]
3782
+ endDate: Date
3783
+ excludedIds: [Int]
3784
+ includedIds: [Int]
3785
+ landingId: Int
3786
+ locationId: Int
3787
+ locationIds: [Int]
3788
+ observedLocationId: Int
3789
+ observedLocationIds: [Int]
3790
+ operationId: Int
3791
+ parentId: Int
3792
+ programIds: [Int]
3793
+ programLabel: String
3794
+ qualityFlagIds: [Int]
3795
+ recorderDepartmentId: Int
3796
+ recorderPersonId: Int
3797
+ startDate: Date
3798
+ tagId: String
3799
+ withTagId: Boolean
3800
+ }
3801
+
3802
+ input SampleVOInput {
3803
+ batch: BatchVOInput
3804
+ batchId: Int
3805
+ children: [SampleVOInput]
3806
+ comments: String
3807
+ controlDate: Date
3808
+ creationDate: Date
3809
+ id: Int
3810
+ images: [ImageAttachmentVOInput]
3811
+ individualCount: Int
3812
+ label: String
3813
+ landing: LandingVOInput
3814
+ landingId: Int
3815
+ matrix: ReferentialVOInput
3816
+ matrixId: Int
3817
+ measurementValues: Map_Integer_StringScalar
3818
+ measurements: [MeasurementVOInput]
3819
+ operation: OperationVOInput
3820
+ operationId: Int
3821
+ parent: SampleVOInput
3822
+ parentId: Int
3823
+ program: ProgramVOInput
3824
+ qualificationComments: String
3825
+ qualificationDate: Date
3826
+ qualityFlag: Int
3827
+ qualityFlagId: Int
3828
+ rankOrder: Int
3829
+ recorderDepartment: DepartmentVOInput
3830
+ recorderPerson: PersonVOInput
3831
+ sampleDate: Date
3832
+ size: Float
3833
+ sizeUnit: String
3834
+ taxonGroup: ReferentialVOInput
3835
+ taxonName: TaxonNameVOInput
3836
+ updateDate: Date
3837
+ validationDate: Date
3838
+ }
3839
+
3840
+ input ScientificCruiseVOInput {
3841
+ comments: String
3842
+ controlDate: Date
3843
+ creationDate: Date
3844
+ departureDateTime: Date
3845
+ id: Int
3846
+ managerPerson: PersonVOInput
3847
+ name: String
3848
+ program: ProgramVOInput
3849
+ qualificationComments: String
3850
+ qualificationDate: Date
3851
+ qualityFlag: Int
3852
+ qualityFlagId: Int
3853
+ recorderDepartment: DepartmentVOInput
3854
+ recorderPerson: PersonVOInput
3855
+ reference: String
3856
+ returnDateTime: Date
3857
+ trip: TripVOInput
3858
+ tripId: Int
3859
+ updateDate: Date
3860
+ validationDate: Date
3861
+ vesselId: Int
3862
+ vesselSnapshot: VesselSnapshotVOInput
3863
+ }
3864
+
3865
+ input SoftwareVOInput {
3866
+ comments: String
3867
+ creationDate: Date
3868
+ description: String
3869
+ entityName: String
3870
+ id: Int
3871
+ label: String
3872
+ name: String
3873
+ properties: Map_String_StringScalar
3874
+ statusId: Int
3875
+ updateDate: Date
3876
+ }
3877
+
3878
+ input StrategyDepartmentVOInput {
3879
+ department: ReferentialVOInput
3880
+ id: Int
3881
+ location: ReferentialVOInput
3882
+ privilege: ReferentialVOInput
3883
+ strategyId: Int
3884
+ updateDate: Date
3885
+ }
3886
+
3887
+ input StrategyFilterVOInput {
3888
+ acquisitionLevels: [String]
3889
+ analyticReferences: [String]
3890
+ departmentIds: [Int]
3891
+ endDate: Date
3892
+ excludedIds: [Int]
3893
+ id: Int
3894
+ includedIds: [Int]
3895
+ label: String
3896
+ levelId: Int
3897
+ levelIds: [Int]
3898
+ levelLabel: String
3899
+ levelLabels: [String]
3900
+ locationIds: [Int]
3901
+ minUpdateDate: Date
3902
+ name: String
3903
+ parameterIds: [Int]
3904
+ periods: [PeriodVOInput]
3905
+ programIds: [Int]
3906
+ programLabels: [String]
3907
+ referenceTaxonIds: [Int]
3908
+ searchAttribute: String
3909
+ searchJoin: String
3910
+ searchJoinLevelIds: [Int]
3911
+ searchText: String
3912
+ startDate: Date
3913
+ statusIds: [Int]
3914
+ withProperty: String
3915
+ }
3916
+
3917
+ input StrategyVOInput {
3918
+ analyticReference: String
3919
+ appliedStrategies: [AppliedStrategyVOInput]
3920
+ comments: String
3921
+ creationDate: Date
3922
+ denormalizedPmfms: [DenormalizedPmfmStrategyVOInput]
3923
+ departments: [StrategyDepartmentVOInput]
3924
+ description: String
3925
+ entityName: String
3926
+ gearIds: [Int]
3927
+ gears: [ReferentialVOInput]
3928
+ id: Int
3929
+ label: String
3930
+ name: String
3931
+ pmfms: [PmfmStrategyVOInput]
3932
+ programId: Int
3933
+ properties: Map_String_StringScalar
3934
+ statusId: Int
3935
+ taxonGroupIds: [Int]
3936
+ taxonGroups: [TaxonGroupStrategyVOInput]
3937
+ taxonNameIds: [Int]
3938
+ taxonNames: [TaxonNameStrategyVOInput]
3939
+ updateDate: Date
3940
+ }
3941
+
3942
+ input TaxonGroupStrategyVOInput {
3943
+ priorityLevel: Int
3944
+ strategyId: Int
3945
+ taxonGroup: TaxonGroupVOInput
3946
+ }
3947
+
3948
+ input TaxonGroupVOInput {
3949
+ comments: String
3950
+ creationDate: Date
3951
+ description: String
3952
+ entityName: String
3953
+ id: Int
3954
+ label: String
3955
+ level: ReferentialVOInput
3956
+ levelId: Int
3957
+ name: String
3958
+ parent: ReferentialVOInput
3959
+ parentId: Int
3960
+ properties: Map_String_ObjectScalar
3961
+ rankOrder: Int
3962
+ statusId: Int
3963
+ taxonNames: [TaxonNameVOInput]
3964
+ updateDate: Date
3965
+ validityStatusId: Int
3966
+ }
3967
+
3968
+ input TaxonNameFilterVOInput {
3969
+ excludedIds: [Int]
3970
+ id: Int
3971
+ includedIds: [Int]
3972
+ label: String
3973
+ levelId: Int
3974
+ levelIds: [Int]
3975
+ levelLabel: String
3976
+ levelLabels: [String]
3977
+ name: String
3978
+ referenceTaxonId: Int
3979
+ searchAttribute: String
3980
+ searchJoin: String
3981
+ searchJoinLevelIds: [Int]
3982
+ searchText: String
3983
+ statusIds: [Int]
3984
+ taxonGroupId: Int
3985
+ taxonGroupIds: [Int]
3986
+ withSynonyms: Boolean
3987
+ }
3988
+
3989
+ input TaxonNameStrategyVOInput {
3990
+ isReferent: Boolean
3991
+ priorityLevel: Int
3992
+ referenceTaxonId: Int
3993
+ strategyId: Int
3994
+ taxonName: TaxonNameVOInput
3995
+ }
3996
+
3997
+ input TaxonNameVOInput {
3998
+ comments: String
3999
+ completeName: String
4000
+ creationDate: Date
4001
+ description: String
4002
+ endDate: Date
4003
+ entityName: String
4004
+ id: Int
4005
+ isNaming: Boolean
4006
+ isReferent: Boolean
4007
+ isVirtual: Boolean
4008
+ label: String
4009
+ level: ReferentialVOInput
4010
+ levelId: Int
4011
+ name: String
4012
+ parent: ReferentialVOInput
4013
+ parentId: Int
4014
+ parentTaxonName: TaxonNameVOInput
4015
+ properties: Map_String_ObjectScalar
4016
+ rankOrder: Int
4017
+ referenceTaxonId: Int
4018
+ startDate: Date
4019
+ statusId: Int
4020
+ taxonGroupIds: [Int]
4021
+ taxonomicLevel: ReferentialVOInput
4022
+ taxonomicLevelId: Int
4023
+ updateDate: Date
4024
+ upperRank: Int
4025
+ validityStatusId: Int
4026
+ }
4027
+
4028
+ input TripFilterVOInput {
4029
+ boundingBox: [Int]
4030
+ dataQualityStatus: [DataQualityStatusEnum]
4031
+ endDate: Date
4032
+ excludedIds: [Int]
4033
+ hasObservedLocation: Boolean
4034
+ hasScientificCruise: Boolean
4035
+ includedIds: [Int]
4036
+ locationId: Int
4037
+ locationIds: [Int]
4038
+ observedLocationId: Int
4039
+ observerPersonIds: [Int]
4040
+ operationIds: [Int]
4041
+ programIds: [Int]
4042
+ programLabel: String
4043
+ qualityFlagIds: [Int]
4044
+ recorderDepartmentId: Int
4045
+ recorderPersonId: Int
4046
+ startDate: Date
4047
+ tripId: Int
4048
+ vesselId: Int
4049
+ vesselIds: [Int]
4050
+ vesselTypeId: Int
4051
+ vesselTypeIds: [Int]
4052
+ }
4053
+
4054
+ input TripSaveOptionsInput {
4055
+ withExpectedSales: Boolean
4056
+ withLanding: Boolean
4057
+ withOperation: Boolean
4058
+ withOperationGroup: Boolean
4059
+ withSales: Boolean
4060
+ }
4061
+
4062
+ input TripVOInput {
4063
+ comments: String
4064
+ controlDate: Date
4065
+ creationDate: Date
4066
+ departureDateTime: Date
4067
+ departureLocation: LocationVOInput
4068
+ expectedSale: ExpectedSaleVOInput
4069
+ expectedSales: [ExpectedSaleVOInput]
4070
+ fishingAreas: [FishingAreaVOInput]
4071
+ gears: [PhysicalGearVOInput]
4072
+ hasExpectedSales: Boolean
4073
+ hasSales: Boolean
4074
+ id: Int
4075
+ landing: LandingVOInput
4076
+ landingId: Int
4077
+ measurementValues: Map_Integer_StringScalar
4078
+ measurements: [MeasurementVOInput]
4079
+ metiers: [MetierVOInput]
4080
+ observedLocation: ObservedLocationVOInput
4081
+ observedLocationId: Int
4082
+ observers: [PersonVOInput]
4083
+ operationGroups: [OperationGroupVOInput]
4084
+ operations: [OperationVOInput]
4085
+ program: ProgramVOInput
4086
+ qualificationComments: String
4087
+ qualificationDate: Date
4088
+ qualityFlag: Int
4089
+ qualityFlagId: Int
4090
+ recorderDepartment: DepartmentVOInput
4091
+ recorderPerson: PersonVOInput
4092
+ returnDateTime: Date
4093
+ returnLocation: LocationVOInput
4094
+ sale: SaleVOInput
4095
+ sales: [SaleVOInput]
4096
+ samplingStrata: ReferentialVOInput
4097
+ samplingStrataId: Int
4098
+ scientificCruise: ScientificCruiseVOInput
4099
+ scientificCruiseId: Int
4100
+ updateDate: Date
4101
+ validationDate: Date
4102
+ vesselId: Int
4103
+ vesselSnapshot: VesselSnapshotVOInput
4104
+ }
4105
+
4106
+ input UserEventFilterVOInput {
4107
+ excludeRead: Boolean!
4108
+ includedIds: [Int]
4109
+ issuer: String
4110
+ issuers: [String]
4111
+ levels: [String]
4112
+ recipient: String
4113
+ recipients: [String]
4114
+ source: String
4115
+ startDate: Date
4116
+ types: [String]
4117
+ }
4118
+
4119
+ input UserEventVOInput {
4120
+ content: String
4121
+ creationDate: Date
4122
+ eventType: String
4123
+ hasContent: Boolean
4124
+ hash: String
4125
+ id: Int
4126
+ issuer: String
4127
+ level: EventLevelEnum
4128
+ readDate: Date
4129
+ readSignature: String
4130
+ recipient: String
4131
+ signature: String
4132
+ source: String
4133
+ type: EventTypeEnum
4134
+ updateDate: Date
4135
+ }
4136
+
4137
+ input UserSettingsVOInput {
4138
+ content: String
4139
+ id: Int
4140
+ issuer: String
4141
+ latLongFormat: String
4142
+ locale: String
4143
+ nonce: String
4144
+ updateDate: Date
4145
+ }
4146
+
4147
+ input UserTokenVOInput {
4148
+ creationDate: Date
4149
+ expirationDate: Date
4150
+ flags: Int
4151
+ id: Int
4152
+ lastUsedDate: Date
4153
+ name: String
4154
+ pubkey: String
4155
+ token: String
4156
+ updateDate: Date
4157
+ }
4158
+
4159
+ input VesselActivityVOInput {
4160
+ comments: String
4161
+ date: Date
4162
+ landingId: Int
4163
+ measurementValues: Map_Integer_StringScalar
4164
+ metiers: [ReferentialVOInput]
4165
+ observedLocationId: Int
4166
+ rankOrder: Int
4167
+ recorderPersonId: Int
4168
+ tripId: Int
4169
+ }
4170
+
4171
+ input VesselFeaturesVOInput {
4172
+ administrativePower: Int
4173
+ auxiliaryPower: Int
4174
+ basePortLocation: LocationVOInput
4175
+ comments: String
4176
+ constructionYear: Int
4177
+ controlDate: Date
4178
+ creationDate: Date
4179
+ endDate: Date
4180
+ exteriorMarking: String
4181
+ grossTonnageGrt: Float
4182
+ grossTonnageGt: Float
4183
+ hullMaterial: ReferentialVOInput
4184
+ id: Int
4185
+ ircs: String
4186
+ isFpc: Boolean
4187
+ lengthOverAll: Float
4188
+ measurementValues: Map_Integer_StringScalar
4189
+ measurements: [MeasurementVOInput]
4190
+ name: String
4191
+ program: ProgramVOInput
4192
+ qualificationComments: String
4193
+ qualificationDate: Date
4194
+ qualityFlag: Int
4195
+ qualityFlagId: Int
4196
+ recorderDepartment: DepartmentVOInput
4197
+ recorderPerson: PersonVOInput
4198
+ startDate: Date
4199
+ updateDate: Date
4200
+ validationDate: Date
4201
+ vessel: VesselVOInput
4202
+ }
4203
+
4204
+ input VesselFilterVOInput {
4205
+ basePortLocationId: Int
4206
+ basePortLocationIds: [Int]
4207
+ dataQualityStatus: [DataQualityStatusEnum]
4208
+ date: Date
4209
+ endDate: Date
4210
+ excludedIds: [Int]
4211
+ includedIds: [Int]
4212
+ locationId: Int
4213
+ locationIds: [Int]
4214
+ minUpdateDate: Date
4215
+ onlyWithRegistration: Boolean
4216
+ programIds: [Int]
4217
+ programLabel: String
4218
+ qualityFlagIds: [Int]
4219
+ recorderDepartmentId: Int
4220
+ recorderPersonId: Int
4221
+ registrationLocationId: Int
4222
+ registrationLocationIds: [Int]
4223
+ searchAttributes: [String]
4224
+ searchText: String
4225
+ startDate: Date
4226
+ statusIds: [Int]
4227
+ vesselFeaturesId: Int
4228
+ vesselId: Int
4229
+ vesselOwnerId: Int
4230
+ vesselTypeId: Int
4231
+ vesselTypeIds: [Int]
4232
+ }
4233
+
4234
+ input VesselPositionVOInput {
4235
+ controlDate: Date
4236
+ dateTime: Date
4237
+ id: Int
4238
+ latitude: Float
4239
+ longitude: Float
4240
+ operation: OperationVOInput
4241
+ operationId: Int
4242
+ qualityFlagId: Int
4243
+ recorderDepartment: DepartmentVOInput
4244
+ updateDate: Date
4245
+ validationDate: Date
4246
+ }
4247
+
4248
+ "Vessel registration period"
4249
+ input VesselRegistrationPeriodVOInput {
4250
+ endDate: Date
4251
+ id: Int
4252
+ intRegistrationCode: String
4253
+ qualityFlagId: Int
4254
+ registrationCode: String
4255
+ registrationLocation: LocationVOInput
4256
+ startDate: Date
4257
+ vessel: VesselVOInput
4258
+ }
4259
+
4260
+ input VesselSnapshotVOInput {
4261
+ administrativePower: Int
4262
+ basePortLocation: LocationVOInput
4263
+ comments: String
4264
+ controlDate: Date
4265
+ countryRegistrationLocation: LocationVOInput
4266
+ creationDate: Date
4267
+ endDate: Date
4268
+ exteriorMarking: String
4269
+ grossTonnageGrt: Float
4270
+ grossTonnageGt: Float
4271
+ id: Int
4272
+ intRegistrationCode: String
4273
+ lengthOverAll: Float
4274
+ measurementValues: Map_Integer_StringScalar
4275
+ measurements: [MeasurementVOInput]
4276
+ name: String
4277
+ program: ProgramVOInput
4278
+ qualificationComments: String
4279
+ qualificationDate: Date
4280
+ qualityFlag: Int
4281
+ qualityFlagId: Int
4282
+ recorderDepartment: DepartmentVOInput
4283
+ recorderPerson: PersonVOInput
4284
+ registrationCode: String
4285
+ registrationLocation: LocationVOInput
4286
+ startDate: Date
4287
+ updateDate: Date
4288
+ validationDate: Date
4289
+ vesselFeaturesId: Int
4290
+ vesselStatusId: Int
4291
+ vesselType: ReferentialVOInput
4292
+ }
4293
+
4294
+ input VesselUseFeaturesVOInput {
4295
+ activityCalendarId: Int
4296
+ basePortLocation: LocationVOInput
4297
+ comments: String
4298
+ controlDate: Date
4299
+ creationDate: Date
4300
+ dailyActivityCalendarId: Int
4301
+ dataOrigins: [DataOriginVOInput]
4302
+ endDate: Date
4303
+ id: Int
4304
+ isActive: Int
4305
+ measurementValues: Map_Integer_StringScalar
4306
+ program: ProgramVOInput
4307
+ qualificationComments: String
4308
+ qualificationDate: Date
4309
+ qualityFlag: Int
4310
+ qualityFlagId: Int
4311
+ recorderDepartment: DepartmentVOInput
4312
+ recorderDepartmentId: Int
4313
+ recorderPersonId: Int
4314
+ startDate: Date
4315
+ updateDate: Date
4316
+ validationDate: Date
4317
+ vessel: VesselSnapshotVOInput
4318
+ vesselId: Int
4319
+ vesselSnapshot: VesselSnapshotVOInput
4320
+ }
4321
+
4322
+ input VesselVOInput {
4323
+ comments: String
4324
+ controlDate: Date
4325
+ creationDate: Date
4326
+ id: Int
4327
+ program: ProgramVOInput
4328
+ qualificationComments: String
4329
+ qualificationDate: Date
4330
+ qualityFlag: Int
4331
+ qualityFlagId: Int
4332
+ recorderDepartment: DepartmentVOInput
4333
+ recorderPerson: PersonVOInput
4334
+ statusId: Int
4335
+ updateDate: Date
4336
+ validationDate: Date
4337
+ vesselFeatures: VesselFeaturesVOInput
4338
+ vesselRegistrationPeriod: VesselRegistrationPeriodVOInput
4339
+ vesselType: ReferentialVOInput
4340
+ }
4341
+
4342
+ input WeightLengthConversionFilterVOInput {
4343
+ childLocationIds: [Int]
4344
+ lengthParameterIds: [Int]
4345
+ lengthPmfmIds: [Int]
4346
+ lengthUnitIds: [Int]
4347
+ locationIds: [Int]
4348
+ month: Int
4349
+ rectangleLabels: [String]
4350
+ referenceTaxonIds: [Int]
4351
+ sexIds: [Int]
4352
+ statusIds: [Int]
4353
+ year: Int
4354
+ }
4355
+
4356
+ input WeightLengthConversionVOInput {
4357
+ comments: String
4358
+ conversionCoefficientA: Float
4359
+ conversionCoefficientB: Float
4360
+ creationDate: Date
4361
+ description: String
4362
+ endMonth: Int
4363
+ id: Int
4364
+ lengthParameter: ReferentialVOInput
4365
+ lengthParameterId: Int
4366
+ lengthPmfmIds: [Int]
4367
+ lengthUnit: ReferentialVOInput
4368
+ lengthUnitId: Int
4369
+ location: LocationVOInput
4370
+ locationId: Int
4371
+ originItemTypeId: Int
4372
+ rectangleLabels: [String]
4373
+ referenceTaxonId: Int
4374
+ sex: ReferentialVOInput
4375
+ sexId: Int
4376
+ startMonth: Int
4377
+ statusId: Int
4378
+ taxonName: TaxonNameVOInput
4379
+ updateDate: Date
4380
+ year: Int
4381
+ }