@sumaris-net/ngx-components 18.12.0 → 18.12.1
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.
- package/esm2022/public_api.mjs +380 -0
- package/esm2022/src/app/admin/admin-routing.module.mjs +34 -0
- package/esm2022/src/app/admin/admin.module.mjs +32 -0
- package/esm2022/src/app/admin/services/filter/person.filter.mjs +76 -0
- package/esm2022/src/app/admin/services/person.service.mjs +184 -0
- package/esm2022/src/app/admin/services/validator/person.validator.mjs +72 -0
- package/esm2022/src/app/admin/users/users.mjs +379 -0
- package/esm2022/src/app/admin/users/users.module.mjs +56 -0
- package/esm2022/src/app/core/about/about.modal.mjs +86 -0
- package/esm2022/src/app/core/about/about.module.mjs +22 -0
- package/esm2022/src/app/core/account/account.module.mjs +75 -0
- package/esm2022/src/app/core/account/account.page.mjs +364 -0
- package/esm2022/src/app/core/account/new-token.form.mjs +106 -0
- package/esm2022/src/app/core/account/new-token.modal.mjs +66 -0
- package/esm2022/src/app/core/account/password/change-password.form.mjs +63 -0
- package/esm2022/src/app/core/account/password/change-password.module.mjs +22 -0
- package/esm2022/src/app/core/account/password/change-password.page.mjs +150 -0
- package/esm2022/src/app/core/account/token.table.mjs +157 -0
- package/esm2022/src/app/core/auth/auth.form.mjs +159 -0
- package/esm2022/src/app/core/auth/auth.modal.mjs +76 -0
- package/esm2022/src/app/core/auth/auth.module.mjs +56 -0
- package/esm2022/src/app/core/auth/reset-password.modal.mjs +89 -0
- package/esm2022/src/app/core/core.module.mjs +151 -0
- package/esm2022/src/app/core/core.testing.module.mjs +107 -0
- package/esm2022/src/app/core/form/array/form-array.mjs +328 -0
- package/esm2022/src/app/core/form/array/testing/form-array-test.module.mjs +23 -0
- package/esm2022/src/app/core/form/array/testing/form-array.test.mjs +94 -0
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +108 -0
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.module.mjs +31 -0
- package/esm2022/src/app/core/form/entity/editor.class.mjs +268 -0
- package/esm2022/src/app/core/form/entity/entity-editor-modal.class.mjs +420 -0
- package/esm2022/src/app/core/form/entity/entity-editor.class.mjs +741 -0
- package/esm2022/src/app/core/form/entity/entity-metadata.component.mjs +24 -0
- package/esm2022/src/app/core/form/entity/entity.module.mjs +32 -0
- package/esm2022/src/app/core/form/entity/tab-editor.class.mjs +190 -0
- package/esm2022/src/app/core/form/form-container.class.mjs +340 -0
- package/esm2022/src/app/core/form/form.class.mjs +337 -0
- package/esm2022/src/app/core/form/form.module.mjs +70 -0
- package/esm2022/src/app/core/form/form.utils.mjs +205 -0
- package/esm2022/src/app/core/form/list/list.form.mjs +235 -0
- package/esm2022/src/app/core/form/list/list.module.mjs +31 -0
- package/esm2022/src/app/core/form/properties/properties.form.mjs +317 -0
- package/esm2022/src/app/core/form/properties/properties.module.mjs +37 -0
- package/esm2022/src/app/core/form/properties/properties.table.mjs +264 -0
- package/esm2022/src/app/core/form/properties/properties.utils.mjs +304 -0
- package/esm2022/src/app/core/form/properties/property.validator.mjs +70 -0
- package/esm2022/src/app/core/form/properties/testing/properties-form.test.mjs +104 -0
- package/esm2022/src/app/core/form/properties/testing/properties-form.testing.module.mjs +23 -0
- package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.mjs +73 -0
- package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +30 -0
- package/esm2022/src/app/core/form/text-popover/text-popover.component.mjs +161 -0
- package/esm2022/src/app/core/form/text-popover/text-popover.module.mjs +31 -0
- package/esm2022/src/app/core/form/username/username.form.mjs +55 -0
- package/esm2022/src/app/core/form/username/username.module.mjs +20 -0
- package/esm2022/src/app/core/graphql/graphql.module.mjs +14 -0
- package/esm2022/src/app/core/graphql/graphql.service.mjs +781 -0
- package/esm2022/src/app/core/graphql/graphql.utils.mjs +119 -0
- package/esm2022/src/app/core/home/home.mjs +382 -0
- package/esm2022/src/app/core/home/home.module.mjs +46 -0
- package/esm2022/src/app/core/icon/icon.component.mjs +40 -0
- package/esm2022/src/app/core/icon/icon.module.mjs +20 -0
- package/esm2022/src/app/core/install/install-upgrade-card.component.mjs +394 -0
- package/esm2022/src/app/core/install/install-upgrade-card.module.mjs +31 -0
- package/esm2022/src/app/core/menu/menu.component.mjs +258 -0
- package/esm2022/src/app/core/menu/menu.model.mjs +272 -0
- package/esm2022/src/app/core/menu/menu.module.mjs +47 -0
- package/esm2022/src/app/core/menu/menu.service.mjs +666 -0
- package/esm2022/src/app/core/menu/sub-menu-tab.directive.mjs +109 -0
- package/esm2022/src/app/core/menu/testing/menu-other.testing.mjs +50 -0
- package/esm2022/src/app/core/menu/testing/menu.testing.mjs +158 -0
- package/esm2022/src/app/core/menu/testing/menu.testing.module.mjs +60 -0
- package/esm2022/src/app/core/offline/update-offline-mode-card.component.mjs +28 -0
- package/esm2022/src/app/core/offline/update-offline-mode-card.module.mjs +31 -0
- package/esm2022/src/app/core/peer/select-peer.modal.mjs +344 -0
- package/esm2022/src/app/core/peer/select-peer.module.mjs +36 -0
- package/esm2022/src/app/core/register/register-confirm.page.mjs +90 -0
- package/esm2022/src/app/core/register/register.form.mjs +194 -0
- package/esm2022/src/app/core/register/register.modal.mjs +55 -0
- package/esm2022/src/app/core/register/register.module.mjs +23 -0
- package/esm2022/src/app/core/services/account.service.mjs +1358 -0
- package/esm2022/src/app/core/services/auth-guard.service.mjs +74 -0
- package/esm2022/src/app/core/services/base-entity-service.class.mjs +485 -0
- package/esm2022/src/app/core/services/base-graphql-service.class.mjs +230 -0
- package/esm2022/src/app/core/services/base58.mjs +83 -0
- package/esm2022/src/app/core/services/config/core.config.mjs +258 -0
- package/esm2022/src/app/core/services/config.service.mjs +384 -0
- package/esm2022/src/app/core/services/crypto.service.mjs +107 -0
- package/esm2022/src/app/core/services/errors.mjs +54 -0
- package/esm2022/src/app/core/services/local-settings.service.mjs +516 -0
- package/esm2022/src/app/core/services/model/account.model.mjs +178 -0
- package/esm2022/src/app/core/services/model/config.model.mjs +107 -0
- package/esm2022/src/app/core/services/model/department.model.mjs +35 -0
- package/esm2022/src/app/core/services/model/entity.decorators.mjs +97 -0
- package/esm2022/src/app/core/services/model/entity.model.mjs +338 -0
- package/esm2022/src/app/core/services/model/filter.model.mjs +93 -0
- package/esm2022/src/app/core/services/model/history.model.mjs +2 -0
- package/esm2022/src/app/core/services/model/model.enum.mjs +11 -0
- package/esm2022/src/app/core/services/model/node-feature.model.mjs +31 -0
- package/esm2022/src/app/core/services/model/peer.model.mjs +113 -0
- package/esm2022/src/app/core/services/model/person.model.mjs +114 -0
- package/esm2022/src/app/core/services/model/referential.model.mjs +205 -0
- package/esm2022/src/app/core/services/model/settings.model.mjs +6 -0
- package/esm2022/src/app/core/services/model/token.model.mjs +57 -0
- package/esm2022/src/app/core/services/model/tree-item-entity.model.mjs +195 -0
- package/esm2022/src/app/core/services/network.service.mjs +638 -0
- package/esm2022/src/app/core/services/network.types.mjs +2 -0
- package/esm2022/src/app/core/services/network.utils.mjs +35 -0
- package/esm2022/src/app/core/services/pipes/account.pipes.mjs +38 -0
- package/esm2022/src/app/core/services/pipes/department-to-string.pipe.mjs +23 -0
- package/esm2022/src/app/core/services/pipes/person-to-string.pipe.mjs +23 -0
- package/esm2022/src/app/core/services/pipes/pipes.module.mjs +54 -0
- package/esm2022/src/app/core/services/pipes/referential-to-string.pipe.mjs +21 -0
- package/esm2022/src/app/core/services/pipes/usage-mode.pipes.mjs +37 -0
- package/esm2022/src/app/core/services/platform.service.mjs +627 -0
- package/esm2022/src/app/core/services/storage/entities-storage.service.mjs +427 -0
- package/esm2022/src/app/core/services/storage/entity-store.class.mjs +450 -0
- package/esm2022/src/app/core/services/testing/referential-filter.model.mjs +25 -0
- package/esm2022/src/app/core/services/testing/referential.validator.mjs +46 -0
- package/esm2022/src/app/core/services/validator/account.validator.mjs +45 -0
- package/esm2022/src/app/core/services/validator/base.validator.class.mjs +49 -0
- package/esm2022/src/app/core/services/validator/local-settings.validator.mjs +57 -0
- package/esm2022/src/app/core/services/validator/user-settings.validator.mjs +27 -0
- package/esm2022/src/app/core/services/validator/user-token.validator.mjs +55 -0
- package/esm2022/src/app/core/settings/settings.module.mjs +23 -0
- package/esm2022/src/app/core/settings/settings.page.mjs +403 -0
- package/esm2022/src/app/core/table/async-table.class.mjs +1811 -0
- package/esm2022/src/app/core/table/column/actions-column.component.mjs +130 -0
- package/esm2022/src/app/core/table/column/nav-actions-column.component.mjs +117 -0
- package/esm2022/src/app/core/table/column/row-field.component.mjs +116 -0
- package/esm2022/src/app/core/table/entities-async-table-datasource.class.mjs +404 -0
- package/esm2022/src/app/core/table/entities-table-datasource.class.mjs +405 -0
- package/esm2022/src/app/core/table/memory-table.class.mjs +57 -0
- package/esm2022/src/app/core/table/table-select-columns.component.mjs +46 -0
- package/esm2022/src/app/core/table/table.class.mjs +1867 -0
- package/esm2022/src/app/core/table/table.model.mjs +21 -0
- package/esm2022/src/app/core/table/table.module.mjs +51 -0
- package/esm2022/src/app/core/table/table.pipes.mjs +77 -0
- package/esm2022/src/app/core/table/table.utils.mjs +34 -0
- package/esm2022/src/app/core/table/testing/table-validator.service.mjs +32 -0
- package/esm2022/src/app/core/table/testing/table.testing.mjs +329 -0
- package/esm2022/src/app/core/table/testing/table.testing.module.mjs +25 -0
- package/esm2022/src/app/core/table/testing/table2-validator.service.mjs +25 -0
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +273 -0
- package/esm2022/src/app/shared/alerts.mjs +243 -0
- package/esm2022/src/app/shared/audio/audio.mjs +255 -0
- package/esm2022/src/app/shared/audio/audio.testing.mjs +32 -0
- package/esm2022/src/app/shared/audio/audio.testing.module.mjs +30 -0
- package/esm2022/src/app/shared/capacitor/keyboard.mjs +42 -0
- package/esm2022/src/app/shared/capacitor/plugins.mjs +9 -0
- package/esm2022/src/app/shared/constants.mjs +16 -0
- package/esm2022/src/app/shared/dates.mjs +180 -0
- package/esm2022/src/app/shared/debug/debug-service.class.mjs +3 -0
- package/esm2022/src/app/shared/debug/debug.component.mjs +44 -0
- package/esm2022/src/app/shared/debug/debug.module.mjs +23 -0
- package/esm2022/src/app/shared/directives/autofocus.directive.mjs +91 -0
- package/esm2022/src/app/shared/directives/autoresize.directive.mjs +75 -0
- package/esm2022/src/app/shared/directives/autotitle.directive.mjs +30 -0
- package/esm2022/src/app/shared/directives/directives.module.mjs +24 -0
- package/esm2022/src/app/shared/directives/drag-and-drop.directive.mjs +52 -0
- package/esm2022/src/app/shared/directives/ng-var.directive.mjs +33 -0
- package/esm2022/src/app/shared/directives/resizable/resizable.component.mjs +62 -0
- package/esm2022/src/app/shared/directives/resizable/resizable.directive.mjs +45 -0
- package/esm2022/src/app/shared/directives/resizable/resizable.module.mjs +17 -0
- package/esm2022/src/app/shared/directives/throttled-click.directive.mjs +43 -0
- package/esm2022/src/app/shared/events.mjs +64 -0
- package/esm2022/src/app/shared/file/csv.utils.mjs +97 -0
- package/esm2022/src/app/shared/file/file.service.mjs +118 -0
- package/esm2022/src/app/shared/file/file.utils.mjs +117 -0
- package/esm2022/src/app/shared/file/images.utils.mjs +186 -0
- package/esm2022/src/app/shared/file/json.utils.mjs +58 -0
- package/esm2022/src/app/shared/file/uri.utils.mjs +29 -0
- package/esm2022/src/app/shared/file/url.utils.mjs +164 -0
- package/esm2022/src/app/shared/focusable.mjs +6 -0
- package/esm2022/src/app/shared/form/field.component.mjs +393 -0
- package/esm2022/src/app/shared/form/field.model.mjs +82 -0
- package/esm2022/src/app/shared/form/loading-spinner.mjs +35 -0
- package/esm2022/src/app/shared/forms.mjs +510 -0
- package/esm2022/src/app/shared/functions.mjs +672 -0
- package/esm2022/src/app/shared/geolocation/geolocation.utils.mjs +86 -0
- package/esm2022/src/app/shared/gesture/gesture-config.mjs +46 -0
- package/esm2022/src/app/shared/gesture/hammer.utils.mjs +2 -0
- package/esm2022/src/app/shared/graph/colors.utils.mjs +60 -0
- package/esm2022/src/app/shared/graph/graph-colors.mjs +214 -0
- package/esm2022/src/app/shared/guard/component-dirty.guard.mjs +65 -0
- package/esm2022/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +23 -0
- package/esm2022/src/app/shared/hotkeys/hotkeys.service.mjs +147 -0
- package/esm2022/src/app/shared/hotkeys/shared-hotkeys.module.mjs +24 -0
- package/esm2022/src/app/shared/http/http.utils.mjs +56 -0
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +443 -0
- package/esm2022/src/app/shared/image/gallery/image-gallery.module.mjs +62 -0
- package/esm2022/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +26 -0
- package/esm2022/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +87 -0
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +37 -0
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +59 -0
- package/esm2022/src/app/shared/image/image.model.mjs +2 -0
- package/esm2022/src/app/shared/image/image.module.mjs +24 -0
- package/esm2022/src/app/shared/image/image.service.mjs +109 -0
- package/esm2022/src/app/shared/inputs.mjs +279 -0
- package/esm2022/src/app/shared/interceptors/progess.interceptor.mjs +27 -0
- package/esm2022/src/app/shared/logging/log-level.model.mjs +48 -0
- package/esm2022/src/app/shared/logging/logger.model.mjs +47 -0
- package/esm2022/src/app/shared/logging/logging-service.class.mjs +125 -0
- package/esm2022/src/app/shared/logging/logging-service.config.mjs +2 -0
- package/esm2022/src/app/shared/logging/logging-service.module.mjs +30 -0
- package/esm2022/src/app/shared/markdown/markdown.component.mjs +321 -0
- package/esm2022/src/app/shared/markdown/markdown.directive.mjs +34 -0
- package/esm2022/src/app/shared/markdown/markdown.modal.mjs +99 -0
- package/esm2022/src/app/shared/markdown/markdown.module.mjs +87 -0
- package/esm2022/src/app/shared/markdown/markdown.service.mjs +204 -0
- package/esm2022/src/app/shared/markdown/markdown.utils.mjs +87 -0
- package/esm2022/src/app/shared/markdown/testing/markdown.test.mjs +55 -0
- package/esm2022/src/app/shared/markdown/testing/markdown.testing.module.mjs +30 -0
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +46 -0
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +1313 -0
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +79 -0
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.utils.mjs +18 -0
- package/esm2022/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +242 -0
- package/esm2022/src/app/shared/material/badge/badge.directive.mjs +251 -0
- package/esm2022/src/app/shared/material/badge/badge.module.mjs +20 -0
- package/esm2022/src/app/shared/material/badge/badge.test.mjs +42 -0
- package/esm2022/src/app/shared/material/boolean/boolean.module.mjs +67 -0
- package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +371 -0
- package/esm2022/src/app/shared/material/boolean/testing/boolean.test.page.mjs +72 -0
- package/esm2022/src/app/shared/material/chips/chips.module.mjs +71 -0
- package/esm2022/src/app/shared/material/chips/material.chips.mjs +836 -0
- package/esm2022/src/app/shared/material/chips/testing/chips.test.mjs +151 -0
- package/esm2022/src/app/shared/material/datetime/datetime.module.mjs +76 -0
- package/esm2022/src/app/shared/material/datetime/material.date.mjs +471 -0
- package/esm2022/src/app/shared/material/datetime/material.dateshort.mjs +457 -0
- package/esm2022/src/app/shared/material/datetime/material.datetime.mjs +693 -0
- package/esm2022/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +136 -0
- package/esm2022/src/app/shared/material/datetime/testing/mat-date.test.mjs +127 -0
- package/esm2022/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +118 -0
- package/esm2022/src/app/shared/material/duration/duration.module.mjs +61 -0
- package/esm2022/src/app/shared/material/duration/duration.utils.mjs +16 -0
- package/esm2022/src/app/shared/material/duration/material.duration.mjs +283 -0
- package/esm2022/src/app/shared/material/duration/testing/mat-duration.test.mjs +85 -0
- package/esm2022/src/app/shared/material/latlong/latlong.utils.mjs +319 -0
- package/esm2022/src/app/shared/material/latlong/material.latlong-input.mjs +432 -0
- package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +231 -0
- package/esm2022/src/app/shared/material/latlong/material.latlong.module.mjs +68 -0
- package/esm2022/src/app/shared/material/latlong/testing/latlong.test.mjs +137 -0
- package/esm2022/src/app/shared/material/material.animations.mjs +200 -0
- package/esm2022/src/app/shared/material/material.config.mjs +3 -0
- package/esm2022/src/app/shared/material/material.module.mjs +229 -0
- package/esm2022/src/app/shared/material/material.testing.module.mjs +245 -0
- package/esm2022/src/app/shared/material/paginator/material.paginator-i18n.mjs +51 -0
- package/esm2022/src/app/shared/material/stepper/material.stepper-i18n.mjs +23 -0
- package/esm2022/src/app/shared/material/swipe/material.swipe.mjs +379 -0
- package/esm2022/src/app/shared/material/swipe/swipe.module.mjs +52 -0
- package/esm2022/src/app/shared/material/swipe/testing/swipe.test.mjs +67 -0
- package/esm2022/src/app/shared/material/test/test-component.mjs +264 -0
- package/esm2022/src/app/shared/material/testing/common.test.mjs +111 -0
- package/esm2022/src/app/shared/material/text/testing/text-form.testing.mjs +42 -0
- package/esm2022/src/app/shared/material/text/text-form.component.mjs +205 -0
- package/esm2022/src/app/shared/material/text/text-form.module.mjs +63 -0
- package/esm2022/src/app/shared/modules.mjs +12 -0
- package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +303 -0
- package/esm2022/src/app/shared/named-filter/named-filter.model.mjs +49 -0
- package/esm2022/src/app/shared/named-filter/named-filter.module.mjs +24 -0
- package/esm2022/src/app/shared/named-filter/named-filter.service.mjs +69 -0
- package/esm2022/src/app/shared/named-filter/testing/named-filter-selector.testing.mjs +74 -0
- package/esm2022/src/app/shared/named-filter/testing/named-filter.testing.module.mjs +28 -0
- package/esm2022/src/app/shared/observables.mjs +100 -0
- package/esm2022/src/app/shared/pipes/arrays.pipe.mjs +217 -0
- package/esm2022/src/app/shared/pipes/badge.pipes.mjs +24 -0
- package/esm2022/src/app/shared/pipes/colors.pipe.mjs +29 -0
- package/esm2022/src/app/shared/pipes/date-diff-duration.pipe.mjs +50 -0
- package/esm2022/src/app/shared/pipes/date-format.pipe.mjs +72 -0
- package/esm2022/src/app/shared/pipes/date-from-now.pipe.mjs +28 -0
- package/esm2022/src/app/shared/pipes/dates.pipe.mjs +18 -0
- package/esm2022/src/app/shared/pipes/display-with.pipe.mjs +23 -0
- package/esm2022/src/app/shared/pipes/duration.pipe.mjs +34 -0
- package/esm2022/src/app/shared/pipes/file-size.pipe.mjs +53 -0
- package/esm2022/src/app/shared/pipes/form.pipes.mjs +219 -0
- package/esm2022/src/app/shared/pipes/highlight.pipe.mjs +50 -0
- package/esm2022/src/app/shared/pipes/html.pipes.mjs +69 -0
- package/esm2022/src/app/shared/pipes/latlong-format.pipe.mjs +42 -0
- package/esm2022/src/app/shared/pipes/maps.pipe.mjs +65 -0
- package/esm2022/src/app/shared/pipes/maskito.pipe.mjs +67 -0
- package/esm2022/src/app/shared/pipes/math.pipes.mjs +77 -0
- package/esm2022/src/app/shared/pipes/ng-init.pipe.mjs +19 -0
- package/esm2022/src/app/shared/pipes/number-format.pipe.mjs +17 -0
- package/esm2022/src/app/shared/pipes/observable.pipes.mjs +61 -0
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +285 -0
- package/esm2022/src/app/shared/pipes/property.pipes.mjs +135 -0
- package/esm2022/src/app/shared/pipes/selection.pipes.mjs +179 -0
- package/esm2022/src/app/shared/pipes/string.pipes.mjs +183 -0
- package/esm2022/src/app/shared/pipes/translate-context.pipe.mjs +44 -0
- package/esm2022/src/app/shared/pipes/types.pipes.mjs +74 -0
- package/esm2022/src/app/shared/pipes/url.pipes.mjs +43 -0
- package/esm2022/src/app/shared/platforms.mjs +81 -0
- package/esm2022/src/app/shared/print/print.service.mjs +305 -0
- package/esm2022/src/app/shared/regexps.mjs +96 -0
- package/esm2022/src/app/shared/rx-state/rx-state.decorators.mjs +217 -0
- package/esm2022/src/app/shared/rx-state/rx-state.module.mjs +19 -0
- package/esm2022/src/app/shared/rx-state/rx-state.types.mjs +2 -0
- package/esm2022/src/app/shared/services/entity-service.class.mjs +10 -0
- package/esm2022/src/app/shared/services/job.utils.mjs +92 -0
- package/esm2022/src/app/shared/services/memory-entity-service.class.mjs +353 -0
- package/esm2022/src/app/shared/services/progress-bar.service.mjs +31 -0
- package/esm2022/src/app/shared/services/startable-observable-service.class.mjs +118 -0
- package/esm2022/src/app/shared/services/startable-service.class.mjs +107 -0
- package/esm2022/src/app/shared/services/translate-context.service.mjs +107 -0
- package/esm2022/src/app/shared/services/validator-service.class.mjs +2 -0
- package/esm2022/src/app/shared/services.mjs +85 -0
- package/esm2022/src/app/shared/shared-routing.module.mjs +72 -0
- package/esm2022/src/app/shared/shared.module.mjs +229 -0
- package/esm2022/src/app/shared/shared.testing.module.mjs +108 -0
- package/esm2022/src/app/shared/storage/storage-explorer.component.mjs +279 -0
- package/esm2022/src/app/shared/storage/storage-explorer.module.mjs +42 -0
- package/esm2022/src/app/shared/storage/storage-explorer.testing-routing.module.mjs +27 -0
- package/esm2022/src/app/shared/storage/storage-explorer.testing.module.mjs +25 -0
- package/esm2022/src/app/shared/storage/storage.service.mjs +134 -0
- package/esm2022/src/app/shared/storage/storage.utils.mjs +13 -0
- package/esm2022/src/app/shared/testing/maskito.test.mjs +41 -0
- package/esm2022/src/app/shared/testing/observable.test.mjs +94 -0
- package/esm2022/src/app/shared/testing/tests.page.mjs +37 -0
- package/esm2022/src/app/shared/toast/toast.testing.mjs +54 -0
- package/esm2022/src/app/shared/toast/toast.testing.module.mjs +31 -0
- package/esm2022/src/app/shared/toast/toasts.mjs +134 -0
- package/esm2022/src/app/shared/toolbar/modal-toolbar.mjs +62 -0
- package/esm2022/src/app/shared/toolbar/toolbar.mjs +267 -0
- package/esm2022/src/app/shared/toolbar/toolbar.module.mjs +26 -0
- package/esm2022/src/app/shared/types.mjs +2 -0
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.mjs +59 -0
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +30 -0
- package/esm2022/src/app/shared/upload-file/upload-file-popover.component.mjs +109 -0
- package/esm2022/src/app/shared/upload-file/upload-file.component.mjs +216 -0
- package/esm2022/src/app/shared/upload-file/upload-file.model.mjs +26 -0
- package/esm2022/src/app/shared/validator/form-error-adapter.class.mjs +114 -0
- package/esm2022/src/app/shared/validator/validators.mjs +621 -0
- package/esm2022/src/app/shared/version/versions.mjs +81 -0
- package/esm2022/src/app/social/job/job.module.mjs +23 -0
- package/esm2022/src/app/social/job/progression/job-progression.component.mjs +35 -0
- package/esm2022/src/app/social/job/progression/job-progression.icon.mjs +235 -0
- package/esm2022/src/app/social/job/progression/job-progression.list.mjs +47 -0
- package/esm2022/src/app/social/job/progression/job-progression.model.mjs +29 -0
- package/esm2022/src/app/social/job/progression/job-progression.service.mjs +91 -0
- package/esm2022/src/app/social/job/testing/job-progression.testing.mjs +38 -0
- package/esm2022/src/app/social/job/testing/job-progression.testing.service.mjs +34 -0
- package/esm2022/src/app/social/job/testing/job.testing.module.mjs +22 -0
- package/esm2022/src/app/social/message/message.form.mjs +141 -0
- package/esm2022/src/app/social/message/message.modal.mjs +110 -0
- package/esm2022/src/app/social/message/message.model.mjs +75 -0
- package/esm2022/src/app/social/message/message.module.mjs +22 -0
- package/esm2022/src/app/social/message/message.service.mjs +110 -0
- package/esm2022/src/app/social/social.errors.mjs +10 -0
- package/esm2022/src/app/social/social.module.mjs +22 -0
- package/esm2022/src/app/social/social.testing.module.mjs +40 -0
- package/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +127 -0
- package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +260 -0
- package/esm2022/src/app/social/user-event/testing/user-event.testing.mjs +257 -0
- package/esm2022/src/app/social/user-event/testing/user-event.testing.model.mjs +129 -0
- package/esm2022/src/app/social/user-event/testing/user-event.testing.module.mjs +22 -0
- package/esm2022/src/app/social/user-event/testing/user-event.testing.service.mjs +128 -0
- package/esm2022/src/app/social/user-event/user-event.model.mjs +2 -0
- package/esm2022/src/app/social/user-event/user-event.module.mjs +23 -0
- package/esm2022/src/app/social/user-event/user-event.service.mjs +512 -0
- package/esm2022/src/environments/environment.class.mjs +65 -0
- package/esm2022/src/environments/environment.loader.mjs +77 -0
- package/esm2022/src/environments/environment.mjs +109 -0
- package/esm2022/sumaris-net.ngx-components.mjs +5 -0
- package/fesm2022/sumaris-net.ngx-components.mjs +48742 -0
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/package.json +19 -132
- package/public_api.d.ts +344 -0
- package/src/app/admin/admin-routing.module.d.ts +9 -0
- package/src/app/admin/admin.module.d.ts +10 -0
- package/src/app/admin/services/filter/person.filter.d.ts +22 -0
- package/src/app/admin/services/person.service.d.ts +37 -0
- package/src/app/admin/services/validator/person.validator.d.ts +23 -0
- package/src/app/admin/users/users.d.ts +61 -0
- package/src/app/admin/users/users.module.d.ts +14 -0
- package/src/app/core/about/about.modal.d.ts +32 -0
- package/src/app/core/about/about.module.d.ts +11 -0
- package/src/app/core/account/account.module.d.ts +18 -0
- package/src/app/core/account/account.page.d.ts +83 -0
- package/src/app/core/account/new-token.form.d.ts +29 -0
- package/src/app/core/account/new-token.modal.d.ts +29 -0
- package/src/app/core/account/password/change-password.form.d.ts +19 -0
- package/src/app/core/account/password/change-password.module.d.ts +11 -0
- package/src/app/core/account/password/change-password.page.d.ts +36 -0
- package/src/app/core/account/token.table.d.ts +27 -0
- package/src/app/core/auth/auth.form.d.ts +38 -0
- package/src/app/core/auth/auth.modal.d.ts +24 -0
- package/src/app/core/auth/auth.module.d.ts +13 -0
- package/src/app/core/auth/reset-password.modal.d.ts +29 -0
- package/src/app/core/core.module.d.ts +28 -0
- package/src/app/core/core.testing.module.d.ts +15 -0
- package/src/app/core/form/array/form-array.d.ts +137 -0
- package/src/app/core/form/array/testing/form-array-test.module.d.ts +12 -0
- package/src/app/core/form/array/testing/form-array.test.d.ts +26 -0
- package/src/app/core/form/buttons/form-buttons-bar.component.d.ts +37 -0
- package/src/app/core/form/buttons/form-buttons-bar.module.d.ts +9 -0
- package/src/app/core/form/entity/editor.class.d.ts +84 -0
- package/src/app/core/form/entity/entity-editor-modal.class.d.ts +126 -0
- package/src/app/core/form/entity/entity-editor.class.d.ts +204 -0
- package/src/app/core/form/entity/entity-metadata.component.d.ts +13 -0
- package/src/app/core/form/entity/entity.module.d.ts +10 -0
- package/src/app/core/form/entity/tab-editor.class.d.ts +66 -0
- package/src/app/core/form/form-container.class.d.ts +127 -0
- package/src/app/core/form/form.class.d.ts +144 -0
- package/src/app/core/form/form.module.d.ts +14 -0
- package/src/app/core/form/form.utils.d.ts +260 -0
- package/src/app/core/form/list/list.form.d.ts +81 -0
- package/src/app/core/form/list/list.module.d.ts +9 -0
- package/src/app/core/form/properties/properties.form.d.ts +92 -0
- package/src/app/core/form/properties/properties.module.d.ts +11 -0
- package/src/app/core/form/properties/properties.table.d.ts +72 -0
- package/src/app/core/form/properties/properties.utils.d.ts +59 -0
- package/src/app/core/form/properties/property.validator.d.ts +27 -0
- package/src/app/core/form/properties/testing/properties-form.test.d.ts +22 -0
- package/src/app/core/form/properties/testing/properties-form.testing.module.d.ts +12 -0
- package/src/app/core/form/text-popover/testing/text-popover.testing.d.ts +16 -0
- package/src/app/core/form/text-popover/testing/text-popover.testing.module.d.ts +11 -0
- package/src/app/core/form/text-popover/text-popover.component.d.ts +80 -0
- package/src/app/core/form/text-popover/text-popover.module.d.ts +9 -0
- package/src/app/core/form/username/username.form.d.ts +19 -0
- package/src/app/core/form/username/username.module.d.ts +9 -0
- package/src/app/core/graphql/graphql.module.d.ts +7 -0
- package/src/app/core/graphql/graphql.service.d.ts +142 -0
- package/src/app/core/graphql/graphql.utils.d.ts +47 -0
- package/src/app/core/home/home.d.ts +109 -0
- package/src/app/core/home/home.module.d.ts +14 -0
- package/src/app/core/icon/icon.component.d.ts +13 -0
- package/src/app/core/icon/icon.module.d.ts +9 -0
- package/src/app/core/install/install-upgrade-card.component.d.ts +63 -0
- package/src/app/core/install/install-upgrade-card.module.d.ts +9 -0
- package/src/app/core/menu/menu.component.d.ts +66 -0
- package/src/app/core/menu/menu.model.d.ts +144 -0
- package/src/app/core/menu/menu.module.d.ts +12 -0
- package/src/app/core/menu/menu.service.d.ts +93 -0
- package/src/app/core/menu/sub-menu-tab.directive.d.ts +29 -0
- package/src/app/core/menu/testing/menu-other.testing.d.ts +15 -0
- package/src/app/core/menu/testing/menu.testing.d.ts +51 -0
- package/src/app/core/menu/testing/menu.testing.module.d.ts +12 -0
- package/src/app/core/offline/update-offline-mode-card.component.d.ts +11 -0
- package/src/app/core/offline/update-offline-mode-card.module.d.ts +9 -0
- package/src/app/core/peer/select-peer.modal.d.ts +101 -0
- package/src/app/core/peer/select-peer.module.d.ts +12 -0
- package/src/app/core/register/register-confirm.page.d.ts +24 -0
- package/src/app/core/register/register.form.d.ts +49 -0
- package/src/app/core/register/register.modal.d.ts +14 -0
- package/src/app/core/register/register.module.d.ts +12 -0
- package/src/app/core/services/account.service.d.ts +207 -0
- package/src/app/core/services/auth-guard.service.d.ts +17 -0
- package/src/app/core/services/base-entity-service.class.d.ts +135 -0
- package/src/app/core/services/base-graphql-service.class.d.ts +77 -0
- package/src/app/core/services/base58.d.ts +7 -0
- package/src/app/core/services/config/core.config.d.ts +46 -0
- package/src/app/core/services/config.service.d.ts +63 -0
- package/src/app/core/services/crypto.service.d.ts +44 -0
- package/src/app/core/services/errors.d.ts +65 -0
- package/src/app/core/services/local-settings.service.d.ts +99 -0
- package/src/app/core/services/model/account.model.d.ts +56 -0
- package/src/app/core/services/model/config.model.d.ts +36 -0
- package/src/app/core/services/model/department.model.d.ts +11 -0
- package/src/app/core/services/model/entity.decorators.d.ts +17 -0
- package/src/app/core/services/model/entity.model.d.ts +133 -0
- package/src/app/core/services/model/filter.model.d.ts +37 -0
- package/src/app/core/services/model/history.model.d.ts +20 -0
- package/src/app/core/services/model/model.enum.d.ts +7 -0
- package/src/app/core/services/model/node-feature.model.d.ts +14 -0
- package/src/app/core/services/model/peer.model.d.ts +35 -0
- package/src/app/core/services/model/person.model.d.ts +37 -0
- package/src/app/core/services/model/referential.model.d.ts +84 -0
- package/src/app/core/services/model/settings.model.d.ts +29 -0
- package/src/app/core/services/model/token.model.d.ts +22 -0
- package/src/app/core/services/model/tree-item-entity.model.d.ts +53 -0
- package/src/app/core/services/network.service.d.ts +159 -0
- package/src/app/core/services/network.types.d.ts +4 -0
- package/src/app/core/services/network.utils.d.ts +38 -0
- package/src/app/core/services/pipes/account.pipes.d.ts +15 -0
- package/src/app/core/services/pipes/department-to-string.pipe.d.ts +9 -0
- package/src/app/core/services/pipes/person-to-string.pipe.d.ts +11 -0
- package/src/app/core/services/pipes/pipes.module.d.ts +11 -0
- package/src/app/core/services/pipes/referential-to-string.pipe.d.ts +13 -0
- package/src/app/core/services/pipes/usage-mode.pipes.d.ts +15 -0
- package/src/app/core/services/platform.service.d.ts +110 -0
- package/src/app/core/services/storage/entities-storage.service.d.ts +108 -0
- package/src/app/core/services/storage/entity-store.class.d.ts +113 -0
- package/src/app/core/services/testing/referential-filter.model.d.ts +9 -0
- package/src/app/core/services/testing/referential.validator.d.ts +22 -0
- package/src/app/core/services/validator/account.validator.d.ts +24 -0
- package/src/app/core/services/validator/base.validator.class.d.ts +21 -0
- package/src/app/core/services/validator/local-settings.validator.d.ts +18 -0
- package/src/app/core/services/validator/user-settings.validator.d.ts +10 -0
- package/src/app/core/services/validator/user-token.validator.d.ts +13 -0
- package/src/app/core/settings/settings.module.d.ts +12 -0
- package/src/app/core/settings/settings.page.d.ts +88 -0
- package/src/app/core/table/async-table.class.d.ts +395 -0
- package/src/app/core/table/column/actions-column.component.d.ts +62 -0
- package/src/app/core/table/column/nav-actions-column.component.d.ts +46 -0
- package/src/app/core/table/column/row-field.component.d.ts +40 -0
- package/src/app/core/table/entities-async-table-datasource.class.d.ts +100 -0
- package/src/app/core/table/entities-table-datasource.class.d.ts +103 -0
- package/src/app/core/table/memory-table.class.d.ts +25 -0
- package/src/app/core/table/table-select-columns.component.d.ts +22 -0
- package/src/app/core/table/table.class.d.ts +400 -0
- package/src/app/core/table/table.model.d.ts +31 -0
- package/src/app/core/table/table.module.d.ts +14 -0
- package/src/app/core/table/table.pipes.d.ts +29 -0
- package/src/app/core/table/table.utils.d.ts +13 -0
- package/src/app/core/table/testing/table-validator.service.d.ts +17 -0
- package/src/app/core/table/testing/table.testing.d.ts +54 -0
- package/src/app/core/table/testing/table.testing.module.d.ts +14 -0
- package/src/app/core/table/testing/table2-validator.service.d.ts +15 -0
- package/src/app/core/table/testing/table2.testing.d.ts +48 -0
- package/src/app/shared/alerts.d.ts +55 -0
- package/src/app/shared/audio/audio.d.ts +45 -0
- package/src/app/shared/audio/audio.testing.d.ts +13 -0
- package/src/app/shared/audio/audio.testing.module.d.ts +11 -0
- package/src/app/shared/capacitor/keyboard.d.ts +16 -0
- package/src/app/shared/capacitor/plugins.d.ts +7 -0
- package/src/app/shared/constants.d.ts +13 -0
- package/src/app/shared/dates.d.ts +61 -0
- package/src/app/shared/debug/debug-service.class.d.ts +5 -0
- package/src/app/shared/debug/debug.component.d.ts +14 -0
- package/src/app/shared/debug/debug.module.d.ts +12 -0
- package/src/app/shared/directives/autofocus.directive.d.ts +18 -0
- package/src/app/shared/directives/autoresize.directive.d.ts +20 -0
- package/src/app/shared/directives/autotitle.directive.d.ts +11 -0
- package/src/app/shared/directives/directives.module.d.ts +14 -0
- package/src/app/shared/directives/drag-and-drop.directive.d.ts +17 -0
- package/src/app/shared/directives/ng-var.directive.d.ts +12 -0
- package/src/app/shared/directives/resizable/resizable.component.d.ts +21 -0
- package/src/app/shared/directives/resizable/resizable.directive.d.ts +12 -0
- package/src/app/shared/directives/resizable/resizable.module.d.ts +8 -0
- package/src/app/shared/directives/throttled-click.directive.d.ts +16 -0
- package/src/app/shared/events.d.ts +29 -0
- package/src/app/shared/file/csv.utils.d.ts +30 -0
- package/src/app/shared/file/file.service.d.ts +23 -0
- package/src/app/shared/file/file.utils.d.ts +20 -0
- package/src/app/shared/file/images.utils.d.ts +36 -0
- package/src/app/shared/file/json.utils.d.ts +19 -0
- package/src/app/shared/file/uri.utils.d.ts +8 -0
- package/src/app/shared/file/url.utils.d.ts +77 -0
- package/src/app/shared/focusable.d.ts +4 -0
- package/src/app/shared/form/field.component.d.ts +85 -0
- package/src/app/shared/form/field.model.d.ts +82 -0
- package/src/app/shared/form/loading-spinner.d.ts +8 -0
- package/src/app/shared/forms.d.ts +135 -0
- package/src/app/shared/functions.d.ts +206 -0
- package/src/app/shared/geolocation/geolocation.utils.d.ts +19 -0
- package/src/app/shared/gesture/gesture-config.d.ts +15 -0
- package/src/app/shared/gesture/hammer.utils.d.ts +16 -0
- package/src/app/shared/graph/colors.utils.d.ts +17 -0
- package/src/app/shared/graph/graph-colors.d.ts +63 -0
- package/src/app/shared/guard/component-dirty.guard.d.ts +14 -0
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.d.ts +8 -0
- package/src/app/shared/hotkeys/hotkeys.service.d.ts +48 -0
- package/src/app/shared/hotkeys/shared-hotkeys.module.d.ts +11 -0
- package/src/app/shared/http/http.utils.d.ts +28 -0
- package/src/app/shared/image/gallery/image-gallery.component.d.ts +137 -0
- package/src/app/shared/image/gallery/image-gallery.module.d.ts +15 -0
- package/src/app/shared/image/gallery/testing/gallegry.model.testing.d.ts +12 -0
- package/src/app/shared/image/gallery/testing/gallery.service.testing.d.ts +33 -0
- package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +16 -0
- package/src/app/shared/image/gallery/testing/gallery.testing.module.d.ts +13 -0
- package/src/app/shared/image/image.model.d.ts +7 -0
- package/src/app/shared/image/image.module.d.ts +8 -0
- package/src/app/shared/image/image.service.d.ts +36 -0
- package/src/app/shared/inputs.d.ts +36 -0
- package/src/app/shared/interceptors/progess.interceptor.d.ts +8 -0
- package/src/app/shared/logging/log-level.model.d.ts +38 -0
- package/src/app/shared/logging/logger.model.d.ts +68 -0
- package/src/app/shared/logging/logging-service.class.d.ts +39 -0
- package/src/app/shared/logging/logging-service.config.d.ts +25 -0
- package/src/app/shared/logging/logging-service.module.d.ts +9 -0
- package/src/app/shared/markdown/markdown.component.d.ts +86 -0
- package/src/app/shared/markdown/markdown.directive.d.ts +13 -0
- package/src/app/shared/markdown/markdown.modal.d.ts +49 -0
- package/src/app/shared/markdown/markdown.module.d.ts +17 -0
- package/src/app/shared/markdown/markdown.service.d.ts +37 -0
- package/src/app/shared/markdown/markdown.utils.d.ts +26 -0
- package/src/app/shared/markdown/testing/markdown.test.d.ts +18 -0
- package/src/app/shared/markdown/testing/markdown.testing.module.d.ts +12 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.config.d.ts +74 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +211 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.module.d.ts +22 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.utils.d.ts +5 -0
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.d.ts +48 -0
- package/src/app/shared/material/badge/badge.directive.d.ts +43 -0
- package/src/app/shared/material/badge/badge.module.d.ts +10 -0
- package/src/app/shared/material/badge/badge.test.d.ts +21 -0
- package/src/app/shared/material/boolean/boolean.module.d.ts +20 -0
- package/src/app/shared/material/boolean/material.boolean.d.ts +93 -0
- package/src/app/shared/material/boolean/testing/boolean.test.page.d.ts +26 -0
- package/src/app/shared/material/chips/chips.module.d.ts +21 -0
- package/src/app/shared/material/chips/material.chips.d.ts +164 -0
- package/src/app/shared/material/chips/testing/chips.test.d.ts +32 -0
- package/src/app/shared/material/datetime/datetime.module.d.ts +24 -0
- package/src/app/shared/material/datetime/material.date.d.ts +90 -0
- package/src/app/shared/material/datetime/material.dateshort.d.ts +89 -0
- package/src/app/shared/material/datetime/material.datetime.d.ts +116 -0
- package/src/app/shared/material/datetime/testing/mat-date-time.test.d.ts +37 -0
- package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +32 -0
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.d.ts +31 -0
- package/src/app/shared/material/duration/duration.module.d.ts +18 -0
- package/src/app/shared/material/duration/duration.utils.d.ts +2 -0
- package/src/app/shared/material/duration/material.duration.d.ts +64 -0
- package/src/app/shared/material/duration/testing/mat-duration.test.d.ts +23 -0
- package/src/app/shared/material/latlong/latlong.utils.d.ts +59 -0
- package/src/app/shared/material/latlong/material.latlong-input.d.ts +85 -0
- package/src/app/shared/material/latlong/material.latlong.d.ts +90 -0
- package/src/app/shared/material/latlong/material.latlong.module.d.ts +21 -0
- package/src/app/shared/material/latlong/testing/latlong.test.d.ts +28 -0
- package/src/app/shared/material/material.animations.d.ts +8 -0
- package/src/app/shared/material/material.config.d.ts +3 -0
- package/src/app/shared/material/material.module.d.ts +45 -0
- package/src/app/shared/material/material.testing.module.d.ts +32 -0
- package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +12 -0
- package/src/app/shared/material/stepper/material.stepper-i18n.d.ts +10 -0
- package/src/app/shared/material/swipe/material.swipe.d.ts +89 -0
- package/src/app/shared/material/swipe/swipe.module.d.ts +16 -0
- package/src/app/shared/material/swipe/testing/swipe.test.d.ts +22 -0
- package/src/app/shared/material/test/test-component.d.ts +75 -0
- package/src/app/shared/material/testing/common.test.d.ts +25 -0
- package/src/app/shared/material/text/testing/text-form.testing.d.ts +19 -0
- package/src/app/shared/material/text/text-form.component.d.ts +66 -0
- package/src/app/shared/material/text/text-form.module.d.ts +16 -0
- package/src/app/shared/modules.d.ts +9 -0
- package/src/app/shared/named-filter/named-filter-selector.component.d.ts +62 -0
- package/src/app/shared/named-filter/named-filter.model.d.ts +32 -0
- package/src/app/shared/named-filter/named-filter.module.d.ts +13 -0
- package/src/app/shared/named-filter/named-filter.service.d.ts +32 -0
- package/src/app/shared/named-filter/testing/named-filter-selector.testing.d.ts +34 -0
- package/src/app/shared/named-filter/testing/named-filter.testing.module.d.ts +10 -0
- package/src/app/shared/observables.d.ts +30 -0
- package/src/app/shared/pipes/arrays.pipe.d.ts +82 -0
- package/src/app/shared/pipes/badge.pipes.d.ts +7 -0
- package/src/app/shared/pipes/colors.pipe.d.ts +9 -0
- package/src/app/shared/pipes/date-diff-duration.pipe.d.ts +25 -0
- package/src/app/shared/pipes/date-format.pipe.d.ts +35 -0
- package/src/app/shared/pipes/date-from-now.pipe.d.ts +12 -0
- package/src/app/shared/pipes/dates.pipe.d.ts +10 -0
- package/src/app/shared/pipes/display-with.pipe.d.ts +8 -0
- package/src/app/shared/pipes/duration.pipe.d.ts +23 -0
- package/src/app/shared/pipes/file-size.pipe.d.ts +30 -0
- package/src/app/shared/pipes/form.pipes.d.ts +69 -0
- package/src/app/shared/pipes/highlight.pipe.d.ts +11 -0
- package/src/app/shared/pipes/html.pipes.d.ts +22 -0
- package/src/app/shared/pipes/latlong-format.pipe.d.ts +20 -0
- package/src/app/shared/pipes/maps.pipe.d.ts +23 -0
- package/src/app/shared/pipes/maskito.pipe.d.ts +14 -0
- package/src/app/shared/pipes/math.pipes.d.ts +26 -0
- package/src/app/shared/pipes/ng-init.pipe.d.ts +8 -0
- package/src/app/shared/pipes/number-format.pipe.d.ts +9 -0
- package/src/app/shared/pipes/observable.pipes.d.ts +25 -0
- package/src/app/shared/pipes/pipes.module.d.ts +35 -0
- package/src/app/shared/pipes/property.pipes.d.ts +41 -0
- package/src/app/shared/pipes/selection.pipes.d.ts +62 -0
- package/src/app/shared/pipes/string.pipes.d.ts +68 -0
- package/src/app/shared/pipes/translate-context.pipe.d.ts +17 -0
- package/src/app/shared/pipes/types.pipes.d.ts +30 -0
- package/src/app/shared/pipes/url.pipes.d.ts +27 -0
- package/src/app/shared/platforms.d.ts +16 -0
- package/src/app/shared/print/print.service.d.ts +94 -0
- package/src/app/shared/regexps.d.ts +32 -0
- package/src/app/shared/rx-state/rx-state.decorators.d.ts +43 -0
- package/src/app/shared/rx-state/rx-state.module.d.ts +10 -0
- package/src/app/shared/rx-state/rx-state.types.d.ts +4 -0
- package/src/app/shared/services/entity-service.class.d.ts +75 -0
- package/src/app/shared/services/job.utils.d.ts +20 -0
- package/src/app/shared/services/memory-entity-service.class.d.ts +79 -0
- package/src/app/shared/services/progress-bar.service.d.ts +20 -0
- package/src/app/shared/services/startable-observable-service.class.d.ts +36 -0
- package/src/app/shared/services/startable-service.class.d.ts +37 -0
- package/src/app/shared/services/translate-context.service.d.ts +29 -0
- package/src/app/shared/services/validator-service.class.d.ts +11 -0
- package/src/app/shared/services.d.ts +17 -0
- package/src/app/shared/shared-routing.module.d.ts +23 -0
- package/src/app/shared/shared.module.d.ts +33 -0
- package/src/app/shared/shared.testing.module.d.ts +20 -0
- package/src/app/shared/storage/storage-explorer.component.d.ts +59 -0
- package/src/app/shared/storage/storage-explorer.module.d.ts +13 -0
- package/src/app/shared/storage/storage-explorer.testing-routing.module.d.ts +9 -0
- package/src/app/shared/storage/storage-explorer.testing.module.d.ts +10 -0
- package/src/app/shared/storage/storage.service.d.ts +22 -0
- package/src/app/shared/storage/storage.utils.d.ts +19 -0
- package/src/app/shared/testing/maskito.test.d.ts +10 -0
- package/src/app/shared/testing/observable.test.d.ts +25 -0
- package/src/app/shared/testing/tests.page.d.ts +20 -0
- package/src/app/shared/toast/toast.testing.d.ts +15 -0
- package/src/app/shared/toast/toast.testing.module.d.ts +12 -0
- package/src/app/shared/toast/toasts.d.ts +16 -0
- package/src/app/shared/toolbar/modal-toolbar.d.ts +21 -0
- package/src/app/shared/toolbar/toolbar.d.ts +70 -0
- package/src/app/shared/toolbar/toolbar.module.d.ts +16 -0
- package/src/app/shared/types.d.ts +36 -0
- package/src/app/shared/upload-file/testing/upload-file.testing.d.ts +21 -0
- package/src/app/shared/upload-file/testing/upload-file.testing.module.d.ts +11 -0
- package/src/app/shared/upload-file/upload-file-popover.component.d.ts +41 -0
- package/src/app/shared/upload-file/upload-file.component.d.ts +50 -0
- package/src/app/shared/upload-file/upload-file.model.d.ts +30 -0
- package/src/app/shared/validator/form-error-adapter.class.d.ts +33 -0
- package/src/app/shared/validator/validators.d.ts +139 -0
- package/src/app/shared/version/versions.d.ts +26 -0
- package/src/app/social/job/job.module.d.ts +12 -0
- package/src/app/social/job/progression/job-progression.component.d.ts +23 -0
- package/src/app/social/job/progression/job-progression.icon.d.ts +62 -0
- package/src/app/social/job/progression/job-progression.list.d.ts +19 -0
- package/src/app/social/job/progression/job-progression.model.d.ts +10 -0
- package/src/app/social/job/progression/job-progression.service.d.ts +33 -0
- package/src/app/social/job/testing/job-progression.testing.d.ts +13 -0
- package/src/app/social/job/testing/job-progression.testing.service.d.ts +9 -0
- package/src/app/social/job/testing/job.testing.module.d.ts +11 -0
- package/src/app/social/message/message.form.d.ts +36 -0
- package/src/app/social/message/message.modal.d.ts +43 -0
- package/src/app/social/message/message.model.d.ts +33 -0
- package/src/app/social/message/message.module.d.ts +12 -0
- package/src/app/social/message/message.service.d.ts +32 -0
- package/src/app/social/social.errors.d.ts +9 -0
- package/src/app/social/social.module.d.ts +20 -0
- package/src/app/social/social.testing.module.d.ts +13 -0
- package/src/app/social/user-event/notification/user-event-notification.icon.d.ts +32 -0
- package/src/app/social/user-event/notification/user-event-notification.list.d.ts +71 -0
- package/src/app/social/user-event/testing/user-event.testing.d.ts +35 -0
- package/src/app/social/user-event/testing/user-event.testing.model.d.ts +42 -0
- package/src/app/social/user-event/testing/user-event.testing.module.d.ts +11 -0
- package/src/app/social/user-event/testing/user-event.testing.service.d.ts +42 -0
- package/src/app/social/user-event/user-event.model.d.ts +44 -0
- package/src/app/social/user-event/user-event.module.d.ts +13 -0
- package/src/app/social/user-event/user-event.service.d.ts +124 -0
- package/src/assets/manifest.json +1 -1
- package/src/environments/environment.class.d.ts +75 -0
- package/src/environments/environment.d.ts +2 -0
- package/src/environments/environment.loader.d.ts +24 -0
- package/.editorconfig +0 -24
- package/.eslintrc.json +0 -95
- package/.gitattribute +0 -1
- package/.github/CONTRIBUTING.md +0 -10
- package/.github/ISSUE_TEMPLATE.md +0 -6
- package/.github/PULL_REQUEST_TEMPLATE.md +0 -10
- package/.github/github_disclaimer.md +0 -14
- package/.gitlab-ci.yml +0 -46
- package/.graphqlconfig +0 -15
- package/.prettierignore +0 -9
- package/.prettierrc.json +0 -17
- package/angular.json +0 -236
- package/capacitor.config.ts +0 -49
- package/graphql.config.yml +0 -13
- package/ionic.config.json +0 -7
- package/karma.conf.js +0 -38
- package/ng-package.json +0 -21
- package/ngcc.config.js +0 -9
- package/public_api.ts +0 -426
- package/resources/README.md +0 -7
- package/resources/icon/TODO.md +0 -11
- package/resources/icon.png +0 -0
- package/resources/icon.png.md5 +0 -1
- package/resources/icon.xcf +0 -0
- package/resources/ios/icon/icon-1024.png +0 -0
- package/resources/ios/icon/icon-108@2x.png +0 -0
- package/resources/ios/icon/icon-20.png +0 -0
- package/resources/ios/icon/icon-20@2x.png +0 -0
- package/resources/ios/icon/icon-20@3x.png +0 -0
- package/resources/ios/icon/icon-24@2x.png +0 -0
- package/resources/ios/icon/icon-27.5@2x.png +0 -0
- package/resources/ios/icon/icon-29.png +0 -0
- package/resources/ios/icon/icon-29@2x.png +0 -0
- package/resources/ios/icon/icon-29@3x.png +0 -0
- package/resources/ios/icon/icon-40.png +0 -0
- package/resources/ios/icon/icon-40@2x.png +0 -0
- package/resources/ios/icon/icon-40@3x.png +0 -0
- package/resources/ios/icon/icon-44@2x.png +0 -0
- package/resources/ios/icon/icon-50.png +0 -0
- package/resources/ios/icon/icon-50@2x.png +0 -0
- package/resources/ios/icon/icon-60.png +0 -0
- package/resources/ios/icon/icon-60@2x.png +0 -0
- package/resources/ios/icon/icon-60@3x.png +0 -0
- package/resources/ios/icon/icon-72.png +0 -0
- package/resources/ios/icon/icon-72@2x.png +0 -0
- package/resources/ios/icon/icon-76.png +0 -0
- package/resources/ios/icon/icon-76@2x.png +0 -0
- package/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/resources/ios/icon/icon-86@2x.png +0 -0
- package/resources/ios/icon/icon-98@2x.png +0 -0
- package/resources/ios/icon/icon-small.png +0 -0
- package/resources/ios/icon/icon-small@2x.png +0 -0
- package/resources/ios/icon/icon-small@3x.png +0 -0
- package/resources/ios/icon/icon.png +0 -0
- package/resources/ios/icon/icon@2x.png +0 -0
- package/resources/ios/splash/Default-1792h~iphone.png +0 -0
- package/resources/ios/splash/Default-2436h.png +0 -0
- package/resources/ios/splash/Default-2688h~iphone.png +0 -0
- package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/resources/ios/splash/Default-667h.png +0 -0
- package/resources/ios/splash/Default-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape-1792h~iphone.png +0 -0
- package/resources/ios/splash/Default-Landscape-2436h.png +0 -0
- package/resources/ios/splash/Default-Landscape-2688h~iphone.png +0 -0
- package/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/resources/ios/splash/Default~iphone.png +0 -0
- package/resources/splash.png +0 -0
- package/resources/splash.png.md5 +0 -1
- package/scripts/build-android.sh +0 -18
- package/scripts/docker-start.sh +0 -6
- package/scripts/emulate-android.sh +0 -17
- package/scripts/env-android.sh +0 -83
- package/scripts/env-clean.sh +0 -23
- package/scripts/env-global.sh +0 -154
- package/scripts/install-android-sdk-tools.sh +0 -73
- package/scripts/ionic-update.sh +0 -24
- package/scripts/node/build-i18n.js +0 -37
- package/scripts/node/playground.ts +0 -9
- package/scripts/node/resources.js +0 -108
- package/scripts/release.sh +0 -162
- package/scripts/run-android.sh +0 -59
- package/scripts/test.sh +0 -19
- package/src/app/admin/admin-routing.module.ts +0 -26
- package/src/app/admin/admin.module.ts +0 -20
- package/src/app/admin/services/filter/person.filter.ts +0 -86
- package/src/app/admin/services/person.service.ts +0 -244
- package/src/app/admin/services/validator/person.validator.ts +0 -86
- package/src/app/admin/users/users.html +0 -613
- package/src/app/admin/users/users.module.ts +0 -32
- package/src/app/admin/users/users.scss +0 -80
- package/src/app/admin/users/users.ts +0 -387
- package/src/app/app-routing.module.ts +0 -165
- package/src/app/app.component.html +0 -14
- package/src/app/app.component.scss +0 -4
- package/src/app/app.component.ts +0 -252
- package/src/app/app.module.ts +0 -355
- package/src/app/core/about/about.modal.html +0 -145
- package/src/app/core/about/about.modal.scss +0 -22
- package/src/app/core/about/about.modal.ts +0 -69
- package/src/app/core/about/about.module.ts +0 -14
- package/src/app/core/account/account.module.ts +0 -43
- package/src/app/core/account/account.page.html +0 -329
- package/src/app/core/account/account.page.scss +0 -20
- package/src/app/core/account/account.page.ts +0 -389
- package/src/app/core/account/new-token.form.html +0 -90
- package/src/app/core/account/new-token.form.ts +0 -99
- package/src/app/core/account/new-token.modal.html +0 -52
- package/src/app/core/account/new-token.modal.ts +0 -68
- package/src/app/core/account/password/change-password.form.html +0 -62
- package/src/app/core/account/password/change-password.form.scss +0 -0
- package/src/app/core/account/password/change-password.form.ts +0 -58
- package/src/app/core/account/password/change-password.module.ts +0 -14
- package/src/app/core/account/password/change-password.page.html +0 -41
- package/src/app/core/account/password/change-password.page.scss +0 -49
- package/src/app/core/account/password/change-password.page.ts +0 -158
- package/src/app/core/account/token.table.html +0 -160
- package/src/app/core/account/token.table.scss +0 -7
- package/src/app/core/account/token.table.ts +0 -160
- package/src/app/core/auth/auth.form.html +0 -108
- package/src/app/core/auth/auth.form.scss +0 -0
- package/src/app/core/auth/auth.form.ts +0 -165
- package/src/app/core/auth/auth.modal.html +0 -50
- package/src/app/core/auth/auth.modal.scss +0 -0
- package/src/app/core/auth/auth.modal.ts +0 -78
- package/src/app/core/auth/auth.module.ts +0 -35
- package/src/app/core/auth/reset-password.modal.html +0 -59
- package/src/app/core/auth/reset-password.modal.ts +0 -83
- package/src/app/core/core.module.ts +0 -72
- package/src/app/core/core.testing.module.ts +0 -80
- package/src/app/core/form/array/form-array.ts +0 -409
- package/src/app/core/form/array/testing/form-array-test.module.ts +0 -15
- package/src/app/core/form/array/testing/form-array.test.html +0 -196
- package/src/app/core/form/array/testing/form-array.test.ts +0 -119
- package/src/app/core/form/buttons/form-buttons-bar.component.html +0 -82
- package/src/app/core/form/buttons/form-buttons-bar.component.scss +0 -19
- package/src/app/core/form/buttons/form-buttons-bar.component.ts +0 -89
- package/src/app/core/form/buttons/form-buttons-bar.module.ts +0 -20
- package/src/app/core/form/entity/editor.class.ts +0 -295
- package/src/app/core/form/entity/entity-editor-modal.class.ts +0 -494
- package/src/app/core/form/entity/entity-editor.class.ts +0 -894
- package/src/app/core/form/entity/entity-metadata.component.html +0 -57
- package/src/app/core/form/entity/entity-metadata.component.scss +0 -40
- package/src/app/core/form/entity/entity-metadata.component.ts +0 -18
- package/src/app/core/form/entity/entity.module.ts +0 -20
- package/src/app/core/form/entity/tab-editor.class.ts +0 -224
- package/src/app/core/form/form-container.class.ts +0 -380
- package/src/app/core/form/form.class.ts +0 -377
- package/src/app/core/form/form.module.ts +0 -38
- package/src/app/core/form/form.utils.ts +0 -305
- package/src/app/core/form/list/list.form.html +0 -68
- package/src/app/core/form/list/list.form.scss +0 -40
- package/src/app/core/form/list/list.form.ts +0 -266
- package/src/app/core/form/list/list.module.ts +0 -20
- package/src/app/core/form/properties/properties.form.html +0 -160
- package/src/app/core/form/properties/properties.form.scss +0 -21
- package/src/app/core/form/properties/properties.form.ts +0 -331
- package/src/app/core/form/properties/properties.module.ts +0 -24
- package/src/app/core/form/properties/properties.table.html +0 -228
- package/src/app/core/form/properties/properties.table.scss +0 -0
- package/src/app/core/form/properties/properties.table.ts +0 -275
- package/src/app/core/form/properties/properties.utils.ts +0 -391
- package/src/app/core/form/properties/property.validator.ts +0 -82
- package/src/app/core/form/properties/testing/properties-form.test.html +0 -23
- package/src/app/core/form/properties/testing/properties-form.test.ts +0 -109
- package/src/app/core/form/properties/testing/properties-form.testing.module.ts +0 -14
- package/src/app/core/form/text-popover/testing/text-popover.testing.html +0 -50
- package/src/app/core/form/text-popover/testing/text-popover.testing.module.ts +0 -21
- package/src/app/core/form/text-popover/testing/text-popover.testing.ts +0 -76
- package/src/app/core/form/text-popover/text-popover.component.html +0 -89
- package/src/app/core/form/text-popover/text-popover.component.scss +0 -7
- package/src/app/core/form/text-popover/text-popover.component.ts +0 -176
- package/src/app/core/form/text-popover/text-popover.module.ts +0 -19
- package/src/app/core/form/username/username.form.html +0 -27
- package/src/app/core/form/username/username.form.ts +0 -44
- package/src/app/core/form/username/username.module.ts +0 -12
- package/src/app/core/graphql/graphql.module.ts +0 -7
- package/src/app/core/graphql/graphql.service.ts +0 -962
- package/src/app/core/graphql/graphql.utils.ts +0 -166
- package/src/app/core/home/home.html +0 -295
- package/src/app/core/home/home.module.ts +0 -27
- package/src/app/core/home/home.scss +0 -279
- package/src/app/core/home/home.ts +0 -422
- package/src/app/core/icon/icon.component.html +0 -19
- package/src/app/core/icon/icon.component.ts +0 -22
- package/src/app/core/icon/icon.module.ts +0 -13
- package/src/app/core/install/install-upgrade-card.component.html +0 -144
- package/src/app/core/install/install-upgrade-card.component.scss +0 -3
- package/src/app/core/install/install-upgrade-card.component.ts +0 -445
- package/src/app/core/install/install-upgrade-card.module.ts +0 -18
- package/src/app/core/menu/menu.component.html +0 -219
- package/src/app/core/menu/menu.component.scss +0 -304
- package/src/app/core/menu/menu.component.ts +0 -251
- package/src/app/core/menu/menu.filter.ts +0 -28
- package/src/app/core/menu/menu.model.ts +0 -356
- package/src/app/core/menu/menu.module.ts +0 -27
- package/src/app/core/menu/menu.service.ts +0 -727
- package/src/app/core/menu/sub-menu-tab.directive.ts +0 -99
- package/src/app/core/menu/testing/menu-other.testing.ts +0 -57
- package/src/app/core/menu/testing/menu.testing.html +0 -143
- package/src/app/core/menu/testing/menu.testing.module.ts +0 -52
- package/src/app/core/menu/testing/menu.testing.scss +0 -5
- package/src/app/core/menu/testing/menu.testing.ts +0 -175
- package/src/app/core/offline/update-offline-mode-card.component.html +0 -39
- package/src/app/core/offline/update-offline-mode-card.component.scss +0 -3
- package/src/app/core/offline/update-offline-mode-card.component.ts +0 -23
- package/src/app/core/offline/update-offline-mode-card.module.ts +0 -20
- package/src/app/core/peer/select-peer.modal.html +0 -317
- package/src/app/core/peer/select-peer.modal.scss +0 -41
- package/src/app/core/peer/select-peer.modal.ts +0 -366
- package/src/app/core/peer/select-peer.module.ts +0 -23
- package/src/app/core/register/register-confirm.page.html +0 -51
- package/src/app/core/register/register-confirm.page.scss +0 -56
- package/src/app/core/register/register-confirm.page.ts +0 -90
- package/src/app/core/register/register.form.html +0 -143
- package/src/app/core/register/register.form.scss +0 -10
- package/src/app/core/register/register.form.ts +0 -218
- package/src/app/core/register/register.modal.html +0 -66
- package/src/app/core/register/register.modal.ts +0 -50
- package/src/app/core/register/register.module.ts +0 -15
- package/src/app/core/services/account.service.ts +0 -1567
- package/src/app/core/services/auth-guard.service.ts +0 -70
- package/src/app/core/services/base-entity-service.class.ts +0 -659
- package/src/app/core/services/base-graphql-service.class.ts +0 -319
- package/src/app/core/services/base58.ts +0 -90
- package/src/app/core/services/config/core.config.ts +0 -263
- package/src/app/core/services/config.service.ts +0 -425
- package/src/app/core/services/crypto.service.ts +0 -126
- package/src/app/core/services/errors.ts +0 -80
- package/src/app/core/services/local-settings.service.spec.ts +0 -39
- package/src/app/core/services/local-settings.service.ts +0 -605
- package/src/app/core/services/model/account.model.ts +0 -188
- package/src/app/core/services/model/config.model.ts +0 -116
- package/src/app/core/services/model/department.model.ts +0 -34
- package/src/app/core/services/model/entity.decorators.ts +0 -110
- package/src/app/core/services/model/entity.model.ts +0 -409
- package/src/app/core/services/model/filter.model.ts +0 -127
- package/src/app/core/services/model/history.model.ts +0 -25
- package/src/app/core/services/model/model.enum.ts +0 -10
- package/src/app/core/services/model/node-feature.model.ts +0 -31
- package/src/app/core/services/model/peer.model.ts +0 -119
- package/src/app/core/services/model/person.model.ts +0 -122
- package/src/app/core/services/model/referential.model.ts +0 -253
- package/src/app/core/services/model/settings.model.ts +0 -37
- package/src/app/core/services/model/token.model.ts +0 -60
- package/src/app/core/services/model/tree-item-entity.model.ts +0 -230
- package/src/app/core/services/network.service.spec.ts +0 -47
- package/src/app/core/services/network.service.ts +0 -761
- package/src/app/core/services/network.types.ts +0 -7
- package/src/app/core/services/network.utils.ts +0 -83
- package/src/app/core/services/pipes/account.pipes.ts +0 -22
- package/src/app/core/services/pipes/department-to-string.pipe.ts +0 -13
- package/src/app/core/services/pipes/person-to-string.pipe.ts +0 -13
- package/src/app/core/services/pipes/pipes.module.ts +0 -30
- package/src/app/core/services/pipes/referential-to-string.pipe.ts +0 -18
- package/src/app/core/services/pipes/usage-mode.pipes.ts +0 -23
- package/src/app/core/services/platform.service.spec.ts +0 -50
- package/src/app/core/services/platform.service.ts +0 -694
- package/src/app/core/services/storage/entities-storage.service.ts +0 -557
- package/src/app/core/services/storage/entity-store.class.ts +0 -589
- package/src/app/core/services/testing/local-settings.config.ts +0 -35
- package/src/app/core/services/testing/referential-filter.model.ts +0 -28
- package/src/app/core/services/testing/referential.validator.ts +0 -58
- package/src/app/core/services/testing/user-settings.config.ts +0 -77
- package/src/app/core/services/validator/account.validator.ts +0 -50
- package/src/app/core/services/validator/base.validator.class.ts +0 -51
- package/src/app/core/services/validator/local-settings.validator.ts +0 -59
- package/src/app/core/services/validator/user-settings.validator.ts +0 -22
- package/src/app/core/services/validator/user-token.validator.ts +0 -54
- package/src/app/core/settings/settings.module.ts +0 -15
- package/src/app/core/settings/settings.page.html +0 -300
- package/src/app/core/settings/settings.page.ts +0 -455
- package/src/app/core/table/async-table.class.ts +0 -2019
- package/src/app/core/table/column/actions-column.component.html +0 -219
- package/src/app/core/table/column/actions-column.component.scss +0 -17
- package/src/app/core/table/column/actions-column.component.ts +0 -83
- package/src/app/core/table/column/nav-actions-column.component.html +0 -119
- package/src/app/core/table/column/nav-actions-column.component.ts +0 -108
- package/src/app/core/table/column/row-field.component.html +0 -43
- package/src/app/core/table/column/row-field.component.scss +0 -0
- package/src/app/core/table/column/row-field.component.ts +0 -63
- package/src/app/core/table/entities-async-table-datasource.class.ts +0 -501
- package/src/app/core/table/entities-table-datasource.class.ts +0 -499
- package/src/app/core/table/memory-table.class.ts +0 -56
- package/src/app/core/table/table-select-columns.component.html +0 -56
- package/src/app/core/table/table-select-columns.component.ts +0 -49
- package/src/app/core/table/table.class.ts +0 -2080
- package/src/app/core/table/table.model.ts +0 -39
- package/src/app/core/table/table.module.ts +0 -28
- package/src/app/core/table/table.pipes.ts +0 -87
- package/src/app/core/table/table.utils.ts +0 -42
- package/src/app/core/table/testing/multi-table.testing.html +0 -456
- package/src/app/core/table/testing/multi-table.testing.ts +0 -263
- package/src/app/core/table/testing/table-validator.service.ts +0 -29
- package/src/app/core/table/testing/table.testing.html +0 -556
- package/src/app/core/table/testing/table.testing.module.ts +0 -16
- package/src/app/core/table/testing/table.testing.scss +0 -32
- package/src/app/core/table/testing/table.testing.ts +0 -329
- package/src/app/core/table/testing/table2-validator.service.ts +0 -19
- package/src/app/core/table/testing/table2.testing.html +0 -470
- package/src/app/core/table/testing/table2.testing.scss +0 -25
- package/src/app/core/table/testing/table2.testing.ts +0 -274
- package/src/app/shared/alerts.ts +0 -296
- package/src/app/shared/audio/audio.testing.html +0 -29
- package/src/app/shared/audio/audio.testing.module.ts +0 -21
- package/src/app/shared/audio/audio.testing.ts +0 -27
- package/src/app/shared/audio/audio.ts +0 -273
- package/src/app/shared/base64.utils.ts +0 -66
- package/src/app/shared/capacitor/keyboard.ts +0 -38
- package/src/app/shared/capacitor/plugins.ts +0 -12
- package/src/app/shared/constants.ts +0 -19
- package/src/app/shared/dates.ts +0 -206
- package/src/app/shared/debug/debug-service.class.ts +0 -7
- package/src/app/shared/debug/debug.component.html +0 -13
- package/src/app/shared/debug/debug.component.scss +0 -21
- package/src/app/shared/debug/debug.component.spec.ts +0 -24
- package/src/app/shared/debug/debug.component.ts +0 -25
- package/src/app/shared/debug/debug.module.ts +0 -14
- package/src/app/shared/directives/autofocus.directive.ts +0 -93
- package/src/app/shared/directives/autoresize.directive.ts +0 -67
- package/src/app/shared/directives/autotitle.directive.ts +0 -17
- package/src/app/shared/directives/directives.module.ts +0 -16
- package/src/app/shared/directives/drag-and-drop.directive.ts +0 -46
- package/src/app/shared/directives/ng-var.directive.ts +0 -31
- package/src/app/shared/directives/resizable/resizable.component.ts +0 -48
- package/src/app/shared/directives/resizable/resizable.directive.ts +0 -43
- package/src/app/shared/directives/resizable/resizable.module.ts +0 -9
- package/src/app/shared/directives/resizable/resizable.style.scss +0 -37
- package/src/app/shared/directives/resizable/resizable.template.html +0 -6
- package/src/app/shared/directives/throttled-click.directive.ts +0 -36
- package/src/app/shared/events.ts +0 -93
- package/src/app/shared/file/csv.utils.ts +0 -123
- package/src/app/shared/file/file.service.ts +0 -129
- package/src/app/shared/file/file.utils.ts +0 -142
- package/src/app/shared/file/images.utils.ts +0 -214
- package/src/app/shared/file/json.utils.ts +0 -82
- package/src/app/shared/file/uri.utils.ts +0 -31
- package/src/app/shared/file/url.utils.ts +0 -163
- package/src/app/shared/focusable.ts +0 -8
- package/src/app/shared/form/field.component.html +0 -380
- package/src/app/shared/form/field.component.scss +0 -7
- package/src/app/shared/form/field.component.ts +0 -344
- package/src/app/shared/form/field.model.ts +0 -158
- package/src/app/shared/form/loading-spinner.ts +0 -16
- package/src/app/shared/forms.ts +0 -577
- package/src/app/shared/functions.spec.ts +0 -197
- package/src/app/shared/functions.ts +0 -694
- package/src/app/shared/geolocation/geolocation.utils.ts +0 -105
- package/src/app/shared/gesture/gesture-config.ts +0 -43
- package/src/app/shared/gesture/hammer.utils.ts +0 -14
- package/src/app/shared/graph/colors.utils.ts +0 -69
- package/src/app/shared/graph/graph-colors.ts +0 -270
- package/src/app/shared/guard/component-dirty.guard.ts +0 -67
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.html +0 -11
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.scss +0 -37
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.ts +0 -14
- package/src/app/shared/hotkeys/hotkeys.service.ts +0 -165
- package/src/app/shared/hotkeys/shared-hotkeys.module.ts +0 -15
- package/src/app/shared/http/http.utils.ts +0 -95
- package/src/app/shared/image/gallery/image-gallery.component.html +0 -282
- package/src/app/shared/image/gallery/image-gallery.component.scss +0 -218
- package/src/app/shared/image/gallery/image-gallery.component.ts +0 -434
- package/src/app/shared/image/gallery/image-gallery.module.ts +0 -35
- package/src/app/shared/image/gallery/testing/gallegry.model.testing.ts +0 -23
- package/src/app/shared/image/gallery/testing/gallery.service.testing.ts +0 -99
- package/src/app/shared/image/gallery/testing/gallery.testing.html +0 -27
- package/src/app/shared/image/gallery/testing/gallery.testing.module.ts +0 -39
- package/src/app/shared/image/gallery/testing/gallery.testing.ts +0 -34
- package/src/app/shared/image/image.model.ts +0 -8
- package/src/app/shared/image/image.module.ts +0 -12
- package/src/app/shared/image/image.service.ts +0 -111
- package/src/app/shared/image/image.testing.module.ts +0 -16
- package/src/app/shared/inputs.ts +0 -330
- package/src/app/shared/interceptors/progess.interceptor.ts +0 -24
- package/src/app/shared/logging/log-level.model.ts +0 -53
- package/src/app/shared/logging/logger.model.ts +0 -117
- package/src/app/shared/logging/logging-service.class.ts +0 -131
- package/src/app/shared/logging/logging-service.config.ts +0 -29
- package/src/app/shared/logging/logging-service.module.ts +0 -19
- package/src/app/shared/markdown/markdown.component.html +0 -55
- package/src/app/shared/markdown/markdown.component.scss +0 -75
- package/src/app/shared/markdown/markdown.component.ts +0 -350
- package/src/app/shared/markdown/markdown.directive.ts +0 -28
- package/src/app/shared/markdown/markdown.modal.html +0 -42
- package/src/app/shared/markdown/markdown.modal.ts +0 -91
- package/src/app/shared/markdown/markdown.module.ts +0 -65
- package/src/app/shared/markdown/markdown.service.ts +0 -234
- package/src/app/shared/markdown/markdown.utils.ts +0 -90
- package/src/app/shared/markdown/testing/markdown.test.html +0 -50
- package/src/app/shared/markdown/testing/markdown.test.ts +0 -49
- package/src/app/shared/markdown/testing/markdown.testing.module.ts +0 -22
- package/src/app/shared/material/autocomplete/material.autocomplete.config.ts +0 -127
- package/src/app/shared/material/autocomplete/material.autocomplete.html +0 -400
- package/src/app/shared/material/autocomplete/material.autocomplete.module.ts +0 -41
- package/src/app/shared/material/autocomplete/material.autocomplete.scss +0 -54
- package/src/app/shared/material/autocomplete/material.autocomplete.ts +0 -1375
- package/src/app/shared/material/autocomplete/material.autocomplete.utils.ts +0 -21
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.html +0 -1164
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.spec.ts +0 -33
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.ts +0 -272
- package/src/app/shared/material/badge/badge.directive.ts +0 -217
- package/src/app/shared/material/badge/badge.module.ts +0 -12
- package/src/app/shared/material/badge/badge.test.html +0 -275
- package/src/app/shared/material/badge/badge.test.ts +0 -34
- package/src/app/shared/material/boolean/boolean.module.ts +0 -36
- package/src/app/shared/material/boolean/material.boolean.html +0 -271
- package/src/app/shared/material/boolean/material.boolean.scss +0 -27
- package/src/app/shared/material/boolean/material.boolean.ts +0 -343
- package/src/app/shared/material/boolean/testing/boolean.test.page.html +0 -469
- package/src/app/shared/material/boolean/testing/boolean.test.page.ts +0 -66
- package/src/app/shared/material/chips/chips.module.ts +0 -38
- package/src/app/shared/material/chips/material.chips.html +0 -233
- package/src/app/shared/material/chips/material.chips.scss +0 -67
- package/src/app/shared/material/chips/material.chips.ts +0 -834
- package/src/app/shared/material/chips/testing/chips.test.html +0 -207
- package/src/app/shared/material/chips/testing/chips.test.ts +0 -169
- package/src/app/shared/material/datetime/datetime.module.ts +0 -42
- package/src/app/shared/material/datetime/material.date.html +0 -186
- package/src/app/shared/material/datetime/material.date.scss +0 -17
- package/src/app/shared/material/datetime/material.date.ts +0 -512
- package/src/app/shared/material/datetime/material.dateshort.html +0 -194
- package/src/app/shared/material/datetime/material.dateshort.scss +0 -23
- package/src/app/shared/material/datetime/material.dateshort.ts +0 -497
- package/src/app/shared/material/datetime/material.datetime.html +0 -325
- package/src/app/shared/material/datetime/material.datetime.scss +0 -87
- package/src/app/shared/material/datetime/material.datetime.ts +0 -758
- package/src/app/shared/material/datetime/testing/mat-date-time.test.html +0 -794
- package/src/app/shared/material/datetime/testing/mat-date-time.test.ts +0 -155
- package/src/app/shared/material/datetime/testing/mat-date.test.html +0 -564
- package/src/app/shared/material/datetime/testing/mat-date.test.ts +0 -145
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.html +0 -530
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.ts +0 -133
- package/src/app/shared/material/duration/duration.module.ts +0 -33
- package/src/app/shared/material/duration/duration.utils.ts +0 -18
- package/src/app/shared/material/duration/material.duration.html +0 -116
- package/src/app/shared/material/duration/material.duration.scss +0 -28
- package/src/app/shared/material/duration/material.duration.ts +0 -308
- package/src/app/shared/material/duration/testing/mat-duration.test.html +0 -170
- package/src/app/shared/material/duration/testing/mat-duration.test.ts +0 -88
- package/src/app/shared/material/latlong/latlong.utils.ts +0 -376
- package/src/app/shared/material/latlong/material.latlong-input.html +0 -95
- package/src/app/shared/material/latlong/material.latlong-input.scss +0 -66
- package/src/app/shared/material/latlong/material.latlong-input.ts +0 -445
- package/src/app/shared/material/latlong/material.latlong.html +0 -90
- package/src/app/shared/material/latlong/material.latlong.module.ts +0 -37
- package/src/app/shared/material/latlong/material.latlong.scss +0 -0
- package/src/app/shared/material/latlong/material.latlong.ts +0 -203
- package/src/app/shared/material/latlong/testing/latlong.test.html +0 -1008
- package/src/app/shared/material/latlong/testing/latlong.test.ts +0 -144
- package/src/app/shared/material/material.animations.ts +0 -269
- package/src/app/shared/material/material.config.ts +0 -5
- package/src/app/shared/material/material.module.ts +0 -94
- package/src/app/shared/material/material.testing.module.ts +0 -192
- package/src/app/shared/material/memory/memory.utils.ts +0 -57
- package/src/app/shared/material/numpad/numpad.animation.ts +0 -1
- package/src/app/shared/material/numpad/numpad.append-to-input.directive.ts +0 -110
- package/src/app/shared/material/numpad/numpad.component.ts +0 -73
- package/src/app/shared/material/numpad/numpad.container.html +0 -37
- package/src/app/shared/material/numpad/numpad.container.scss +0 -55
- package/src/app/shared/material/numpad/numpad.container.ts +0 -152
- package/src/app/shared/material/numpad/numpad.content.html +0 -13
- package/src/app/shared/material/numpad/numpad.content.ts +0 -10
- package/src/app/shared/material/numpad/numpad.directive.ts +0 -159
- package/src/app/shared/material/numpad/numpad.dom-service.ts +0 -35
- package/src/app/shared/material/numpad/numpad.model.ts +0 -53
- package/src/app/shared/material/numpad/numpad.module.ts +0 -18
- package/src/app/shared/material/numpad/testing/numpad.test.html +0 -146
- package/src/app/shared/material/numpad/testing/numpad.test.ts +0 -44
- package/src/app/shared/material/paginator/material.paginator-i18n.ts +0 -47
- package/src/app/shared/material/stepper/material.stepper-i18n.ts +0 -17
- package/src/app/shared/material/swipe/material.swipe.html +0 -85
- package/src/app/shared/material/swipe/material.swipe.scss +0 -55
- package/src/app/shared/material/swipe/material.swipe.ts +0 -366
- package/src/app/shared/material/swipe/swipe.module.ts +0 -29
- package/src/app/shared/material/swipe/testing/swipe.test.html +0 -112
- package/src/app/shared/material/swipe/testing/swipe.test.ts +0 -74
- package/src/app/shared/material/test/test-component.css +0 -22
- package/src/app/shared/material/test/test-component.html +0 -40
- package/src/app/shared/material/test/test-component.ts +0 -295
- package/src/app/shared/material/testing/common.test.html +0 -227
- package/src/app/shared/material/testing/common.test.ts +0 -126
- package/src/app/shared/material/text/testing/text-form.testing.html +0 -213
- package/src/app/shared/material/text/testing/text-form.testing.ts +0 -30
- package/src/app/shared/material/text/text-form.component.html +0 -63
- package/src/app/shared/material/text/text-form.component.scss +0 -8
- package/src/app/shared/material/text/text-form.component.ts +0 -177
- package/src/app/shared/material/text/text-form.module.ts +0 -36
- package/src/app/shared/modules.ts +0 -12
- package/src/app/shared/named-filter/named-filter-selector.component.html +0 -77
- package/src/app/shared/named-filter/named-filter-selector.component.scss +0 -3
- package/src/app/shared/named-filter/named-filter-selector.component.ts +0 -287
- package/src/app/shared/named-filter/named-filter.model.ts +0 -64
- package/src/app/shared/named-filter/named-filter.module.ts +0 -15
- package/src/app/shared/named-filter/named-filter.service.ts +0 -100
- package/src/app/shared/named-filter/testing/named-filter-selector.testing.html +0 -61
- package/src/app/shared/named-filter/testing/named-filter-selector.testing.ts +0 -80
- package/src/app/shared/named-filter/testing/named-filter.testing.module.ts +0 -20
- package/src/app/shared/named-filter/testing/named-filter.testing.service.ts +0 -83
- package/src/app/shared/observables.ts +0 -139
- package/src/app/shared/pipes/arrays.pipe.ts +0 -153
- package/src/app/shared/pipes/badge.pipes.ts +0 -17
- package/src/app/shared/pipes/colors.pipe.ts +0 -24
- package/src/app/shared/pipes/date-diff-duration.pipe.ts +0 -53
- package/src/app/shared/pipes/date-format.pipe.ts +0 -73
- package/src/app/shared/pipes/date-from-now.pipe.ts +0 -17
- package/src/app/shared/pipes/dates.pipe.ts +0 -13
- package/src/app/shared/pipes/display-with.pipe.ts +0 -13
- package/src/app/shared/pipes/duration.pipe.spec.ts +0 -41
- package/src/app/shared/pipes/duration.pipe.ts +0 -28
- package/src/app/shared/pipes/file-size.pipe.ts +0 -50
- package/src/app/shared/pipes/form.pipes.ts +0 -209
- package/src/app/shared/pipes/highlight.pipe.ts +0 -41
- package/src/app/shared/pipes/html.pipes.ts +0 -49
- package/src/app/shared/pipes/latlong-format.pipe.ts +0 -28
- package/src/app/shared/pipes/maps.pipe.ts +0 -41
- package/src/app/shared/pipes/maskito.pipe.ts +0 -68
- package/src/app/shared/pipes/math.pipes.ts +0 -46
- package/src/app/shared/pipes/ng-init.pipe.ts +0 -13
- package/src/app/shared/pipes/number-format.pipe.ts +0 -11
- package/src/app/shared/pipes/observable.pipes.ts +0 -45
- package/src/app/shared/pipes/pipes.module.ts +0 -162
- package/src/app/shared/pipes/property.pipes.ts +0 -115
- package/src/app/shared/pipes/selection.pipes.ts +0 -165
- package/src/app/shared/pipes/string.pipes.ts +0 -128
- package/src/app/shared/pipes/translate-context.pipe.ts +0 -27
- package/src/app/shared/pipes/types.pipes.ts +0 -52
- package/src/app/shared/pipes/url.pipes.ts +0 -36
- package/src/app/shared/platforms.ts +0 -99
- package/src/app/shared/print/print.service.ts +0 -337
- package/src/app/shared/regexps.ts +0 -112
- package/src/app/shared/rx-state/rx-state.decorators.ts +0 -281
- package/src/app/shared/rx-state/rx-state.module.ts +0 -11
- package/src/app/shared/rx-state/rx-state.types.ts +0 -5
- package/src/app/shared/services/entity-service.class.ts +0 -120
- package/src/app/shared/services/job.utils.ts +0 -124
- package/src/app/shared/services/memory-entity-service.class.ts +0 -435
- package/src/app/shared/services/progress-bar.service.ts +0 -40
- package/src/app/shared/services/startable-observable-service.class.ts +0 -129
- package/src/app/shared/services/startable-service.class.ts +0 -120
- package/src/app/shared/services/storage.utils.ts +0 -53
- package/src/app/shared/services/translate-context.service.ts +0 -112
- package/src/app/shared/services/validator-service.class.ts +0 -13
- package/src/app/shared/services.ts +0 -134
- package/src/app/shared/shared-routing.module.ts +0 -69
- package/src/app/shared/shared.module.spec.ts +0 -13
- package/src/app/shared/shared.module.ts +0 -168
- package/src/app/shared/shared.testing.module.ts +0 -61
- package/src/app/shared/storage/storage-explorer.component.html +0 -160
- package/src/app/shared/storage/storage-explorer.component.scss +0 -37
- package/src/app/shared/storage/storage-explorer.component.spec.ts +0 -24
- package/src/app/shared/storage/storage-explorer.component.ts +0 -268
- package/src/app/shared/storage/storage-explorer.module.ts +0 -24
- package/src/app/shared/storage/storage-explorer.testing-routing.module.ts +0 -19
- package/src/app/shared/storage/storage-explorer.testing.module.ts +0 -19
- package/src/app/shared/storage/storage.service.ts +0 -131
- package/src/app/shared/storage/storage.utils.ts +0 -25
- package/src/app/shared/testing/maskito.test.html +0 -40
- package/src/app/shared/testing/maskito.test.ts +0 -33
- package/src/app/shared/testing/observable.test.html +0 -53
- package/src/app/shared/testing/observable.test.scss +0 -3
- package/src/app/shared/testing/observable.test.ts +0 -101
- package/src/app/shared/testing/tests.page.html +0 -22
- package/src/app/shared/testing/tests.page.ts +0 -32
- package/src/app/shared/toast/toast.testing.html +0 -50
- package/src/app/shared/toast/toast.testing.module.ts +0 -22
- package/src/app/shared/toast/toast.testing.ts +0 -52
- package/src/app/shared/toast/toasts.ts +0 -161
- package/src/app/shared/toolbar/modal-toolbar.html +0 -30
- package/src/app/shared/toolbar/modal-toolbar.scss +0 -0
- package/src/app/shared/toolbar/modal-toolbar.ts +0 -64
- package/src/app/shared/toolbar/toolbar.html +0 -68
- package/src/app/shared/toolbar/toolbar.module.ts +0 -18
- package/src/app/shared/toolbar/toolbar.scss +0 -0
- package/src/app/shared/toolbar/toolbar.ts +0 -262
- package/src/app/shared/types.ts +0 -44
- package/src/app/shared/upload-file/testing/upload-file.testing.html +0 -30
- package/src/app/shared/upload-file/testing/upload-file.testing.module.ts +0 -21
- package/src/app/shared/upload-file/testing/upload-file.testing.ts +0 -65
- package/src/app/shared/upload-file/upload-file-popover.component.html +0 -46
- package/src/app/shared/upload-file/upload-file-popover.component.scss +0 -6
- package/src/app/shared/upload-file/upload-file-popover.component.ts +0 -115
- package/src/app/shared/upload-file/upload-file.component.html +0 -57
- package/src/app/shared/upload-file/upload-file.component.scss +0 -60
- package/src/app/shared/upload-file/upload-file.component.ts +0 -222
- package/src/app/shared/upload-file/upload-file.model.ts +0 -40
- package/src/app/shared/validator/form-error-adapter.class.ts +0 -136
- package/src/app/shared/validator/validators.ts +0 -725
- package/src/app/shared/version/versions.ts +0 -89
- package/src/app/social/job/job.module.ts +0 -14
- package/src/app/social/job/progression/job-progression.component.html +0 -19
- package/src/app/social/job/progression/job-progression.component.scss +0 -15
- package/src/app/social/job/progression/job-progression.component.ts +0 -39
- package/src/app/social/job/progression/job-progression.icon.html +0 -30
- package/src/app/social/job/progression/job-progression.icon.scss +0 -7
- package/src/app/social/job/progression/job-progression.icon.ts +0 -276
- package/src/app/social/job/progression/job-progression.list.html +0 -25
- package/src/app/social/job/progression/job-progression.list.scss +0 -17
- package/src/app/social/job/progression/job-progression.list.ts +0 -40
- package/src/app/social/job/progression/job-progression.model.ts +0 -26
- package/src/app/social/job/progression/job-progression.service.ts +0 -97
- package/src/app/social/job/testing/job-progression.testing.html +0 -11
- package/src/app/social/job/testing/job-progression.testing.service.ts +0 -33
- package/src/app/social/job/testing/job-progression.testing.ts +0 -28
- package/src/app/social/job/testing/job.testing.module.ts +0 -13
- package/src/app/social/message/message.form.html +0 -71
- package/src/app/social/message/message.form.scss +0 -6
- package/src/app/social/message/message.form.ts +0 -128
- package/src/app/social/message/message.modal.html +0 -68
- package/src/app/social/message/message.modal.ts +0 -117
- package/src/app/social/message/message.model.ts +0 -78
- package/src/app/social/message/message.module.ts +0 -14
- package/src/app/social/message/message.service.ts +0 -104
- package/src/app/social/social.errors.ts +0 -10
- package/src/app/social/social.module.ts +0 -23
- package/src/app/social/social.testing.module.ts +0 -33
- package/src/app/social/user-event/notification/user-event-notification.icon.html +0 -17
- package/src/app/social/user-event/notification/user-event-notification.icon.ts +0 -112
- package/src/app/social/user-event/notification/user-event-notification.list.html +0 -142
- package/src/app/social/user-event/notification/user-event-notification.list.scss +0 -73
- package/src/app/social/user-event/notification/user-event-notification.list.ts +0 -270
- package/src/app/social/user-event/testing/user-event.testing.html +0 -26
- package/src/app/social/user-event/testing/user-event.testing.model.ts +0 -142
- package/src/app/social/user-event/testing/user-event.testing.module.ts +0 -13
- package/src/app/social/user-event/testing/user-event.testing.service.ts +0 -161
- package/src/app/social/user-event/testing/user-event.testing.ts +0 -282
- package/src/app/social/user-event/user-event.model.ts +0 -55
- package/src/app/social/user-event/user-event.module.ts +0 -15
- package/src/app/social/user-event/user-event.service.ts +0 -686
- package/src/browserslist +0 -9
- package/src/environments/environment.class.ts +0 -106
- package/src/environments/environment.loader.ts +0 -90
- package/src/environments/environment.prod.ts +0 -49
- package/src/environments/environment.test.ts +0 -92
- package/src/environments/environment.ts +0 -126
- package/src/favicon.ico +0 -0
- package/src/global.scss +0 -13
- package/src/index.html +0 -76
- package/src/main.ts +0 -18
- package/src/polyfills.ts +0 -34
- package/src/schema.graphql +0 -4381
- package/src/service-worker.js +0 -31
- package/src/test.ts +0 -30
- package/tsconfig.app.json +0 -15
- package/tsconfig.json +0 -47
- package/tsconfig.spec.json +0 -18
package/src/schema.graphql
DELETED
|
@@ -1,4381 +0,0 @@
|
|
|
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
|
-
}
|