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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon/browser",
3
- "version": "21.0.62",
3
+ "version": "21.0.63",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon/browser-prod",
3
- "version": "21.0.62",
3
+ "version": "21.0.63",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -21,4 +21,4 @@ export declare const CURRENT_PACKAGE_TAON_VERSION = "v21";
21
21
  /**
22
22
  * Autogenerated by current cli tool. Use *tnp release* to bump version.
23
23
  */
24
- export declare const CURRENT_PACKAGE_VERSION = "21.0.62";
24
+ export declare const CURRENT_PACKAGE_VERSION = "21.0.63";
@@ -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.62';
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
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "taon/lib",
3
- "version": "21.0.62"
3
+ "version": "21.0.63"
4
4
  }
package/lib/ui/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1771177691535 = dummy1771177691535;
4
- function dummy1771177691535() { }
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.dummy1771177692027 = dummy1771177692027;
4
- function dummy1771177692027() { }
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: any;
269
- totalCount: any;
268
+ models: Entity[];
269
+ totalCount: number;
270
270
  }>;
271
271
  getBy(id: number | string): Promise<Entity>;
272
272
  }
@@ -21,4 +21,4 @@ export declare const CURRENT_PACKAGE_TAON_VERSION = "v21";
21
21
  /**
22
22
  * Autogenerated by current cli tool. Use *tnp release* to bump version.
23
23
  */
24
- export declare const CURRENT_PACKAGE_VERSION = "21.0.62";
24
+ export declare const CURRENT_PACKAGE_VERSION = "21.0.63";
@@ -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.62';
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: any;
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) => any;
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) => any;
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) => any;
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) => any;
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) => any;
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) => any;
28
- export declare const NumberColumn: () => any;
29
- export declare const DecimalNumberColumn: () => any;
30
- export declare const SimpleJsonColumn: () => any;
31
- export declare const BooleanColumn: (defaultValue: boolean | null) => any;
32
- export declare const DateTimeColumn: (defaultValue?: boolean | null) => any;
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;
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "taon/lib-prod",
3
- "version": "21.0.62"
3
+ "version": "21.0.63"
4
4
  }
@@ -1 +1 @@
1
- export declare function dummy1771177726980(): void;
1
+ export declare function dummy1771178739537(): void;
@@ -1,2 +1,2 @@
1
- export function dummy1771177726980() { }
1
+ export function dummy1771178739537() { }
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- export declare function dummy1771177727471(): void;
1
+ export declare function dummy1771178740099(): void;
@@ -1,2 +1,2 @@
1
- export function dummy1771177727471() { }
1
+ export function dummy1771178740099() { }
2
2
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon",
3
- "version": "21.0.62",
3
+ "version": "21.0.63",
4
4
  "scripts": {
5
5
  "mkdocs": "python3 -m mkdocs",
6
6
  "taon init": "taon init",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon/websql",
3
- "version": "21.0.62",
3
+ "version": "21.0.63",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon/websql-prod",
3
- "version": "21.0.62",
3
+ "version": "21.0.63",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"