taon 21.0.62 → 21.0.63
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/package.json +1 -1
- package/browser-prod/package.json +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/package.json +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/lib-prod/base-classes/base-repository.d.ts +2 -2
- package/lib-prod/build-info._auto-generated_.d.ts +1 -1
- package/lib-prod/build-info._auto-generated_.js +1 -1
- package/lib-prod/context-db-migrations.d.ts +2 -1
- package/lib-prod/endpoint-context.d.ts +1 -0
- package/lib-prod/orm/columns.d.ts +11 -11
- package/lib-prod/package.json +1 -1
- package/lib-prod/ui/index.d.ts +1 -1
- package/lib-prod/ui/index.js +1 -1
- package/lib-prod/ui/taon-admin-mode-configuration/index.d.ts +1 -1
- package/lib-prod/ui/taon-admin-mode-configuration/index.js +1 -1
- package/package.json +1 -1
- package/websql/package.json +1 -1
- package/websql-prod/package.json +1 -1
package/browser/package.json
CHANGED
|
@@ -25,6 +25,6 @@ exports.CURRENT_PACKAGE_TAON_VERSION = 'v21';
|
|
|
25
25
|
/**
|
|
26
26
|
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
27
27
|
*/
|
|
28
|
-
exports.CURRENT_PACKAGE_VERSION = '21.0.
|
|
28
|
+
exports.CURRENT_PACKAGE_VERSION = '21.0.63';
|
|
29
29
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
30
30
|
//# sourceMappingURL=build-info._auto-generated_.js.map
|
package/lib/package.json
CHANGED
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.dummy1771178698171 = dummy1771178698171;
|
|
4
|
+
function dummy1771178698171() { }
|
|
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.dummy1771178698751 = dummy1771178698751;
|
|
4
|
+
function dummy1771178698751() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -265,8 +265,8 @@ export declare abstract class TaonBaseRepository<Entity extends {
|
|
|
265
265
|
* @deprecated use findAndCount instead
|
|
266
266
|
*/
|
|
267
267
|
getAll(): Promise<{
|
|
268
|
-
models:
|
|
269
|
-
totalCount:
|
|
268
|
+
models: Entity[];
|
|
269
|
+
totalCount: number;
|
|
270
270
|
}>;
|
|
271
271
|
getBy(id: number | string): Promise<Entity>;
|
|
272
272
|
}
|
|
@@ -22,6 +22,6 @@ export const CURRENT_PACKAGE_TAON_VERSION = 'v21';
|
|
|
22
22
|
/**
|
|
23
23
|
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
24
24
|
*/
|
|
25
|
-
export const CURRENT_PACKAGE_VERSION = '21.0.
|
|
25
|
+
export const CURRENT_PACKAGE_VERSION = '21.0.63';
|
|
26
26
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
27
27
|
//# sourceMappingURL=build-info._auto-generated_.js.map
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { EndpointContext } from './endpoint-context';
|
|
2
|
+
import { Table } from 'taon-typeorm/lib-prod';
|
|
2
3
|
export type MigrationStatus = 'completed' | 'pending';
|
|
3
4
|
export declare class ContextDbMigrations {
|
|
4
5
|
private ctx;
|
|
5
6
|
readonly DEFAULT_MIGRATION_TABLE_NAME = "TAON_MIGRATION_META";
|
|
6
7
|
readonly MIGRATION_STATUS_COMPLETED: MigrationStatus;
|
|
7
8
|
readonly MIGRATION_STATUS_PENDING: MigrationStatus;
|
|
8
|
-
readonly table:
|
|
9
|
+
readonly table: Table;
|
|
9
10
|
constructor(ctx: EndpointContext);
|
|
10
11
|
ensureMigrationTableExists(): Promise<void>;
|
|
11
12
|
private logSelectALl;
|
|
@@ -2,6 +2,7 @@ import type { Server } from 'http';
|
|
|
2
2
|
import { URL } from 'url';
|
|
3
3
|
import type { Application } from 'express';
|
|
4
4
|
import type * as expressType from 'express';
|
|
5
|
+
import type { Repository } from 'taon-typeorm/lib-prod';
|
|
5
6
|
import { DataSource } from 'taon-typeorm/lib-prod';
|
|
6
7
|
import { CoreModels__NS__HttpMethod } from 'tnp-core/lib-prod';
|
|
7
8
|
import type { TaonBaseInjector } from './base-classes/base-injector';
|
|
@@ -4,29 +4,29 @@ export { Generated as GeneratedColumn } from 'taon-typeorm/lib-prod';
|
|
|
4
4
|
/**
|
|
5
5
|
* 100 default characters varchar
|
|
6
6
|
*/
|
|
7
|
-
export declare const StringColumn: <T = string>(defaultValue?: T, length?: number) =>
|
|
7
|
+
export declare const StringColumn: <T = string>(defaultValue?: T, length?: number) => PropertyDecorator;
|
|
8
8
|
/**
|
|
9
9
|
* 100 characters varchar
|
|
10
10
|
*/
|
|
11
|
-
export declare const String100Column: <T = string>(defaultValue?: T) =>
|
|
11
|
+
export declare const String100Column: <T = string>(defaultValue?: T) => PropertyDecorator;
|
|
12
12
|
/**
|
|
13
13
|
* 20 characters varchar
|
|
14
14
|
*/
|
|
15
|
-
export declare const String20Column: <T = string>(defaultValue?: T) =>
|
|
15
|
+
export declare const String20Column: <T = string>(defaultValue?: T) => PropertyDecorator;
|
|
16
16
|
/**
|
|
17
17
|
* 45 characters varchar
|
|
18
18
|
*/
|
|
19
|
-
export declare const String45Column: <T = string>(defaultValue?: T) =>
|
|
19
|
+
export declare const String45Column: <T = string>(defaultValue?: T) => PropertyDecorator;
|
|
20
20
|
/**
|
|
21
21
|
* 500 characters varchar
|
|
22
22
|
*/
|
|
23
|
-
export declare const String500Column: <T = string>(defaultValue?: T) =>
|
|
23
|
+
export declare const String500Column: <T = string>(defaultValue?: T) => PropertyDecorator;
|
|
24
24
|
/**
|
|
25
25
|
* 200 characters varchar
|
|
26
26
|
*/
|
|
27
|
-
export declare const String200Column: <T = string>(defaultValue?: T) =>
|
|
28
|
-
export declare const NumberColumn: () =>
|
|
29
|
-
export declare const DecimalNumberColumn: () =>
|
|
30
|
-
export declare const SimpleJsonColumn: () =>
|
|
31
|
-
export declare const BooleanColumn: (defaultValue: boolean | null) =>
|
|
32
|
-
export declare const DateTimeColumn: (defaultValue?: boolean | null) =>
|
|
27
|
+
export declare const String200Column: <T = string>(defaultValue?: T) => PropertyDecorator;
|
|
28
|
+
export declare const NumberColumn: () => PropertyDecorator;
|
|
29
|
+
export declare const DecimalNumberColumn: () => PropertyDecorator;
|
|
30
|
+
export declare const SimpleJsonColumn: () => PropertyDecorator;
|
|
31
|
+
export declare const BooleanColumn: (defaultValue: boolean | null) => PropertyDecorator;
|
|
32
|
+
export declare const DateTimeColumn: (defaultValue?: boolean | null) => PropertyDecorator;
|
package/lib-prod/package.json
CHANGED
package/lib-prod/ui/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function dummy1771178739537(): void;
|
package/lib-prod/ui/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export function
|
|
1
|
+
export function dummy1771178739537() { }
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function dummy1771178740099(): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export function
|
|
1
|
+
export function dummy1771178740099() { }
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
package/websql/package.json
CHANGED