@kalisio/kdk 2.6.3 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/api/application.js +2 -4
- package/core/api/authentication.js +2 -3
- package/core/api/db.js +10 -2
- package/core/api/hooks/hooks.authorisations.js +4 -2
- package/core/api/hooks/hooks.push.js +6 -2
- package/core/api/hooks/hooks.query.js +29 -12
- package/core/api/hooks/hooks.users.js +30 -17
- package/core/api/models/configurations.model.mongodb.js +4 -0
- package/core/api/services/authorisations/authorisations.service.js +1 -1
- package/core/api/services/configurations/configurations.hooks.js +33 -0
- package/core/api/services/index.js +41 -7
- package/core/api/services/messages/messages.hooks.js +9 -3
- package/core/client/api.js +14 -1
- package/core/client/capabilities.js +1 -6
- package/core/client/components/KAvatar.vue +24 -20
- package/core/client/components/account/KProfile.vue +10 -71
- package/core/client/components/account/index.js +0 -2
- package/core/client/components/app/KSettings.vue +1 -0
- package/core/client/components/collection/KBoard.vue +4 -3
- package/core/client/components/collection/KCardSection.vue +1 -0
- package/core/client/components/collection/KGrid.vue +2 -0
- package/core/client/components/collection/KTable.vue +5 -1
- package/core/client/components/collection/KTimeLine.vue +9 -1
- package/core/client/components/collection/index.js +0 -2
- package/core/client/components/form/KChipsField.vue +2 -1
- package/core/client/components/form/KEmailField.vue +1 -0
- package/core/client/components/form/KFileField.vue +22 -1
- package/core/client/components/form/KForm.vue +2 -0
- package/core/client/components/form/KItemField.vue +1 -0
- package/core/client/components/form/KNumberField.vue +1 -0
- package/core/client/components/form/KPasswordField.vue +1 -0
- package/core/client/components/form/KPhoneField.vue +1 -0
- package/core/client/components/form/KPropertyItemField.vue +1 -0
- package/core/client/components/form/KResolutionField.vue +1 -0
- package/core/client/components/form/KSelectField.vue +31 -0
- package/core/client/components/form/KTagField.vue +1 -0
- package/core/client/components/form/KTextField.vue +1 -0
- package/core/client/components/form/KTokenField.vue +1 -0
- package/core/client/components/form/KUnitField.vue +1 -0
- package/core/client/components/form/KUrlField.vue +1 -0
- package/core/client/components/graphics/KIcon.vue +3 -4
- package/core/client/components/layout/KPage.vue +1 -0
- package/core/client/components/layout/KWindow.vue +6 -3
- package/core/client/components/messages/KMessageComposer.vue +2 -1
- package/core/client/components/messages/KMessagesTimeLine.vue +1 -1
- package/core/client/components/time/KDate.vue +1 -2
- package/core/client/components/time/KDateTime.vue +11 -11
- package/core/client/components/time/KTime.vue +1 -1
- package/core/client/composables/collection.js +33 -8
- package/core/client/composables/errors.js +1 -1
- package/core/client/composables/layout.js +9 -9
- package/core/client/configurations.js +50 -0
- package/core/client/exporter.js +1 -1
- package/core/client/i18n/core_en.json +6 -39
- package/core/client/i18n/core_fr.json +6 -39
- package/core/client/index.js +2 -0
- package/core/client/layout.js +8 -8
- package/core/client/mixins/mixin.base-activity.js +5 -2
- package/core/client/mixins/mixin.base-field.js +3 -3
- package/core/client/search.js +2 -1
- package/core/client/utils/utils.collection.js +8 -8
- package/core/client/utils/utils.items.js +4 -0
- package/core/client/utils/utils.push.js +3 -3
- package/core/client/utils/utils.session.js +7 -5
- package/core/client/utils/utils.shapes.js +38 -7
- package/core/client/utils/utils.time.js +21 -22
- package/core/common/schemas/users.update-profile.json +3 -2
- package/coverage/core/api/application.js.html +1 -1
- package/coverage/core/api/authentication.js.html +1 -1
- package/coverage/core/api/db.js.html +1 -1
- package/coverage/core/api/hooks/hooks.authentication.js.html +1 -1
- package/coverage/core/api/hooks/hooks.authorisations.js.html +1 -1
- package/coverage/core/api/hooks/hooks.logger.js.html +1 -1
- package/coverage/core/api/hooks/hooks.model.js.html +1 -1
- package/coverage/core/api/hooks/hooks.push.js.html +22 -10
- package/coverage/core/api/hooks/hooks.query.js.html +33 -6
- package/coverage/core/api/hooks/hooks.schemas.js.html +1 -1
- package/coverage/core/api/hooks/hooks.service.js.html +1 -1
- package/coverage/core/api/hooks/hooks.storage.js.html +1 -1
- package/coverage/core/api/hooks/hooks.tags.js.html +1 -1
- package/coverage/core/api/hooks/hooks.users.js.html +4 -4
- package/coverage/core/api/hooks/index.html +23 -23
- package/coverage/core/api/hooks/index.js.html +1 -1
- package/coverage/core/api/index.html +1 -1
- package/coverage/core/api/index.js.html +1 -1
- package/coverage/core/api/marshall.js.html +1 -1
- package/coverage/core/api/models/configurations.model.mongodb.js.html +1 -1
- package/coverage/core/api/models/index.html +1 -1
- package/coverage/core/api/models/messages.model.mongodb.js.html +1 -1
- package/coverage/core/api/models/tags.model.mongodb.js.html +1 -1
- package/coverage/core/api/models/users.model.mongodb.js.html +1 -1
- package/coverage/core/api/services/account/account.hooks.js.html +1 -1
- package/coverage/core/api/services/account/account.service.js.html +1 -1
- package/coverage/core/api/services/account/index.html +1 -1
- package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
- package/coverage/core/api/services/authorisations/authorisations.service.js.html +1 -1
- package/coverage/core/api/services/authorisations/index.html +1 -1
- package/coverage/core/api/services/configurations/configurations.hooks.js.html +1 -1
- package/coverage/core/api/services/configurations/index.html +1 -1
- package/coverage/core/api/services/databases/databases.hooks.js.html +1 -1
- package/coverage/core/api/services/databases/databases.service.js.html +1 -1
- package/coverage/core/api/services/databases/index.html +1 -1
- package/coverage/core/api/services/import-export/import-export.hooks.js.html +1 -1
- package/coverage/core/api/services/import-export/import-export.service.js.html +1 -1
- package/coverage/core/api/services/import-export/index.html +1 -1
- package/coverage/core/api/services/index.html +1 -1
- package/coverage/core/api/services/index.js.html +1 -1
- package/coverage/core/api/services/mailer/index.html +1 -1
- package/coverage/core/api/services/mailer/mailer.hooks.js.html +1 -1
- package/coverage/core/api/services/mailer/mailer.service.js.html +1 -1
- package/coverage/core/api/services/messages/index.html +1 -1
- package/coverage/core/api/services/messages/messages.hooks.js.html +1 -1
- package/coverage/core/api/services/push/index.html +1 -1
- package/coverage/core/api/services/push/push.hooks.js.html +1 -1
- package/coverage/core/api/services/push/push.service.js.html +1 -1
- package/coverage/core/api/services/storage/index.html +1 -1
- package/coverage/core/api/services/storage/storage.hooks.js.html +1 -1
- package/coverage/core/api/services/storage/storage.service.js.html +1 -1
- package/coverage/core/api/services/tags/index.html +1 -1
- package/coverage/core/api/services/tags/tags.hooks.js.html +1 -1
- package/coverage/core/api/services/users/index.html +1 -1
- package/coverage/core/api/services/users/users.hooks.js.html +1 -1
- package/coverage/core/api/services/users/users.service.js.html +1 -1
- package/coverage/core/common/errors.js.html +1 -1
- package/coverage/core/common/index.html +1 -1
- package/coverage/core/common/index.js.html +1 -1
- package/coverage/core/common/permissions.js.html +1 -1
- package/coverage/core/common/schema.js.html +1 -1
- package/coverage/core/common/utils.js.html +1 -1
- package/coverage/core/common/utils.offline.js.html +1 -1
- package/coverage/index.html +17 -17
- package/coverage/lcov-report/core/api/application.js.html +1 -1
- package/coverage/lcov-report/core/api/authentication.js.html +1 -1
- package/coverage/lcov-report/core/api/db.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +22 -10
- package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +33 -6
- package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.tags.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +4 -4
- package/coverage/lcov-report/core/api/hooks/index.html +23 -23
- package/coverage/lcov-report/core/api/hooks/index.js.html +1 -1
- package/coverage/lcov-report/core/api/index.html +1 -1
- package/coverage/lcov-report/core/api/index.js.html +1 -1
- package/coverage/lcov-report/core/api/marshall.js.html +1 -1
- package/coverage/lcov-report/core/api/models/configurations.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/models/index.html +1 -1
- package/coverage/lcov-report/core/api/models/messages.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/account/account.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/account/index.html +1 -1
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/authorisations/index.html +1 -1
- package/coverage/lcov-report/core/api/services/configurations/configurations.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/configurations/index.html +1 -1
- package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/databases/index.html +1 -1
- package/coverage/lcov-report/core/api/services/import-export/import-export.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/import-export/import-export.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/import-export/index.html +1 -1
- package/coverage/lcov-report/core/api/services/index.html +1 -1
- package/coverage/lcov-report/core/api/services/index.js.html +1 -1
- package/coverage/lcov-report/core/api/services/mailer/index.html +1 -1
- package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/messages/index.html +1 -1
- package/coverage/lcov-report/core/api/services/messages/messages.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/push/index.html +1 -1
- package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/push/push.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/storage/index.html +1 -1
- package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/tags/index.html +1 -1
- package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/users/index.html +1 -1
- package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/users/users.service.js.html +1 -1
- package/coverage/lcov-report/core/common/errors.js.html +1 -1
- package/coverage/lcov-report/core/common/index.html +1 -1
- package/coverage/lcov-report/core/common/index.js.html +1 -1
- package/coverage/lcov-report/core/common/permissions.js.html +1 -1
- package/coverage/lcov-report/core/common/schema.js.html +1 -1
- package/coverage/lcov-report/core/common/utils.js.html +1 -1
- package/coverage/lcov-report/core/common/utils.offline.js.html +1 -1
- package/coverage/lcov-report/index.html +17 -17
- package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +1 -1
- package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +1 -1
- package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +184 -4
- package/coverage/lcov-report/map/api/hooks/index.html +5 -5
- package/coverage/lcov-report/map/api/hooks/index.js.html +1 -1
- package/coverage/lcov-report/map/api/index.html +1 -1
- package/coverage/lcov-report/map/api/index.js.html +1 -1
- package/coverage/lcov-report/map/api/marshall.js.html +1 -1
- package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/index.html +1 -1
- package/coverage/lcov-report/map/api/models/projects.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/styles.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +1 -1
- package/coverage/lcov-report/map/api/services/alerts/index.html +1 -1
- package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/catalog/index.html +1 -1
- package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1 -1
- package/coverage/lcov-report/map/api/services/daptiles/index.html +1 -1
- package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/features/features.service.js.html +1 -1
- package/coverage/lcov-report/map/api/services/features/index.html +1 -1
- package/coverage/lcov-report/map/api/services/index.html +1 -1
- package/coverage/lcov-report/map/api/services/index.js.html +1 -1
- package/coverage/lcov-report/map/api/services/projects/index.html +1 -1
- package/coverage/lcov-report/map/api/services/projects/projects.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/styles/index.html +1 -1
- package/coverage/lcov-report/map/api/services/styles/styles.hooks.js.html +1 -1
- package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/errors.js.html +1 -1
- package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/grid.js.html +1 -1
- package/coverage/lcov-report/map/common/index.html +1 -1
- package/coverage/lcov-report/map/common/index.js.html +1 -1
- package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/moment-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/opendap-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/opendap-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/permissions.js.html +1 -1
- package/coverage/lcov-report/map/common/time-based-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/tms-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/wcs-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/wcs-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/weacast-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/wfs-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/wms-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/wmts-utils.js.html +1 -1
- package/coverage/lcov.info +358 -280
- package/coverage/map/api/hooks/hooks.catalog.js.html +1 -1
- package/coverage/map/api/hooks/hooks.features.js.html +1 -1
- package/coverage/map/api/hooks/hooks.query.js.html +184 -4
- package/coverage/map/api/hooks/index.html +5 -5
- package/coverage/map/api/hooks/index.js.html +1 -1
- package/coverage/map/api/index.html +1 -1
- package/coverage/map/api/index.js.html +1 -1
- package/coverage/map/api/marshall.js.html +1 -1
- package/coverage/map/api/models/alerts.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/catalog.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/features.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/index.html +1 -1
- package/coverage/map/api/models/projects.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/styles.model.mongodb.js.html +1 -1
- package/coverage/map/api/services/alerts/alerts.hooks.js.html +1 -1
- package/coverage/map/api/services/alerts/alerts.service.js.html +1 -1
- package/coverage/map/api/services/alerts/index.html +1 -1
- package/coverage/map/api/services/catalog/catalog.hooks.js.html +1 -1
- package/coverage/map/api/services/catalog/index.html +1 -1
- package/coverage/map/api/services/daptiles/daptiles.service.js.html +1 -1
- package/coverage/map/api/services/daptiles/index.html +1 -1
- package/coverage/map/api/services/features/features.hooks.js.html +1 -1
- package/coverage/map/api/services/features/features.service.js.html +1 -1
- package/coverage/map/api/services/features/index.html +1 -1
- package/coverage/map/api/services/index.html +1 -1
- package/coverage/map/api/services/index.js.html +1 -1
- package/coverage/map/api/services/projects/index.html +1 -1
- package/coverage/map/api/services/projects/projects.hooks.js.html +1 -1
- package/coverage/map/api/services/styles/index.html +1 -1
- package/coverage/map/api/services/styles/styles.hooks.js.html +1 -1
- package/coverage/map/common/dynamic-grid-source.js.html +1 -1
- package/coverage/map/common/errors.js.html +1 -1
- package/coverage/map/common/geotiff-grid-source.js.html +1 -1
- package/coverage/map/common/grid.js.html +1 -1
- package/coverage/map/common/index.html +1 -1
- package/coverage/map/common/index.js.html +1 -1
- package/coverage/map/common/meteo-model-grid-source.js.html +1 -1
- package/coverage/map/common/moment-utils.js.html +1 -1
- package/coverage/map/common/opendap-grid-source.js.html +1 -1
- package/coverage/map/common/opendap-utils.js.html +1 -1
- package/coverage/map/common/permissions.js.html +1 -1
- package/coverage/map/common/time-based-grid-source.js.html +1 -1
- package/coverage/map/common/tms-utils.js.html +1 -1
- package/coverage/map/common/wcs-grid-source.js.html +1 -1
- package/coverage/map/common/wcs-utils.js.html +1 -1
- package/coverage/map/common/weacast-grid-source.js.html +1 -1
- package/coverage/map/common/wfs-utils.js.html +1 -1
- package/coverage/map/common/wms-utils.js.html +1 -1
- package/coverage/map/common/wmts-utils.js.html +1 -1
- package/coverage/tmp/coverage-1028514-1773134124472-0.json +1 -0
- package/coverage/tmp/coverage-1028526-1773134124448-0.json +1 -0
- package/coverage/tmp/coverage-1028537-1773134124431-0.json +1 -0
- package/coverage/tmp/coverage-1028549-1773134124401-0.json +1 -0
- package/coverage/tmp/{coverage-222566-1765963609278-0.json → coverage-1028556-1773134124353-0.json} +1 -1
- package/extras/configs/widgets.top.js +3 -3
- package/extras/tests/core/collection.mjs +2 -9
- package/map/api/hooks/hooks.catalog.js +18 -4
- package/map/api/services/catalog/catalog.hooks.js +3 -0
- package/map/api/services/features/features.hooks.js +3 -1
- package/map/api/services/index.js +2 -6
- package/map/api/services/styles/styles.hooks.js +6 -1
- package/map/client/components/KFeatureActionButton.vue +9 -3
- package/map/client/components/KFeaturesFilterManager.vue +5 -5
- package/map/client/components/KFilterCondition.vue +17 -10
- package/map/client/components/KLayerEditor.vue +49 -39
- package/map/client/components/KMeasureTool.vue +7 -1
- package/map/client/components/KTimezoneMap.vue +29 -9
- package/map/client/components/catalog/KLayersPanel.vue +26 -16
- package/map/client/components/catalog/KLayersSelector.vue +13 -2
- package/map/client/components/catalog/KViewsPanel.vue +5 -4
- package/map/client/components/form/KSelectLayersField.vue +28 -17
- package/map/client/components/form/KSelectViewsField.vue +18 -9
- package/map/client/components/form/KTimezoneField.vue +1 -2
- package/map/client/components/legend/KVariablesLegend.vue +10 -1
- package/map/client/components/location/KLocationCardSection.vue +7 -2
- package/map/client/components/location/KLocationMap.vue +31 -7
- package/map/client/components/selection/KSelectedLayerFeatures.vue +2 -2
- package/map/client/components/stickies/KZoomControl.vue +1 -1
- package/map/client/components/styles/KStyleManager.vue +4 -1
- package/map/client/components/widget/KTimeSeries.vue +174 -497
- package/map/client/components/widget/KTimeSeriesSelector.vue +72 -0
- package/map/client/components/widget/KTimeSeriesToolbar.vue +83 -0
- package/map/client/composables/catalog.js +6 -10
- package/map/client/composables/highlight.js +12 -9
- package/map/client/composables/project.js +1 -1
- package/map/client/composables/selection.js +8 -7
- package/map/client/composables/weather.js +9 -2
- package/map/client/geolocation.js +8 -5
- package/map/client/i18n/map_en.json +10 -8
- package/map/client/i18n/map_fr.json +9 -7
- package/map/client/leaflet/TiledFeatureLayer.js +85 -82
- package/map/client/leaflet/utils/utils.geojson.js +3 -3
- package/map/client/mixins/globe/mixin.base-globe.js +15 -6
- package/map/client/mixins/globe/mixin.geojson-layers.js +27 -18
- package/map/client/mixins/map/mixin.edit-layers.js +9 -1
- package/map/client/mixins/map/mixin.pmtiles-layers.js +118 -29
- package/map/client/mixins/map/mixin.tiled-mesh-layers.js +12 -5
- package/map/client/mixins/map/mixin.tiled-wind-layers.js +19 -10
- package/map/client/mixins/mixin.activity.js +23 -30
- package/map/client/mixins/mixin.feature-selection.js +41 -5
- package/map/client/planets.js +1 -1
- package/map/client/readers/reader.kml.js +2 -3
- package/map/client/utils/utils.catalog.js +36 -10
- package/map/client/utils/utils.layers.js +39 -8
- package/map/client/utils/utils.project.js +4 -0
- package/map/client/utils/utils.style.js +37 -7
- package/map/client/utils/utils.time-series.js +215 -6
- package/map/common/schemas/catalog.update.json +1 -1
- package/map/common/weacast-grid-source.js +1 -1
- package/package.json +3 -3
- package/scripts/kash/CHANGELOG.md +0 -4
- package/scripts/kash/README.md +0 -9
- package/scripts/kash/kash.sh +45 -40
- package/scripts/kash/scripts/run_tests.sh +1 -4
- package/test/api/core/authentication.test.js +9 -4
- package/test/api/core/config/default.cjs +1 -0
- package/test/api/core/hooks.test.js +6 -0
- package/test/api/core/index.test.js +43 -18
- package/test/api/core/push.test.js +8 -8
- package/test/api/core/test-log-2026-03-10.log +60 -0
- package/test/api/core/users.test.js +384 -0
- package/test/api/map/grid-sources.test.js +1 -1
- package/test/api/map/test-log-2026-03-10.log +56 -0
- package/vite/package.json +11 -2
- package/vite/test/core/composables.test.js +77 -0
- package/vite/vitest.config.js +13 -0
- package/vite/yarn.lock +1096 -18
- package/client/css/core.variables.scss +0 -72
- package/client/i18n/core_en.json +0 -744
- package/client/i18n/core_fr.json +0 -744
- package/client/i18n/map_en.json +0 -800
- package/client/i18n/map_fr.json +0 -800
- package/client/kdk.client.css +0 -47
- package/client/kdk.client.js +0 -41097
- package/client/kdk.client.map.css +0 -47
- package/client/kdk.client.map.js +0 -38182
- package/client/kdk.client.map.min.css +0 -1
- package/client/kdk.client.map.min.js +0 -27032
- package/client/kdk.client.min.css +0 -1
- package/client/kdk.client.min.js +0 -29074
- package/client/schemas/capture.create.json +0 -132
- package/client/schemas/catalog.update.json +0 -44
- package/client/schemas/messages.update.json +0 -16
- package/client/schemas/projects.create.json +0 -52
- package/client/schemas/projects.update.json +0 -52
- package/client/schemas/settings.update.json +0 -286
- package/client/schemas/tags.update.json +0 -35
- package/client/schemas/users.update-profile.json +0 -34
- package/core/client/components/account/KAccount.vue +0 -68
- package/core/client/components/account/KDeleteAccountManager.vue +0 -62
- package/core/client/components/account/KEmailManager.vue +0 -128
- package/core/client/components/account/KPasswordManager.vue +0 -90
- package/core/client/components/account/KVerifyEmailManager.vue +0 -105
- package/core/client/components/collection/KColumn.vue +0 -227
- package/core/client/components/collection/KHistory.vue +0 -113
- package/core/client/components/collection/KHistoryEntry.vue +0 -109
- package/coverage/tmp/coverage-222524-1765963609350-0.json +0 -1
- package/coverage/tmp/coverage-222536-1765963609335-0.json +0 -1
- package/coverage/tmp/coverage-222547-1765963609324-0.json +0 -1
- package/coverage/tmp/coverage-222559-1765963609309-0.json +0 -1
- package/scripts/kash/LICENSE +0 -21
- package/test/api/core/test-log-2025-07-31.log +0 -15
- package/test/api/core/test-log-2025-10-03.log +0 -18
- package/test/api/core/test-log-2025-11-10.log +0 -0
- package/test/api/core/test-log-2025-11-12.log +0 -117
- package/test/api/core/test-log-2025-11-27.log +0 -0
- package/test/api/core/test-log-2025-11-28.log +0 -17
- package/test/api/core/test-log-2025-12-09.log +0 -148
- package/test/api/core/test-log-2025-12-17.log +0 -58
- package/test/api/core/test-log-2026-01-29.log +0 -17
- package/test/api/map/test-log-2025-07-23.log +0 -1
- package/test/api/map/test-log-2025-11-28.log +0 -33
- package/test/api/map/test-log-2025-12-10.log +0 -2
- package/test/api/map/test-log-2026-01-06.log +0 -26
package/coverage/lcov.info
CHANGED
|
@@ -2523,25 +2523,25 @@ DA:22,17
|
|
|
2523
2523
|
DA:23,17
|
|
2524
2524
|
DA:24,17
|
|
2525
2525
|
DA:25,6
|
|
2526
|
-
DA:26,
|
|
2526
|
+
DA:26,17
|
|
2527
2527
|
DA:27,17
|
|
2528
|
-
DA:28,
|
|
2529
|
-
DA:29,
|
|
2530
|
-
DA:30,
|
|
2531
|
-
DA:31,
|
|
2532
|
-
DA:32,
|
|
2533
|
-
DA:33,
|
|
2528
|
+
DA:28,17
|
|
2529
|
+
DA:29,4
|
|
2530
|
+
DA:30,4
|
|
2531
|
+
DA:31,17
|
|
2532
|
+
DA:32,2
|
|
2533
|
+
DA:33,2
|
|
2534
2534
|
DA:34,0
|
|
2535
|
-
DA:35,
|
|
2536
|
-
DA:36,
|
|
2537
|
-
DA:37,
|
|
2538
|
-
DA:38,
|
|
2539
|
-
DA:39,
|
|
2535
|
+
DA:35,2
|
|
2536
|
+
DA:36,17
|
|
2537
|
+
DA:37,0
|
|
2538
|
+
DA:38,0
|
|
2539
|
+
DA:39,0
|
|
2540
2540
|
DA:40,2
|
|
2541
|
-
DA:41,
|
|
2542
|
-
DA:42,
|
|
2543
|
-
DA:43,
|
|
2544
|
-
DA:44,
|
|
2541
|
+
DA:41,2
|
|
2542
|
+
DA:42,2
|
|
2543
|
+
DA:43,2
|
|
2544
|
+
DA:44,2
|
|
2545
2545
|
DA:45,17
|
|
2546
2546
|
DA:46,17
|
|
2547
2547
|
DA:47,17
|
|
@@ -2550,48 +2550,58 @@ DA:49,17
|
|
|
2550
2550
|
DA:50,17
|
|
2551
2551
|
DA:51,17
|
|
2552
2552
|
DA:52,17
|
|
2553
|
-
DA:53,
|
|
2554
|
-
DA:54,
|
|
2555
|
-
DA:55,
|
|
2556
|
-
DA:56,
|
|
2557
|
-
DA:57,
|
|
2558
|
-
DA:58,
|
|
2559
|
-
DA:59,
|
|
2560
|
-
DA:60,
|
|
2553
|
+
DA:53,17
|
|
2554
|
+
DA:54,17
|
|
2555
|
+
DA:55,17
|
|
2556
|
+
DA:56,17
|
|
2557
|
+
DA:57,2
|
|
2558
|
+
DA:58,2
|
|
2559
|
+
DA:59,2
|
|
2560
|
+
DA:60,2
|
|
2561
2561
|
DA:61,17
|
|
2562
|
-
|
|
2563
|
-
|
|
2562
|
+
DA:62,0
|
|
2563
|
+
DA:63,0
|
|
2564
|
+
DA:64,0
|
|
2565
|
+
DA:65,17
|
|
2566
|
+
LF:65
|
|
2567
|
+
LH:56
|
|
2564
2568
|
BRDA:1,0,0,1
|
|
2565
2569
|
BRDA:9,1,0,2
|
|
2566
2570
|
BRDA:13,2,0,17
|
|
2567
2571
|
BRDA:14,3,0,0
|
|
2568
2572
|
BRDA:19,4,0,0
|
|
2569
2573
|
BRDA:24,5,0,11
|
|
2570
|
-
BRDA:
|
|
2571
|
-
BRDA:
|
|
2572
|
-
BRDA:
|
|
2573
|
-
BRDA:
|
|
2574
|
-
BRDA:
|
|
2575
|
-
BRDA:
|
|
2576
|
-
BRDA:
|
|
2577
|
-
BRDA:
|
|
2578
|
-
|
|
2579
|
-
|
|
2574
|
+
BRDA:25,6,0,6
|
|
2575
|
+
BRDA:26,7,0,0
|
|
2576
|
+
BRDA:27,8,0,6
|
|
2577
|
+
BRDA:27,9,0,0
|
|
2578
|
+
BRDA:28,10,0,6
|
|
2579
|
+
BRDA:28,11,0,6
|
|
2580
|
+
BRDA:28,12,0,2
|
|
2581
|
+
BRDA:28,13,0,4
|
|
2582
|
+
BRDA:31,14,0,2
|
|
2583
|
+
BRDA:36,15,0,0
|
|
2584
|
+
BRDA:40,16,0,2
|
|
2585
|
+
BRDA:56,17,0,2
|
|
2586
|
+
BRDA:57,18,0,2
|
|
2587
|
+
BRDA:61,19,0,0
|
|
2588
|
+
BRF:20
|
|
2589
|
+
BRH:14
|
|
2580
2590
|
end_of_record
|
|
2581
2591
|
TN:
|
|
2582
2592
|
SF:core/api/hooks/hooks.query.js
|
|
2583
|
-
FN:
|
|
2584
|
-
FN:
|
|
2585
|
-
FN:
|
|
2586
|
-
FN:
|
|
2587
|
-
FN:
|
|
2588
|
-
FN:
|
|
2589
|
-
FN:
|
|
2590
|
-
FN:
|
|
2591
|
-
FN:
|
|
2592
|
-
FN:
|
|
2593
|
-
FN:
|
|
2594
|
-
FN:
|
|
2593
|
+
FN:13,marshallTimeQuery
|
|
2594
|
+
FN:21,marshallComparisonQuery
|
|
2595
|
+
FN:29,marshallSortQuery
|
|
2596
|
+
FN:37,marshallCollationQuery
|
|
2597
|
+
FN:51,marshallHttpQuery
|
|
2598
|
+
FN:64,aggregationQuery
|
|
2599
|
+
FN:83,populateObject
|
|
2600
|
+
FN:158,unpopulateObject
|
|
2601
|
+
FN:172,populateObjects
|
|
2602
|
+
FN:253,unpopulateObjects
|
|
2603
|
+
FN:260,toDiacriticRegex
|
|
2604
|
+
FN:280,diacriticSearch
|
|
2595
2605
|
FNF:12
|
|
2596
2606
|
FNH:7
|
|
2597
2607
|
FNDA:0,marshallTimeQuery
|
|
@@ -2617,30 +2627,30 @@ DA:8,1
|
|
|
2617
2627
|
DA:9,1
|
|
2618
2628
|
DA:10,1
|
|
2619
2629
|
DA:11,1
|
|
2620
|
-
DA:12,
|
|
2621
|
-
DA:13,
|
|
2630
|
+
DA:12,1
|
|
2631
|
+
DA:13,1
|
|
2622
2632
|
DA:14,0
|
|
2623
2633
|
DA:15,0
|
|
2624
2634
|
DA:16,0
|
|
2625
2635
|
DA:17,0
|
|
2626
|
-
DA:18,
|
|
2627
|
-
DA:19,
|
|
2628
|
-
DA:20,
|
|
2629
|
-
DA:21,
|
|
2630
|
-
DA:22,
|
|
2631
|
-
DA:23,
|
|
2636
|
+
DA:18,0
|
|
2637
|
+
DA:19,0
|
|
2638
|
+
DA:20,1
|
|
2639
|
+
DA:21,1
|
|
2640
|
+
DA:22,4
|
|
2641
|
+
DA:23,4
|
|
2632
2642
|
DA:24,3
|
|
2633
|
-
DA:25,
|
|
2634
|
-
DA:26,
|
|
2635
|
-
DA:27,
|
|
2636
|
-
DA:28,
|
|
2637
|
-
DA:29,
|
|
2643
|
+
DA:25,3
|
|
2644
|
+
DA:26,3
|
|
2645
|
+
DA:27,4
|
|
2646
|
+
DA:28,1
|
|
2647
|
+
DA:29,1
|
|
2638
2648
|
DA:30,0
|
|
2639
2649
|
DA:31,0
|
|
2640
2650
|
DA:32,0
|
|
2641
2651
|
DA:33,0
|
|
2642
|
-
DA:34,
|
|
2643
|
-
DA:35,
|
|
2652
|
+
DA:34,0
|
|
2653
|
+
DA:35,0
|
|
2644
2654
|
DA:36,1
|
|
2645
2655
|
DA:37,1
|
|
2646
2656
|
DA:38,1
|
|
@@ -2648,28 +2658,28 @@ DA:39,1
|
|
|
2648
2658
|
DA:40,1
|
|
2649
2659
|
DA:41,1
|
|
2650
2660
|
DA:42,1
|
|
2651
|
-
DA:43,
|
|
2652
|
-
DA:44,
|
|
2661
|
+
DA:43,1
|
|
2662
|
+
DA:44,1
|
|
2653
2663
|
DA:45,0
|
|
2654
|
-
DA:46,
|
|
2655
|
-
DA:47,
|
|
2664
|
+
DA:46,0
|
|
2665
|
+
DA:47,0
|
|
2656
2666
|
DA:48,1
|
|
2657
2667
|
DA:49,1
|
|
2658
|
-
DA:50,
|
|
2659
|
-
DA:51,
|
|
2660
|
-
DA:52,
|
|
2661
|
-
DA:53,
|
|
2668
|
+
DA:50,1
|
|
2669
|
+
DA:51,1
|
|
2670
|
+
DA:52,2
|
|
2671
|
+
DA:53,2
|
|
2662
2672
|
DA:54,1
|
|
2663
2673
|
DA:55,1
|
|
2664
2674
|
DA:56,1
|
|
2665
2675
|
DA:57,1
|
|
2666
2676
|
DA:58,1
|
|
2667
2677
|
DA:59,1
|
|
2668
|
-
DA:60,
|
|
2678
|
+
DA:60,1
|
|
2669
2679
|
DA:61,1
|
|
2670
|
-
DA:62,
|
|
2671
|
-
DA:63,
|
|
2672
|
-
DA:64,
|
|
2680
|
+
DA:62,2
|
|
2681
|
+
DA:63,1
|
|
2682
|
+
DA:64,1
|
|
2673
2683
|
DA:65,0
|
|
2674
2684
|
DA:66,0
|
|
2675
2685
|
DA:67,0
|
|
@@ -2678,264 +2688,273 @@ DA:69,0
|
|
|
2678
2688
|
DA:70,0
|
|
2679
2689
|
DA:71,0
|
|
2680
2690
|
DA:72,0
|
|
2681
|
-
DA:73,
|
|
2682
|
-
DA:74,
|
|
2683
|
-
DA:75,
|
|
2684
|
-
DA:76,
|
|
2685
|
-
DA:77,
|
|
2686
|
-
DA:78,
|
|
2687
|
-
DA:79,
|
|
2688
|
-
DA:80,
|
|
2689
|
-
DA:81,
|
|
2690
|
-
DA:82,
|
|
2691
|
-
DA:83,
|
|
2691
|
+
DA:73,0
|
|
2692
|
+
DA:74,0
|
|
2693
|
+
DA:75,0
|
|
2694
|
+
DA:76,0
|
|
2695
|
+
DA:77,0
|
|
2696
|
+
DA:78,0
|
|
2697
|
+
DA:79,0
|
|
2698
|
+
DA:80,0
|
|
2699
|
+
DA:81,0
|
|
2700
|
+
DA:82,1
|
|
2701
|
+
DA:83,1
|
|
2692
2702
|
DA:84,4
|
|
2693
2703
|
DA:85,4
|
|
2694
|
-
DA:86,
|
|
2695
|
-
DA:87,
|
|
2696
|
-
DA:88,
|
|
2704
|
+
DA:86,4
|
|
2705
|
+
DA:87,4
|
|
2706
|
+
DA:88,4
|
|
2697
2707
|
DA:89,4
|
|
2698
|
-
DA:90,
|
|
2699
|
-
DA:91,
|
|
2700
|
-
DA:92,
|
|
2708
|
+
DA:90,4
|
|
2709
|
+
DA:91,4
|
|
2710
|
+
DA:92,4
|
|
2701
2711
|
DA:93,4
|
|
2702
2712
|
DA:94,4
|
|
2703
|
-
DA:95,
|
|
2704
|
-
DA:96,
|
|
2705
|
-
DA:97,
|
|
2713
|
+
DA:95,0
|
|
2714
|
+
DA:96,0
|
|
2715
|
+
DA:97,0
|
|
2706
2716
|
DA:98,4
|
|
2707
|
-
DA:99,
|
|
2708
|
-
DA:100,
|
|
2717
|
+
DA:99,0
|
|
2718
|
+
DA:100,0
|
|
2709
2719
|
DA:101,0
|
|
2710
|
-
DA:102,
|
|
2711
|
-
DA:103,
|
|
2720
|
+
DA:102,4
|
|
2721
|
+
DA:103,4
|
|
2712
2722
|
DA:104,4
|
|
2713
|
-
DA:105,
|
|
2714
|
-
DA:106,
|
|
2715
|
-
DA:107,
|
|
2723
|
+
DA:105,4
|
|
2724
|
+
DA:106,4
|
|
2725
|
+
DA:107,4
|
|
2716
2726
|
DA:108,4
|
|
2717
2727
|
DA:109,4
|
|
2718
|
-
DA:110,
|
|
2728
|
+
DA:110,0
|
|
2719
2729
|
DA:111,0
|
|
2720
2730
|
DA:112,0
|
|
2721
|
-
DA:113,
|
|
2722
|
-
DA:114,
|
|
2723
|
-
DA:115,
|
|
2724
|
-
DA:116,
|
|
2731
|
+
DA:113,4
|
|
2732
|
+
DA:114,0
|
|
2733
|
+
DA:115,0
|
|
2734
|
+
DA:116,0
|
|
2725
2735
|
DA:117,4
|
|
2726
2736
|
DA:118,4
|
|
2727
2737
|
DA:119,4
|
|
2728
|
-
DA:120,
|
|
2729
|
-
DA:121,
|
|
2730
|
-
DA:122,
|
|
2738
|
+
DA:120,0
|
|
2739
|
+
DA:121,0
|
|
2740
|
+
DA:122,0
|
|
2731
2741
|
DA:123,4
|
|
2732
2742
|
DA:124,4
|
|
2733
2743
|
DA:125,4
|
|
2734
|
-
DA:126,
|
|
2735
|
-
DA:127,
|
|
2736
|
-
DA:128,
|
|
2737
|
-
DA:129,
|
|
2744
|
+
DA:126,4
|
|
2745
|
+
DA:127,4
|
|
2746
|
+
DA:128,4
|
|
2747
|
+
DA:129,4
|
|
2738
2748
|
DA:130,4
|
|
2739
|
-
DA:131,
|
|
2740
|
-
DA:132,
|
|
2741
|
-
DA:133,
|
|
2749
|
+
DA:131,4
|
|
2750
|
+
DA:132,4
|
|
2751
|
+
DA:133,4
|
|
2742
2752
|
DA:134,4
|
|
2743
2753
|
DA:135,0
|
|
2744
2754
|
DA:136,0
|
|
2745
2755
|
DA:137,0
|
|
2746
|
-
DA:138,
|
|
2756
|
+
DA:138,0
|
|
2747
2757
|
DA:139,4
|
|
2748
|
-
DA:140,
|
|
2749
|
-
DA:141,
|
|
2758
|
+
DA:140,0
|
|
2759
|
+
DA:141,0
|
|
2750
2760
|
DA:142,0
|
|
2751
|
-
DA:143,
|
|
2761
|
+
DA:143,4
|
|
2752
2762
|
DA:144,0
|
|
2753
2763
|
DA:145,0
|
|
2754
|
-
DA:146,
|
|
2764
|
+
DA:146,0
|
|
2755
2765
|
DA:147,4
|
|
2756
|
-
DA:148,
|
|
2757
|
-
DA:149,
|
|
2758
|
-
DA:150,
|
|
2766
|
+
DA:148,4
|
|
2767
|
+
DA:149,4
|
|
2768
|
+
DA:150,4
|
|
2759
2769
|
DA:151,0
|
|
2760
2770
|
DA:152,0
|
|
2761
2771
|
DA:153,0
|
|
2762
2772
|
DA:154,0
|
|
2763
|
-
DA:155,
|
|
2764
|
-
DA:156,
|
|
2765
|
-
DA:157,
|
|
2766
|
-
DA:158,
|
|
2773
|
+
DA:155,4
|
|
2774
|
+
DA:156,4
|
|
2775
|
+
DA:157,1
|
|
2776
|
+
DA:158,1
|
|
2767
2777
|
DA:159,0
|
|
2768
2778
|
DA:160,0
|
|
2769
2779
|
DA:161,0
|
|
2770
|
-
DA:162,
|
|
2771
|
-
DA:163,
|
|
2772
|
-
DA:164,
|
|
2773
|
-
DA:165,
|
|
2774
|
-
DA:166,
|
|
2775
|
-
DA:167,
|
|
2776
|
-
DA:168,
|
|
2777
|
-
DA:169,
|
|
2778
|
-
DA:170,
|
|
2779
|
-
DA:171,
|
|
2780
|
-
DA:172,
|
|
2780
|
+
DA:162,0
|
|
2781
|
+
DA:163,0
|
|
2782
|
+
DA:164,0
|
|
2783
|
+
DA:165,0
|
|
2784
|
+
DA:166,0
|
|
2785
|
+
DA:167,0
|
|
2786
|
+
DA:168,0
|
|
2787
|
+
DA:169,0
|
|
2788
|
+
DA:170,0
|
|
2789
|
+
DA:171,1
|
|
2790
|
+
DA:172,1
|
|
2781
2791
|
DA:173,4
|
|
2782
2792
|
DA:174,4
|
|
2783
|
-
DA:175,
|
|
2784
|
-
DA:176,
|
|
2785
|
-
DA:177,
|
|
2793
|
+
DA:175,4
|
|
2794
|
+
DA:176,4
|
|
2795
|
+
DA:177,4
|
|
2786
2796
|
DA:178,4
|
|
2787
|
-
DA:179,
|
|
2788
|
-
DA:180,
|
|
2789
|
-
DA:181,
|
|
2797
|
+
DA:179,4
|
|
2798
|
+
DA:180,4
|
|
2799
|
+
DA:181,4
|
|
2790
2800
|
DA:182,4
|
|
2791
2801
|
DA:183,4
|
|
2792
|
-
DA:184,
|
|
2793
|
-
DA:185,
|
|
2794
|
-
DA:186,
|
|
2802
|
+
DA:184,0
|
|
2803
|
+
DA:185,0
|
|
2804
|
+
DA:186,0
|
|
2795
2805
|
DA:187,4
|
|
2796
|
-
DA:188,
|
|
2797
|
-
DA:189,
|
|
2806
|
+
DA:188,0
|
|
2807
|
+
DA:189,0
|
|
2798
2808
|
DA:190,0
|
|
2799
|
-
DA:191,
|
|
2800
|
-
DA:192,
|
|
2809
|
+
DA:191,4
|
|
2810
|
+
DA:192,4
|
|
2801
2811
|
DA:193,4
|
|
2802
|
-
DA:194,
|
|
2803
|
-
DA:195,
|
|
2804
|
-
DA:196,
|
|
2812
|
+
DA:194,4
|
|
2813
|
+
DA:195,4
|
|
2814
|
+
DA:196,4
|
|
2805
2815
|
DA:197,4
|
|
2806
2816
|
DA:198,4
|
|
2807
|
-
DA:199,
|
|
2808
|
-
DA:200,
|
|
2809
|
-
DA:201,
|
|
2817
|
+
DA:199,0
|
|
2818
|
+
DA:200,0
|
|
2819
|
+
DA:201,0
|
|
2810
2820
|
DA:202,4
|
|
2811
|
-
DA:203,
|
|
2812
|
-
DA:204,
|
|
2821
|
+
DA:203,0
|
|
2822
|
+
DA:204,0
|
|
2813
2823
|
DA:205,0
|
|
2814
|
-
DA:206,
|
|
2815
|
-
DA:207,
|
|
2816
|
-
DA:208,
|
|
2817
|
-
DA:209,
|
|
2818
|
-
DA:210,
|
|
2824
|
+
DA:206,4
|
|
2825
|
+
DA:207,4
|
|
2826
|
+
DA:208,4
|
|
2827
|
+
DA:209,4
|
|
2828
|
+
DA:210,4
|
|
2819
2829
|
DA:211,4
|
|
2820
2830
|
DA:212,4
|
|
2821
2831
|
DA:213,4
|
|
2822
|
-
DA:214,
|
|
2823
|
-
DA:215,
|
|
2824
|
-
DA:216,
|
|
2825
|
-
DA:217,
|
|
2826
|
-
DA:218,
|
|
2827
|
-
DA:219,
|
|
2832
|
+
DA:214,0
|
|
2833
|
+
DA:215,0
|
|
2834
|
+
DA:216,0
|
|
2835
|
+
DA:217,0
|
|
2836
|
+
DA:218,0
|
|
2837
|
+
DA:219,0
|
|
2828
2838
|
DA:220,4
|
|
2829
|
-
DA:221,
|
|
2830
|
-
DA:222,
|
|
2831
|
-
DA:223,
|
|
2839
|
+
DA:221,4
|
|
2840
|
+
DA:222,4
|
|
2841
|
+
DA:223,4
|
|
2832
2842
|
DA:224,4
|
|
2833
|
-
DA:225,
|
|
2834
|
-
DA:226,
|
|
2835
|
-
DA:227,
|
|
2843
|
+
DA:225,4
|
|
2844
|
+
DA:226,4
|
|
2845
|
+
DA:227,4
|
|
2836
2846
|
DA:228,4
|
|
2837
|
-
DA:229,
|
|
2847
|
+
DA:229,4
|
|
2838
2848
|
DA:230,0
|
|
2839
2849
|
DA:231,0
|
|
2840
|
-
DA:232,
|
|
2850
|
+
DA:232,0
|
|
2841
2851
|
DA:233,4
|
|
2842
|
-
DA:234,
|
|
2843
|
-
DA:235,
|
|
2852
|
+
DA:234,0
|
|
2853
|
+
DA:235,0
|
|
2844
2854
|
DA:236,0
|
|
2845
|
-
DA:237,
|
|
2855
|
+
DA:237,4
|
|
2846
2856
|
DA:238,0
|
|
2847
2857
|
DA:239,0
|
|
2848
|
-
DA:240,
|
|
2858
|
+
DA:240,0
|
|
2849
2859
|
DA:241,4
|
|
2850
2860
|
DA:242,4
|
|
2851
|
-
DA:243,
|
|
2852
|
-
DA:244,
|
|
2861
|
+
DA:243,4
|
|
2862
|
+
DA:244,4
|
|
2853
2863
|
DA:245,0
|
|
2854
2864
|
DA:246,0
|
|
2855
2865
|
DA:247,0
|
|
2856
|
-
DA:248,
|
|
2857
|
-
DA:249,
|
|
2858
|
-
DA:250,
|
|
2859
|
-
DA:251,
|
|
2860
|
-
DA:252,
|
|
2861
|
-
DA:253,
|
|
2862
|
-
DA:254,
|
|
2863
|
-
DA:255,
|
|
2864
|
-
DA:256,
|
|
2865
|
-
DA:257,
|
|
2866
|
-
DA:258,
|
|
2867
|
-
DA:259,
|
|
2868
|
-
DA:260,
|
|
2869
|
-
DA:261,
|
|
2870
|
-
DA:262,
|
|
2871
|
-
DA:263,
|
|
2872
|
-
DA:264,
|
|
2873
|
-
DA:265,
|
|
2866
|
+
DA:248,0
|
|
2867
|
+
DA:249,4
|
|
2868
|
+
DA:250,4
|
|
2869
|
+
DA:251,4
|
|
2870
|
+
DA:252,1
|
|
2871
|
+
DA:253,1
|
|
2872
|
+
DA:254,0
|
|
2873
|
+
DA:255,0
|
|
2874
|
+
DA:256,0
|
|
2875
|
+
DA:257,1
|
|
2876
|
+
DA:258,1
|
|
2877
|
+
DA:259,1
|
|
2878
|
+
DA:260,1
|
|
2879
|
+
DA:261,29
|
|
2880
|
+
DA:262,2
|
|
2881
|
+
DA:263,29
|
|
2882
|
+
DA:264,17
|
|
2883
|
+
DA:265,17
|
|
2874
2884
|
DA:266,17
|
|
2875
2885
|
DA:267,17
|
|
2876
|
-
DA:268,
|
|
2877
|
-
DA:269,
|
|
2878
|
-
DA:270,
|
|
2879
|
-
DA:271,
|
|
2880
|
-
DA:272,
|
|
2881
|
-
DA:273,
|
|
2882
|
-
DA:274,
|
|
2883
|
-
DA:275,
|
|
2884
|
-
DA:276,
|
|
2885
|
-
|
|
2886
|
-
|
|
2886
|
+
DA:268,6
|
|
2887
|
+
DA:269,6
|
|
2888
|
+
DA:270,6
|
|
2889
|
+
DA:271,6
|
|
2890
|
+
DA:272,17
|
|
2891
|
+
DA:273,11
|
|
2892
|
+
DA:274,11
|
|
2893
|
+
DA:275,17
|
|
2894
|
+
DA:276,17
|
|
2895
|
+
DA:277,29
|
|
2896
|
+
DA:278,1
|
|
2897
|
+
DA:279,1
|
|
2898
|
+
DA:280,1
|
|
2899
|
+
DA:281,6
|
|
2900
|
+
DA:282,16
|
|
2901
|
+
DA:283,16
|
|
2902
|
+
DA:284,16
|
|
2903
|
+
DA:285,6
|
|
2904
|
+
LF:285
|
|
2905
|
+
LH:178
|
|
2887
2906
|
BRDA:1,0,0,1
|
|
2888
|
-
BRDA:
|
|
2889
|
-
BRDA:
|
|
2890
|
-
BRDA:
|
|
2891
|
-
BRDA:
|
|
2892
|
-
BRDA:
|
|
2893
|
-
BRDA:
|
|
2894
|
-
BRDA:
|
|
2895
|
-
BRDA:
|
|
2896
|
-
BRDA:
|
|
2897
|
-
BRDA:
|
|
2898
|
-
BRDA:
|
|
2899
|
-
BRDA:
|
|
2900
|
-
BRDA:
|
|
2901
|
-
BRDA:
|
|
2902
|
-
BRDA:
|
|
2903
|
-
BRDA:
|
|
2904
|
-
BRDA:
|
|
2905
|
-
BRDA:
|
|
2906
|
-
BRDA:
|
|
2907
|
-
BRDA:
|
|
2908
|
-
BRDA:
|
|
2909
|
-
BRDA:
|
|
2910
|
-
BRDA:
|
|
2911
|
-
BRDA:
|
|
2912
|
-
BRDA:
|
|
2913
|
-
BRDA:
|
|
2914
|
-
BRDA:
|
|
2915
|
-
BRDA:
|
|
2916
|
-
BRDA:
|
|
2917
|
-
BRDA:
|
|
2918
|
-
BRDA:
|
|
2919
|
-
BRDA:
|
|
2920
|
-
BRDA:
|
|
2921
|
-
BRDA:
|
|
2922
|
-
BRDA:
|
|
2923
|
-
BRDA:
|
|
2924
|
-
BRDA:
|
|
2925
|
-
BRDA:
|
|
2926
|
-
BRDA:
|
|
2927
|
-
BRDA:
|
|
2928
|
-
BRDA:
|
|
2929
|
-
BRDA:
|
|
2930
|
-
BRDA:
|
|
2931
|
-
BRDA:
|
|
2932
|
-
BRDA:
|
|
2933
|
-
BRDA:
|
|
2934
|
-
BRDA:
|
|
2935
|
-
BRDA:
|
|
2936
|
-
BRDA:
|
|
2937
|
-
BRDA:
|
|
2938
|
-
BRDA:
|
|
2907
|
+
BRDA:21,1,0,4
|
|
2908
|
+
BRDA:23,2,0,3
|
|
2909
|
+
BRDA:37,3,0,1
|
|
2910
|
+
BRDA:39,4,0,0
|
|
2911
|
+
BRDA:44,5,0,0
|
|
2912
|
+
BRDA:51,6,0,2
|
|
2913
|
+
BRDA:53,7,0,1
|
|
2914
|
+
BRDA:83,8,0,4
|
|
2915
|
+
BRDA:84,9,0,4
|
|
2916
|
+
BRDA:94,10,0,0
|
|
2917
|
+
BRDA:98,11,0,0
|
|
2918
|
+
BRDA:105,12,0,2
|
|
2919
|
+
BRDA:109,13,0,0
|
|
2920
|
+
BRDA:113,14,0,0
|
|
2921
|
+
BRDA:118,15,0,2
|
|
2922
|
+
BRDA:118,16,0,2
|
|
2923
|
+
BRDA:119,17,0,0
|
|
2924
|
+
BRDA:127,18,0,2
|
|
2925
|
+
BRDA:132,19,0,2
|
|
2926
|
+
BRDA:134,20,0,0
|
|
2927
|
+
BRDA:139,21,0,0
|
|
2928
|
+
BRDA:143,22,0,0
|
|
2929
|
+
BRDA:150,23,0,0
|
|
2930
|
+
BRDA:172,24,0,4
|
|
2931
|
+
BRDA:173,25,0,4
|
|
2932
|
+
BRDA:183,26,0,0
|
|
2933
|
+
BRDA:187,27,0,0
|
|
2934
|
+
BRDA:194,28,0,2
|
|
2935
|
+
BRDA:198,29,0,0
|
|
2936
|
+
BRDA:202,30,0,0
|
|
2937
|
+
BRDA:211,31,0,2
|
|
2938
|
+
BRDA:213,32,0,0
|
|
2939
|
+
BRDA:223,33,0,0
|
|
2940
|
+
BRDA:229,34,0,0
|
|
2941
|
+
BRDA:233,35,0,0
|
|
2942
|
+
BRDA:237,36,0,0
|
|
2943
|
+
BRDA:244,37,0,0
|
|
2944
|
+
BRDA:260,38,0,29
|
|
2945
|
+
BRDA:261,39,0,2
|
|
2946
|
+
BRDA:263,40,0,27
|
|
2947
|
+
BRDA:263,41,0,17
|
|
2948
|
+
BRDA:264,42,0,17
|
|
2949
|
+
BRDA:265,43,0,0
|
|
2950
|
+
BRDA:267,44,0,6
|
|
2951
|
+
BRDA:267,45,0,6
|
|
2952
|
+
BRDA:267,46,0,6
|
|
2953
|
+
BRDA:267,47,0,6
|
|
2954
|
+
BRDA:272,48,0,11
|
|
2955
|
+
BRDA:280,49,0,6
|
|
2956
|
+
BRDA:281,50,0,16
|
|
2957
|
+
BRDA:283,51,0,15
|
|
2939
2958
|
BRF:52
|
|
2940
2959
|
BRH:30
|
|
2941
2960
|
end_of_record
|
|
@@ -3444,7 +3463,7 @@ DA:148,2
|
|
|
3444
3463
|
DA:149,2
|
|
3445
3464
|
DA:150,2
|
|
3446
3465
|
DA:151,2
|
|
3447
|
-
DA:152,
|
|
3466
|
+
DA:152,2
|
|
3448
3467
|
DA:153,2
|
|
3449
3468
|
DA:154,2
|
|
3450
3469
|
DA:155,2
|
|
@@ -3534,18 +3553,17 @@ BRDA:130,38,0,2
|
|
|
3534
3553
|
BRDA:131,39,0,0
|
|
3535
3554
|
BRDA:139,40,0,0
|
|
3536
3555
|
BRDA:150,41,0,0
|
|
3537
|
-
BRDA:
|
|
3538
|
-
BRDA:
|
|
3539
|
-
BRDA:
|
|
3540
|
-
BRDA:
|
|
3541
|
-
BRDA:
|
|
3542
|
-
BRDA:
|
|
3543
|
-
BRDA:
|
|
3544
|
-
BRDA:
|
|
3545
|
-
BRDA:
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
BRH:36
|
|
3556
|
+
BRDA:152,42,0,0
|
|
3557
|
+
BRDA:155,43,0,0
|
|
3558
|
+
BRDA:165,44,0,1
|
|
3559
|
+
BRDA:166,45,0,0
|
|
3560
|
+
BRDA:171,46,0,0
|
|
3561
|
+
BRDA:180,47,0,1
|
|
3562
|
+
BRDA:184,48,0,1
|
|
3563
|
+
BRDA:187,49,0,0
|
|
3564
|
+
BRDA:195,50,0,1
|
|
3565
|
+
BRF:51
|
|
3566
|
+
BRH:35
|
|
3549
3567
|
end_of_record
|
|
3550
3568
|
TN:
|
|
3551
3569
|
SF:core/api/hooks/index.js
|
|
@@ -6269,7 +6287,67 @@ DA:405,0
|
|
|
6269
6287
|
DA:406,0
|
|
6270
6288
|
DA:407,0
|
|
6271
6289
|
DA:408,0
|
|
6272
|
-
|
|
6290
|
+
DA:409,0
|
|
6291
|
+
DA:410,0
|
|
6292
|
+
DA:411,0
|
|
6293
|
+
DA:412,0
|
|
6294
|
+
DA:413,0
|
|
6295
|
+
DA:414,0
|
|
6296
|
+
DA:415,0
|
|
6297
|
+
DA:416,0
|
|
6298
|
+
DA:417,0
|
|
6299
|
+
DA:418,0
|
|
6300
|
+
DA:419,0
|
|
6301
|
+
DA:420,0
|
|
6302
|
+
DA:421,0
|
|
6303
|
+
DA:422,0
|
|
6304
|
+
DA:423,0
|
|
6305
|
+
DA:424,0
|
|
6306
|
+
DA:425,0
|
|
6307
|
+
DA:426,0
|
|
6308
|
+
DA:427,0
|
|
6309
|
+
DA:428,0
|
|
6310
|
+
DA:429,0
|
|
6311
|
+
DA:430,0
|
|
6312
|
+
DA:431,0
|
|
6313
|
+
DA:432,0
|
|
6314
|
+
DA:433,0
|
|
6315
|
+
DA:434,0
|
|
6316
|
+
DA:435,0
|
|
6317
|
+
DA:436,0
|
|
6318
|
+
DA:437,0
|
|
6319
|
+
DA:438,0
|
|
6320
|
+
DA:439,0
|
|
6321
|
+
DA:440,0
|
|
6322
|
+
DA:441,0
|
|
6323
|
+
DA:442,0
|
|
6324
|
+
DA:443,0
|
|
6325
|
+
DA:444,0
|
|
6326
|
+
DA:445,0
|
|
6327
|
+
DA:446,0
|
|
6328
|
+
DA:447,0
|
|
6329
|
+
DA:448,0
|
|
6330
|
+
DA:449,0
|
|
6331
|
+
DA:450,0
|
|
6332
|
+
DA:451,0
|
|
6333
|
+
DA:452,0
|
|
6334
|
+
DA:453,0
|
|
6335
|
+
DA:454,0
|
|
6336
|
+
DA:455,0
|
|
6337
|
+
DA:456,0
|
|
6338
|
+
DA:457,0
|
|
6339
|
+
DA:458,0
|
|
6340
|
+
DA:459,0
|
|
6341
|
+
DA:460,0
|
|
6342
|
+
DA:461,0
|
|
6343
|
+
DA:462,0
|
|
6344
|
+
DA:463,0
|
|
6345
|
+
DA:464,0
|
|
6346
|
+
DA:465,0
|
|
6347
|
+
DA:466,0
|
|
6348
|
+
DA:467,0
|
|
6349
|
+
DA:468,0
|
|
6350
|
+
LF:468
|
|
6273
6351
|
LH:0
|
|
6274
6352
|
BRDA:1,0,0,0
|
|
6275
6353
|
BRF:1
|