@kalisio/kdk 2.0.1 → 2.1.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/.codeclimate.yml +0 -1
- package/.travis.test.sh +3 -0
- package/core/api/application.js +13 -9
- package/core/api/db.js +34 -30
- package/core/api/hooks/hooks.authentication.js +11 -0
- package/core/api/hooks/hooks.authorisations.js +7 -3
- package/core/api/hooks/hooks.model.js +32 -43
- package/core/api/hooks/hooks.organisations.js +26 -116
- package/core/api/hooks/{hooks.devices.js → hooks.push.js} +22 -10
- package/core/api/hooks/hooks.query.js +0 -5
- package/core/api/hooks/hooks.schemas.js +23 -3
- package/core/api/hooks/hooks.users.js +15 -22
- package/core/api/hooks/index.js +1 -4
- package/core/api/services/account/account.hooks.js +3 -3
- package/core/api/services/account/account.service.js +5 -6
- package/core/api/services/groups/groups.hooks.js +2 -4
- package/core/api/services/index.js +11 -16
- package/core/api/services/{devices/devices.hooks.js → push/push.hooks.js} +5 -5
- package/core/api/services/push/push.service.js +12 -0
- package/core/api/services/tags/tags.hooks.js +6 -20
- package/core/api/services/users/users.hooks.js +12 -13
- package/core/api/utils.js +11 -0
- package/core/client/api.js +6 -0
- package/core/client/capabilities.js +8 -12
- package/core/client/components/KAction.vue +10 -3
- package/core/client/components/KAvatar.vue +31 -35
- package/core/client/components/KChipsPane.vue +23 -0
- package/core/client/components/account/KAccount.vue +68 -0
- package/core/client/components/account/KDeleteAccountManager.vue +62 -0
- package/core/client/components/account/KEmailManager.vue +128 -0
- package/core/client/components/account/KPasswordManager.vue +90 -0
- package/core/client/components/account/KProfile.vue +109 -0
- package/core/client/components/account/KResetPassword.vue +100 -111
- package/core/client/components/account/KSendResetPassword.vue +71 -87
- package/core/client/components/account/KSubscription.vue +71 -0
- package/core/client/components/account/KSubscriptionsManager.vue +46 -0
- package/core/client/components/account/KVerifyEmailManager.vue +105 -0
- package/core/client/components/account/index.js +4 -2
- package/core/client/components/app/KAbout.vue +27 -14
- package/core/client/components/app/KPlatform.vue +2 -2
- package/core/client/components/app/KWelcome.vue +71 -45
- package/core/client/components/collection/KBoard.vue +50 -40
- package/core/client/components/collection/KCard.vue +16 -7
- package/core/client/components/collection/KColumn.vue +146 -111
- package/core/client/components/collection/KGrid.vue +77 -58
- package/core/client/components/collection/KHistory.vue +19 -3
- package/core/client/components/collection/KItem.vue +5 -1
- package/core/client/components/collection/KList.vue +80 -56
- package/core/client/components/collection/KTable.vue +181 -142
- package/core/client/components/editor/KEditor.vue +10 -3
- package/core/client/components/form/KFileField.vue +22 -8
- package/core/client/components/form/KForm.vue +27 -14
- package/core/client/components/form/KItemField.vue +2 -2
- package/core/client/components/form/KOptionsField.vue +11 -2
- package/core/client/components/form/KSelectField.vue +12 -3
- package/core/client/components/form/KTextField.vue +6 -0
- package/core/client/components/form/KTokenField.vue +80 -0
- package/core/client/components/layout/KOpener.vue +8 -8
- package/core/client/components/layout/KPage.vue +8 -4
- package/core/client/components/layout/KWindow.vue +172 -141
- package/core/client/components/media/KMediaBrowser.vue +28 -12
- package/core/client/components/media/KShape.vue +58 -56
- package/core/client/components/menu/KMenu.vue +22 -13
- package/core/client/components/menu/KRadialFab.vue +83 -56
- package/core/client/components/menu/KRadialFabItem.vue +39 -19
- package/core/client/components/screen/KLoginScreen.vue +0 -17
- package/core/client/components/screen/KScreen.vue +3 -3
- package/core/client/components/screen/KScreenFooter.vue +0 -3
- package/core/client/components/team/KAddMember.vue +1 -1
- package/core/client/components/team/KAddTag.vue +121 -0
- package/core/client/components/team/KMemberCard.vue +42 -13
- package/core/client/components/team/KMembersActivity.vue +9 -3
- package/core/client/components/team/KTagCard.vue +16 -1
- package/core/client/composables/collection.js +181 -0
- package/core/client/composables/index.js +2 -0
- package/core/client/composables/pwa.js +71 -0
- package/core/client/composables/session.js +6 -9
- package/core/client/composables/version.js +1 -22
- package/core/client/i18n/core_en.json +124 -153
- package/core/client/i18n/core_fr.json +124 -155
- package/core/client/index.js +37 -110
- package/core/client/layout.js +37 -14
- package/core/client/local-storage.js +4 -3
- package/core/client/mixins/mixin.account.js +9 -5
- package/core/client/mixins/mixin.base-editor.js +19 -3
- package/core/client/mixins/mixin.base-item.js +3 -3
- package/core/client/mixins/mixin.base-viewer.js +14 -0
- package/core/client/mixins/mixin.object-proxy.js +2 -21
- package/core/client/services/index.js +0 -1
- package/core/client/storage.js +19 -16
- package/core/client/theme.js +11 -5
- package/core/client/utils/index.js +5 -13
- package/core/client/utils/utils.account.js +47 -0
- package/core/client/utils/utils.colors.js +6 -2
- package/core/client/utils/utils.content.js +7 -5
- package/core/client/utils/utils.platform.js +1 -20
- package/core/client/utils/utils.push.js +53 -0
- package/core/client/utils/utils.pwa.js +63 -0
- package/core/client/utils/utils.session.js +27 -12
- package/core/common/permissions.js +12 -4
- package/core/common/schemas/tags.create.json +35 -0
- package/core/common/schemas/users.update-profile.json +1 -1
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/core/api/application.js.html +1849 -0
- package/coverage/core/api/authentication.js.html +694 -0
- package/coverage/core/api/db.js.html +763 -0
- package/coverage/core/api/hooks/hooks.account.js.html +169 -0
- package/coverage/core/api/hooks/hooks.authentication.js.html +274 -0
- package/coverage/core/api/hooks/hooks.authorisations.js.html +1213 -0
- package/coverage/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/core/api/hooks/hooks.model.js.html +994 -0
- package/coverage/core/api/hooks/hooks.organisations.js.html +553 -0
- package/coverage/core/api/hooks/hooks.push.js.html +232 -0
- package/coverage/core/api/hooks/hooks.query.js.html +838 -0
- package/coverage/core/api/hooks/hooks.schemas.js.html +304 -0
- package/coverage/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/core/api/hooks/hooks.tags.js.html +850 -0
- package/coverage/core/api/hooks/hooks.users.js.html +826 -0
- package/coverage/core/api/hooks/index.html +296 -0
- package/coverage/core/api/hooks/index.js.html +121 -0
- package/coverage/core/api/index.html +191 -0
- package/coverage/core/api/index.js.html +148 -0
- package/coverage/core/api/marshall.js.html +355 -0
- package/coverage/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/core/api/models/index.html +161 -0
- package/coverage/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/core/api/services/account/account.hooks.js.html +196 -0
- package/coverage/core/api/services/account/account.service.js.html +445 -0
- package/coverage/core/api/services/account/index.html +131 -0
- package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/core/api/services/authorisations/authorisations.service.js.html +502 -0
- package/coverage/core/api/services/authorisations/index.html +131 -0
- package/coverage/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/core/api/services/databases/index.html +131 -0
- package/coverage/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/core/api/services/groups/index.html +116 -0
- package/coverage/core/api/services/index.html +116 -0
- package/coverage/core/api/services/index.js.html +475 -0
- package/coverage/core/api/services/mailer/index.html +131 -0
- package/coverage/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/core/api/services/organisations/index.html +131 -0
- package/coverage/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/core/api/services/push/index.html +131 -0
- package/coverage/core/api/services/push/push.hooks.js.html +193 -0
- package/coverage/core/api/services/push/push.service.js.html +121 -0
- package/coverage/core/api/services/storage/index.html +131 -0
- package/coverage/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/core/api/services/tags/index.html +116 -0
- package/coverage/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/core/api/services/users/index.html +116 -0
- package/coverage/core/api/services/users/users.hooks.js.html +313 -0
- package/coverage/core/api/utils.js.html +118 -0
- package/coverage/core/common/errors.js.html +88 -0
- package/coverage/core/common/index.html +176 -0
- package/coverage/core/common/index.js.html +115 -0
- package/coverage/core/common/permissions.js.html +1039 -0
- package/coverage/core/common/schema.js.html +190 -0
- package/coverage/core/common/utils.js.html +220 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +476 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/core/api/application.js.html +1849 -0
- package/coverage/lcov-report/core/api/authentication.js.html +694 -0
- package/coverage/lcov-report/core/api/db.js.html +763 -0
- package/coverage/lcov-report/core/api/hooks/hooks.account.js.html +169 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +274 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +1213 -0
- package/coverage/lcov-report/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +994 -0
- package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +553 -0
- package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +232 -0
- package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +838 -0
- package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +304 -0
- package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/lcov-report/core/api/hooks/hooks.tags.js.html +850 -0
- package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +826 -0
- package/coverage/lcov-report/core/api/hooks/index.html +296 -0
- package/coverage/lcov-report/core/api/hooks/index.js.html +121 -0
- package/coverage/lcov-report/core/api/index.html +191 -0
- package/coverage/lcov-report/core/api/index.js.html +148 -0
- package/coverage/lcov-report/core/api/marshall.js.html +355 -0
- package/coverage/lcov-report/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/lcov-report/core/api/models/index.html +161 -0
- package/coverage/lcov-report/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +196 -0
- package/coverage/lcov-report/core/api/services/account/account.service.js.html +445 -0
- package/coverage/lcov-report/core/api/services/account/index.html +131 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +502 -0
- package/coverage/lcov-report/core/api/services/authorisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/lcov-report/core/api/services/databases/index.html +131 -0
- package/coverage/lcov-report/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/groups/index.html +116 -0
- package/coverage/lcov-report/core/api/services/index.html +116 -0
- package/coverage/lcov-report/core/api/services/index.js.html +475 -0
- package/coverage/lcov-report/core/api/services/mailer/index.html +131 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/lcov-report/core/api/services/organisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/lcov-report/core/api/services/push/index.html +131 -0
- package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +193 -0
- package/coverage/lcov-report/core/api/services/push/push.service.js.html +121 -0
- package/coverage/lcov-report/core/api/services/storage/index.html +131 -0
- package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/lcov-report/core/api/services/tags/index.html +116 -0
- package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/users/index.html +116 -0
- package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +313 -0
- package/coverage/lcov-report/core/api/utils.js.html +118 -0
- package/coverage/lcov-report/core/common/errors.js.html +88 -0
- package/coverage/lcov-report/core/common/index.html +176 -0
- package/coverage/lcov-report/core/common/index.js.html +115 -0
- package/coverage/lcov-report/core/common/permissions.js.html +1039 -0
- package/coverage/lcov-report/core/common/schema.js.html +190 -0
- package/coverage/lcov-report/core/common/utils.js.html +220 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +476 -0
- package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +340 -0
- package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +337 -0
- package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +1168 -0
- package/coverage/lcov-report/map/api/hooks/index.html +161 -0
- package/coverage/lcov-report/map/api/hooks/index.js.html +94 -0
- package/coverage/lcov-report/map/api/index.html +131 -0
- package/coverage/lcov-report/map/api/index.js.html +139 -0
- package/coverage/lcov-report/map/api/marshall.js.html +178 -0
- package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/lcov-report/map/api/models/index.html +146 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/lcov-report/map/api/services/alerts/index.html +131 -0
- package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +313 -0
- package/coverage/lcov-report/map/api/services/catalog/index.html +116 -0
- package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/lcov-report/map/api/services/daptiles/index.html +116 -0
- package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +205 -0
- package/coverage/lcov-report/map/api/services/features/features.service.js.html +241 -0
- package/coverage/lcov-report/map/api/services/features/index.html +131 -0
- package/coverage/lcov-report/map/api/services/geocoder/geocoder.hooks.js.html +178 -0
- package/coverage/lcov-report/map/api/services/geocoder/geocoder.service.js.html +322 -0
- package/coverage/lcov-report/map/api/services/geocoder/index.html +131 -0
- package/coverage/lcov-report/map/api/services/index.html +116 -0
- package/coverage/lcov-report/map/api/services/index.js.html +769 -0
- package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/lcov-report/map/common/errors.js.html +94 -0
- package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +535 -0
- package/coverage/lcov-report/map/common/grid.js.html +1612 -0
- package/coverage/lcov-report/map/common/index.html +371 -0
- package/coverage/lcov-report/map/common/index.js.html +172 -0
- package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/lcov-report/map/common/moment-utils.js.html +157 -0
- package/coverage/lcov-report/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/lcov-report/map/common/opendap-utils.js.html +826 -0
- package/coverage/lcov-report/map/common/permissions.js.html +118 -0
- package/coverage/lcov-report/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/lcov-report/map/common/tms-utils.js.html +274 -0
- package/coverage/lcov-report/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/lcov-report/map/common/wcs-utils.js.html +586 -0
- package/coverage/lcov-report/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/lcov-report/map/common/wfs-utils.js.html +574 -0
- package/coverage/lcov-report/map/common/wms-utils.js.html +436 -0
- package/coverage/lcov-report/map/common/wmts-utils.js.html +547 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +10742 -0
- package/coverage/map/api/hooks/hooks.catalog.js.html +340 -0
- package/coverage/map/api/hooks/hooks.features.js.html +337 -0
- package/coverage/map/api/hooks/hooks.query.js.html +1168 -0
- package/coverage/map/api/hooks/index.html +161 -0
- package/coverage/map/api/hooks/index.js.html +94 -0
- package/coverage/map/api/index.html +131 -0
- package/coverage/map/api/index.js.html +139 -0
- package/coverage/map/api/marshall.js.html +178 -0
- package/coverage/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/map/api/models/index.html +146 -0
- package/coverage/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/map/api/services/alerts/index.html +131 -0
- package/coverage/map/api/services/catalog/catalog.hooks.js.html +313 -0
- package/coverage/map/api/services/catalog/index.html +116 -0
- package/coverage/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/map/api/services/daptiles/index.html +116 -0
- package/coverage/map/api/services/features/features.hooks.js.html +205 -0
- package/coverage/map/api/services/features/features.service.js.html +241 -0
- package/coverage/map/api/services/features/index.html +131 -0
- package/coverage/map/api/services/geocoder/geocoder.hooks.js.html +178 -0
- package/coverage/map/api/services/geocoder/geocoder.service.js.html +322 -0
- package/coverage/map/api/services/geocoder/index.html +131 -0
- package/coverage/map/api/services/index.html +116 -0
- package/coverage/map/api/services/index.js.html +769 -0
- package/coverage/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/map/common/errors.js.html +94 -0
- package/coverage/map/common/geotiff-grid-source.js.html +535 -0
- package/coverage/map/common/grid.js.html +1612 -0
- package/coverage/map/common/index.html +371 -0
- package/coverage/map/common/index.js.html +172 -0
- package/coverage/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/map/common/moment-utils.js.html +157 -0
- package/coverage/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/map/common/opendap-utils.js.html +826 -0
- package/coverage/map/common/permissions.js.html +118 -0
- package/coverage/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/map/common/tms-utils.js.html +274 -0
- package/coverage/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/map/common/wcs-utils.js.html +586 -0
- package/coverage/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/map/common/wfs-utils.js.html +574 -0
- package/coverage/map/common/wms-utils.js.html +436 -0
- package/coverage/map/common/wmts-utils.js.html +547 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/coverage/tmp/coverage-59096-1692631696256-0.json +1 -0
- package/coverage/tmp/coverage-59108-1692631696233-0.json +1 -0
- package/coverage/tmp/coverage-59119-1692631696222-0.json +1 -0
- package/coverage/tmp/coverage-59131-1692631696200-0.json +1 -0
- package/coverage/tmp/coverage-59138-1692631696175-0.json +1 -0
- package/extras/css/core.variables.scss +5 -1
- package/extras/tours/core/account-profile.js +14 -31
- package/extras/tours/core/account.js +143 -0
- package/extras/tours/core/add-member.js +7 -6
- package/extras/tours/core/add-tag.js +13 -0
- package/extras/tours/core/create-tag.js +26 -0
- package/extras/tours/core/edit-member-role.js +13 -0
- package/extras/tours/core/join-group.js +0 -12
- package/extras/tours/core/login.js +0 -7
- package/extras/tours/core/members.js +13 -26
- package/extras/tours/core/send-reset-password.js +1 -1
- package/extras/tours/core/tags.js +17 -4
- package/extras/tours/map/navigation-bar.js +1 -1
- package/extras/tours/map/side-nav.js +3 -2
- package/map/api/hooks/hooks.query.js +5 -3
- package/map/client/cesium/utils.js +68 -0
- package/map/client/components/KFeatureActionButton.vue +27 -27
- package/map/client/components/KFeaturesChart.vue +1 -1
- package/map/client/components/KFeaturesTable.vue +2 -2
- package/map/client/components/KLayerEditionToolbar.vue +1 -0
- package/map/client/components/KPositionIndicator.vue +1 -1
- package/map/client/components/catalog/KViewSelector.vue +1 -2
- package/map/client/components/catalog/KViewsPanel.vue +17 -15
- package/map/client/components/form/KDirectionField.vue +0 -1
- package/map/client/components/form/KLocationField.vue +16 -29
- package/map/client/components/legend/KSymbolsLegend.vue +2 -1
- package/map/client/components/location/KLocationCardSection.vue +61 -0
- package/map/client/components/location/KLocationMap.vue +24 -13
- package/map/client/components/location/KLocationSearch.vue +144 -0
- package/map/client/components/location/KLocationTip.vue +29 -0
- package/map/client/components/tools/KGeolocateTool.vue +46 -0
- package/map/client/components/tools/KSearchTool.vue +93 -0
- package/map/client/components/widget/KElevationProfile.vue +2 -2
- package/map/client/components/widget/KInformationBox.vue +3 -3
- package/map/client/composables/location.js +35 -43
- package/map/client/geolocation.js +65 -8
- package/map/client/i18n/map_en.json +15 -13
- package/map/client/i18n/map_fr.json +15 -13
- package/map/client/init.js +10 -18
- package/map/client/leaflet/GradientPath.js +2 -1
- package/map/client/leaflet/utils.js +61 -0
- package/map/client/mixins/globe/mixin.base-globe.js +6 -5
- package/map/client/mixins/globe/mixin.popup.js +3 -0
- package/map/client/mixins/globe/mixin.style.js +9 -64
- package/map/client/mixins/globe/mixin.tooltip.js +3 -0
- package/map/client/mixins/index.js +0 -1
- package/map/client/mixins/map/mixin.base-map.js +13 -9
- package/map/client/mixins/map/mixin.edit-layers.js +82 -15
- package/map/client/mixins/map/mixin.geojson-layers.js +8 -1
- package/map/client/mixins/map/mixin.style.js +8 -56
- package/map/client/mixins/mixin.activity.js +20 -12
- package/map/client/mixins/mixin.feature-service.js +34 -1
- package/map/client/readers/reader.geojson.js +1 -1
- package/map/client/utils/utils.location.js +45 -0
- package/package.json +13 -14
- package/test/api/core/account.test.js +112 -126
- package/test/api/core/config/default.cjs +7 -11
- package/test/api/core/config/email-templates/confirmInvitation/html.ejs +1 -1
- package/test/api/core/config/email-templates/identityChange/html.ejs +6 -4
- package/test/api/core/config/email-templates/newDevice/html.ejs +1 -1
- package/test/api/core/config/email-templates/newSubscription/html.ejs +7 -0
- package/test/api/core/config/email-templates/passwordChange/html.ejs +1 -1
- package/test/api/core/config/email-templates/resendVerifySignup/html.ejs +6 -4
- package/test/api/core/config/email-templates/resetPwd/html.ejs +1 -1
- package/test/api/core/config/email-templates/sendResetPwd/html.ejs +8 -4
- package/test/api/core/hooks.test.js +166 -18
- package/test/api/core/index.test.js +32 -70
- package/test/api/core/push.test.js +191 -0
- package/test/api/core/team.test.js +38 -32
- package/test/api/core/test-log-2023-07-04.log +0 -0
- package/test/api/core/test-log-2023-07-10.log +2 -0
- package/test/api/core/test-log-2023-07-12.log +0 -0
- package/test/api/core/test-log-2023-07-18.log +78 -0
- package/test/api/core/test-log-2023-07-19.log +44 -0
- package/test/api/core/test-log-2023-08-01.log +162 -0
- package/test/api/core/test-log-2023-08-21.log +66 -0
- package/test/api/core/test-log-2023-08-22.log +96 -0
- package/test/api/core/test-log-2023-08-23.log +22 -0
- package/test/api/core/test-log-2023-09-20.log +22 -0
- package/test/api/map/alerts.test.js +1 -1
- package/test/api/map/test-log-2023-07-18.log +62 -0
- package/test/api/map/test-log-2023-07-19.log +13 -0
- package/test/api/map/test-log-2023-08-21.log +65 -0
- package/test/api/map/test-log-2023-09-20.log +60 -0
- package/test/client/core/account.js +15 -32
- package/test/client/core/api.js +99 -44
- package/test/client/core/layout.js +4 -0
- package/test/client/core/runner.js +66 -14
- package/test/client/core/time.js +1 -1
- package/test/client/map/controls.js +17 -3
- package/core/api/hooks/hooks.account.js +0 -28
- package/core/api/hooks/hooks.pusher.js +0 -215
- package/core/api/hooks/hooks.tags.js +0 -255
- package/core/api/services/devices/devices.service.js +0 -99
- package/core/api/services/pusher/pusher.channels.js +0 -3
- package/core/api/services/pusher/pusher.hooks.js +0 -36
- package/core/api/services/pusher/pusher.service.js +0 -449
- package/core/client/components/KInstallApp.vue +0 -43
- package/core/client/components/account/KAccountActivity.vue +0 -58
- package/core/client/components/account/KAccountDZ.vue +0 -66
- package/core/client/components/account/KAccountDevices.vue +0 -56
- package/core/client/components/account/KAccountSecurity.vue +0 -87
- package/core/client/components/account/KChangeIdentity.vue +0 -102
- package/core/client/components/account/KChangePassword.vue +0 -132
- package/core/client/components/account/KDeviceCard.vue +0 -75
- package/core/client/components/account/KIdentityPanel.vue +0 -34
- package/core/client/components/account/KResendVerifySignup.vue +0 -108
- package/core/client/components/account/KSendChangeIdentity.vue +0 -115
- package/core/client/components/account/KSignupAlert.vue +0 -63
- package/core/client/components/account/KVerifySignup.vue +0 -102
- package/core/client/components/form/KTagField.vue +0 -148
- package/core/common/schemas/members.update.json +0 -18
- package/extras/tours/core/account-dz.js +0 -37
- package/extras/tours/core/account-security.js +0 -52
- package/extras/tours/core/change-password.js +0 -34
- package/extras/tours/core/edit-member-tags.js +0 -18
- package/extras/tours/core/send-change-identity.js +0 -28
- package/map/client/components/KLocateUser.vue +0 -36
- package/map/client/components/KLocationInput.vue +0 -217
- package/map/client/components/KLocationMap.vue +0 -301
- package/map/client/components/KSearchLocation.vue +0 -88
- package/map/client/components/input/KPlaceChooser.vue +0 -78
- package/map/client/components/location/KLocation.vue +0 -24
- package/map/client/mixins/mixin.navigator.js +0 -36
- package/test/api/core/notifications.test.js +0 -502
|
@@ -0,0 +1,476 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<title>Code coverage report for All files</title>
|
|
7
|
+
<meta charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="prettify.css" />
|
|
9
|
+
<link rel="stylesheet" href="base.css" />
|
|
10
|
+
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
|
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
12
|
+
<style type='text/css'>
|
|
13
|
+
.coverage-summary .sorter {
|
|
14
|
+
background-image: url(sort-arrow-sprite.png);
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<div class='wrapper'>
|
|
21
|
+
<div class='pad1'>
|
|
22
|
+
<h1>All files</h1>
|
|
23
|
+
<div class='clearfix'>
|
|
24
|
+
|
|
25
|
+
<div class='fl pad1y space-right2'>
|
|
26
|
+
<span class="strong">38.63% </span>
|
|
27
|
+
<span class="quiet">Statements</span>
|
|
28
|
+
<span class='fraction'>3388/8770</span>
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class='fl pad1y space-right2'>
|
|
33
|
+
<span class="strong">68.04% </span>
|
|
34
|
+
<span class="quiet">Branches</span>
|
|
35
|
+
<span class='fraction'>509/748</span>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<div class='fl pad1y space-right2'>
|
|
40
|
+
<span class="strong">58.43% </span>
|
|
41
|
+
<span class="quiet">Functions</span>
|
|
42
|
+
<span class='fraction'>142/243</span>
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div class='fl pad1y space-right2'>
|
|
47
|
+
<span class="strong">38.63% </span>
|
|
48
|
+
<span class="quiet">Lines</span>
|
|
49
|
+
<span class='fraction'>3388/8770</span>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<p class="quiet">
|
|
55
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
56
|
+
</p>
|
|
57
|
+
<template id="filterTemplate">
|
|
58
|
+
<div class="quiet">
|
|
59
|
+
Filter:
|
|
60
|
+
<input oninput="onInput()" type="search" id="fileSearch">
|
|
61
|
+
</div>
|
|
62
|
+
</template>
|
|
63
|
+
</div>
|
|
64
|
+
<div class='status-line low'></div>
|
|
65
|
+
<div class="pad1">
|
|
66
|
+
<table class="coverage-summary">
|
|
67
|
+
<thead>
|
|
68
|
+
<tr>
|
|
69
|
+
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
|
|
70
|
+
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
|
|
71
|
+
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
|
|
72
|
+
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
73
|
+
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
|
|
74
|
+
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
75
|
+
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
|
|
76
|
+
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
77
|
+
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
|
|
78
|
+
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
79
|
+
</tr>
|
|
80
|
+
</thead>
|
|
81
|
+
<tbody><tr>
|
|
82
|
+
<td class="file medium" data-value="core/api"><a href="core/api/index.html">core/api</a></td>
|
|
83
|
+
<td data-value="71.9" class="pic medium">
|
|
84
|
+
<div class="chart"><div class="cover-fill" style="width: 71%"></div><div class="cover-empty" style="width: 29%"></div></div>
|
|
85
|
+
</td>
|
|
86
|
+
<td data-value="71.9" class="pct medium">71.9%</td>
|
|
87
|
+
<td data-value="1139" class="abs medium">819/1139</td>
|
|
88
|
+
<td data-value="66.66" class="pct medium">66.66%</td>
|
|
89
|
+
<td data-value="186" class="abs medium">124/186</td>
|
|
90
|
+
<td data-value="70" class="pct medium">70%</td>
|
|
91
|
+
<td data-value="70" class="abs medium">49/70</td>
|
|
92
|
+
<td data-value="71.9" class="pct medium">71.9%</td>
|
|
93
|
+
<td data-value="1139" class="abs medium">819/1139</td>
|
|
94
|
+
</tr>
|
|
95
|
+
|
|
96
|
+
<tr>
|
|
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="77.16" class="pic medium">
|
|
99
|
+
<div class="chart"><div class="cover-fill" style="width: 77%"></div><div class="cover-empty" style="width: 23%"></div></div>
|
|
100
|
+
</td>
|
|
101
|
+
<td data-value="77.16" class="pct medium">77.16%</td>
|
|
102
|
+
<td data-value="1717" class="abs medium">1325/1717</td>
|
|
103
|
+
<td data-value="67.42" class="pct medium">67.42%</td>
|
|
104
|
+
<td data-value="350" class="abs medium">236/350</td>
|
|
105
|
+
<td data-value="71.21" class="pct medium">71.21%</td>
|
|
106
|
+
<td data-value="66" class="abs medium">47/66</td>
|
|
107
|
+
<td data-value="77.16" class="pct medium">77.16%</td>
|
|
108
|
+
<td data-value="1717" class="abs medium">1325/1717</td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
111
|
+
<tr>
|
|
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="100" class="pic high">
|
|
114
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
115
|
+
</td>
|
|
116
|
+
<td data-value="100" class="pct high">100%</td>
|
|
117
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
118
|
+
<td data-value="90" class="pct high">90%</td>
|
|
119
|
+
<td data-value="10" class="abs high">9/10</td>
|
|
120
|
+
<td data-value="100" class="pct high">100%</td>
|
|
121
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
122
|
+
<td data-value="100" class="pct high">100%</td>
|
|
123
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
124
|
+
</tr>
|
|
125
|
+
|
|
126
|
+
<tr>
|
|
127
|
+
<td class="file high" data-value="core/api/services"><a href="core/api/services/index.html">core/api/services</a></td>
|
|
128
|
+
<td data-value="93.84" class="pic high">
|
|
129
|
+
<div class="chart"><div class="cover-fill" style="width: 93%"></div><div class="cover-empty" style="width: 7%"></div></div>
|
|
130
|
+
</td>
|
|
131
|
+
<td data-value="93.84" class="pct high">93.84%</td>
|
|
132
|
+
<td data-value="130" class="abs high">122/130</td>
|
|
133
|
+
<td data-value="86.66" class="pct high">86.66%</td>
|
|
134
|
+
<td data-value="15" class="abs high">13/15</td>
|
|
135
|
+
<td data-value="87.5" class="pct high">87.5%</td>
|
|
136
|
+
<td data-value="8" class="abs high">7/8</td>
|
|
137
|
+
<td data-value="93.84" class="pct high">93.84%</td>
|
|
138
|
+
<td data-value="130" class="abs high">122/130</td>
|
|
139
|
+
</tr>
|
|
140
|
+
|
|
141
|
+
<tr>
|
|
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="85.98" class="pic high">
|
|
144
|
+
<div class="chart"><div class="cover-fill" style="width: 85%"></div><div class="cover-empty" style="width: 15%"></div></div>
|
|
145
|
+
</td>
|
|
146
|
+
<td data-value="85.98" class="pct high">85.98%</td>
|
|
147
|
+
<td data-value="157" class="abs high">135/157</td>
|
|
148
|
+
<td data-value="75" class="pct medium">75%</td>
|
|
149
|
+
<td data-value="20" class="abs medium">15/20</td>
|
|
150
|
+
<td data-value="100" class="pct high">100%</td>
|
|
151
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
152
|
+
<td data-value="85.98" class="pct high">85.98%</td>
|
|
153
|
+
<td data-value="157" class="abs high">135/157</td>
|
|
154
|
+
</tr>
|
|
155
|
+
|
|
156
|
+
<tr>
|
|
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="98.83" class="pic high">
|
|
159
|
+
<div class="chart"><div class="cover-fill" style="width: 98%"></div><div class="cover-empty" style="width: 2%"></div></div>
|
|
160
|
+
</td>
|
|
161
|
+
<td data-value="98.83" class="pct high">98.83%</td>
|
|
162
|
+
<td data-value="172" class="abs high">170/172</td>
|
|
163
|
+
<td data-value="86.48" class="pct high">86.48%</td>
|
|
164
|
+
<td data-value="37" class="abs high">32/37</td>
|
|
165
|
+
<td data-value="100" class="pct high">100%</td>
|
|
166
|
+
<td data-value="5" class="abs high">5/5</td>
|
|
167
|
+
<td data-value="98.83" class="pct high">98.83%</td>
|
|
168
|
+
<td data-value="172" class="abs high">170/172</td>
|
|
169
|
+
</tr>
|
|
170
|
+
|
|
171
|
+
<tr>
|
|
172
|
+
<td class="file high" data-value="core/api/services/databases"><a href="core/api/services/databases/index.html">core/api/services/databases</a></td>
|
|
173
|
+
<td data-value="100" class="pic high">
|
|
174
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
175
|
+
</td>
|
|
176
|
+
<td data-value="100" class="pct high">100%</td>
|
|
177
|
+
<td data-value="41" class="abs high">41/41</td>
|
|
178
|
+
<td data-value="100" class="pct high">100%</td>
|
|
179
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
180
|
+
<td data-value="100" class="pct high">100%</td>
|
|
181
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
182
|
+
<td data-value="100" class="pct high">100%</td>
|
|
183
|
+
<td data-value="41" class="abs high">41/41</td>
|
|
184
|
+
</tr>
|
|
185
|
+
|
|
186
|
+
<tr>
|
|
187
|
+
<td class="file high" data-value="core/api/services/groups"><a href="core/api/services/groups/index.html">core/api/services/groups</a></td>
|
|
188
|
+
<td data-value="100" class="pic high">
|
|
189
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
190
|
+
</td>
|
|
191
|
+
<td data-value="100" class="pct high">100%</td>
|
|
192
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
193
|
+
<td data-value="100" class="pct high">100%</td>
|
|
194
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
195
|
+
<td data-value="100" class="pct high">100%</td>
|
|
196
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
197
|
+
<td data-value="100" class="pct high">100%</td>
|
|
198
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
199
|
+
</tr>
|
|
200
|
+
|
|
201
|
+
<tr>
|
|
202
|
+
<td class="file high" data-value="core/api/services/mailer"><a href="core/api/services/mailer/index.html">core/api/services/mailer</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>
|
|
205
|
+
</td>
|
|
206
|
+
<td data-value="100" class="pct high">100%</td>
|
|
207
|
+
<td data-value="46" class="abs high">46/46</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="46" class="abs high">46/46</td>
|
|
214
|
+
</tr>
|
|
215
|
+
|
|
216
|
+
<tr>
|
|
217
|
+
<td class="file high" data-value="core/api/services/organisations"><a href="core/api/services/organisations/index.html">core/api/services/organisations</a></td>
|
|
218
|
+
<td data-value="83.76" class="pic high">
|
|
219
|
+
<div class="chart"><div class="cover-fill" style="width: 83%"></div><div class="cover-empty" style="width: 17%"></div></div>
|
|
220
|
+
</td>
|
|
221
|
+
<td data-value="83.76" class="pct high">83.76%</td>
|
|
222
|
+
<td data-value="117" class="abs high">98/117</td>
|
|
223
|
+
<td data-value="71.42" class="pct medium">71.42%</td>
|
|
224
|
+
<td data-value="7" class="abs medium">5/7</td>
|
|
225
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
226
|
+
<td data-value="6" class="abs medium">3/6</td>
|
|
227
|
+
<td data-value="83.76" class="pct high">83.76%</td>
|
|
228
|
+
<td data-value="117" class="abs high">98/117</td>
|
|
229
|
+
</tr>
|
|
230
|
+
|
|
231
|
+
<tr>
|
|
232
|
+
<td class="file high" data-value="core/api/services/push"><a href="core/api/services/push/index.html">core/api/services/push</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>
|
|
235
|
+
</td>
|
|
236
|
+
<td data-value="100" class="pct high">100%</td>
|
|
237
|
+
<td data-value="48" class="abs high">48/48</td>
|
|
238
|
+
<td data-value="100" class="pct high">100%</td>
|
|
239
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
240
|
+
<td data-value="100" class="pct high">100%</td>
|
|
241
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
242
|
+
<td data-value="100" class="pct high">100%</td>
|
|
243
|
+
<td data-value="48" class="abs high">48/48</td>
|
|
244
|
+
</tr>
|
|
245
|
+
|
|
246
|
+
<tr>
|
|
247
|
+
<td class="file high" data-value="core/api/services/storage"><a href="core/api/services/storage/index.html">core/api/services/storage</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>
|
|
250
|
+
</td>
|
|
251
|
+
<td data-value="100" class="pct high">100%</td>
|
|
252
|
+
<td data-value="64" class="abs high">64/64</td>
|
|
253
|
+
<td data-value="75" class="pct medium">75%</td>
|
|
254
|
+
<td data-value="8" class="abs medium">6/8</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="64" class="abs high">64/64</td>
|
|
259
|
+
</tr>
|
|
260
|
+
|
|
261
|
+
<tr>
|
|
262
|
+
<td class="file high" data-value="core/api/services/tags"><a href="core/api/services/tags/index.html">core/api/services/tags</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>
|
|
265
|
+
</td>
|
|
266
|
+
<td data-value="100" class="pct high">100%</td>
|
|
267
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
268
|
+
<td data-value="100" class="pct high">100%</td>
|
|
269
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
270
|
+
<td data-value="100" class="pct high">100%</td>
|
|
271
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
272
|
+
<td data-value="100" class="pct high">100%</td>
|
|
273
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
274
|
+
</tr>
|
|
275
|
+
|
|
276
|
+
<tr>
|
|
277
|
+
<td class="file high" data-value="core/api/services/users"><a href="core/api/services/users/index.html">core/api/services/users</a></td>
|
|
278
|
+
<td data-value="100" class="pic high">
|
|
279
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
280
|
+
</td>
|
|
281
|
+
<td data-value="100" class="pct high">100%</td>
|
|
282
|
+
<td data-value="76" class="abs high">76/76</td>
|
|
283
|
+
<td data-value="100" class="pct high">100%</td>
|
|
284
|
+
<td data-value="6" class="abs high">6/6</td>
|
|
285
|
+
<td data-value="75" class="pct medium">75%</td>
|
|
286
|
+
<td data-value="4" class="abs medium">3/4</td>
|
|
287
|
+
<td data-value="100" class="pct high">100%</td>
|
|
288
|
+
<td data-value="76" class="abs high">76/76</td>
|
|
289
|
+
</tr>
|
|
290
|
+
|
|
291
|
+
<tr>
|
|
292
|
+
<td class="file high" data-value="core/common"><a href="core/common/index.html">core/common</a></td>
|
|
293
|
+
<td data-value="85.81" class="pic high">
|
|
294
|
+
<div class="chart"><div class="cover-fill" style="width: 85%"></div><div class="cover-empty" style="width: 15%"></div></div>
|
|
295
|
+
</td>
|
|
296
|
+
<td data-value="85.81" class="pct high">85.81%</td>
|
|
297
|
+
<td data-value="409" class="abs high">351/409</td>
|
|
298
|
+
<td data-value="83.87" class="pct high">83.87%</td>
|
|
299
|
+
<td data-value="62" class="abs high">52/62</td>
|
|
300
|
+
<td data-value="45.94" class="pct low">45.94%</td>
|
|
301
|
+
<td data-value="37" class="abs low">17/37</td>
|
|
302
|
+
<td data-value="85.81" class="pct high">85.81%</td>
|
|
303
|
+
<td data-value="409" class="abs high">351/409</td>
|
|
304
|
+
</tr>
|
|
305
|
+
|
|
306
|
+
<tr>
|
|
307
|
+
<td class="file low" data-value="map/api"><a href="map/api/index.html">map/api</a></td>
|
|
308
|
+
<td data-value="0" class="pic low">
|
|
309
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
310
|
+
</td>
|
|
311
|
+
<td data-value="0" class="pct low">0%</td>
|
|
312
|
+
<td data-value="49" class="abs low">0/49</td>
|
|
313
|
+
<td data-value="0" class="pct low">0%</td>
|
|
314
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
315
|
+
<td data-value="0" class="pct low">0%</td>
|
|
316
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
317
|
+
<td data-value="0" class="pct low">0%</td>
|
|
318
|
+
<td data-value="49" class="abs low">0/49</td>
|
|
319
|
+
</tr>
|
|
320
|
+
|
|
321
|
+
<tr>
|
|
322
|
+
<td class="file low" data-value="map/api/hooks"><a href="map/api/hooks/index.html">map/api/hooks</a></td>
|
|
323
|
+
<td data-value="0" class="pic low">
|
|
324
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
325
|
+
</td>
|
|
326
|
+
<td data-value="0" class="pct low">0%</td>
|
|
327
|
+
<td data-value="533" class="abs low">0/533</td>
|
|
328
|
+
<td data-value="0" class="pct low">0%</td>
|
|
329
|
+
<td data-value="4" class="abs low">0/4</td>
|
|
330
|
+
<td data-value="0" class="pct low">0%</td>
|
|
331
|
+
<td data-value="4" class="abs low">0/4</td>
|
|
332
|
+
<td data-value="0" class="pct low">0%</td>
|
|
333
|
+
<td data-value="533" class="abs low">0/533</td>
|
|
334
|
+
</tr>
|
|
335
|
+
|
|
336
|
+
<tr>
|
|
337
|
+
<td class="file low" data-value="map/api/models"><a href="map/api/models/index.html">map/api/models</a></td>
|
|
338
|
+
<td data-value="0" class="pic low">
|
|
339
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
340
|
+
</td>
|
|
341
|
+
<td data-value="0" class="pct low">0%</td>
|
|
342
|
+
<td data-value="58" class="abs low">0/58</td>
|
|
343
|
+
<td data-value="0" class="pct low">0%</td>
|
|
344
|
+
<td data-value="3" class="abs low">0/3</td>
|
|
345
|
+
<td data-value="0" class="pct low">0%</td>
|
|
346
|
+
<td data-value="3" class="abs low">0/3</td>
|
|
347
|
+
<td data-value="0" class="pct low">0%</td>
|
|
348
|
+
<td data-value="58" class="abs low">0/58</td>
|
|
349
|
+
</tr>
|
|
350
|
+
|
|
351
|
+
<tr>
|
|
352
|
+
<td class="file low" data-value="map/api/services"><a href="map/api/services/index.html">map/api/services</a></td>
|
|
353
|
+
<td data-value="0" class="pic low">
|
|
354
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
355
|
+
</td>
|
|
356
|
+
<td data-value="0" class="pct low">0%</td>
|
|
357
|
+
<td data-value="228" class="abs low">0/228</td>
|
|
358
|
+
<td data-value="0" class="pct low">0%</td>
|
|
359
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
360
|
+
<td data-value="0" class="pct low">0%</td>
|
|
361
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
362
|
+
<td data-value="0" class="pct low">0%</td>
|
|
363
|
+
<td data-value="228" class="abs low">0/228</td>
|
|
364
|
+
</tr>
|
|
365
|
+
|
|
366
|
+
<tr>
|
|
367
|
+
<td class="file low" data-value="map/api/services/alerts"><a href="map/api/services/alerts/index.html">map/api/services/alerts</a></td>
|
|
368
|
+
<td data-value="0" class="pic low">
|
|
369
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
370
|
+
</td>
|
|
371
|
+
<td data-value="0" class="pct low">0%</td>
|
|
372
|
+
<td data-value="238" class="abs low">0/238</td>
|
|
373
|
+
<td data-value="0" class="pct low">0%</td>
|
|
374
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
375
|
+
<td data-value="0" class="pct low">0%</td>
|
|
376
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
377
|
+
<td data-value="0" class="pct low">0%</td>
|
|
378
|
+
<td data-value="238" class="abs low">0/238</td>
|
|
379
|
+
</tr>
|
|
380
|
+
|
|
381
|
+
<tr>
|
|
382
|
+
<td class="file low" data-value="map/api/services/catalog"><a href="map/api/services/catalog/index.html">map/api/services/catalog</a></td>
|
|
383
|
+
<td data-value="0" class="pic low">
|
|
384
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
385
|
+
</td>
|
|
386
|
+
<td data-value="0" class="pct low">0%</td>
|
|
387
|
+
<td data-value="76" class="abs low">0/76</td>
|
|
388
|
+
<td data-value="0" class="pct low">0%</td>
|
|
389
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
390
|
+
<td data-value="0" class="pct low">0%</td>
|
|
391
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
392
|
+
<td data-value="0" class="pct low">0%</td>
|
|
393
|
+
<td data-value="76" class="abs low">0/76</td>
|
|
394
|
+
</tr>
|
|
395
|
+
|
|
396
|
+
<tr>
|
|
397
|
+
<td class="file low" data-value="map/api/services/daptiles"><a href="map/api/services/daptiles/index.html">map/api/services/daptiles</a></td>
|
|
398
|
+
<td data-value="0" class="pic low">
|
|
399
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
400
|
+
</td>
|
|
401
|
+
<td data-value="0" class="pct low">0%</td>
|
|
402
|
+
<td data-value="475" class="abs low">0/475</td>
|
|
403
|
+
<td data-value="0" class="pct low">0%</td>
|
|
404
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
405
|
+
<td data-value="0" class="pct low">0%</td>
|
|
406
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
407
|
+
<td data-value="0" class="pct low">0%</td>
|
|
408
|
+
<td data-value="475" class="abs low">0/475</td>
|
|
409
|
+
</tr>
|
|
410
|
+
|
|
411
|
+
<tr>
|
|
412
|
+
<td class="file low" data-value="map/api/services/features"><a href="map/api/services/features/index.html">map/api/services/features</a></td>
|
|
413
|
+
<td data-value="0" class="pic low">
|
|
414
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
415
|
+
</td>
|
|
416
|
+
<td data-value="0" class="pct low">0%</td>
|
|
417
|
+
<td data-value="92" class="abs low">0/92</td>
|
|
418
|
+
<td data-value="0" class="pct low">0%</td>
|
|
419
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
420
|
+
<td data-value="0" class="pct low">0%</td>
|
|
421
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
422
|
+
<td data-value="0" class="pct low">0%</td>
|
|
423
|
+
<td data-value="92" class="abs low">0/92</td>
|
|
424
|
+
</tr>
|
|
425
|
+
|
|
426
|
+
<tr>
|
|
427
|
+
<td class="file low" data-value="map/api/services/geocoder"><a href="map/api/services/geocoder/index.html">map/api/services/geocoder</a></td>
|
|
428
|
+
<td data-value="0" class="pic low">
|
|
429
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
430
|
+
</td>
|
|
431
|
+
<td data-value="0" class="pct low">0%</td>
|
|
432
|
+
<td data-value="110" class="abs low">0/110</td>
|
|
433
|
+
<td data-value="0" class="pct low">0%</td>
|
|
434
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
435
|
+
<td data-value="0" class="pct low">0%</td>
|
|
436
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
437
|
+
<td data-value="0" class="pct low">0%</td>
|
|
438
|
+
<td data-value="110" class="abs low">0/110</td>
|
|
439
|
+
</tr>
|
|
440
|
+
|
|
441
|
+
<tr>
|
|
442
|
+
<td class="file low" data-value="map/common"><a href="map/common/index.html">map/common</a></td>
|
|
443
|
+
<td data-value="0" class="pic low">
|
|
444
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
445
|
+
</td>
|
|
446
|
+
<td data-value="0" class="pct low">0%</td>
|
|
447
|
+
<td data-value="2702" class="abs low">0/2702</td>
|
|
448
|
+
<td data-value="0" class="pct low">0%</td>
|
|
449
|
+
<td data-value="18" class="abs low">0/18</td>
|
|
450
|
+
<td data-value="0" class="pct low">0%</td>
|
|
451
|
+
<td data-value="18" class="abs low">0/18</td>
|
|
452
|
+
<td data-value="0" class="pct low">0%</td>
|
|
453
|
+
<td data-value="2702" class="abs low">0/2702</td>
|
|
454
|
+
</tr>
|
|
455
|
+
|
|
456
|
+
</tbody>
|
|
457
|
+
</table>
|
|
458
|
+
</div>
|
|
459
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
460
|
+
</div><!-- /wrapper -->
|
|
461
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
462
|
+
Code coverage generated by
|
|
463
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
464
|
+
at 2023-08-21T15:28:16.592Z
|
|
465
|
+
</div>
|
|
466
|
+
<script src="prettify.js"></script>
|
|
467
|
+
<script>
|
|
468
|
+
window.onload = function () {
|
|
469
|
+
prettyPrint();
|
|
470
|
+
};
|
|
471
|
+
</script>
|
|
472
|
+
<script src="sorter.js"></script>
|
|
473
|
+
<script src="block-navigation.js"></script>
|
|
474
|
+
</body>
|
|
475
|
+
</html>
|
|
476
|
+
|