location update optimized with schema changes and geoJson Compatability testing endpoint with encrypted key authorization

This commit is contained in:
Shibi Chakkaravarthy
2026-04-17 14:15:11 +05:30
parent b44abf9c88
commit 92769cfd38
19 changed files with 459 additions and 27 deletions
+46
View File
@@ -0,0 +1,46 @@
import { model, Schema, Types } from "mongoose";
import { locationSchema } from "../../helpers";
const schema = new Schema({
name: {
type: String,
required: true,
},
createdBy: {
type: Types.ObjectId,
required: true,
ref: "user",
},
createdOn: {
type: Date,
required: true,
},
location: locationSchema,
category: {
type: String,
required: true,
default: "OWN",
enum: ["OWN", "PARTNER", "VENDOR", "CLIENT", "DISTRIBUTOR"],
},
type: {
type: String,
required: true,
enum: [
"HQ",
"BRANCH",
"WAREHOUSE",
"VENDOR",
"PARTNER",
"DISTRIBUTOR",
"CLIENT",
],
},
entity: {
type: Types.ObjectId,
required: true,
},
});
schema.index({ location: "2dsphere" });
export default model("venue", schema);