feat: migrate to esm

This commit is contained in:
2023-03-16 01:58:13 +01:00
parent fd740b3091
commit 4df19e8c20
512 changed files with 3016 additions and 2222 deletions

View File

@@ -1,102 +1,102 @@
export * from './guards';
export * from './meta';
export * from './translator';
export * from './guards.js';
export * from './meta.js';
export * from './translator.js';
export * from './config/app';
export * from './config/authorization';
export * from './config/backend';
export * from './config/feature';
export * from './config/file';
export * from './config/monitoring';
export * from './config/user';
export * from './config/app.js';
export * from './config/authorization.js';
export * from './config/backend.js';
export * from './config/feature.js';
export * from './config/file.js';
export * from './config/monitoring.js';
export * from './config/user.js';
export * from './general/i18n';
export * from './general/map';
export * from './general/namespaces';
export * from './general/time';
export * from './general/uuid';
export * from './general/i18n.js';
export * from './general/map.js';
export * from './general/namespaces.js';
export * from './general/time.js';
export * from './general/uuid.js';
export * from './protocol/error';
export * from './protocol/route';
export * from './protocol/error.js';
export * from './protocol/route.js';
export * from './things/academic-event';
export * from './things/article';
export * from './things/assessment';
export * from './things/book';
export * from './things/building';
export * from './things/catalog';
export * from './things/contact-point';
export * from './things/course-of-study';
export * from './things/date-series';
export * from './things/diff';
export * from './things/dish';
export * from './things/favorite';
export * from './things/floor';
export * from './things/message';
export * from './things/organization';
export * from './things/periodical';
export * from './things/person';
export * from './things/point-of-interest';
export * from './things/publication-event';
export * from './things/room';
export * from './things/semester';
export * from './things/setting';
export * from './things/sport-course';
export * from './things/study-module';
export * from './things/ticket';
export * from './things/todo';
export * from './things/tour';
export * from './things/video';
export * from './things/academic-event.js';
export * from './things/article.js';
export * from './things/assessment.js';
export * from './things/book.js';
export * from './things/building.js';
export * from './things/catalog.js';
export * from './things/contact-point.js';
export * from './things/course-of-study.js';
export * from './things/date-series.js';
export * from './things/diff.js';
export * from './things/dish.js';
export * from './things/favorite.js';
export * from './things/floor.js';
export * from './things/message.js';
export * from './things/organization.js';
export * from './things/periodical.js';
export * from './things/person.js';
export * from './things/point-of-interest.js';
export * from './things/publication-event.js';
export * from './things/room.js';
export * from './things/semester.js';
export * from './things/setting.js';
export * from './things/sport-course.js';
export * from './things/study-module.js';
export * from './things/ticket.js';
export * from './things/todo.js';
export * from './things/tour.js';
export * from './things/video.js';
export * from './protocol/errors/internal-server-error';
export * from './protocol/errors/method-not-allowed';
export * from './protocol/errors/not-found';
export * from './protocol/errors/parameters-not-acceptable';
export * from './protocol/errors/plugin-already-registered';
export * from './protocol/errors/plugin-registering-failed';
export * from './protocol/errors/request-body-too-large';
export * from './protocol/errors/syntax-error';
export * from './protocol/errors/too-many-requests';
export * from './protocol/errors/unsupported-media-type';
export * from './protocol/errors/validation';
export * from './protocol/routes/book-availability';
export * from './protocol/routes/bulk-add';
export * from './protocol/routes/bulk-done';
export * from './protocol/routes/bulk-request';
export * from './protocol/routes/feedback';
export * from './protocol/routes/index';
export * from './protocol/routes/plugin-register';
export * from './protocol/routes/rating';
export * from './protocol/routes/search-multi';
export * from './protocol/routes/search';
export * from './protocol/routes/thing-update';
export * from './protocol/search/facet';
export * from './protocol/search/filter';
export * from './protocol/search/query';
export * from './protocol/search/result';
export * from './protocol/search/sort';
export * from './protocol/errors/internal-server-error.js';
export * from './protocol/errors/method-not-allowed.js';
export * from './protocol/errors/not-found.js';
export * from './protocol/errors/parameters-not-acceptable.js';
export * from './protocol/errors/plugin-already-registered.js';
export * from './protocol/errors/plugin-registering-failed.js';
export * from './protocol/errors/request-body-too-large.js';
export * from './protocol/errors/syntax-error.js';
export * from './protocol/errors/too-many-requests.js';
export * from './protocol/errors/unsupported-media-type.js';
export * from './protocol/errors/validation.js';
export * from './protocol/routes/book-availability.js';
export * from './protocol/routes/bulk-add.js';
export * from './protocol/routes/bulk-done.js';
export * from './protocol/routes/bulk-request.js';
export * from './protocol/routes/feedback.js';
export * from './protocol/routes/index.js';
export * from './protocol/routes/plugin-register.js';
export * from './protocol/routes/rating.js';
export * from './protocol/routes/search-multi.js';
export * from './protocol/routes/search.js';
export * from './protocol/routes/thing-update.js';
export * from './protocol/search/facet.js';
export * from './protocol/search/filter.js';
export * from './protocol/search/query.js';
export * from './protocol/search/result.js';
export * from './protocol/search/sort.js';
export * from './things/abstract/academic-degree';
export * from './things/abstract/academic-term';
export * from './things/abstract/creative-work';
export * from './things/abstract/event';
export * from './things/abstract/place';
export * from './things/abstract/range';
export * from './things/abstract/saveable-thing';
export * from './things/abstract/thing-in-place';
export * from './things/abstract/thing-that-accepts-payments';
export * from './things/abstract/thing-that-can-be-offered';
export * from './things/abstract/thing-with-categories';
export * from './things/abstract/thing';
export * from './things/abstract/user-groups';
export * from './things/abstract/academic-degree.js';
export * from './things/abstract/academic-term.js';
export * from './things/abstract/creative-work.js';
export * from './things/abstract/event.js';
export * from './things/abstract/place.js';
export * from './things/abstract/range.js';
export * from './things/abstract/saveable-thing.js';
export * from './things/abstract/thing-in-place.js';
export * from './things/abstract/thing-that-accepts-payments.js';
export * from './things/abstract/thing-that-can-be-offered.js';
export * from './things/abstract/thing-with-categories.js';
export * from './things/abstract/thing.js';
export * from './things/abstract/user-groups.js';
export * from './protocol/search/filters/availability';
export * from './protocol/search/filters/boolean';
export * from './protocol/search/filters/distance';
export * from './protocol/search/filters/geo';
export * from './protocol/search/filters/range';
export * from './protocol/search/filters/value';
export * from './protocol/search/sorts/distance';
export * from './protocol/search/sorts/ducet';
export * from './protocol/search/sorts/generic';
export * from './protocol/search/sorts/price';
export * from './protocol/search/filters/availability.js';
export * from './protocol/search/filters/boolean.js';
export * from './protocol/search/filters/distance.js';
export * from './protocol/search/filters/geo.js';
export * from './protocol/search/filters/range.js';
export * from './protocol/search/filters/value.js';
export * from './protocol/search/sorts/distance.js';
export * from './protocol/search/sorts/ducet.js';
export * from './protocol/search/sorts/generic.js';
export * from './protocol/search/sorts/price.js';