@tmlmobilidade/interfaces 20260320.2238.33 → 20260322.1655.45
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/dist/clickhouse/index.d.ts +4 -0
- package/dist/clickhouse/index.js +4 -0
- package/dist/clickhouse/simplified-apex-locations/index.d.ts +2 -0
- package/dist/clickhouse/simplified-apex-locations/index.js +2 -0
- package/dist/clickhouse/simplified-apex-locations/schema.d.ts +3 -0
- package/dist/clickhouse/simplified-apex-locations/schema.js +18 -0
- package/dist/clickhouse/simplified-apex-locations/service.d.ts +31 -0
- package/dist/clickhouse/simplified-apex-locations/service.js +15 -0
- package/dist/clickhouse/simplified-apex-on-board-refunds/index.d.ts +2 -0
- package/dist/clickhouse/simplified-apex-on-board-refunds/index.js +2 -0
- package/dist/clickhouse/simplified-apex-on-board-refunds/schema.d.ts +3 -0
- package/dist/clickhouse/simplified-apex-on-board-refunds/schema.js +28 -0
- package/dist/clickhouse/simplified-apex-on-board-refunds/service.d.ts +41 -0
- package/dist/clickhouse/simplified-apex-on-board-refunds/service.js +15 -0
- package/dist/clickhouse/simplified-apex-on-board-sales/index.d.ts +2 -0
- package/dist/clickhouse/simplified-apex-on-board-sales/index.js +2 -0
- package/dist/clickhouse/simplified-apex-on-board-sales/schema.d.ts +3 -0
- package/dist/clickhouse/simplified-apex-on-board-sales/schema.js +29 -0
- package/dist/clickhouse/simplified-apex-on-board-sales/service.d.ts +42 -0
- package/dist/clickhouse/simplified-apex-on-board-sales/service.js +15 -0
- package/dist/clickhouse/simplified-apex-validations/index.d.ts +2 -0
- package/dist/clickhouse/simplified-apex-validations/index.js +2 -0
- package/dist/clickhouse/simplified-apex-validations/schema.d.ts +3 -0
- package/dist/clickhouse/simplified-apex-validations/schema.js +27 -0
- package/dist/clickhouse/simplified-apex-validations/service.d.ts +40 -0
- package/dist/clickhouse/simplified-apex-validations/service.js +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/interfaces/auth/roles.d.ts +9 -9
- package/dist/interfaces/auth/users.d.ts +12 -12
- package/package.json +2 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
/* * */
|
|
3
|
+
export const simplifiedApexLocationsSchema = [
|
|
4
|
+
{ name: '_id', primaryKey: true, type: 'String' },
|
|
5
|
+
{ name: 'created_at', type: 'Int64' },
|
|
6
|
+
{ name: 'updated_at', type: 'Int64' },
|
|
7
|
+
{ name: 'agency_id', type: 'String' },
|
|
8
|
+
{ name: 'apex_version', type: 'String' },
|
|
9
|
+
{ name: 'device_id', type: 'String' },
|
|
10
|
+
{ name: 'line_id', type: 'String' },
|
|
11
|
+
{ name: 'mac_ase_counter_value', type: 'Int64' },
|
|
12
|
+
{ name: 'mac_sam_serial_number', type: 'Int64' },
|
|
13
|
+
{ name: 'pattern_id', type: 'String' },
|
|
14
|
+
{ name: 'received_at', type: 'Int64' },
|
|
15
|
+
{ name: 'stop_id', type: 'String' },
|
|
16
|
+
{ name: 'trip_id', type: 'String' },
|
|
17
|
+
{ name: 'vehicle_id', type: 'Int64' },
|
|
18
|
+
];
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
2
|
+
import { type SimplifiedApexValidation } from '@tmlmobilidade/types';
|
|
3
|
+
declare class SimplifiedApexLocationsNewClass extends ClickHouseTable<SimplifiedApexValidation> {
|
|
4
|
+
databaseName: string;
|
|
5
|
+
schema: import("@tmlmobilidade/clickhouse").ClickHouseColumn<{
|
|
6
|
+
_id: string;
|
|
7
|
+
created_at: number & {
|
|
8
|
+
__brand: "UnixTimestamp";
|
|
9
|
+
};
|
|
10
|
+
updated_at: number & {
|
|
11
|
+
__brand: "UnixTimestamp";
|
|
12
|
+
};
|
|
13
|
+
agency_id: string;
|
|
14
|
+
apex_version: string;
|
|
15
|
+
device_id: string;
|
|
16
|
+
line_id: string;
|
|
17
|
+
mac_ase_counter_value: number;
|
|
18
|
+
mac_sam_serial_number: number;
|
|
19
|
+
pattern_id: string;
|
|
20
|
+
received_at: number & {
|
|
21
|
+
__brand: "UnixTimestamp";
|
|
22
|
+
};
|
|
23
|
+
stop_id: string;
|
|
24
|
+
trip_id: string;
|
|
25
|
+
vehicle_id: number;
|
|
26
|
+
}>[];
|
|
27
|
+
tableName: string;
|
|
28
|
+
postInit(): Promise<void>;
|
|
29
|
+
}
|
|
30
|
+
export declare const simplifiedApexLocationsNew: SimplifiedApexLocationsNewClass;
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
import { simplifiedApexLocationsSchema } from './schema.js';
|
|
3
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
4
|
+
/* * */
|
|
5
|
+
class SimplifiedApexLocationsNewClass extends ClickHouseTable {
|
|
6
|
+
//
|
|
7
|
+
databaseName = 'simplified_apex';
|
|
8
|
+
schema = simplifiedApexLocationsSchema;
|
|
9
|
+
tableName = 'simplified_apex_locations';
|
|
10
|
+
async postInit() {
|
|
11
|
+
console.log('Post init ClickHouse service for Simplified Apex Locations...');
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/* * */
|
|
15
|
+
export const simplifiedApexLocationsNew = new SimplifiedApexLocationsNewClass();
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
/* * */
|
|
3
|
+
export const simplifiedApexOnBoardRefundsSchema = [
|
|
4
|
+
{ name: '_id', type: 'String' },
|
|
5
|
+
{ name: 'created_at', type: 'String' },
|
|
6
|
+
{ name: 'updated_at', type: 'String' },
|
|
7
|
+
{ name: 'agency_id', type: 'String' },
|
|
8
|
+
{ name: 'apex_version', type: 'String' },
|
|
9
|
+
{ name: 'device_id', type: 'String' },
|
|
10
|
+
{ name: 'line_id', type: 'String' },
|
|
11
|
+
{ name: 'mac_ase_counter_value', type: 'String' },
|
|
12
|
+
{ name: 'mac_sam_serial_number', type: 'String' },
|
|
13
|
+
{ name: 'pattern_id', type: 'String' },
|
|
14
|
+
{ name: 'received_at', type: 'String' },
|
|
15
|
+
{ name: 'stop_id', type: 'String' },
|
|
16
|
+
{ name: 'trip_id', type: 'String' },
|
|
17
|
+
{ name: 'vehicle_id', type: 'String' },
|
|
18
|
+
{ name: 'block_id', type: 'String' },
|
|
19
|
+
{ name: 'card_physical_type', type: 'String' },
|
|
20
|
+
{ name: 'card_serial_number', type: 'String' },
|
|
21
|
+
{ name: 'duty_id', type: 'String' },
|
|
22
|
+
{ name: 'on_board_sale_id', type: 'String' },
|
|
23
|
+
{ name: 'payment_method', type: 'String' },
|
|
24
|
+
{ name: 'price', type: 'String' },
|
|
25
|
+
{ name: 'product_long_id', type: 'String' },
|
|
26
|
+
{ name: 'product_quantity', type: 'String' },
|
|
27
|
+
{ name: 'validation_id', type: 'String' },
|
|
28
|
+
];
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
2
|
+
import { type SimplifiedApexOnBoardRefund } from '@tmlmobilidade/types';
|
|
3
|
+
declare class SimplifiedApexOnBoardRefundsNewClass extends ClickHouseTable<SimplifiedApexOnBoardRefund> {
|
|
4
|
+
databaseName: string;
|
|
5
|
+
schema: import("@tmlmobilidade/clickhouse").ClickHouseColumn<{
|
|
6
|
+
_id: string;
|
|
7
|
+
created_at: number & {
|
|
8
|
+
__brand: "UnixTimestamp";
|
|
9
|
+
};
|
|
10
|
+
updated_at: number & {
|
|
11
|
+
__brand: "UnixTimestamp";
|
|
12
|
+
};
|
|
13
|
+
agency_id: string;
|
|
14
|
+
apex_version: string;
|
|
15
|
+
device_id: string;
|
|
16
|
+
line_id: string | null;
|
|
17
|
+
mac_ase_counter_value: number;
|
|
18
|
+
mac_sam_serial_number: number;
|
|
19
|
+
pattern_id: string | null;
|
|
20
|
+
received_at: number & {
|
|
21
|
+
__brand: "UnixTimestamp";
|
|
22
|
+
};
|
|
23
|
+
stop_id: string | null;
|
|
24
|
+
trip_id: string | null;
|
|
25
|
+
vehicle_id: number | null;
|
|
26
|
+
block_id: string | null;
|
|
27
|
+
card_physical_type: number;
|
|
28
|
+
card_serial_number: string;
|
|
29
|
+
duty_id: string | null;
|
|
30
|
+
on_board_sale_id: string | null;
|
|
31
|
+
payment_method: number;
|
|
32
|
+
price: number;
|
|
33
|
+
product_long_id: string;
|
|
34
|
+
product_quantity: number;
|
|
35
|
+
validation_id: string | null;
|
|
36
|
+
}>[];
|
|
37
|
+
tableName: string;
|
|
38
|
+
postInit(): Promise<void>;
|
|
39
|
+
}
|
|
40
|
+
export declare const simplifiedApexOnBoardRefundsNew: SimplifiedApexOnBoardRefundsNewClass;
|
|
41
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
import { simplifiedApexOnBoardRefundsSchema } from './schema.js';
|
|
3
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
4
|
+
/* * */
|
|
5
|
+
class SimplifiedApexOnBoardRefundsNewClass extends ClickHouseTable {
|
|
6
|
+
//
|
|
7
|
+
databaseName = 'simplified_apex';
|
|
8
|
+
schema = simplifiedApexOnBoardRefundsSchema;
|
|
9
|
+
tableName = 'simplified_apex_on-board-refunds';
|
|
10
|
+
async postInit() {
|
|
11
|
+
console.log('Post init ClickHouse service for Simplified Apex On-Board Refunds...');
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/* * */
|
|
15
|
+
export const simplifiedApexOnBoardRefundsNew = new SimplifiedApexOnBoardRefundsNewClass();
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
/* * */
|
|
3
|
+
export const simplifiedApexOnBoardSalesSchema = [
|
|
4
|
+
{ name: '_id', type: 'String' },
|
|
5
|
+
{ name: 'created_at', type: 'String' },
|
|
6
|
+
{ name: 'updated_at', type: 'String' },
|
|
7
|
+
{ name: 'agency_id', type: 'String' },
|
|
8
|
+
{ name: 'apex_version', type: 'String' },
|
|
9
|
+
{ name: 'device_id', type: 'String' },
|
|
10
|
+
{ name: 'line_id', type: 'String' },
|
|
11
|
+
{ name: 'mac_ase_counter_value', type: 'String' },
|
|
12
|
+
{ name: 'mac_sam_serial_number', type: 'String' },
|
|
13
|
+
{ name: 'pattern_id', type: 'String' },
|
|
14
|
+
{ name: 'received_at', type: 'String' },
|
|
15
|
+
{ name: 'stop_id', type: 'String' },
|
|
16
|
+
{ name: 'trip_id', type: 'String' },
|
|
17
|
+
{ name: 'vehicle_id', type: 'String' },
|
|
18
|
+
{ name: 'block_id', type: 'String' },
|
|
19
|
+
{ name: 'card_physical_type', type: 'String' },
|
|
20
|
+
{ name: 'card_serial_number', type: 'String' },
|
|
21
|
+
{ name: 'duty_id', type: 'String' },
|
|
22
|
+
{ name: 'payment_method', type: 'String' },
|
|
23
|
+
{ name: 'price', type: 'String' },
|
|
24
|
+
{ name: 'product_long_id', type: 'String' },
|
|
25
|
+
{ name: 'product_quantity', type: 'String' },
|
|
26
|
+
{ name: 'validation_id', type: 'String' },
|
|
27
|
+
{ name: 'is_passenger', type: 'String' },
|
|
28
|
+
{ name: 'on_board_refund_id', type: 'String' },
|
|
29
|
+
];
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
2
|
+
import { type SimplifiedApexOnBoardSale } from '@tmlmobilidade/types';
|
|
3
|
+
declare class SimplifiedApexOnBoardSalesNewClass extends ClickHouseTable<SimplifiedApexOnBoardSale> {
|
|
4
|
+
databaseName: string;
|
|
5
|
+
schema: import("@tmlmobilidade/clickhouse").ClickHouseColumn<{
|
|
6
|
+
_id: string;
|
|
7
|
+
created_at: number & {
|
|
8
|
+
__brand: "UnixTimestamp";
|
|
9
|
+
};
|
|
10
|
+
updated_at: number & {
|
|
11
|
+
__brand: "UnixTimestamp";
|
|
12
|
+
};
|
|
13
|
+
agency_id: string;
|
|
14
|
+
apex_version: string;
|
|
15
|
+
device_id: string;
|
|
16
|
+
line_id: string | null;
|
|
17
|
+
mac_ase_counter_value: number;
|
|
18
|
+
mac_sam_serial_number: number;
|
|
19
|
+
pattern_id: string | null;
|
|
20
|
+
received_at: number & {
|
|
21
|
+
__brand: "UnixTimestamp";
|
|
22
|
+
};
|
|
23
|
+
stop_id: string | null;
|
|
24
|
+
trip_id: string | null;
|
|
25
|
+
vehicle_id: number | null;
|
|
26
|
+
block_id: string | null;
|
|
27
|
+
card_physical_type: number;
|
|
28
|
+
card_serial_number: string;
|
|
29
|
+
duty_id: string | null;
|
|
30
|
+
payment_method: number;
|
|
31
|
+
price: number;
|
|
32
|
+
product_long_id: string;
|
|
33
|
+
product_quantity: number;
|
|
34
|
+
validation_id: string | null;
|
|
35
|
+
is_passenger: boolean;
|
|
36
|
+
on_board_refund_id: string | null;
|
|
37
|
+
}>[];
|
|
38
|
+
tableName: string;
|
|
39
|
+
postInit(): Promise<void>;
|
|
40
|
+
}
|
|
41
|
+
export declare const simplifiedApexOnBoardSalesNew: SimplifiedApexOnBoardSalesNewClass;
|
|
42
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
import { simplifiedApexOnBoardSalesSchema } from './schema.js';
|
|
3
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
4
|
+
/* * */
|
|
5
|
+
class SimplifiedApexOnBoardSalesNewClass extends ClickHouseTable {
|
|
6
|
+
//
|
|
7
|
+
databaseName = 'simplified_apex';
|
|
8
|
+
schema = simplifiedApexOnBoardSalesSchema;
|
|
9
|
+
tableName = 'simplified_apex_on-board-sales';
|
|
10
|
+
async postInit() {
|
|
11
|
+
console.log('Post init ClickHouse service for Simplified Apex On-Board Sales...');
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/* * */
|
|
15
|
+
export const simplifiedApexOnBoardSalesNew = new SimplifiedApexOnBoardSalesNewClass();
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
/* * */
|
|
3
|
+
export const simplifiedApexValidationsSchema = [
|
|
4
|
+
{ name: '_id', primaryKey: true, type: 'String' },
|
|
5
|
+
{ name: 'agency_id', type: 'String' },
|
|
6
|
+
{ name: 'apex_version', type: 'String' },
|
|
7
|
+
{ name: 'card_serial_number', type: 'String' },
|
|
8
|
+
{ name: 'category', type: 'String' },
|
|
9
|
+
{ name: 'created_at', type: 'Int64' },
|
|
10
|
+
{ name: 'device_id', type: 'String' },
|
|
11
|
+
{ name: 'event_type', type: 'Int64' },
|
|
12
|
+
{ name: 'is_passenger', type: 'Bool' },
|
|
13
|
+
{ name: 'line_id', type: 'String' },
|
|
14
|
+
{ name: 'mac_ase_counter_value', type: 'Int64' },
|
|
15
|
+
{ name: 'mac_sam_serial_number', type: 'Int64' },
|
|
16
|
+
{ name: 'on_board_refund_id', type: 'Nullable(String)' },
|
|
17
|
+
{ name: 'on_board_sale_id', type: 'Nullable(String)' },
|
|
18
|
+
{ name: 'pattern_id', type: 'String' },
|
|
19
|
+
{ name: 'product_id', type: 'String' },
|
|
20
|
+
{ name: 'received_at', type: 'Int64' },
|
|
21
|
+
{ name: 'stop_id', type: 'String' },
|
|
22
|
+
{ name: 'trip_id', type: 'String' },
|
|
23
|
+
{ name: 'units_qty', type: 'Nullable(Int64)' },
|
|
24
|
+
{ name: 'updated_at', type: 'Int64' },
|
|
25
|
+
{ name: 'validation_status', type: 'Int64' },
|
|
26
|
+
{ name: 'vehicle_id', type: 'Int64' },
|
|
27
|
+
];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
2
|
+
import { type SimplifiedApexValidation } from '@tmlmobilidade/types';
|
|
3
|
+
declare class SimplifiedApexValidationsNewClass extends ClickHouseTable<SimplifiedApexValidation> {
|
|
4
|
+
databaseName: string;
|
|
5
|
+
schema: import("@tmlmobilidade/clickhouse").ClickHouseColumn<{
|
|
6
|
+
_id: string;
|
|
7
|
+
created_at: number & {
|
|
8
|
+
__brand: "UnixTimestamp";
|
|
9
|
+
};
|
|
10
|
+
updated_at: number & {
|
|
11
|
+
__brand: "UnixTimestamp";
|
|
12
|
+
};
|
|
13
|
+
agency_id: string;
|
|
14
|
+
apex_version: string;
|
|
15
|
+
device_id: string;
|
|
16
|
+
line_id: string;
|
|
17
|
+
mac_ase_counter_value: number;
|
|
18
|
+
mac_sam_serial_number: number;
|
|
19
|
+
pattern_id: string;
|
|
20
|
+
received_at: number & {
|
|
21
|
+
__brand: "UnixTimestamp";
|
|
22
|
+
};
|
|
23
|
+
stop_id: string;
|
|
24
|
+
trip_id: string;
|
|
25
|
+
vehicle_id: number;
|
|
26
|
+
card_serial_number: string;
|
|
27
|
+
on_board_sale_id: string | null;
|
|
28
|
+
is_passenger: boolean;
|
|
29
|
+
on_board_refund_id: string | null;
|
|
30
|
+
category: "on_board_sale" | "prepaid" | "subscription";
|
|
31
|
+
event_type: number;
|
|
32
|
+
product_id: string;
|
|
33
|
+
units_qty: number | null;
|
|
34
|
+
validation_status: 0 | 1 | 2 | 12 | 4 | 3 | 5 | 6 | 11 | 10 | 7 | 8 | 9 | 13;
|
|
35
|
+
}>[];
|
|
36
|
+
tableName: string;
|
|
37
|
+
postInit(): Promise<void>;
|
|
38
|
+
}
|
|
39
|
+
export declare const simplifiedApexValidationsNew: SimplifiedApexValidationsNewClass;
|
|
40
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
import { simplifiedApexValidationsSchema } from './schema.js';
|
|
3
|
+
import { ClickHouseTable } from '@tmlmobilidade/clickhouse';
|
|
4
|
+
/* * */
|
|
5
|
+
class SimplifiedApexValidationsNewClass extends ClickHouseTable {
|
|
6
|
+
//
|
|
7
|
+
databaseName = 'simplified_apex';
|
|
8
|
+
schema = simplifiedApexValidationsSchema;
|
|
9
|
+
tableName = 'simplified_apex_validations';
|
|
10
|
+
async postInit() {
|
|
11
|
+
console.log('Post init ClickHouse service for Simplified Apex Validations...');
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/* * */
|
|
15
|
+
export const simplifiedApexValidationsNew = new SimplifiedApexValidationsNewClass();
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -123,15 +123,15 @@ declare class RolesClass extends MongoCollectionClass<Role, CreateRoleDto, Updat
|
|
|
123
123
|
agency_ids: string[];
|
|
124
124
|
};
|
|
125
125
|
})[];
|
|
126
|
+
created_by: string | null;
|
|
127
|
+
is_locked: boolean;
|
|
128
|
+
updated_by?: string | undefined;
|
|
126
129
|
created_at: number & {
|
|
127
130
|
__brand: "UnixTimestamp";
|
|
128
131
|
};
|
|
129
|
-
created_by: string | null;
|
|
130
132
|
updated_at: number & {
|
|
131
133
|
__brand: "UnixTimestamp";
|
|
132
134
|
};
|
|
133
|
-
updated_by?: string | undefined;
|
|
134
|
-
is_locked: boolean;
|
|
135
135
|
name: string;
|
|
136
136
|
_id: string;
|
|
137
137
|
}>;
|
|
@@ -253,15 +253,15 @@ declare class RolesClass extends MongoCollectionClass<Role, CreateRoleDto, Updat
|
|
|
253
253
|
agency_ids: string[];
|
|
254
254
|
};
|
|
255
255
|
})[];
|
|
256
|
+
created_by: string | null;
|
|
257
|
+
is_locked: boolean;
|
|
258
|
+
updated_by?: string | undefined;
|
|
256
259
|
created_at: number & {
|
|
257
260
|
__brand: "UnixTimestamp";
|
|
258
261
|
};
|
|
259
|
-
created_by: string | null;
|
|
260
262
|
updated_at: number & {
|
|
261
263
|
__brand: "UnixTimestamp";
|
|
262
264
|
};
|
|
263
|
-
updated_by?: string | undefined;
|
|
264
|
-
is_locked: boolean;
|
|
265
265
|
name: string;
|
|
266
266
|
_id: string;
|
|
267
267
|
}[]>;
|
|
@@ -379,15 +379,15 @@ declare class RolesClass extends MongoCollectionClass<Role, CreateRoleDto, Updat
|
|
|
379
379
|
agency_ids: string[];
|
|
380
380
|
};
|
|
381
381
|
})[];
|
|
382
|
+
created_by: string | null;
|
|
383
|
+
is_locked: boolean;
|
|
384
|
+
updated_by?: string | undefined;
|
|
382
385
|
created_at: number & {
|
|
383
386
|
__brand: "UnixTimestamp";
|
|
384
387
|
};
|
|
385
|
-
created_by: string | null;
|
|
386
388
|
updated_at: number & {
|
|
387
389
|
__brand: "UnixTimestamp";
|
|
388
390
|
};
|
|
389
|
-
updated_by?: string | undefined;
|
|
390
|
-
is_locked: boolean;
|
|
391
391
|
name: string;
|
|
392
392
|
_id: string;
|
|
393
393
|
}>;
|
|
@@ -149,15 +149,15 @@ declare class UsersClass extends MongoCollectionClass<User_UNSAFE, CreateUserDto
|
|
|
149
149
|
})[];
|
|
150
150
|
session_ids: any;
|
|
151
151
|
verification_token_ids: any;
|
|
152
|
+
created_by: string | null;
|
|
153
|
+
is_locked: boolean;
|
|
154
|
+
updated_by?: string | undefined;
|
|
152
155
|
created_at: number & {
|
|
153
156
|
__brand: "UnixTimestamp";
|
|
154
157
|
};
|
|
155
|
-
created_by: string | null;
|
|
156
158
|
updated_at: number & {
|
|
157
159
|
__brand: "UnixTimestamp";
|
|
158
160
|
};
|
|
159
|
-
updated_by?: string | undefined;
|
|
160
|
-
is_locked: boolean;
|
|
161
161
|
email: string;
|
|
162
162
|
email_verified: import("@tmlmobilidade/types").UnixTimestamp | null;
|
|
163
163
|
first_name: string;
|
|
@@ -286,15 +286,15 @@ declare class UsersClass extends MongoCollectionClass<User_UNSAFE, CreateUserDto
|
|
|
286
286
|
})[];
|
|
287
287
|
session_ids: any;
|
|
288
288
|
verification_token_ids: any;
|
|
289
|
+
created_by: string | null;
|
|
290
|
+
is_locked: boolean;
|
|
291
|
+
updated_by?: string | undefined;
|
|
289
292
|
created_at: number & {
|
|
290
293
|
__brand: "UnixTimestamp";
|
|
291
294
|
};
|
|
292
|
-
created_by: string | null;
|
|
293
295
|
updated_at: number & {
|
|
294
296
|
__brand: "UnixTimestamp";
|
|
295
297
|
};
|
|
296
|
-
updated_by?: string | undefined;
|
|
297
|
-
is_locked: boolean;
|
|
298
298
|
email: string;
|
|
299
299
|
email_verified: import("@tmlmobilidade/types").UnixTimestamp | null;
|
|
300
300
|
first_name: string;
|
|
@@ -427,15 +427,15 @@ declare class UsersClass extends MongoCollectionClass<User_UNSAFE, CreateUserDto
|
|
|
427
427
|
})[];
|
|
428
428
|
session_ids: any;
|
|
429
429
|
verification_token_ids: any;
|
|
430
|
+
created_by: string | null;
|
|
431
|
+
is_locked: boolean;
|
|
432
|
+
updated_by?: string | undefined;
|
|
430
433
|
created_at: number & {
|
|
431
434
|
__brand: "UnixTimestamp";
|
|
432
435
|
};
|
|
433
|
-
created_by: string | null;
|
|
434
436
|
updated_at: number & {
|
|
435
437
|
__brand: "UnixTimestamp";
|
|
436
438
|
};
|
|
437
|
-
updated_by?: string | undefined;
|
|
438
|
-
is_locked: boolean;
|
|
439
439
|
email: string;
|
|
440
440
|
email_verified: import("@tmlmobilidade/types").UnixTimestamp | null;
|
|
441
441
|
first_name: string;
|
|
@@ -564,15 +564,15 @@ declare class UsersClass extends MongoCollectionClass<User_UNSAFE, CreateUserDto
|
|
|
564
564
|
})[];
|
|
565
565
|
session_ids: any;
|
|
566
566
|
verification_token_ids: any;
|
|
567
|
+
created_by: string | null;
|
|
568
|
+
is_locked: boolean;
|
|
569
|
+
updated_by?: string | undefined;
|
|
567
570
|
created_at: number & {
|
|
568
571
|
__brand: "UnixTimestamp";
|
|
569
572
|
};
|
|
570
|
-
created_by: string | null;
|
|
571
573
|
updated_at: number & {
|
|
572
574
|
__brand: "UnixTimestamp";
|
|
573
575
|
};
|
|
574
|
-
updated_by?: string | undefined;
|
|
575
|
-
is_locked: boolean;
|
|
576
576
|
email: string;
|
|
577
577
|
email_verified: import("@tmlmobilidade/types").UnixTimestamp | null;
|
|
578
578
|
first_name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tmlmobilidade/interfaces",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20260322.1655.45",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "iso@tmlmobilidade.pt",
|
|
6
6
|
"name": "TML-ISO"
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"watch": "tsc-watch --onSuccess 'resolve-tspaths'"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
+
"@tmlmobilidade/clickhouse": "*",
|
|
39
40
|
"@tmlmobilidade/consts": "*",
|
|
40
41
|
"@tmlmobilidade/dates": "*",
|
|
41
42
|
"@tmlmobilidade/emails": "*",
|