From 9f9c5433655c188270319b647c85d5173a4d785f Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 1 Oct 2024 13:49:18 +0200 Subject: [PATCH] fix(core): Corrected typos and added missing keywords. --- changelog.md | 6 ++++ npmextra.json | 9 +++-- package.json | 11 ++++-- readme.md | 18 +++++----- ts/00_commitinfo_data.ts | 2 +- ts/ffb.plugins.ts | 14 -------- ts/index.ts | 19 ++++++++-- ts/{ffb.paths.ts => paths.ts} | 2 +- ts/{reception => }/plugins.ts | 28 +++++++-------- ts/reception/classes.apitoken.ts | 2 +- ts/reception/classes.apitokenmanager.ts | 2 +- ts/reception/classes.billingplan.ts | 2 +- ts/reception/classes.billingplanmanager.ts | 2 +- ts/reception/classes.housekeeping.ts | 2 +- ts/reception/classes.jwt.ts | 2 +- ts/reception/classes.jwtmanager.ts | 10 +++--- ts/reception/classes.loginsession.ts | 2 +- ts/reception/classes.loginsessionmanager.ts | 2 +- ts/reception/classes.organization.ts | 2 +- ts/reception/classes.organizationmanager.ts | 2 +- ts/reception/classes.reception.ts | 33 +++++++++++------ ts/reception/classes.receptiondb.ts | 12 +++---- ts/reception/classes.receptionmailer.ts | 2 +- ts/reception/classes.receptionserver.ts | 35 ------------------- ts/reception/classes.receptionstorage.ts | 2 +- ts/reception/classes.registrationsession.ts | 21 +++++------ .../classes.registrationsessionmanager.ts | 2 +- ts/reception/classes.role.ts | 2 +- ts/reception/classes.rolemanager.ts | 2 +- ts/reception/classes.user.ts | 2 +- ts/reception/classes.usermanager.ts | 2 +- ts/reception/index.ts | 13 ------- ts/reception/logging.ts | 13 ++----- ts/reception/paths.ts | 3 -- ts_web/00_commitinfo_data.ts | 2 +- 35 files changed, 123 insertions(+), 162 deletions(-) delete mode 100644 ts/ffb.plugins.ts rename ts/{ffb.paths.ts => paths.ts} (81%) rename ts/{reception => }/plugins.ts (77%) delete mode 100644 ts/reception/classes.receptionserver.ts delete mode 100644 ts/reception/paths.ts diff --git a/changelog.md b/changelog.md index 3e8ff10..cd3195b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2024-10-01 - 1.1.1 - fix(core) +Corrected typos and added missing keywords. + +- Added missing newline at the end of package.json. +- Revised various typos and added missing keywords. + ## 2024-09-29 - 1.1.0 - feat(web) Implement view container and update elements diff --git a/npmextra.json b/npmextra.json index 8205ab4..e7a7daf 100644 --- a/npmextra.json +++ b/npmextra.json @@ -18,13 +18,18 @@ "JWT", "TypeScript", "user login", - "user registration", "session handling", "email verification", "mobile verification", "user roles", "organization management", - "billing management" + "billing management", + "password reset", + "two-factor authentication", + "OAuth", + "API", + "user data", + "user sessions" ] } }, diff --git a/package.json b/package.json index ad77f6f..de15d26 100644 --- a/package.json +++ b/package.json @@ -89,12 +89,17 @@ "JWT", "TypeScript", "user login", - "user registration", "session handling", "email verification", "mobile verification", "user roles", "organization management", - "billing management" + "billing management", + "password reset", + "two-factor authentication", + "OAuth", + "API", + "user data", + "user sessions" ] -} +} \ No newline at end of file diff --git a/readme.md b/readme.md index df94ea5..dd1fd35 100644 --- a/readme.md +++ b/readme.md @@ -27,7 +27,7 @@ import * as domtools from '@design.estate/dees-domtools'; import { html, render } from '@design.estate/dees-element'; import { IdpWelcome } from './elements/idp-welcome.js'; -// Define asynchronous run function +// Define an asynchronous run function const run = async () => { // Set up DOM tools const domtoolsInstance = await domtools.DomTools.setupDomTools(); @@ -56,10 +56,10 @@ const run = async () => { }, }); - // Set up service worker + // Set up the service worker const serviceWorker = await serviceworker.getServiceworkerClient(); - // Render main template + // Render the main template const mainTemplate = html`