taon 21.0.77 → 21.0.82

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.
Files changed (62) hide show
  1. package/VERIFIED-BUILD-DATA.jsonc +5 -0
  2. package/bin/start.js +2 -3
  3. package/browser/fesm2022/taon-browser.mjs +169 -52
  4. package/browser/fesm2022/taon-browser.mjs.map +1 -1
  5. package/browser/package.json +1 -1
  6. package/browser/types/taon-browser.d.ts +37 -18
  7. package/browser-prod/fesm2022/taon-browser-prod.mjs +169 -52
  8. package/browser-prod/fesm2022/taon-browser-prod.mjs.map +1 -1
  9. package/browser-prod/package.json +1 -1
  10. package/browser-prod/types/taon-browser-prod.d.ts +37 -18
  11. package/cli.d.ts +2 -2
  12. package/cli.js +4 -4
  13. package/cli.js.map +1 -1
  14. package/icon-menu-taon.svg +15 -15
  15. package/lib/build-info._auto-generated_.d.ts +1 -1
  16. package/lib/build-info._auto-generated_.js +1 -1
  17. package/lib/create-context.js +4 -1
  18. package/lib/create-context.js.map +1 -1
  19. package/lib/endpoint-context.js +9 -3
  20. package/lib/endpoint-context.js.map +1 -1
  21. package/lib/global-state/taon-global-state/taon-global-state.entity.d.ts +1 -1
  22. package/lib/global-state/taon-global-state/taon-global-state.entity.js +2 -2
  23. package/lib/global-state/taon-global-state/taon-global-state.entity.js.map +1 -1
  24. package/lib/package.json +1 -1
  25. package/lib/start-cli.d.ts +7 -0
  26. package/lib/start-cli.js +46 -0
  27. package/lib/start-cli.js.map +1 -0
  28. package/lib/ui/index.js +2 -2
  29. package/lib/ui/taon-admin-mode-configuration/breakpoints.service.d.ts +8 -0
  30. package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
  31. package/lib/ui/taon-admin-mode-configuration/taon-admin.service.d.ts +33 -14
  32. package/lib-prod/base-classes/base-controller.js.map +1 -1
  33. package/lib-prod/build-info._auto-generated_.d.ts +1 -1
  34. package/lib-prod/build-info._auto-generated_.js +1 -1
  35. package/lib-prod/create-context.js +4 -1
  36. package/lib-prod/create-context.js.map +1 -1
  37. package/lib-prod/endpoint-context.js +10 -4
  38. package/lib-prod/endpoint-context.js.map +1 -1
  39. package/lib-prod/global-state/taon-global-state/taon-global-state.entity.d.ts +1 -1
  40. package/lib-prod/global-state/taon-global-state/taon-global-state.entity.js +2 -2
  41. package/lib-prod/global-state/taon-global-state/taon-global-state.entity.js.map +1 -1
  42. package/lib-prod/index.js.map +1 -1
  43. package/lib-prod/package.json +1 -1
  44. package/lib-prod/realtime/realtime-client.js.map +1 -1
  45. package/lib-prod/realtime/realtime-core.js.map +1 -1
  46. package/lib-prod/realtime/realtime-server.js.map +1 -1
  47. package/lib-prod/start-cli.d.ts +7 -0
  48. package/lib-prod/start-cli.js +43 -0
  49. package/lib-prod/start-cli.js.map +1 -0
  50. package/lib-prod/ui/index.d.ts +1 -1
  51. package/lib-prod/ui/index.js +1 -1
  52. package/lib-prod/ui/taon-admin-mode-configuration/index.d.ts +1 -1
  53. package/lib-prod/ui/taon-admin-mode-configuration/index.js +1 -1
  54. package/package.json +1 -1
  55. package/websql/fesm2022/taon-websql.mjs +190 -74
  56. package/websql/fesm2022/taon-websql.mjs.map +1 -1
  57. package/websql/package.json +1 -1
  58. package/websql/types/taon-websql.d.ts +37 -18
  59. package/websql-prod/fesm2022/taon-websql-prod.mjs +191 -75
  60. package/websql-prod/fesm2022/taon-websql-prod.mjs.map +1 -1
  61. package/websql-prod/package.json +1 -1
  62. package/websql-prod/types/taon-websql-prod.d.ts +37 -18
