taon 21.0.6 → 21.0.9

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon/browser",
3
- "version": "21.0.6",
3
+ "version": "21.0.9",
4
4
  "module": "fesm2022/taon.mjs",
5
5
  "typings": "index.d.ts",
6
6
  "exports": {
@@ -1,5 +1,5 @@
1
1
  // @ts-nocheck
2
- import * as taon from 'taon';
2
+ import * as taon_browser from 'taon/browser';
3
3
  import * as express from 'express';
4
4
  import express__default, { Request, Response, Application } from 'express';
5
5
  import * as i0 from '@angular/core';
@@ -593,7 +593,7 @@ declare namespace Models {
593
593
  initFN: Function;
594
594
  };
595
595
  type FormlyFromType = 'material' | 'bootstrap';
596
- type ExpressContext<T> = (req: Request, res: Response) => T;
596
+ type ExpressContext<T> = (req: Request<any>, res: Response<any>) => T;
597
597
  type SyncResponse<T> = string | T;
598
598
  type ResponseFuncOpt<T> = {
599
599
  limitSize?: (enties: Function | Function[], include: string[], exclude: string[]) => void;
@@ -608,7 +608,7 @@ declare namespace Models {
608
608
  request?(axiosConfig?: Models$1.Ng2RestAxiosRequestConfig): Rest.PromiseObservableMix<Rest.HttpResponse<T>>;
609
609
  }
610
610
  interface AsyncResponse<T> {
611
- (req?: Request, res?: Response): Promise<SyncResponse<T> | SyncResponseFunc<T>>;
611
+ (req?: Request<any>, res?: Response<any>): Promise<SyncResponse<T> | SyncResponseFunc<T>>;
612
612
  }
613
613
  type Response<T = string> = AsyncResponse<T> & ClientAction<T>;
614
614
  }
@@ -680,8 +680,8 @@ declare class EndpointContext {
680
680
  connection: DataSource;
681
681
  private entitiesTriggers;
682
682
  private realtime;
683
- get realtimeClient(): taon.RealtimeClient;
684
- get realtimeServer(): taon.RealtimeServer;
683
+ get realtimeClient(): taon_browser.RealtimeClient;
684
+ get realtimeServer(): taon_browser.RealtimeServer;
685
685
  /**
686
686
  * available after init()
687
687
  */
@@ -920,8 +920,8 @@ declare const createContextTemplate: <CTX extends Record<string, object>, CTRL e
920
920
  * TCP(upgrade) socket.io (or ipc) based.
921
921
  */
922
922
  readonly realtime: {
923
- readonly client: taon.RealtimeClient;
924
- readonly server: taon.RealtimeServer;
923
+ readonly client: taon_browser.RealtimeClient;
924
+ readonly server: taon_browser.RealtimeServer;
925
925
  };
926
926
  };
927
927
  declare const createContext: <CTX extends Record<string, object>, CTRL extends Record<string, new (...args: any[]) => any>, ENTITY extends Record<string, new (...args: any[]) => any>, REPO extends Record<string, new (...args: any[]) => any>, PROVIDER extends Record<string, new (...args: any[]) => any>, SUBSCRIBER extends Record<string, new (...args: any[]) => any>, MIGRATION extends Record<string, new (...args: any[]) => any>, MIDDLEWARES extends Record<string, new (...args: any[]) => any>>(configFn: (env: any) => Models.ContextOptions<CTX, CTRL, ENTITY, REPO, PROVIDER, SUBSCRIBER, MIGRATION, MIDDLEWARES>) => {
@@ -955,8 +955,8 @@ declare const createContext: <CTX extends Record<string, object>, CTRL extends R
955
955
  * TCP(upgrade) socket.io (or ipc) based.
956
956
  */
957
957
  readonly realtime: {
958
- readonly client: taon.RealtimeClient;
959
- readonly server: taon.RealtimeServer;
958
+ readonly client: taon_browser.RealtimeClient;
959
+ readonly server: taon_browser.RealtimeServer;
960
960
  };
961
961
  };
962
962
  type TaonContext = ReturnType<typeof createContext>;
@@ -1010,8 +1010,8 @@ declare class EntityProcess {
1010
1010
  }
1011
1011
 
1012
1012
  declare const getResponseValue: <T>(response: Models.Http.Response<T>, options?: {
1013
- req: Request;
1014
- res: Response;
1013
+ req: Request<any>;
1014
+ res: Response<any>;
1015
1015
  }) => Promise<T>;
1016
1016
 
1017
1017
  declare const inject: <T>(entity: () => new (...args: any[]) => T) => T;
@@ -1247,14 +1247,14 @@ declare const TaonBaseContext: {
1247
1247
  cloneAsNormal: (cloneOpt?: {
1248
1248
  overrideHost?: string;
1249
1249
  }) => /*elided*/ any;
1250
- __ref(): Promise<taon.EndpointContext>;
1251
- readonly __refSync: taon.EndpointContext;
1250
+ __ref(): Promise<taon_browser.EndpointContext>;
1251
+ readonly __refSync: taon_browser.EndpointContext;
1252
1252
  getClassInstance<T>(ctor: new (...args: any[]) => T): T;
1253
1253
  getClass<T>(ctor: new (...args: any[]) => T): new (...args: any[]) => T;
1254
- initialize: (overrideOptions?: taon.Models.TaonInitializeParams) => Promise<taon.EndpointContext>;
1254
+ initialize: (overrideOptions?: taon_browser.Models.TaonInitializeParams) => Promise<taon_browser.EndpointContext>;
1255
1255
  readonly realtime: {
1256
- readonly client: taon.RealtimeClient;
1257
- readonly server: taon.RealtimeServer;
1256
+ readonly client: taon_browser.RealtimeClient;
1257
+ readonly server: taon_browser.RealtimeServer;
1258
1258
  };
1259
1259
  };
1260
1260
 
@@ -1993,8 +1993,8 @@ declare namespace Taon {
1993
1993
  export import Response = Models.Http.Response;
1994
1994
  export import StartParams = Models.StartParams;
1995
1995
  const getResponseValue: <T>(response: Response<T>, options?: {
1996
- req: express.Request;
1997
- res: express.Response;
1996
+ req: express.Request<any>;
1997
+ res: express.Response<any>;
1998
1998
  }) => Promise<T>;
1999
1999
  const isBrowser: boolean;
2000
2000
  const isNode: boolean;
@@ -2015,8 +2015,8 @@ declare namespace Taon {
2015
2015
  getClass<T>(ctor: new (...args: any[]) => T): new (...args: any[]) => T;
2016
2016
  initialize: (overrideOptions?: Models.TaonInitializeParams) => Promise<EndpointContext>;
2017
2017
  readonly realtime: {
2018
- readonly client: taon.RealtimeClient;
2019
- readonly server: taon.RealtimeServer;
2018
+ readonly client: taon_browser.RealtimeClient;
2019
+ readonly server: taon_browser.RealtimeServer;
2020
2020
  };
2021
2021
  };
2022
2022
  const createContextTemplate: <CTX extends Record<string, object>, CTRL extends Record<string, new (...args: any[]) => any>, ENTITY extends Record<string, new (...args: any[]) => any>, REPO extends Record<string, new (...args: any[]) => any>, PROVIDER extends Record<string, new (...args: any[]) => any>, SUBSCRIBER extends Record<string, new (...args: any[]) => any>, MIGRATION extends Record<string, new (...args: any[]) => any>, MIDDLEWARE extends Record<string, new (...args: any[]) => any>>(configFn: (env: any) => Models.ContextOptions<CTX, CTRL, ENTITY, REPO, PROVIDER, SUBSCRIBER, MIGRATION, MIDDLEWARE>) => () => {
@@ -2034,8 +2034,8 @@ declare namespace Taon {
2034
2034
  getClass<T>(ctor: new (...args: any[]) => T): new (...args: any[]) => T;
2035
2035
  initialize: (overrideOptions?: Models.TaonInitializeParams) => Promise<EndpointContext>;
2036
2036
  readonly realtime: {
2037
- readonly client: taon.RealtimeClient;
2038
- readonly server: taon.RealtimeServer;
2037
+ readonly client: taon_browser.RealtimeClient;
2038
+ readonly server: taon_browser.RealtimeServer;
2039
2039
  };
2040
2040
  };
2041
2041
  const inject: <T>(entity: () => new (...args: any[]) => T) => T;
@@ -2064,8 +2064,8 @@ declare namespace Taon {
2064
2064
  getClass<T>(ctor: new (...args: any[]) => T): new (...args: any[]) => T;
2065
2065
  initialize: (overrideOptions?: Models.TaonInitializeParams) => Promise<EndpointContext>;
2066
2066
  readonly realtime: {
2067
- readonly client: taon.RealtimeClient;
2068
- readonly server: taon.RealtimeServer;
2067
+ readonly client: taon_browser.RealtimeClient;
2068
+ readonly server: taon_browser.RealtimeServer;
2069
2069
  };
2070
2070
  }>;
2071
2071
  }
@@ -1,15 +1,15 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- viewBox="0 0 23.432 23.432004"
4
- version="1.1"
5
- id="svg1"
6
- width="23.431999"
7
- height="23.432003"
8
- xmlns="http://www.w3.org/2000/svg"
9
- xmlns:svg="http://www.w3.org/2000/svg">
10
- <defs
11
- id="defs1" />
12
- <path
13
- id="path1"
14
- d="m 11.521484,1.265625 c -0.953032,1.5597622 -1.9887223,3.0593334 -3.1074215,4.5 C 6.9495642,4.7476223 5.485983,3.7308932 4.0214844,2.7128906 3.8829075,2.6603831 3.738968,2.6414114 3.5917969,2.6582031 2.7651252,6.7213623 1.8733597,10.758159 0.9140625,14.767578 v 0.75 c 1.6097872,1.096932 3.2239518,2.188127 4.8417969,3.273438 v 0.08008 h 0.1171875 c 1.806633,1.211497 3.6188659,2.414261 5.4355471,3.611328 0.07144,0.07147 0.14145,0.143364 0.21289,0.214844 h 0.429688 c 3.432812,-2.431526 6.897745,-4.824781 10.394531,-7.179688 V 14.552734 C 21.353633,10.612741 20.406845,6.6479161 19.505859,2.6582031 19.42892,2.5563391 19.339974,2.5393307 19.238281,2.6054688 17.782054,3.6890192 16.286176,4.7048374 14.75,5.6523438 a 3.4715793,3.1345327 0 0 0 -0.01758,-0.00195 C 13.814421,4.161603 12.851221,2.7003542 11.84375,1.265625 Z M 4.1855469,8.9433594 H 10.810547 V 10.048828 H 8.34375 V 15.46875 H 6.6601562 V 10.048828 H 4.1855469 Z m 7.7285151,0 h 1.638672 l 3.41211,4.3574216 V 8.9433594 h 1.564453 V 15.46875 h -1.689453 l -3.361328,-4.253906 v 4.253906 h -1.564454 z" />
15
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 23.432 23.432004"
4
+ version="1.1"
5
+ id="svg1"
6
+ width="23.431999"
7
+ height="23.432003"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:svg="http://www.w3.org/2000/svg">
10
+ <defs
11
+ id="defs1" />
12
+ <path
13
+ id="path1"
14
+ d="m 11.521484,1.265625 c -0.953032,1.5597622 -1.9887223,3.0593334 -3.1074215,4.5 C 6.9495642,4.7476223 5.485983,3.7308932 4.0214844,2.7128906 3.8829075,2.6603831 3.738968,2.6414114 3.5917969,2.6582031 2.7651252,6.7213623 1.8733597,10.758159 0.9140625,14.767578 v 0.75 c 1.6097872,1.096932 3.2239518,2.188127 4.8417969,3.273438 v 0.08008 h 0.1171875 c 1.806633,1.211497 3.6188659,2.414261 5.4355471,3.611328 0.07144,0.07147 0.14145,0.143364 0.21289,0.214844 h 0.429688 c 3.432812,-2.431526 6.897745,-4.824781 10.394531,-7.179688 V 14.552734 C 21.353633,10.612741 20.406845,6.6479161 19.505859,2.6582031 19.42892,2.5563391 19.339974,2.5393307 19.238281,2.6054688 17.782054,3.6890192 16.286176,4.7048374 14.75,5.6523438 a 3.4715793,3.1345327 0 0 0 -0.01758,-0.00195 C 13.814421,4.161603 12.851221,2.7003542 11.84375,1.265625 Z M 4.1855469,8.9433594 H 10.810547 V 10.048828 H 8.34375 V 15.46875 H 6.6601562 V 10.048828 H 4.1855469 Z m 7.7285151,0 h 1.638672 l 3.41211,4.3574216 V 8.9433594 h 1.564453 V 15.46875 h -1.689453 l -3.361328,-4.253906 v 4.253906 h -1.564454 z" />
15
+ </svg>
@@ -17,4 +17,4 @@ export declare const PROJECT_NPM_NAME = "taon";
17
17
  /**
18
18
  * Autogenerated by current cli tool. Use *tnp release* to bump version.
19
19
  */
20
- export declare const CURRENT_PACKAGE_VERSION = "21.0.6";
20
+ export declare const CURRENT_PACKAGE_VERSION = "21.0.9";
@@ -21,6 +21,6 @@ exports.PROJECT_NPM_NAME = 'taon';
21
21
  /**
22
22
  * Autogenerated by current cli tool. Use *tnp release* to bump version.
23
23
  */
24
- exports.CURRENT_PACKAGE_VERSION = '21.0.6';
24
+ exports.CURRENT_PACKAGE_VERSION = '21.0.9';
25
25
  // THIS FILE IS GENERATED - DO NOT MODIFY
26
26
  //# sourceMappingURL=build-info._auto-generated_.js.map
@@ -0,0 +1 @@
1
+ export { Response as ExpressResponse, Request as ExpressRequest, } from 'express';
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=express-types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"express-types.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
@@ -1,6 +1,6 @@
1
- import { Response as ExpressResponse, Request as ExpressRequest } from 'express';
1
+ import { ExpressRequest, ExpressResponse } from './express-types';
2
2
  import { Models } from './models';
3
3
  export declare const getResponseValue: <T>(response: Models.Http.Response<T>, options?: {
4
- req: ExpressRequest;
5
- res: ExpressResponse;
4
+ req: ExpressRequest<any>;
5
+ res: ExpressResponse<any>;
6
6
  }) => Promise<T>;
@@ -1 +1 @@
1
- {"version":3,"file":"get-response-value.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AASO,MAAM,gBAAgB,GAAG,CAC9B,QAAiC,EACjC,OAAuD,EAC3C,EAAE;IACd,qBAAqB;IACrB,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,OAAO,IAAI,EAAE,CAAC;IACnC,OAAO,IAAI,OAAO,CAAI,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE;QAC9C,iBAAiB;QAEjB,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE,CAAC;YACnC,MAAM,aAAa,GAAiC,QAAe,CAAC;YACpE,IAAI,CAAC;gBACH,MAAM,MAAM,GAAG,MAAM,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;gBAC7C,OAAO,CAAC,MAAa,CAAC,CAAC;YACzB,CAAC;YAAC,OAAO,CAAC,EAAE,CAAC;gBACX,MAAM,CAAC,CAAC,CAAC,CAAC;YACZ,CAAC;QACH,CAAC;aAAM,CAAC;YACN,MAAM,CAAC,0CAA0C,QAAQ,EAAE,CAAC,CAAC;QAC/D,CAAC;QACD,YAAY;IACd,CAAC,CAAC,CAAC;IACH,YAAY;AACd,CAAC,CAAC;AAvBW,QAAA,gBAAgB,oBAuB3B"}
1
+ {"version":3,"file":"get-response-value.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAMO,MAAM,gBAAgB,GAAG,CAC9B,QAAiC,EACjC,OAAiE,EACrD,EAAE;IACd,qBAAqB;IACrB,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,OAAO,IAAI,EAAE,CAAC;IACnC,OAAO,IAAI,OAAO,CAAI,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE;QAC9C,iBAAiB;QAEjB,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE,CAAC;YACnC,MAAM,aAAa,GAAiC,QAAe,CAAC;YACpE,IAAI,CAAC;gBACH,MAAM,MAAM,GAAG,MAAM,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;gBAC7C,OAAO,CAAC,MAAa,CAAC,CAAC;YACzB,CAAC;YAAC,OAAO,CAAC,EAAE,CAAC;gBACX,MAAM,CAAC,CAAC,CAAC,CAAC;YACZ,CAAC;QACH,CAAC;aAAM,CAAC;YACN,MAAM,CAAC,0CAA0C,QAAQ,EAAE,CAAC,CAAC;QAC/D,CAAC;QACD,YAAY;IACd,CAAC,CAAC,CAAC;IACH,YAAY;AACd,CAAC,CAAC;AAvBW,QAAA,gBAAgB,oBAuB3B"}
package/lib/index.d.ts CHANGED
@@ -73,8 +73,8 @@ export declare namespace Taon {
73
73
  export import Response = models.Models.Http.Response;
74
74
  export import StartParams = models.Models.StartParams;
75
75
  const getResponseValue: <T>(response: Response<T>, options?: {
76
- req: import("express").Request;
77
- res: import("express").Response;
76
+ req: import("express").Request<any>;
77
+ res: import("express").Response<any>;
78
78
  }) => Promise<T>;
79
79
  const isBrowser: boolean;
80
80
  const isNode: boolean;
package/lib/models.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import type { RequestHandler } from 'express';
2
- import { Response as ExpressResponse, Request as ExpressRequest } from 'express';
3
2
  import { Models as ModelsNg2Rest, RestResponseWrapper } from 'ng2-rest';
4
3
  import { CoreModels } from 'tnp-core';
5
4
  import type { EndpointContext } from './endpoint-context';
5
+ import { ExpressRequest, ExpressResponse } from './express-types';
6
6
  export declare class TaonRestResponseWrapper extends RestResponseWrapper {
7
7
  }
8
8
  export declare const BaseTaonClassesNames: readonly ["BaseCrudController", "BaseController", "BaseAbstractEntity", "BaseEntity", "BaseContext", "BaseCustomRepository", "BaseFileUploadMiddleware", "BaseMiddleware", "BaseClass", "BaseInjector", "BaseMigration", "BaseProvider", "BaseRepository", "BaseSubscriberForEntity", "BaseCliWorkerController", "PortsController", "PortsContext"];
@@ -219,7 +219,7 @@ export declare namespace Models {
219
219
  initFN: Function;
220
220
  };
221
221
  type FormlyFromType = 'material' | 'bootstrap';
222
- type ExpressContext<T> = (req: ExpressRequest, res: ExpressResponse) => T;
222
+ type ExpressContext<T> = (req: ExpressRequest<any>, res: ExpressResponse<any>) => T;
223
223
  type SyncResponse<T> = string | T;
224
224
  type ResponseFuncOpt<T> = {
225
225
  limitSize?: (enties: Function | Function[], include: string[], exclude: string[]) => void;
@@ -234,7 +234,7 @@ export declare namespace Models {
234
234
  request?(axiosConfig?: ModelsNg2Rest.Ng2RestAxiosRequestConfig): Rest.PromiseObservableMix<Rest.HttpResponse<T>>;
235
235
  }
236
236
  interface AsyncResponse<T> {
237
- (req?: ExpressRequest, res?: ExpressResponse): Promise<SyncResponse<T> | SyncResponseFunc<T>>;
237
+ (req?: ExpressRequest<any>, res?: ExpressResponse<any>): Promise<SyncResponse<T> | SyncResponseFunc<T>>;
238
238
  }
239
239
  type Response<T = string> = AsyncResponse<T> & ClientAction<T>;
240
240
  interface AuthCallBack {
package/lib/models.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"models.js","sourceRoot":"","sources":[""],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"models.js","sourceRoot":"","sources":[""],"names":[],"mappings":"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"}
package/lib/ui/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1766450545401 = dummy1766450545401;
4
- function dummy1766450545401() { }
3
+ exports.dummy1766515335221 = dummy1766515335221;
4
+ function dummy1766515335221() { }
5
5
  //# sourceMappingURL=index.js.map
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1766450546179 = dummy1766450546179;
4
- function dummy1766450546179() { }
3
+ exports.dummy1766515335874 = dummy1766515335874;
4
+ function dummy1766515335874() { }
5
5
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon",
3
- "version": "21.0.6",
3
+ "version": "21.0.9",
4
4
  "scripts": {
5
5
  "mkdocs": "python3 -m mkdocs",
6
6
  "taon init": "taon init",
@@ -7895,4 +7895,4 @@ const TAON_FLATTEN_MAPPING = {
7895
7895
  */
7896
7896
 
7897
7897
  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, 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 };
7898
- //# sourceMappingURL=taon.mjs.map
7898
+ //# sourceMappingURL=taon-websql.mjs.map