@7365admin1/core 2.31.0 → 2.31.1
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/CHANGELOG.md +6 -0
- package/dist/index.d.ts +12 -1
- package/dist/index.js +181 -236
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +181 -236
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2550,6 +2550,7 @@ type TVisitorTransaction = {
|
|
|
2550
2550
|
updatedAt?: string | Date;
|
|
2551
2551
|
deletedAt?: string | Date;
|
|
2552
2552
|
purpose?: string;
|
|
2553
|
+
invitedId?: string | ObjectId;
|
|
2553
2554
|
};
|
|
2554
2555
|
declare const schemaVisitorTransaction: Joi.ObjectSchema<any>;
|
|
2555
2556
|
declare const schemaUpdateVisTrans: Joi.ObjectSchema<any>;
|
|
@@ -2588,6 +2589,16 @@ declare function MVisitorTransaction(value: TVisitorTransaction): {
|
|
|
2588
2589
|
createdAt: string | Date;
|
|
2589
2590
|
updatedAt: string | Date;
|
|
2590
2591
|
deletedAt: string | Date;
|
|
2592
|
+
purpose: string | undefined;
|
|
2593
|
+
numberOfPassengers: number | null;
|
|
2594
|
+
email: string | undefined;
|
|
2595
|
+
isOvernightParking: boolean;
|
|
2596
|
+
invitedId: ObjectId;
|
|
2597
|
+
overnightParking: {
|
|
2598
|
+
status: string;
|
|
2599
|
+
remarks: string;
|
|
2600
|
+
updatedBy: ObjectId;
|
|
2601
|
+
} | null;
|
|
2591
2602
|
};
|
|
2592
2603
|
|
|
2593
2604
|
declare const visitors_namespace_collection = "visitor.transactions";
|
|
@@ -5407,7 +5418,7 @@ declare function useOccurrenceSubjectRepo(): {
|
|
|
5407
5418
|
pages: number;
|
|
5408
5419
|
pageRange: string;
|
|
5409
5420
|
} | TOccurrenceSubject>;
|
|
5410
|
-
getOccurrenceSubjectById: (_id: string | ObjectId, session?: ClientSession) => Promise<mongodb.WithId<bson.Document
|
|
5421
|
+
getOccurrenceSubjectById: (_id: string | ObjectId, session?: ClientSession) => Promise<mongodb.WithId<bson.Document>>;
|
|
5411
5422
|
updateOccurrenceSubjectById: (_id: ObjectId | string, value: Partial<TOccurrenceSubject>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
5412
5423
|
deleteOccurrenceSubjectById: (_id: string | ObjectId) => Promise<number>;
|
|
5413
5424
|
createIndexes: () => Promise<void>;
|