@@ -0,0 +1,5 @@
1
+ {
2
+ "commitHash": "90db68d9b5988085f2619d0606483b639aa1e720",
3
+ "commitName": "chore: update",
4
+ "commitDate": "27-03-2026 18:39:42"
5
+ }
package/bin/start.js CHANGED
@@ -4,7 +4,6 @@ global.i0 = {
4
4
  }
5
5
  const process= require('process');
6
6
  process.removeAllListeners('warning');
7
-
8
7
  var argv = process.argv;
9
8
 
10
9
  global.hideLog = true;
@@ -32,5 +31,5 @@ var pathToCliJS = {
32
31
  }
33
32
  var p = fs.existsSync(pathToCliJS.distDev) ? pathToCliJS.distDev : pathToCliJS.localOrNPm;
34
33
  global.globalSystemToolMode = true;
35
- var run = require(p).start;
36
- run(argv,__filename);
34
+ var run = require(p).startCli;
35
+ run(argv,__filename);
@@ -6,15 +6,17 @@ import { walk } from 'lodash-walk-object/browser';
6
6
  import { RestResponseWrapper, Resource, HttpResponse, RestHeaders, decodeMappingForHeaderJson, DefaultMapping, DefaultModel, HttpResponseError } from 'ng2-rest/browser';
7
7
  import { Observable, from, Subject } from 'rxjs';
8
8
  import * as i0 from '@angular/core';
9
- import { InjectionToken, inject as inject$1, PLATFORM_ID, Injectable, ViewContainerRef, ViewChild, Component } from '@angular/core';
9
+ import { InjectionToken, Injectable, signal, inject as inject$1, PLATFORM_ID, ViewContainerRef, ViewChild, Component } from '@angular/core';
10
10
  import { Table, Column } from 'taon-typeorm/browser';
11
11
  export { AfterInsert, AfterLoad, AfterRecover, AfterRemove, AfterSoftRemove, AfterUpdate, BeforeInsert, BeforeRecover, BeforeRemove, BeforeSoftRemove, BeforeUpdate, Column, Connection, CreateDateColumn, Column as CustomColumn, DeleteDateColumn, Generated, Generated as GeneratedColumn, Index, JoinColumn, JoinTable, ManyToMany, ManyToOne, OneToMany, OneToOne, PrimaryColumn, PrimaryGeneratedColumn, Repository, TreeChildren, TreeParent, UpdateDateColumn, VersionColumn, VirtualColumn } from 'taon-typeorm/browser';
12
12
  import { CLASS } from 'typescript-class-helpers/browser';
13
13
  import * as JSON5 from 'json5';
14
14
  import { io } from 'socket.io-client';
15
+ import { TaonStor } from 'taon-storage/browser';
16
+ import * as i1 from '@angular/cdk/layout';
15
17
  import { isPlatformServer, isPlatformBrowser } from '@angular/common';
16
18
  import { __decorate, __param, __metadata } from 'tslib';
17
- import * as i1 from '@ngx-formly/core';
19
+ import * as i1$1 from '@ngx-formly/core';
18
20
  import { FieldWrapper, FieldArrayType } from '@ngx-formly/core';
19
21
 
