taon 21.0.6 → 21.0.10
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/browser/fesm2022/{taon.mjs → taon-browser.mjs} +1 -1
- package/browser/fesm2022/{taon.mjs.map → taon-browser.mjs.map} +1 -1
- package/browser/package.json +7 -4
- package/browser/types/{taon.d.ts → taon-browser.d.ts} +24 -24
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/build-info._auto-generated_.js.map +1 -1
- package/lib/express-types.d.ts +1 -0
- package/lib/express-types.js +3 -0
- package/lib/express-types.js.map +1 -0
- package/lib/get-response-value.d.ts +3 -3
- package/lib/get-response-value.js.map +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/models.d.ts +3 -3
- package/lib/models.js.map +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/package.json +1 -1
- package/websql/fesm2022/{taon.mjs → taon-websql.mjs} +1 -1
- package/websql/fesm2022/taon-websql.mjs.map +1 -0
- package/websql/package.json +7 -4
- package/websql/types/{taon.d.ts → taon-websql.d.ts} +24 -24
- package/websql/fesm2022/taon.mjs.map +0 -1
package/browser/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taon/browser",
|
|
3
|
-
"version": "21.0.
|
|
4
|
-
"module": "
|
|
3
|
+
"version": "21.0.10",
|
|
4
|
+
"module": "types/taon-browser.d.ts",
|
|
5
5
|
"typings": "index.d.ts",
|
|
6
6
|
"exports": {
|
|
7
|
+
"./package.json": {
|
|
8
|
+
"default": "./package.json"
|
|
9
|
+
},
|
|
7
10
|
".": {
|
|
8
|
-
"types": "./
|
|
9
|
-
"default": "./fesm2022/taon.mjs"
|
|
11
|
+
"types": "./types/taon-browser.d.ts",
|
|
12
|
+
"default": "./fesm2022/taon-browser.mjs"
|
|
10
13
|
}
|
|
11
14
|
},
|
|
12
15
|
"sideEffects": false
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
import * as
|
|
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
|
|
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
|
|
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():
|
|
684
|
-
get 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:
|
|
924
|
-
readonly server:
|
|
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:
|
|
959
|
-
readonly server:
|
|
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<
|
|
1251
|
-
readonly __refSync:
|
|
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?:
|
|
1254
|
+
initialize: (overrideOptions?: taon_browser.Models.TaonInitializeParams) => Promise<taon_browser.EndpointContext>;
|
|
1255
1255
|
readonly realtime: {
|
|
1256
|
-
readonly client:
|
|
1257
|
-
readonly server:
|
|
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:
|
|
2019
|
-
readonly server:
|
|
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:
|
|
2038
|
-
readonly server:
|
|
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:
|
|
2068
|
-
readonly server:
|
|
2067
|
+
readonly client: taon_browser.RealtimeClient;
|
|
2068
|
+
readonly server: taon_browser.RealtimeServer;
|
|
2069
2069
|
};
|
|
2070
2070
|
}>;
|
|
2071
2071
|
}
|
|
@@ -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.
|
|
24
|
+
exports.CURRENT_PACKAGE_VERSION = '21.0.10';
|
|
25
25
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
26
26
|
//# sourceMappingURL=build-info._auto-generated_.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build-info._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,yCAAyC;AACzC;;GAEG;AACU,QAAA,wBAAwB,GAAG,KAAK,CAAC;AAC9C;;GAEG;AACU,QAAA,MAAM,GAAG,cAAc,CAAC;AACrC;;GAEG;AACU,QAAA,eAAe,GAAG,EAAE,CAAC;AAClC;;GAEG;AACU,QAAA,gBAAgB,GAAG,MAAM,CAAC;AACvC;;GAEG;AACU,QAAA,uBAAuB,GAAG,
|
|
1
|
+
{"version":3,"file":"build-info._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,yCAAyC;AACzC;;GAEG;AACU,QAAA,wBAAwB,GAAG,KAAK,CAAC;AAC9C;;GAEG;AACU,QAAA,MAAM,GAAG,cAAc,CAAC;AACrC;;GAEG;AACU,QAAA,eAAe,GAAG,EAAE,CAAC;AAClC;;GAEG;AACU,QAAA,gBAAgB,GAAG,MAAM,CAAC;AACvC;;GAEG;AACU,QAAA,uBAAuB,GAAG,SAAS,CAAC;AACjD,yCAAyC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Response as ExpressResponse, Request as ExpressRequest, } from 'express';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"express-types.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
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":";;;
|
|
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
|
|
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
|
|
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":";;;
|
|
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.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1766530596771 = dummy1766530596771;
|
|
4
|
+
function dummy1766530596771() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1766530597784 = dummy1766530597784;
|
|
4
|
+
function dummy1766530597784() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -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
|