@tmlmobilidade/interfaces 20251222.1537.24 → 20251222.1552.52
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
|
import { MongoCollectionClass } from '../../common/mongo-collection.js';
|
|
2
|
-
import { CreateGtfsValidationDto, GtfsValidation, UpdateGtfsValidationDto } from '@tmlmobilidade/types';
|
|
3
|
-
import { IndexDescription } from 'mongodb';
|
|
2
|
+
import { type CreateGtfsValidationDto, type GtfsValidation, type UpdateGtfsValidationDto } from '@tmlmobilidade/types';
|
|
3
|
+
import { type IndexDescription } from 'mongodb';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
declare class GtfValidationsClass extends MongoCollectionClass<GtfsValidation, CreateGtfsValidationDto, UpdateGtfsValidationDto> {
|
|
6
6
|
private static _instance;
|
|
@@ -10,11 +10,10 @@ declare class GtfValidationsClass extends MongoCollectionClass<GtfsValidation, C
|
|
|
10
10
|
static getInstance(): Promise<GtfValidationsClass>;
|
|
11
11
|
/**
|
|
12
12
|
* Finds Validation documents by agency ID.
|
|
13
|
-
*
|
|
14
|
-
* @param id - The agency ID to search for
|
|
13
|
+
* @param agencyId The agency ID to search for.
|
|
15
14
|
* @returns A promise that resolves to an array of matching documents
|
|
16
15
|
*/
|
|
17
|
-
findByAgencyId(
|
|
16
|
+
findByAgencyId(agencyId: string): Promise<import("mongodb").WithId<{
|
|
18
17
|
_id: string;
|
|
19
18
|
created_at: number & {
|
|
20
19
|
__brand: "UnixTimestamp";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/* * */
|
|
2
2
|
import { MongoCollectionClass } from '../../common/mongo-collection.js';
|
|
3
|
-
import {
|
|
3
|
+
import { CreateGtfsValidationSchema, UpdateGtfsValidationSchema } from '@tmlmobilidade/types';
|
|
4
4
|
import { AsyncSingletonProxy } from '@tmlmobilidade/utils';
|
|
5
5
|
/* * */
|
|
6
6
|
class GtfValidationsClass extends MongoCollectionClass {
|
|
7
7
|
static _instance;
|
|
8
|
-
createSchema =
|
|
8
|
+
createSchema = CreateGtfsValidationSchema;
|
|
9
9
|
updateSchema = UpdateGtfsValidationSchema;
|
|
10
10
|
constructor() {
|
|
11
11
|
super();
|
|
@@ -20,12 +20,11 @@ class GtfValidationsClass extends MongoCollectionClass {
|
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
22
|
* Finds Validation documents by agency ID.
|
|
23
|
-
*
|
|
24
|
-
* @param id - The agency ID to search for
|
|
23
|
+
* @param agencyId The agency ID to search for.
|
|
25
24
|
* @returns A promise that resolves to an array of matching documents
|
|
26
25
|
*/
|
|
27
|
-
async findByAgencyId(
|
|
28
|
-
return this.mongoCollection.find({ agency_id:
|
|
26
|
+
async findByAgencyId(agencyId) {
|
|
27
|
+
return this.mongoCollection.find({ agency_id: agencyId }).toArray();
|
|
29
28
|
}
|
|
30
29
|
getCollectionIndexes() {
|
|
31
30
|
return [];
|