20
22
  const TaonEntityKeysToOmitArr = [
@@ -3195,6 +3197,8 @@ class EndpointContext {
3195
3197
  /* */
3196
3198
  /* */
3197
3199
  /* */
3200
+ /* */
3201
+ /* */
3198
3202
  return (void 0);
3199
3203
  }
3200
3204
  //#endregion
@@ -3490,6 +3494,11 @@ class EndpointContext {
3490
3494
  /* */
3491
3495
  /* */
3492
3496
  /* */
3497
+ /* */
3498
+ /* */
3499
+ /* */
3500
+ /* */
3501
+ /* */
3493
3502
  for (const classTypeName of [
3494
3503
  Models.ClassType.MIDDLEWARE,
3495
3504
  Models.ClassType.PROVIDER,
@@ -5098,52 +5107,6 @@ instead
5098
5107
  }
5099
5108
  }
5100
5109
 
5101
- //#region import
5102
- //#endregion
5103
- const ENV = globalThis['ENV'];
5104
- // @Injectable({ providedIn: 'root' }) TODO make it angular service
5105
- class TaonAdminService {
5106
- static get Instance() {
5107
- if (!this._instance) {
5108
- this._instance = new TaonAdminService();
5109
- }
5110
- return this._instance;
5111
- }
5112
- //#endregion
5113
- //#endregion
5114
- //#region constructor
5115
- constructor() {
5116
- //#endregion
5117
- //#region fields & getters
5118
- this.scrollableEnabled = false; // TOOD false by default
5119
- this.onEditMode = new Subject();
5120
- this.onEditMode$ = this.onEditMode.asObservable();
5121
- this.enabledTabs = [];
5122
- TaonAdminService._instance = this;
5123
- this.scrollableEnabled = !!ENV?.useGlobalNgxScrollbar;
5124
- }
5125
- //#endregion
5126
- //#region methods
5127
- setEditMode(value) {
5128
- this.onEditMode.next(value);
5129
- }
5130
- setKeepWebsqlDbDataAfterReload(value) {
5131
- // if (value && !this.keepWebsqlDbDataAfterReload) {
5132
- // this.firstTimeKeepWebsqlDbDataTrue = true;
5133
- // }
5134
- this.keepWebsqlDbDataAfterReload = value;
5135
- }
5136
- hide() {
5137
- this.draggablePopupMode = false;
5138
- this.adminPanelIsOpen = false;
5139
- }
5140
- show() {
5141
- this.draggablePopupMode = false;
5142
- this.adminPanelIsOpen = true;
5143
- }
5144
- logout() { }
5145
- }
5146
-
5147
5110
  class ContextsEndpointStorage {
5148
5111
  constructor() {
5149
5112
  this.SPECIAL_APP_READY_MESSAGE = CoreModels.SPECIAL_APP_READY_MESSAGE;
@@ -5175,6 +5138,159 @@ class ContextsEndpointStorage {
5175
5138
  // TODO QUICK_FIX @LAST encapsulate this => move to separate package
5176
5139
  globalThis['$$$ContextsEndpointStorage$$$'] = ContextsEndpointStorage.Instance;
5177
5140
 
5141
+ //#region imports
5142
+ //#endregion
5143
+ const BRK = {
5144
+ mobile: '(max-width: 599.98px)',
5145
+ // tablet: obsvious
5146
+ desktop: '(min-width: 840.00px)',
5147
+ };
5148
+ class BreakpointsService {
5149
+ listenTo() {
5150
+ setTimeout(() => {
5151
+ this.sub.next(this.current);
5152
+ });
5153
+ return this.sub.asObservable();
5154
+ }
5155
+ constructor(breakpointObserver) {
5156
+ this.sub = new Subject();
5157
+ breakpointObserver.observe([BRK.mobile, BRK.desktop]).subscribe(state => {
5158
+ if (!_.isUndefined([BRK.mobile].find(f => state.breakpoints[f]))) {
5159
+ this.current = 'mobile';
5160
+ this.sub.next('mobile');
5161
+ }
5162
+ else if (!_.isUndefined([BRK.desktop].find(f => state.breakpoints[f]))) {
5163
+ this.current = 'desktop';
5164
+ this.sub.next('desktop');
5165
+ }
5166
+ else {
5167
+ this.current = 'tablet';
5168
+ this.sub.next('tablet');
5169
+ }
5170
+ });
5171
+ setTimeout(() => {
5172
+ if (breakpointObserver.isMatched([BRK.mobile])) {
5173
+ this.current = 'mobile';
5174
+ this.sub.next('mobile');
5175
+ }
5176
+ else if (breakpointObserver.isMatched([BRK.desktop])) {
5177
+ this.current = 'desktop';
5178
+ this.sub.next('desktop');
5179
+ }
5180
+ else {
5181
+ this.current = 'tablet';
5182
+ this.sub.next('tablet');
5183
+ }
5184
+ });
5185
+ }
5186
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BreakpointsService, deps: [{ token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable }); }
5187
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BreakpointsService, providedIn: 'root' }); }
5188
+ }
5189
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BreakpointsService, decorators: [{
5190
+ type: Injectable,
5191
+ args: [{ providedIn: 'root' }]
5192
+ }], ctorParameters: () => [{ type: i1.BreakpointObserver }] });
5193
+
5194
+ //#region import
5195
+ //#endregion
5196
+ var TaonAdminPanelMode;
5197
+ (function (TaonAdminPanelMode) {
5198
+ TaonAdminPanelMode["NONE"] = "NONE";
5199
+ TaonAdminPanelMode["ICON"] = "ICON";
5200
+ TaonAdminPanelMode["POPUP"] = "POPUP";
5201
+ TaonAdminPanelMode["SIDE"] = "SIDE";
5202
+ TaonAdminPanelMode["FULL_SCREEN"] = "FULL_SCREEN";
5203
+ })(TaonAdminPanelMode || (TaonAdminPanelMode = {}));
5204
+ class TaonAdmin {
5205
+ static init() {
5206
+ TaonAdmin.Instance;
5207
+ }
5208
+ static get Instance() {
5209
+ if (!this._instance) {
5210
+ this._instance = new TaonAdmin();
5211
+ }
5212
+ return this._instance;
5213
+ }
5214
+ constructor() {
5215
+ this.additionalTabs = signal([], ...(ngDevMode ? [{ debugName: "additionalTabs" }] : []));
5216
+ //#region fields & getters / admin panel mode
5217
+ this.adminPanelMode = TaonStor.inLocalstorage({
5218
+ defaultValue: TaonAdminPanelMode.NONE,
5219
+ keyOrPath: 'adminPanelMode',
5220
+ }, TaonAdminService);
5221
+ //#endregion
5222
+ //#region fields & getters / keep websql database data after reload
5223
+ /**
5224
+ * Property used in taon
5225
+ */
5226
+ this.keepWebsqlDbDataAfterReload = TaonStor.inLocalstorage({
5227
+ defaultValue: false,
5228
+ keyOrPath: 'keepWebsqlDbDataAfterReload',
5229
+ }, TaonAdminService);
5230
+ // console.log('TAON ADMIN INSTANCE CREATED');
5231
+ }
5232
+ }
5233
+ //#region @browser
5234
+ //#endregion
5235
+ class TaonAdminService {
5236
+ constructor() {
5237
+ //#region singleton + constructor
5238
+ this.isIframe = window.location !== window.parent.location;
5239
+ this.breakpointsService = inject$1(BreakpointsService);
5240
+ //#endregion
5241
+ this.isDesktop = signal(true, ...(ngDevMode ? [{ debugName: "isDesktop" }] : []));
5242
+ this.devTapCount = 0;
5243
+ window['Taon'] = this;
5244
+ window['taon'] = this;
5245
+ this.breakpointsService.listenTo().subscribe(breakpoint => {
5246
+ // console.log({ breakpoint });
5247
+ this.isDesktop.set(breakpoint === 'desktop');
5248
+ if (this.isDesktop()) {
5249
+ //
5250
+ }
5251
+ else {
5252
+ this.adminPanelMode.set(TaonAdminPanelMode.NONE);
5253
+ }
5254
+ });
5255
+ }
5256
+ get adminPanelMode() {
5257
+ return TaonAdmin.Instance.adminPanelMode;
5258
+ }
5259
+ get keepWebsqlDbDataAfterReload() {
5260
+ return TaonAdmin.Instance.keepWebsqlDbDataAfterReload;
5261
+ }
5262
+ get additionalTabs() {
5263
+ return TaonAdmin.Instance.additionalTabs;
5264
+ }
5265
+ admin() {
5266
+ this.adminPanelMode.set(TaonAdminPanelMode.FULL_SCREEN);
5267
+ }
5268
+ show() {
5269
+ this.adminPanelMode.set(TaonAdminPanelMode.POPUP);
5270
+ }
5271
+ hide() {
5272
+ this.adminPanelMode.set(TaonAdminPanelMode.NONE);
5273
+ }
5274
+ enableDeveloperIf5Timetap() {
5275
+ this.devTapCount++;
5276
+ // reset timer every tap
5277
+ clearTimeout(this.devTapTimeout);
5278
+ this.devTapTimeout = setTimeout(() => {
5279
+ this.devTapCount = 0;
5280
+ }, 2000); // 2s window to complete taps
5281
+ if (this.devTapCount >= 5) {
5282
+ this.devTapCount = 0;
5283
+ this.show();
5284
+ }
5285
+ }
5286
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: TaonAdminService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5287
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: TaonAdminService, providedIn: 'root' }); }
5288
+ }
5289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: TaonAdminService, decorators: [{
5290
+ type: Injectable,
5291
+ args: [{ providedIn: 'root' }]
5292
+ }], ctorParameters: () => [] });
5293
+
5178
5294
  //#region imports
