taon 19.0.52 → 19.0.53
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 +21 -18
- package/browser/fesm2022/taon.mjs.map +1 -1
- package/browser/lib/base-classes/base-angular-service.d.ts +3 -6
- package/browser/lib/endpoint-context.d.ts +1 -1
- package/browser/package.json +1 -1
- package/lib/base-classes/base-angular-service.d.ts +3 -6
- package/lib/base-classes/base-angular-service.js +12 -16
- package/lib/base-classes/base-angular-service.js.map +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/endpoint-context.d.ts +1 -1
- package/lib/endpoint-context.js +9 -4
- package/lib/endpoint-context.js.map +1 -1
- package/lib/realtime/realtime-client.js +2 -1
- package/lib/realtime/realtime-client.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 +24 -19
- package/websql/fesm2022/taon.mjs.map +1 -1
- package/websql/lib/base-classes/base-angular-service.d.ts +3 -6
- package/websql/lib/endpoint-context.d.ts +1 -1
- package/websql/package.json +1 -1
|
@@ -7,15 +7,12 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
*/
|
|
8
8
|
export declare abstract class BaseAngularsService {
|
|
9
9
|
protected readonly currentContext: TaonContext;
|
|
10
|
-
protected readonly CURRENT_HOST_BACKEND_PORT: number | undefined;
|
|
11
10
|
constructor();
|
|
11
|
+
injectController<T>(ctor: new (...args: any[]) => T,
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
14
|
-
* Returns the host URL for the backend service
|
|
15
|
-
* that is running on localhost (normal NodeJS/ExpressJS mode).
|
|
13
|
+
* optional override context
|
|
16
14
|
*/
|
|
17
|
-
|
|
18
|
-
injectController<T>(ctor: new (...args: any[]) => T): T;
|
|
15
|
+
overrideCurrentContext?: TaonContext): T;
|
|
19
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAngularsService, never>;
|
|
20
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<BaseAngularsService>;
|
|
21
18
|
}
|
|
@@ -65,7 +65,7 @@ export declare class EndpointContext {
|
|
|
65
65
|
/**
|
|
66
66
|
* Inside docker there is not need for https secure server
|
|
67
67
|
*/
|
|
68
|
-
|
|
68
|
+
readonly isRunningInsideDocker: boolean;
|
|
69
69
|
constructor(originalConfig: Models.ContextOptions<any, any, any, any, any, any, any, any>, configFn: (env: any) => Models.ContextOptions<any, any, any, any, any, any, any, any>);
|
|
70
70
|
init(options?: {
|
|
71
71
|
initFromRecrusiveContextResovle?: boolean;
|