@kalisio/kdk 2.6.4 → 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 +392 -398
- package/coverage/core/api/authentication.js.html +352 -187
- package/coverage/core/api/db.js.html +165 -126
- package/coverage/core/api/hooks/hooks.authentication.js.html +22 -196
- package/coverage/core/api/hooks/hooks.authorisations.js.html +383 -662
- package/coverage/core/api/hooks/hooks.logger.js.html +41 -41
- package/coverage/core/api/hooks/hooks.model.js.html +113 -101
- package/coverage/core/api/hooks/hooks.push.js.html +124 -97
- package/coverage/core/api/hooks/hooks.query.js.html +292 -217
- package/coverage/core/api/hooks/hooks.schemas.js.html +123 -123
- 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.groups.js.html → hooks.tags.js.html} +100 -76
- package/coverage/core/api/hooks/hooks.users.js.html +255 -447
- package/coverage/core/api/hooks/index.html +107 -122
- package/coverage/core/api/hooks/index.js.html +4 -10
- package/coverage/core/api/index.html +46 -61
- package/coverage/core/api/index.js.html +9 -9
- package/coverage/core/api/marshall.js.html +9 -9
- package/coverage/core/api/models/{organisations.model.mongodb.js.html → configurations.model.mongodb.js.html} +10 -7
- package/coverage/core/api/models/index.html +35 -50
- package/coverage/core/api/models/messages.model.mongodb.js.html +39 -27
- package/coverage/core/api/models/tags.model.mongodb.js.html +26 -32
- package/coverage/core/api/models/users.model.mongodb.js.html +10 -10
- package/coverage/core/api/services/account/account.hooks.js.html +5 -5
- package/coverage/core/api/services/account/account.service.js.html +127 -127
- package/coverage/core/api/services/account/index.html +22 -22
- package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
- package/coverage/core/api/services/authorisations/authorisations.service.js.html +213 -222
- package/coverage/core/api/services/authorisations/index.html +21 -21
- package/coverage/core/api/services/{organisations/organisations.hooks.js.html → configurations/configurations.hooks.js.html} +16 -10
- package/coverage/core/api/services/{groups → configurations}/index.html +8 -8
- 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 +76 -76
- package/coverage/core/api/services/import-export/import-export.service.js.html +32 -32
- package/coverage/core/api/services/import-export/index.html +32 -32
- package/coverage/core/api/services/index.html +21 -21
- package/coverage/core/api/services/index.js.html +313 -142
- package/coverage/core/api/services/mailer/index.html +32 -32
- package/coverage/core/api/services/mailer/mailer.hooks.js.html +80 -80
- package/coverage/core/api/services/mailer/mailer.service.js.html +32 -32
- package/coverage/core/api/services/messages/index.html +21 -21
- package/coverage/core/api/services/messages/messages.hooks.js.html +112 -76
- package/coverage/core/api/services/push/index.html +32 -32
- package/coverage/core/api/services/push/push.hooks.js.html +80 -80
- package/coverage/core/api/services/push/push.service.js.html +34 -34
- package/coverage/core/api/services/storage/index.html +29 -29
- package/coverage/core/api/services/storage/storage.hooks.js.html +80 -80
- package/coverage/core/api/services/storage/storage.service.js.html +29 -29
- package/coverage/core/api/services/tags/index.html +21 -21
- package/coverage/core/api/services/tags/tags.hooks.js.html +119 -71
- package/coverage/core/api/services/users/index.html +27 -12
- package/coverage/core/api/services/users/users.hooks.js.html +14 -11
- package/coverage/core/api/services/users/users.service.js.html +100 -0
- package/coverage/core/common/errors.js.html +1 -1
- package/coverage/core/common/index.html +42 -27
- package/coverage/core/common/index.js.html +1 -1
- package/coverage/core/common/permissions.js.html +166 -472
- package/coverage/core/common/schema.js.html +4 -4
- package/coverage/core/common/utils.js.html +31 -25
- package/coverage/core/common/utils.offline.js.html +199 -0
- package/coverage/index.html +192 -192
- package/coverage/lcov-report/core/api/application.js.html +392 -398
- package/coverage/lcov-report/core/api/authentication.js.html +352 -187
- package/coverage/lcov-report/core/api/db.js.html +165 -126
- package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +22 -196
- package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +383 -662
- package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +41 -41
- package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +113 -101
- package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +124 -97
- package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +292 -217
- package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +123 -123
- 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.groups.js.html → hooks.tags.js.html} +100 -76
- package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +255 -447
- package/coverage/lcov-report/core/api/hooks/index.html +107 -122
- package/coverage/lcov-report/core/api/hooks/index.js.html +4 -10
- package/coverage/lcov-report/core/api/index.html +46 -61
- package/coverage/lcov-report/core/api/index.js.html +9 -9
- package/coverage/lcov-report/core/api/marshall.js.html +9 -9
- package/coverage/lcov-report/core/api/models/{organisations.model.mongodb.js.html → configurations.model.mongodb.js.html} +10 -7
- package/coverage/lcov-report/core/api/models/index.html +35 -50
- package/coverage/lcov-report/core/api/models/messages.model.mongodb.js.html +39 -27
- package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +26 -32
- package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +10 -10
- package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +5 -5
- package/coverage/lcov-report/core/api/services/account/account.service.js.html +127 -127
- package/coverage/lcov-report/core/api/services/account/index.html +22 -22
- 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 +213 -222
- package/coverage/lcov-report/core/api/services/authorisations/index.html +21 -21
- package/coverage/lcov-report/core/api/services/{groups/groups.hooks.js.html → configurations/configurations.hooks.js.html} +16 -10
- package/coverage/lcov-report/core/api/services/{groups → configurations}/index.html +8 -8
- 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 +76 -76
- package/coverage/lcov-report/core/api/services/import-export/import-export.service.js.html +32 -32
- package/coverage/lcov-report/core/api/services/import-export/index.html +32 -32
- package/coverage/lcov-report/core/api/services/index.html +21 -21
- package/coverage/lcov-report/core/api/services/index.js.html +313 -142
- package/coverage/lcov-report/core/api/services/mailer/index.html +32 -32
- package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +80 -80
- package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +32 -32
- package/coverage/lcov-report/core/api/services/messages/index.html +21 -21
- package/coverage/lcov-report/core/api/services/messages/messages.hooks.js.html +112 -76
- package/coverage/lcov-report/core/api/services/push/index.html +32 -32
- package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +80 -80
- package/coverage/lcov-report/core/api/services/push/push.service.js.html +34 -34
- package/coverage/lcov-report/core/api/services/storage/index.html +29 -29
- package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +80 -80
- package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +29 -29
- package/coverage/lcov-report/core/api/services/tags/index.html +21 -21
- package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +119 -71
- package/coverage/lcov-report/core/api/services/users/index.html +27 -12
- package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +14 -11
- package/coverage/lcov-report/core/api/services/users/users.service.js.html +100 -0
- package/coverage/lcov-report/core/common/errors.js.html +1 -1
- package/coverage/lcov-report/core/common/index.html +42 -27
- package/coverage/lcov-report/core/common/index.js.html +1 -1
- package/coverage/lcov-report/core/common/permissions.js.html +166 -472
- package/coverage/lcov-report/core/common/schema.js.html +4 -4
- package/coverage/lcov-report/core/common/utils.js.html +31 -25
- package/coverage/lcov-report/core/common/utils.offline.js.html +199 -0
- package/coverage/lcov-report/index.html +192 -192
- package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +169 -31
- package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +1 -1
- package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +215 -35
- package/coverage/lcov-report/map/api/hooks/index.html +7 -7
- 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 +82 -7
- package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/index.html +22 -7
- package/coverage/lcov-report/map/api/models/projects.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/{core/api/models/groups.model.mongodb.js.html → map/api/models/styles.model.mongodb.js.html} +10 -7
- 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 +39 -12
- package/coverage/lcov-report/map/api/services/catalog/index.html +5 -5
- 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 +86 -11
- package/coverage/lcov-report/map/api/services/features/features.service.js.html +307 -4
- package/coverage/lcov-report/map/api/services/features/index.html +7 -7
- package/coverage/lcov-report/map/api/services/index.html +5 -5
- package/coverage/lcov-report/map/api/services/index.js.html +326 -50
- 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/{core/api/services/organisations → lcov-report/map/api/services/styles}/index.html +10 -25
- package/coverage/lcov-report/{core/api/services/organisations/organisations.hooks.js.html → map/api/services/styles/styles.hooks.js.html} +45 -12
- 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 +7 -10
- package/coverage/lcov-report/map/common/grid.js.html +1 -1
- package/coverage/lcov-report/map/common/index.html +19 -19
- 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 +4 -7
- package/coverage/lcov-report/map/common/permissions.js.html +10 -4
- package/coverage/lcov-report/map/common/time-based-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/tms-utils.js.html +9 -12
- package/coverage/lcov-report/map/common/wcs-grid-source.js.html +3 -3
- package/coverage/lcov-report/map/common/wcs-utils.js.html +12 -15
- package/coverage/lcov-report/map/common/weacast-grid-source.js.html +2 -2
- package/coverage/lcov-report/map/common/wfs-utils.js.html +14 -17
- package/coverage/lcov-report/map/common/wms-utils.js.html +30 -12
- package/coverage/lcov-report/map/common/wmts-utils.js.html +10 -13
- package/coverage/lcov.info +4157 -3816
- package/coverage/map/api/hooks/hooks.catalog.js.html +169 -31
- package/coverage/map/api/hooks/hooks.features.js.html +1 -1
- package/coverage/map/api/hooks/hooks.query.js.html +215 -35
- package/coverage/map/api/hooks/index.html +7 -7
- 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 +82 -7
- package/coverage/map/api/models/features.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/index.html +22 -7
- package/coverage/map/api/models/projects.model.mongodb.js.html +1 -1
- package/coverage/{core/api/models/groups.model.mongodb.js.html → map/api/models/styles.model.mongodb.js.html} +10 -7
- 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 +39 -12
- package/coverage/map/api/services/catalog/index.html +5 -5
- 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 +86 -11
- package/coverage/map/api/services/features/features.service.js.html +307 -4
- package/coverage/map/api/services/features/index.html +7 -7
- package/coverage/map/api/services/index.html +5 -5
- package/coverage/map/api/services/index.js.html +326 -50
- package/coverage/map/api/services/projects/index.html +1 -1
- package/coverage/map/api/services/projects/projects.hooks.js.html +1 -1
- package/coverage/{lcov-report/core/api/services/organisations → map/api/services/styles}/index.html +10 -25
- package/coverage/{core/api/services/groups/groups.hooks.js.html → map/api/services/styles/styles.hooks.js.html} +45 -12
- 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 +7 -10
- package/coverage/map/common/grid.js.html +1 -1
- package/coverage/map/common/index.html +19 -19
- 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 +4 -7
- package/coverage/map/common/permissions.js.html +10 -4
- package/coverage/map/common/time-based-grid-source.js.html +1 -1
- package/coverage/map/common/tms-utils.js.html +9 -12
- package/coverage/map/common/wcs-grid-source.js.html +3 -3
- package/coverage/map/common/wcs-utils.js.html +12 -15
- package/coverage/map/common/weacast-grid-source.js.html +2 -2
- package/coverage/map/common/wfs-utils.js.html +14 -17
- package/coverage/map/common/wms-utils.js.html +30 -12
- package/coverage/map/common/wmts-utils.js.html +10 -13
- 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-1028556-1773134124353-0.json +1 -0
- package/extras/configs/widgets.top.js +3 -3
- package/extras/tests/core/collection.mjs +2 -9
- package/extras/tours/pane.top.js +0 -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 +11 -10
- package/map/client/i18n/map_fr.json +10 -9
- 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/.vscode/settings.json +0 -5
- 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/core/api/hooks/hooks.organisations.js.html +0 -541
- package/coverage/core/api/services/organisations/organisations.service.js.html +0 -343
- package/coverage/core/api/utils.js.html +0 -118
- package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +0 -541
- package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +0 -343
- package/coverage/lcov-report/core/api/utils.js.html +0 -118
- package/coverage/tmp/coverage-151166-1723543324307-0.json +0 -1
- package/coverage/tmp/coverage-151178-1723543324283-0.json +0 -1
- package/coverage/tmp/coverage-151189-1723543324271-0.json +0 -1
- package/coverage/tmp/coverage-151201-1723543324248-0.json +0 -1
- package/coverage/tmp/coverage-151208-1723543324227-0.json +0 -1
- package/scripts/kash/LICENSE +0 -21
- package/test/api/core/test-log-2024-04-22.log +0 -84
- package/test/api/core/test-log-2024-04-23.log +0 -23
- package/test/api/core/test-log-2024-08-13.log +0 -3
- package/test/api/map/test-log-2025-03-08.log +0 -0
|
@@ -23,30 +23,30 @@
|
|
|
23
23
|
<div class='clearfix'>
|
|
24
24
|
|
|
25
25
|
<div class='fl pad1y space-right2'>
|
|
26
|
-
<span class="strong">
|
|
26
|
+
<span class="strong">32.53% </span>
|
|
27
27
|
<span class="quiet">Statements</span>
|
|
28
|
-
<span class='fraction'>
|
|
28
|
+
<span class='fraction'>2991/9194</span>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<div class='fl pad1y space-right2'>
|
|
33
|
-
<span class="strong">
|
|
33
|
+
<span class="strong">63.11% </span>
|
|
34
34
|
<span class="quiet">Branches</span>
|
|
35
|
-
<span class='fraction'>
|
|
35
|
+
<span class='fraction'>426/675</span>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
<div class='fl pad1y space-right2'>
|
|
40
|
-
<span class="strong">
|
|
40
|
+
<span class="strong">50.87% </span>
|
|
41
41
|
<span class="quiet">Functions</span>
|
|
42
|
-
<span class='fraction'>
|
|
42
|
+
<span class='fraction'>116/228</span>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
<div class='fl pad1y space-right2'>
|
|
47
|
-
<span class="strong">
|
|
47
|
+
<span class="strong">32.53% </span>
|
|
48
48
|
<span class="quiet">Lines</span>
|
|
49
|
-
<span class='fraction'>
|
|
49
|
+
<span class='fraction'>2991/9194</span>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
|
|
@@ -80,257 +80,242 @@
|
|
|
80
80
|
</thead>
|
|
81
81
|
<tbody><tr>
|
|
82
82
|
<td class="file medium" data-value="core/api"><a href="core/api/index.html">core/api</a></td>
|
|
83
|
-
<td data-value="
|
|
84
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
83
|
+
<td data-value="68.31" class="pic medium">
|
|
84
|
+
<div class="chart"><div class="cover-fill" style="width: 68%"></div><div class="cover-empty" style="width: 32%"></div></div>
|
|
85
85
|
</td>
|
|
86
|
-
<td data-value="
|
|
87
|
-
<td data-value="
|
|
88
|
-
<td data-value="
|
|
89
|
-
<td data-value="
|
|
90
|
-
<td data-value="
|
|
91
|
-
<td data-value="
|
|
92
|
-
<td data-value="
|
|
93
|
-
<td data-value="
|
|
86
|
+
<td data-value="68.31" class="pct medium">68.31%</td>
|
|
87
|
+
<td data-value="1253" class="abs medium">856/1253</td>
|
|
88
|
+
<td data-value="65.96" class="pct medium">65.96%</td>
|
|
89
|
+
<td data-value="191" class="abs medium">126/191</td>
|
|
90
|
+
<td data-value="65.15" class="pct medium">65.15%</td>
|
|
91
|
+
<td data-value="66" class="abs medium">43/66</td>
|
|
92
|
+
<td data-value="68.31" class="pct medium">68.31%</td>
|
|
93
|
+
<td data-value="1253" class="abs medium">856/1253</td>
|
|
94
94
|
</tr>
|
|
95
95
|
|
|
96
96
|
<tr>
|
|
97
|
-
<td class="file
|
|
98
|
-
<td data-value="
|
|
99
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
97
|
+
<td class="file medium" data-value="core/api/hooks"><a href="core/api/hooks/index.html">core/api/hooks</a></td>
|
|
98
|
+
<td data-value="74.78" class="pic medium">
|
|
99
|
+
<div class="chart"><div class="cover-fill" style="width: 74%"></div><div class="cover-empty" style="width: 26%"></div></div>
|
|
100
100
|
</td>
|
|
101
|
-
<td data-value="
|
|
102
|
-
<td data-value="
|
|
103
|
-
<td data-value="
|
|
104
|
-
<td data-value="
|
|
105
|
-
<td data-value="
|
|
106
|
-
<td data-value="
|
|
107
|
-
<td data-value="
|
|
108
|
-
<td data-value="
|
|
101
|
+
<td data-value="74.78" class="pct medium">74.78%</td>
|
|
102
|
+
<td data-value="1428" class="abs medium">1068/1428</td>
|
|
103
|
+
<td data-value="64.24" class="pct medium">64.24%</td>
|
|
104
|
+
<td data-value="316" class="abs medium">203/316</td>
|
|
105
|
+
<td data-value="71.92" class="pct medium">71.92%</td>
|
|
106
|
+
<td data-value="57" class="abs medium">41/57</td>
|
|
107
|
+
<td data-value="74.78" class="pct medium">74.78%</td>
|
|
108
|
+
<td data-value="1428" class="abs medium">1068/1428</td>
|
|
109
109
|
</tr>
|
|
110
110
|
|
|
111
111
|
<tr>
|
|
112
|
-
<td class="file
|
|
113
|
-
<td data-value="
|
|
114
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
112
|
+
<td class="file high" data-value="core/api/models"><a href="core/api/models/index.html">core/api/models</a></td>
|
|
113
|
+
<td data-value="88.57" class="pic high">
|
|
114
|
+
<div class="chart"><div class="cover-fill" style="width: 88%"></div><div class="cover-empty" style="width: 12%"></div></div>
|
|
115
115
|
</td>
|
|
116
|
-
<td data-value="
|
|
117
|
-
<td data-value="
|
|
118
|
-
<td data-value="
|
|
119
|
-
<td data-value="
|
|
120
|
-
<td data-value="20" class="pct low">20%</td>
|
|
121
|
-
<td data-value="5" class="abs low">1/5</td>
|
|
122
|
-
<td data-value="25" class="pct low">25%</td>
|
|
123
|
-
<td data-value="40" class="abs low">10/40</td>
|
|
124
|
-
</tr>
|
|
125
|
-
|
|
126
|
-
<tr>
|
|
127
|
-
<td class="file low" data-value="core/api/services"><a href="core/api/services/index.html">core/api/services</a></td>
|
|
128
|
-
<td data-value="36.94" class="pic low">
|
|
129
|
-
<div class="chart"><div class="cover-fill" style="width: 36%"></div><div class="cover-empty" style="width: 64%"></div></div>
|
|
130
|
-
</td>
|
|
131
|
-
<td data-value="36.94" class="pct low">36.94%</td>
|
|
132
|
-
<td data-value="157" class="abs low">58/157</td>
|
|
116
|
+
<td data-value="88.57" class="pct high">88.57%</td>
|
|
117
|
+
<td data-value="35" class="abs high">31/35</td>
|
|
118
|
+
<td data-value="85.71" class="pct high">85.71%</td>
|
|
119
|
+
<td data-value="7" class="abs high">6/7</td>
|
|
133
120
|
<td data-value="75" class="pct medium">75%</td>
|
|
134
121
|
<td data-value="4" class="abs medium">3/4</td>
|
|
135
|
-
<td data-value="
|
|
136
|
-
<td data-value="
|
|
137
|
-
<td data-value="36.94" class="pct low">36.94%</td>
|
|
138
|
-
<td data-value="157" class="abs low">58/157</td>
|
|
122
|
+
<td data-value="88.57" class="pct high">88.57%</td>
|
|
123
|
+
<td data-value="35" class="abs high">31/35</td>
|
|
139
124
|
</tr>
|
|
140
125
|
|
|
141
126
|
<tr>
|
|
142
|
-
<td class="file
|
|
143
|
-
<td data-value="
|
|
144
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
127
|
+
<td class="file medium" data-value="core/api/services"><a href="core/api/services/index.html">core/api/services</a></td>
|
|
128
|
+
<td data-value="56.54" class="pic medium">
|
|
129
|
+
<div class="chart"><div class="cover-fill" style="width: 56%"></div><div class="cover-empty" style="width: 44%"></div></div>
|
|
145
130
|
</td>
|
|
146
|
-
<td data-value="
|
|
147
|
-
<td data-value="
|
|
148
|
-
<td data-value="
|
|
149
|
-
<td data-value="
|
|
150
|
-
<td data-value="
|
|
151
|
-
<td data-value="
|
|
152
|
-
<td data-value="
|
|
153
|
-
<td data-value="
|
|
131
|
+
<td data-value="56.54" class="pct medium">56.54%</td>
|
|
132
|
+
<td data-value="214" class="abs medium">121/214</td>
|
|
133
|
+
<td data-value="71.42" class="pct medium">71.42%</td>
|
|
134
|
+
<td data-value="7" class="abs medium">5/7</td>
|
|
135
|
+
<td data-value="28.57" class="pct low">28.57%</td>
|
|
136
|
+
<td data-value="14" class="abs low">4/14</td>
|
|
137
|
+
<td data-value="56.54" class="pct medium">56.54%</td>
|
|
138
|
+
<td data-value="214" class="abs medium">121/214</td>
|
|
154
139
|
</tr>
|
|
155
140
|
|
|
156
141
|
<tr>
|
|
157
|
-
<td class="file
|
|
158
|
-
<td data-value="
|
|
159
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
142
|
+
<td class="file high" data-value="core/api/services/account"><a href="core/api/services/account/index.html">core/api/services/account</a></td>
|
|
143
|
+
<td data-value="81.64" class="pic high">
|
|
144
|
+
<div class="chart"><div class="cover-fill" style="width: 81%"></div><div class="cover-empty" style="width: 19%"></div></div>
|
|
160
145
|
</td>
|
|
161
|
-
<td data-value="
|
|
162
|
-
<td data-value="
|
|
146
|
+
<td data-value="81.64" class="pct high">81.64%</td>
|
|
147
|
+
<td data-value="158" class="abs high">129/158</td>
|
|
148
|
+
<td data-value="70" class="pct medium">70%</td>
|
|
149
|
+
<td data-value="20" class="abs medium">14/20</td>
|
|
163
150
|
<td data-value="100" class="pct high">100%</td>
|
|
164
|
-
<td data-value="
|
|
165
|
-
<td data-value="
|
|
166
|
-
<td data-value="
|
|
167
|
-
<td data-value="39.22" class="pct low">39.22%</td>
|
|
168
|
-
<td data-value="181" class="abs low">71/181</td>
|
|
151
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
152
|
+
<td data-value="81.64" class="pct high">81.64%</td>
|
|
153
|
+
<td data-value="158" class="abs high">129/158</td>
|
|
169
154
|
</tr>
|
|
170
155
|
|
|
171
156
|
<tr>
|
|
172
|
-
<td class="file
|
|
173
|
-
<td data-value="
|
|
174
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
157
|
+
<td class="file high" data-value="core/api/services/authorisations"><a href="core/api/services/authorisations/index.html">core/api/services/authorisations</a></td>
|
|
158
|
+
<td data-value="92.69" class="pic high">
|
|
159
|
+
<div class="chart"><div class="cover-fill" style="width: 92%"></div><div class="cover-empty" style="width: 8%"></div></div>
|
|
175
160
|
</td>
|
|
176
|
-
<td data-value="
|
|
177
|
-
<td data-value="
|
|
178
|
-
<td data-value="
|
|
179
|
-
<td data-value="
|
|
180
|
-
<td data-value="
|
|
181
|
-
<td data-value="
|
|
182
|
-
<td data-value="
|
|
183
|
-
<td data-value="
|
|
161
|
+
<td data-value="92.69" class="pct high">92.69%</td>
|
|
162
|
+
<td data-value="178" class="abs high">165/178</td>
|
|
163
|
+
<td data-value="70.96" class="pct medium">70.96%</td>
|
|
164
|
+
<td data-value="31" class="abs medium">22/31</td>
|
|
165
|
+
<td data-value="85.71" class="pct high">85.71%</td>
|
|
166
|
+
<td data-value="7" class="abs high">6/7</td>
|
|
167
|
+
<td data-value="92.69" class="pct high">92.69%</td>
|
|
168
|
+
<td data-value="178" class="abs high">165/178</td>
|
|
184
169
|
</tr>
|
|
185
170
|
|
|
186
171
|
<tr>
|
|
187
|
-
<td class="file low" data-value="core/api/services/
|
|
172
|
+
<td class="file low" data-value="core/api/services/configurations"><a href="core/api/services/configurations/index.html">core/api/services/configurations</a></td>
|
|
188
173
|
<td data-value="0" class="pic low">
|
|
189
174
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
190
175
|
</td>
|
|
191
176
|
<td data-value="0" class="pct low">0%</td>
|
|
192
|
-
<td data-value="
|
|
177
|
+
<td data-value="33" class="abs low">0/33</td>
|
|
193
178
|
<td data-value="0" class="pct low">0%</td>
|
|
194
179
|
<td data-value="1" class="abs low">0/1</td>
|
|
195
180
|
<td data-value="0" class="pct low">0%</td>
|
|
196
181
|
<td data-value="1" class="abs low">0/1</td>
|
|
197
182
|
<td data-value="0" class="pct low">0%</td>
|
|
198
|
-
<td data-value="
|
|
183
|
+
<td data-value="33" class="abs low">0/33</td>
|
|
199
184
|
</tr>
|
|
200
185
|
|
|
201
186
|
<tr>
|
|
202
|
-
<td class="file low" data-value="core/api/services/
|
|
187
|
+
<td class="file low" data-value="core/api/services/databases"><a href="core/api/services/databases/index.html">core/api/services/databases</a></td>
|
|
203
188
|
<td data-value="0" class="pic low">
|
|
204
189
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
205
190
|
</td>
|
|
206
191
|
<td data-value="0" class="pct low">0%</td>
|
|
207
|
-
<td data-value="
|
|
192
|
+
<td data-value="41" class="abs low">0/41</td>
|
|
208
193
|
<td data-value="0" class="pct low">0%</td>
|
|
209
194
|
<td data-value="2" class="abs low">0/2</td>
|
|
210
195
|
<td data-value="0" class="pct low">0%</td>
|
|
211
196
|
<td data-value="2" class="abs low">0/2</td>
|
|
212
197
|
<td data-value="0" class="pct low">0%</td>
|
|
213
|
-
<td data-value="
|
|
198
|
+
<td data-value="41" class="abs low">0/41</td>
|
|
214
199
|
</tr>
|
|
215
200
|
|
|
216
201
|
<tr>
|
|
217
|
-
<td class="file
|
|
218
|
-
<td data-value="
|
|
219
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
202
|
+
<td class="file high" data-value="core/api/services/import-export"><a href="core/api/services/import-export/index.html">core/api/services/import-export</a></td>
|
|
203
|
+
<td data-value="100" class="pic high">
|
|
204
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
220
205
|
</td>
|
|
221
|
-
<td data-value="
|
|
222
|
-
<td data-value="
|
|
223
|
-
<td data-value="
|
|
224
|
-
<td data-value="
|
|
225
|
-
<td data-value="
|
|
226
|
-
<td data-value="
|
|
227
|
-
<td data-value="
|
|
228
|
-
<td data-value="
|
|
206
|
+
<td data-value="100" class="pct high">100%</td>
|
|
207
|
+
<td data-value="44" class="abs high">44/44</td>
|
|
208
|
+
<td data-value="100" class="pct high">100%</td>
|
|
209
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
210
|
+
<td data-value="100" class="pct high">100%</td>
|
|
211
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
212
|
+
<td data-value="100" class="pct high">100%</td>
|
|
213
|
+
<td data-value="44" class="abs high">44/44</td>
|
|
229
214
|
</tr>
|
|
230
215
|
|
|
231
216
|
<tr>
|
|
232
|
-
<td class="file
|
|
233
|
-
<td data-value="
|
|
234
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
217
|
+
<td class="file high" data-value="core/api/services/mailer"><a href="core/api/services/mailer/index.html">core/api/services/mailer</a></td>
|
|
218
|
+
<td data-value="100" class="pic high">
|
|
219
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
235
220
|
</td>
|
|
236
|
-
<td data-value="
|
|
237
|
-
<td data-value="
|
|
238
|
-
<td data-value="
|
|
239
|
-
<td data-value="
|
|
240
|
-
<td data-value="
|
|
241
|
-
<td data-value="1" class="abs
|
|
242
|
-
<td data-value="
|
|
243
|
-
<td data-value="
|
|
221
|
+
<td data-value="100" class="pct high">100%</td>
|
|
222
|
+
<td data-value="46" class="abs high">46/46</td>
|
|
223
|
+
<td data-value="100" class="pct high">100%</td>
|
|
224
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
225
|
+
<td data-value="100" class="pct high">100%</td>
|
|
226
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
227
|
+
<td data-value="100" class="pct high">100%</td>
|
|
228
|
+
<td data-value="46" class="abs high">46/46</td>
|
|
244
229
|
</tr>
|
|
245
230
|
|
|
246
231
|
<tr>
|
|
247
|
-
<td class="file
|
|
248
|
-
<td data-value="
|
|
249
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
232
|
+
<td class="file high" data-value="core/api/services/messages"><a href="core/api/services/messages/index.html">core/api/services/messages</a></td>
|
|
233
|
+
<td data-value="100" class="pic high">
|
|
234
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
250
235
|
</td>
|
|
251
|
-
<td data-value="
|
|
252
|
-
<td data-value="
|
|
253
|
-
<td data-value="
|
|
254
|
-
<td data-value="
|
|
255
|
-
<td data-value="
|
|
256
|
-
<td data-value="
|
|
257
|
-
<td data-value="
|
|
258
|
-
<td data-value="
|
|
236
|
+
<td data-value="100" class="pct high">100%</td>
|
|
237
|
+
<td data-value="45" class="abs high">45/45</td>
|
|
238
|
+
<td data-value="100" class="pct high">100%</td>
|
|
239
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
240
|
+
<td data-value="100" class="pct high">100%</td>
|
|
241
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
242
|
+
<td data-value="100" class="pct high">100%</td>
|
|
243
|
+
<td data-value="45" class="abs high">45/45</td>
|
|
259
244
|
</tr>
|
|
260
245
|
|
|
261
246
|
<tr>
|
|
262
|
-
<td class="file
|
|
263
|
-
<td data-value="
|
|
264
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
247
|
+
<td class="file high" data-value="core/api/services/push"><a href="core/api/services/push/index.html">core/api/services/push</a></td>
|
|
248
|
+
<td data-value="100" class="pic high">
|
|
249
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
265
250
|
</td>
|
|
266
|
-
<td data-value="
|
|
267
|
-
<td data-value="47" class="abs
|
|
268
|
-
<td data-value="
|
|
269
|
-
<td data-value="
|
|
270
|
-
<td data-value="
|
|
271
|
-
<td data-value="
|
|
272
|
-
<td data-value="
|
|
273
|
-
<td data-value="47" class="abs
|
|
251
|
+
<td data-value="100" class="pct high">100%</td>
|
|
252
|
+
<td data-value="47" class="abs high">47/47</td>
|
|
253
|
+
<td data-value="100" class="pct high">100%</td>
|
|
254
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
255
|
+
<td data-value="100" class="pct high">100%</td>
|
|
256
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
257
|
+
<td data-value="100" class="pct high">100%</td>
|
|
258
|
+
<td data-value="47" class="abs high">47/47</td>
|
|
274
259
|
</tr>
|
|
275
260
|
|
|
276
261
|
<tr>
|
|
277
|
-
<td class="file
|
|
278
|
-
<td data-value="
|
|
279
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
262
|
+
<td class="file high" data-value="core/api/services/storage"><a href="core/api/services/storage/index.html">core/api/services/storage</a></td>
|
|
263
|
+
<td data-value="100" class="pic high">
|
|
264
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
280
265
|
</td>
|
|
281
|
-
<td data-value="
|
|
282
|
-
<td data-value="64" class="abs
|
|
283
|
-
<td data-value="
|
|
284
|
-
<td data-value="
|
|
285
|
-
<td data-value="
|
|
286
|
-
<td data-value="
|
|
287
|
-
<td data-value="
|
|
288
|
-
<td data-value="64" class="abs
|
|
266
|
+
<td data-value="100" class="pct high">100%</td>
|
|
267
|
+
<td data-value="64" class="abs high">64/64</td>
|
|
268
|
+
<td data-value="42.85" class="pct low">42.85%</td>
|
|
269
|
+
<td data-value="7" class="abs low">3/7</td>
|
|
270
|
+
<td data-value="100" class="pct high">100%</td>
|
|
271
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
272
|
+
<td data-value="100" class="pct high">100%</td>
|
|
273
|
+
<td data-value="64" class="abs high">64/64</td>
|
|
289
274
|
</tr>
|
|
290
275
|
|
|
291
276
|
<tr>
|
|
292
|
-
<td class="file
|
|
293
|
-
<td data-value="
|
|
294
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
277
|
+
<td class="file high" data-value="core/api/services/tags"><a href="core/api/services/tags/index.html">core/api/services/tags</a></td>
|
|
278
|
+
<td data-value="91.48" class="pic high">
|
|
279
|
+
<div class="chart"><div class="cover-fill" style="width: 91%"></div><div class="cover-empty" style="width: 9%"></div></div>
|
|
295
280
|
</td>
|
|
296
|
-
<td data-value="
|
|
297
|
-
<td data-value="
|
|
298
|
-
<td data-value="
|
|
299
|
-
<td data-value="
|
|
300
|
-
<td data-value="
|
|
301
|
-
<td data-value="1" class="abs
|
|
302
|
-
<td data-value="
|
|
303
|
-
<td data-value="
|
|
281
|
+
<td data-value="91.48" class="pct high">91.48%</td>
|
|
282
|
+
<td data-value="47" class="abs high">43/47</td>
|
|
283
|
+
<td data-value="100" class="pct high">100%</td>
|
|
284
|
+
<td data-value="2" class="abs high">2/2</td>
|
|
285
|
+
<td data-value="100" class="pct high">100%</td>
|
|
286
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
287
|
+
<td data-value="91.48" class="pct high">91.48%</td>
|
|
288
|
+
<td data-value="47" class="abs high">43/47</td>
|
|
304
289
|
</tr>
|
|
305
290
|
|
|
306
291
|
<tr>
|
|
307
292
|
<td class="file high" data-value="core/api/services/users"><a href="core/api/services/users/index.html">core/api/services/users</a></td>
|
|
308
|
-
<td data-value="
|
|
309
|
-
<div class="chart"><div class="cover-fill
|
|
293
|
+
<td data-value="97.5" class="pic high">
|
|
294
|
+
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
|
|
310
295
|
</td>
|
|
296
|
+
<td data-value="97.5" class="pct high">97.5%</td>
|
|
297
|
+
<td data-value="80" class="abs high">78/80</td>
|
|
311
298
|
<td data-value="100" class="pct high">100%</td>
|
|
312
|
-
<td data-value="
|
|
313
|
-
<td data-value="
|
|
314
|
-
<td data-value="
|
|
315
|
-
<td data-value="
|
|
316
|
-
<td data-value="
|
|
317
|
-
<td data-value="100" class="pct high">100%</td>
|
|
318
|
-
<td data-value="74" class="abs high">74/74</td>
|
|
299
|
+
<td data-value="5" class="abs high">5/5</td>
|
|
300
|
+
<td data-value="33.33" class="pct low">33.33%</td>
|
|
301
|
+
<td data-value="3" class="abs low">1/3</td>
|
|
302
|
+
<td data-value="97.5" class="pct high">97.5%</td>
|
|
303
|
+
<td data-value="80" class="abs high">78/80</td>
|
|
319
304
|
</tr>
|
|
320
305
|
|
|
321
306
|
<tr>
|
|
322
|
-
<td class="file
|
|
323
|
-
<td data-value="
|
|
324
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
307
|
+
<td class="file medium" data-value="core/common"><a href="core/common/index.html">core/common</a></td>
|
|
308
|
+
<td data-value="72.57" class="pic medium">
|
|
309
|
+
<div class="chart"><div class="cover-fill" style="width: 72%"></div><div class="cover-empty" style="width: 28%"></div></div>
|
|
325
310
|
</td>
|
|
326
|
-
<td data-value="
|
|
327
|
-
<td data-value="
|
|
328
|
-
<td data-value="
|
|
329
|
-
<td data-value="
|
|
330
|
-
<td data-value="
|
|
331
|
-
<td data-value="
|
|
332
|
-
<td data-value="
|
|
333
|
-
<td data-value="
|
|
311
|
+
<td data-value="72.57" class="pct medium">72.57%</td>
|
|
312
|
+
<td data-value="350" class="abs medium">254/350</td>
|
|
313
|
+
<td data-value="78.94" class="pct medium">78.94%</td>
|
|
314
|
+
<td data-value="38" class="abs medium">30/38</td>
|
|
315
|
+
<td data-value="33.33" class="pct low">33.33%</td>
|
|
316
|
+
<td data-value="27" class="abs low">9/27</td>
|
|
317
|
+
<td data-value="72.57" class="pct medium">72.57%</td>
|
|
318
|
+
<td data-value="350" class="abs medium">254/350</td>
|
|
334
319
|
</tr>
|
|
335
320
|
|
|
336
321
|
<tr>
|
|
@@ -354,13 +339,13 @@
|
|
|
354
339
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
355
340
|
</td>
|
|
356
341
|
<td data-value="0" class="pct low">0%</td>
|
|
357
|
-
<td data-value="
|
|
342
|
+
<td data-value="746" class="abs low">0/746</td>
|
|
358
343
|
<td data-value="0" class="pct low">0%</td>
|
|
359
344
|
<td data-value="4" class="abs low">0/4</td>
|
|
360
345
|
<td data-value="0" class="pct low">0%</td>
|
|
361
346
|
<td data-value="4" class="abs low">0/4</td>
|
|
362
347
|
<td data-value="0" class="pct low">0%</td>
|
|
363
|
-
<td data-value="
|
|
348
|
+
<td data-value="746" class="abs low">0/746</td>
|
|
364
349
|
</tr>
|
|
365
350
|
|
|
366
351
|
<tr>
|
|
@@ -369,13 +354,13 @@
|
|
|
369
354
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
370
355
|
</td>
|
|
371
356
|
<td data-value="0" class="pct low">0%</td>
|
|
372
|
-
<td data-value="
|
|
357
|
+
<td data-value="100" class="abs low">0/100</td>
|
|
373
358
|
<td data-value="0" class="pct low">0%</td>
|
|
374
|
-
<td data-value="
|
|
359
|
+
<td data-value="5" class="abs low">0/5</td>
|
|
375
360
|
<td data-value="0" class="pct low">0%</td>
|
|
376
|
-
<td data-value="
|
|
361
|
+
<td data-value="5" class="abs low">0/5</td>
|
|
377
362
|
<td data-value="0" class="pct low">0%</td>
|
|
378
|
-
<td data-value="
|
|
363
|
+
<td data-value="100" class="abs low">0/100</td>
|
|
379
364
|
</tr>
|
|
380
365
|
|
|
381
366
|
<tr>
|
|
@@ -384,13 +369,13 @@
|
|
|
384
369
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
385
370
|
</td>
|
|
386
371
|
<td data-value="0" class="pct low">0%</td>
|
|
387
|
-
<td data-value="
|
|
372
|
+
<td data-value="336" class="abs low">0/336</td>
|
|
388
373
|
<td data-value="0" class="pct low">0%</td>
|
|
389
374
|
<td data-value="1" class="abs low">0/1</td>
|
|
390
375
|
<td data-value="0" class="pct low">0%</td>
|
|
391
376
|
<td data-value="1" class="abs low">0/1</td>
|
|
392
377
|
<td data-value="0" class="pct low">0%</td>
|
|
393
|
-
<td data-value="
|
|
378
|
+
<td data-value="336" class="abs low">0/336</td>
|
|
394
379
|
</tr>
|
|
395
380
|
|
|
396
381
|
<tr>
|
|
@@ -414,13 +399,13 @@
|
|
|
414
399
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
415
400
|
</td>
|
|
416
401
|
<td data-value="0" class="pct low">0%</td>
|
|
417
|
-
<td data-value="
|
|
402
|
+
<td data-value="84" class="abs low">0/84</td>
|
|
418
403
|
<td data-value="0" class="pct low">0%</td>
|
|
419
404
|
<td data-value="1" class="abs low">0/1</td>
|
|
420
405
|
<td data-value="0" class="pct low">0%</td>
|
|
421
406
|
<td data-value="1" class="abs low">0/1</td>
|
|
422
407
|
<td data-value="0" class="pct low">0%</td>
|
|
423
|
-
<td data-value="
|
|
408
|
+
<td data-value="84" class="abs low">0/84</td>
|
|
424
409
|
</tr>
|
|
425
410
|
|
|
426
411
|
<tr>
|
|
@@ -444,13 +429,13 @@
|
|
|
444
429
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
445
430
|
</td>
|
|
446
431
|
<td data-value="0" class="pct low">0%</td>
|
|
447
|
-
<td data-value="
|
|
432
|
+
<td data-value="230" class="abs low">0/230</td>
|
|
448
433
|
<td data-value="0" class="pct low">0%</td>
|
|
449
434
|
<td data-value="2" class="abs low">0/2</td>
|
|
450
435
|
<td data-value="0" class="pct low">0%</td>
|
|
451
436
|
<td data-value="2" class="abs low">0/2</td>
|
|
452
437
|
<td data-value="0" class="pct low">0%</td>
|
|
453
|
-
<td data-value="
|
|
438
|
+
<td data-value="230" class="abs low">0/230</td>
|
|
454
439
|
</tr>
|
|
455
440
|
|
|
456
441
|
<tr>
|
|
@@ -468,19 +453,34 @@
|
|
|
468
453
|
<td data-value="118" class="abs low">0/118</td>
|
|
469
454
|
</tr>
|
|
470
455
|
|
|
456
|
+
<tr>
|
|
457
|
+
<td class="file low" data-value="map/api/services/styles"><a href="map/api/services/styles/index.html">map/api/services/styles</a></td>
|
|
458
|
+
<td data-value="0" class="pic low">
|
|
459
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
460
|
+
</td>
|
|
461
|
+
<td data-value="0" class="pct low">0%</td>
|
|
462
|
+
<td data-value="42" class="abs low">0/42</td>
|
|
463
|
+
<td data-value="0" class="pct low">0%</td>
|
|
464
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
465
|
+
<td data-value="0" class="pct low">0%</td>
|
|
466
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
467
|
+
<td data-value="0" class="pct low">0%</td>
|
|
468
|
+
<td data-value="42" class="abs low">0/42</td>
|
|
469
|
+
</tr>
|
|
470
|
+
|
|
471
471
|
<tr>
|
|
472
472
|
<td class="file low" data-value="map/common"><a href="map/common/index.html">map/common</a></td>
|
|
473
473
|
<td data-value="0" class="pic low">
|
|
474
474
|
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
475
475
|
</td>
|
|
476
476
|
<td data-value="0" class="pct low">0%</td>
|
|
477
|
-
<td data-value="
|
|
477
|
+
<td data-value="2713" class="abs low">0/2713</td>
|
|
478
478
|
<td data-value="0" class="pct low">0%</td>
|
|
479
479
|
<td data-value="18" class="abs low">0/18</td>
|
|
480
480
|
<td data-value="0" class="pct low">0%</td>
|
|
481
481
|
<td data-value="18" class="abs low">0/18</td>
|
|
482
482
|
<td data-value="0" class="pct low">0%</td>
|
|
483
|
-
<td data-value="
|
|
483
|
+
<td data-value="2713" class="abs low">0/2713</td>
|
|
484
484
|
</tr>
|
|
485
485
|
|
|
486
486
|
</tbody>
|
|
@@ -491,7 +491,7 @@
|
|
|
491
491
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
492
492
|
Code coverage generated by
|
|
493
493
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
494
|
-
at
|
|
494
|
+
at 2026-03-10T09:15:24.774Z
|
|
495
495
|
</div>
|
|
496
496
|
<script src="prettify.js"></script>
|
|
497
497
|
<script>
|