5179
5295
  //#endregion
5180
5296
  /**
@@ -5312,7 +5428,8 @@ const createContextFn = (configFn, cloneOptions) => {
5312
5428
  //#region @browser
5313
5429
  let keepWebsqlDbDataAfterReload = false;
5314
5430
  keepWebsqlDbDataAfterReload =
5315
- TaonAdminService.Instance?.keepWebsqlDbDataAfterReload;
5431
+ TaonAdmin.Instance?.keepWebsqlDbDataAfterReload();
5432
+ // console.log({ keepWebsqlDbDataAfterReload });
5316
5433
  if (keepWebsqlDbDataAfterReload) {
5317
5434
  !UtilsOs.isRunningInCliMode() &&
5318
5435
  Helpers.info(`[taon] Keeping websql data after reload ` +
@@ -7858,7 +7975,7 @@ class RepeatTypeComponent extends FieldArrayType {
7858
7975
  // @ts-ignore
7859
7976
  super(builder);
7860
7977
  }
7861
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: RepeatTypeComponent, deps: [{ token: i1.FormlyFormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
7978
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: RepeatTypeComponent, deps: [{ token: i1$1.FormlyFormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
7862
7979
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.9", type: RepeatTypeComponent, isStandalone: false, selector: "formly-repeat-section", usesInheritance: true, ngImport: i0, template: `
7863
7980
  <div *ngIf="field.fieldGroup && field.fieldGroup.length === 0">
7864
7981
  Press button to add new element...
@@ -7924,7 +8041,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImpor
7924
8041
  </button>
7925
8042
  </div>
7926
8043
  `, styles: [":host{display:block;padding:5px;margin-bottom:5px;border:1px solid gray}formly-group{display:block;border:1px dashed gray;margin-bottom:5px;padding:5px}.taon-formly-array{padding:5px;background:#fff}\n"] }]
7927
- }], ctorParameters: () => [{ type: i1.FormlyFormBuilder }] });
8044
+ }], ctorParameters: () => [{ type: i1$1.FormlyFormBuilder }] });
7928
8045
 
7929
8046
  function findTypeForEntity(entity, isArray = false) {
7930
8047
  if (!_.isArray(RegisterComponentType.prototype.types)) {
@@ -8442,5 +8559,5 @@ const TAON_FLATTEN_MAPPING = {
8442
8559
  * Generated bundle index. Do not edit.
8443
8560
  */
