@mac777/project-pinecone-models 1.0.0
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/Bkash.d.ts +17 -0
- package/dist/Bkash.js +13 -0
- package/dist/Event.d.ts +790 -0
- package/dist/Event.js +239 -0
- package/dist/Media.d.ts +58 -0
- package/dist/Media.js +34 -0
- package/dist/Order.d.ts +172 -0
- package/dist/Order.js +184 -0
- package/dist/Payment.d.ts +61 -0
- package/dist/Payment.js +56 -0
- package/dist/Ticket.d.ts +73 -0
- package/dist/Ticket.js +90 -0
- package/dist/User.d.ts +41 -0
- package/dist/User.js +50 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +21 -0
- package/package.json +22 -0
package/dist/Bkash.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
declare const bkashSchema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
3
|
+
timestamps: true;
|
|
4
|
+
}, {
|
|
5
|
+
auth_token: string;
|
|
6
|
+
} & mongoose.DefaultTimestampProps, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
7
|
+
auth_token: string;
|
|
8
|
+
} & mongoose.DefaultTimestampProps>, {}, mongoose.ResolveSchemaOptions<{
|
|
9
|
+
timestamps: true;
|
|
10
|
+
}>> & mongoose.FlatRecord<{
|
|
11
|
+
auth_token: string;
|
|
12
|
+
} & mongoose.DefaultTimestampProps> & {
|
|
13
|
+
_id: mongoose.Types.ObjectId;
|
|
14
|
+
} & {
|
|
15
|
+
__v: number;
|
|
16
|
+
}>;
|
|
17
|
+
export default bkashSchema;
|
package/dist/Bkash.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const mongoose_1 = __importDefault(require("mongoose"));
|
|
7
|
+
const bkashSchema = new mongoose_1.default.Schema({
|
|
8
|
+
auth_token: {
|
|
9
|
+
type: String,
|
|
10
|
+
required: true,
|
|
11
|
+
}
|
|
12
|
+
}, { timestamps: true });
|
|
13
|
+
exports.default = bkashSchema;
|