8444
8561
 
8445
- export { BaseTaonClassesNames, Body, BooleanColumn, CURRENT_HOST_BACKEND_PORT, CURRENT_HOST_URL, ClassHelpers, ContextDbMigrations, ContextsEndpointStorage, ControllerConfig, Cookie, DELETE, DITaonContainer, DateTimeColumn, DecimalNumberColumn, DecoratorAbstractOpt, EndpointContext, EntityProcess, FormlyHorizontalWrapper, GET, HEAD, HTML, Header, MethodConfig, MockNamespaceIpc, MockServerIpc, MockSocketIpc, Models, NumberColumn, PATCH, POST, PUT, ParamConfig, Path, Query, RealtimeClient, RealtimeCore, RealtimeServer, RealtimeStrategy, RealtimeStrategyIpc, RealtimeStrategyMock, RealtimeStrategySocketIO, RealtimeSubsManager, RegisterComponentType, RegisterComponentTypeForEntity, RepeatTypeComponent, SimpleJsonColumn, String100Column, String200Column, String20Column, String45Column, String500Column, StringColumn, Symbols, TAON_CONTEXT, TAON_FLATTEN_MAPPING, Taon, TaonAdminService, TaonBaseAbstractEntity, TaonBaseAngularService, TaonBaseClass, TaonBaseContext, TaonBaseController, TaonBaseCrudController, TaonBaseCustomRepository, TaonBaseEntity, TaonBaseFileUploadMiddleware, TaonBaseInjector, TaonBaseMiddleware, TaonBaseMigration, TaonBaseProvider, TaonBaseRepository, TaonBaseSubscriberForEntity, TaonController, TaonControllerOptions, TaonEntity, TaonEntityKeysToOmitArr, TaonEntityOptions, TaonHelpers, TaonMiddleware, TaonMiddlewareOptions, TaonMigration, TaonMigrationOptions, TaonProvider, TaonProviderOptions, TaonRepository, TaonRepositoryOptions, TaonRestResponseWrapper, TaonSubscriber, TaonSubscriberOptions, TaonTempDatabasesFolder, TaonTempRoutesFolder, Validators, apiPrefix, cloneObj, controllerConfigFrom, createContext, createContextTemplate, findTypeForEntity, getFromlyConfigFor, getRegisteredComponents, getResponseValue, getTransformFunction, inject, singleTransform, typeFromEntity, typeFromName };
8562
+ export { BaseTaonClassesNames, Body, BooleanColumn, CURRENT_HOST_BACKEND_PORT, CURRENT_HOST_URL, ClassHelpers, ContextDbMigrations, ContextsEndpointStorage, ControllerConfig, Cookie, DELETE, DITaonContainer, DateTimeColumn, DecimalNumberColumn, DecoratorAbstractOpt, EndpointContext, EntityProcess, FormlyHorizontalWrapper, GET, HEAD, HTML, Header, MethodConfig, MockNamespaceIpc, MockServerIpc, MockSocketIpc, Models, NumberColumn, PATCH, POST, PUT, ParamConfig, Path, Query, RealtimeClient, RealtimeCore, RealtimeServer, RealtimeStrategy, RealtimeStrategyIpc, RealtimeStrategyMock, RealtimeStrategySocketIO, RealtimeSubsManager, RegisterComponentType, RegisterComponentTypeForEntity, RepeatTypeComponent, SimpleJsonColumn, String100Column, String200Column, String20Column, String45Column, String500Column, StringColumn, Symbols, TAON_CONTEXT, TAON_FLATTEN_MAPPING, Taon, TaonAdmin, TaonAdminPanelMode, TaonAdminService, TaonBaseAbstractEntity, TaonBaseAngularService, TaonBaseClass, TaonBaseContext, TaonBaseController, TaonBaseCrudController, TaonBaseCustomRepository, TaonBaseEntity, TaonBaseFileUploadMiddleware, TaonBaseInjector, TaonBaseMiddleware, TaonBaseMigration, TaonBaseProvider, TaonBaseRepository, TaonBaseSubscriberForEntity, TaonController, TaonControllerOptions, TaonEntity, TaonEntityKeysToOmitArr, TaonEntityOptions, TaonHelpers, TaonMiddleware, TaonMiddlewareOptions, TaonMigration, TaonMigrationOptions, TaonProvider, TaonProviderOptions, TaonRepository, TaonRepositoryOptions, TaonRestResponseWrapper, TaonSubscriber, TaonSubscriberOptions, TaonTempDatabasesFolder, TaonTempRoutesFolder, Validators, apiPrefix, cloneObj, controllerConfigFrom, createContext, createContextTemplate, findTypeForEntity, getFromlyConfigFor, getRegisteredComponents, getResponseValue, getTransformFunction, inject, singleTransform, typeFromEntity, typeFromName };
8446
8563
  //# sourceMappingURL=taon-browser.mjs.map