@sildeswj/thechium-schema 6.0.0 → 6.1.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/retailBrand.schema.d.ts +2 -0
- package/dist/retailBrand.schema.d.ts.map +1 -1
- package/dist/retailBrand.schema.js +9 -0
- package/dist/retailBrand.schema.js.map +1 -1
- package/dist/retailStore.schema.d.ts +3 -0
- package/dist/retailStore.schema.d.ts.map +1 -1
- package/dist/retailStore.schema.js +22 -0
- package/dist/retailStore.schema.js.map +1 -1
- package/package.json +3 -1
- package/dist/payment.schema.d.ts +0 -18
- package/dist/payment.schema.d.ts.map +0 -1
- package/dist/payment.schema.js +0 -57
- package/dist/payment.schema.js.map +0 -1
- package/dist/subscriptionScheduling.schema.d.ts +0 -16
- package/dist/subscriptionScheduling.schema.d.ts.map +0 -1
- package/dist/subscriptionScheduling.schema.js +0 -52
- package/dist/subscriptionScheduling.schema.js.map +0 -1
- package/dist/tossPaymentBillingKey.schema.d.ts +0 -17
- package/dist/tossPaymentBillingKey.schema.d.ts.map +0 -1
- package/dist/tossPaymentBillingKey.schema.js +0 -56
- package/dist/tossPaymentBillingKey.schema.js.map +0 -1
|
@@ -7,6 +7,8 @@ export declare class RetailBrand {
|
|
|
7
7
|
creator: mongoose.Schema.Types.ObjectId;
|
|
8
8
|
brandPriceSetting: boolean;
|
|
9
9
|
pricingDetails: Pricing[];
|
|
10
|
+
loginId: string;
|
|
11
|
+
password: string;
|
|
10
12
|
status: string;
|
|
11
13
|
}
|
|
12
14
|
export declare const RetailBrandSchema: mongoose.Schema<RetailBrand, mongoose.Model<RetailBrand, any, any, any, mongoose.Document<unknown, any, RetailBrand> & RetailBrand & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"retailBrand.schema.d.ts","sourceRoot":"","sources":["../src/retailBrand.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,OAAO,EAAiB,MAAM,kBAAkB,CAAC;AAE1D,qBACa,WAAW;IAEtB,IAAI,EAAE,MAAM,CAAC;IAOb,iBAAiB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAMlD,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;IAOtD,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAGxC,iBAAiB,EAAE,OAAO,CAAC;IAG3B,cAAc,EAAE,OAAO,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"retailBrand.schema.d.ts","sourceRoot":"","sources":["../src/retailBrand.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,OAAO,EAAiB,MAAM,kBAAkB,CAAC;AAE1D,qBACa,WAAW;IAEtB,IAAI,EAAE,MAAM,CAAC;IAOb,iBAAiB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAMlD,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;IAOtD,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAGxC,iBAAiB,EAAE,OAAO,CAAC;IAG3B,cAAc,EAAE,OAAO,EAAE,CAAC;IAG1B,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAOjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,iBAAiB;;;;;;;;EAA4C,CAAC"}
|
|
@@ -53,6 +53,14 @@ __decorate([
|
|
|
53
53
|
(0, mongoose_1.Prop)({ type: [pricing_schema_1.PricingSchema], required: false }),
|
|
54
54
|
__metadata("design:type", Array)
|
|
55
55
|
], RetailBrand.prototype, "pricingDetails", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, mongoose_1.Prop)({ required: false, maxlength: 20 }),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], RetailBrand.prototype, "loginId", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
62
|
+
__metadata("design:type", String)
|
|
63
|
+
], RetailBrand.prototype, "password", void 0);
|
|
56
64
|
__decorate([
|
|
57
65
|
(0, mongoose_1.Prop)({
|
|
58
66
|
required: true,
|
|
@@ -69,6 +77,7 @@ exports.RetailBrandSchema.index({ collectionCompanies: 1 });
|
|
|
69
77
|
exports.RetailBrandSchema.index({ creator: 1 });
|
|
70
78
|
exports.RetailBrandSchema.index({ status: 1 });
|
|
71
79
|
exports.RetailBrandSchema.index({ name: 'text' }); // Optional for text search
|
|
80
|
+
exports.RetailBrandSchema.index({ loginId: 1 }, { unique: true });
|
|
72
81
|
// Automatically exclude deleted records in all queries
|
|
73
82
|
exports.RetailBrandSchema.pre(/^find/, function (next) {
|
|
74
83
|
const query = this;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"retailBrand.schema.js","sourceRoot":"","sources":["../src/retailBrand.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,+CAA+D;AAC/D,uCAAoC;AACpC,wDAAgC;AAChC,qDAA0D;AAGnD,IAAM,WAAW,GAAjB,MAAM,WAAW;
|
|
1
|
+
{"version":3,"file":"retailBrand.schema.js","sourceRoot":"","sources":["../src/retailBrand.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,+CAA+D;AAC/D,uCAAoC;AACpC,wDAAgC;AAChC,qDAA0D;AAGnD,IAAM,WAAW,GAAjB,MAAM,WAAW;CA0CvB,CAAA;AA1CY,kCAAW;AAEtB;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC;;yCAC1C;AAOb;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,KAAK;QACf,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACiB,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;sDAAC;AAMlD;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,CAAC,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;KACvC,CAAC;;wDACoD;AAOtD;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACO,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;4CAAC;AAGxC;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;sDACC;AAG3B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,CAAC,8BAAa,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;mDACvB;AAG1B;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC;;4CACzB;AAGhB;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;6CACT;AAOjB;IALC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC;QAC3B,OAAO,EAAE,QAAQ;KAClB,CAAC;;2CACa;sBAzCJ,WAAW;IADvB,IAAA,iBAAM,EAAC,iBAAO,CAAC;GACH,WAAW,CA0CvB;AAEY,QAAA,iBAAiB,GAAG,wBAAa,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC;AAE3E,yBAAiB,CAAC,KAAK,CAAC,EAAE,mBAAmB,EAAE,CAAC,EAAE,CAAC,CAAC;AACpD,yBAAiB,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC;AACxC,yBAAiB,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC;AACvC,yBAAiB,CAAC,KAAK,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,2BAA2B;AACtE,yBAAiB,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC;AAE1D,uDAAuD;AACvD,yBAAiB,CAAC,GAAG,CAAC,OAAO,EAAE,UAAU,IAAI;IAC3C,MAAM,KAAK,GAAG,IAAgC,CAAC;IAC/C,KAAK,CAAC,QAAQ,iCAAM,KAAK,CAAC,SAAS,EAAE,KAAE,MAAM,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE,IAAG,CAAC;IACrE,IAAI,EAAE,CAAC;AACT,CAAC,CAAC,CAAC"}
|
|
@@ -11,6 +11,9 @@ export declare class RetailStore {
|
|
|
11
11
|
collectionCompany: mongoose.Schema.Types.ObjectId;
|
|
12
12
|
deliveryMan: mongoose.Schema.Types.ObjectId;
|
|
13
13
|
pricePerKg: number;
|
|
14
|
+
createdByDeliveryMan: boolean;
|
|
15
|
+
storeEmployeeName: string;
|
|
16
|
+
phoneNumber: string;
|
|
14
17
|
status: string;
|
|
15
18
|
}
|
|
16
19
|
export declare const RetailStoreSchema: mongoose.Schema<RetailStore, mongoose.Model<RetailStore, any, any, any, mongoose.Document<unknown, any, RetailStore> & RetailStore & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"retailStore.schema.d.ts","sourceRoot":"","sources":["../src/retailStore.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,qBACa,WAAW;IAKtB,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAG5C,IAAI,EAAE,MAAM,CAAC;IAGb,IAAI,EAAE,MAAM,CAAC;IAGb,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,OAAO,EAAE,MAAM,CAAC;IAGhB,cAAc,EAAE,MAAM,CAAC;IAGvB,MAAM,EAAE,MAAM,CAAC;IAMf,iBAAiB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAMlD,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAK5C,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"retailStore.schema.d.ts","sourceRoot":"","sources":["../src/retailStore.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,qBACa,WAAW;IAKtB,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAG5C,IAAI,EAAE,MAAM,CAAC;IAGb,IAAI,EAAE,MAAM,CAAC;IAGb,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,OAAO,EAAE,MAAM,CAAC;IAGhB,cAAc,EAAE,MAAM,CAAC;IAGvB,MAAM,EAAE,MAAM,CAAC;IAMf,iBAAiB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAMlD,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAK5C,UAAU,EAAE,MAAM,CAAC;IAKnB,oBAAoB,EAAE,OAAO,CAAC;IAM9B,iBAAiB,EAAE,MAAM,CAAC;IAO1B,WAAW,EAAE,MAAM,CAAC;IAOpB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,iBAAiB;;;;;;;;EAA4C,CAAC"}
|
|
@@ -74,6 +74,27 @@ __decorate([
|
|
|
74
74
|
}),
|
|
75
75
|
__metadata("design:type", Number)
|
|
76
76
|
], RetailStore.prototype, "pricePerKg", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, mongoose_1.Prop)({
|
|
79
|
+
required: false,
|
|
80
|
+
}),
|
|
81
|
+
__metadata("design:type", Boolean)
|
|
82
|
+
], RetailStore.prototype, "createdByDeliveryMan", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, mongoose_1.Prop)({
|
|
85
|
+
required: false,
|
|
86
|
+
maxlength: 20,
|
|
87
|
+
}),
|
|
88
|
+
__metadata("design:type", String)
|
|
89
|
+
], RetailStore.prototype, "storeEmployeeName", void 0);
|
|
90
|
+
__decorate([
|
|
91
|
+
(0, mongoose_1.Prop)({
|
|
92
|
+
required: false,
|
|
93
|
+
maxlength: 15,
|
|
94
|
+
minlength: 6,
|
|
95
|
+
}),
|
|
96
|
+
__metadata("design:type", String)
|
|
97
|
+
], RetailStore.prototype, "phoneNumber", void 0);
|
|
77
98
|
__decorate([
|
|
78
99
|
(0, mongoose_1.Prop)({
|
|
79
100
|
required: true,
|
|
@@ -89,6 +110,7 @@ exports.RetailStoreSchema = mongoose_1.SchemaFactory.createForClass(RetailStore)
|
|
|
89
110
|
exports.RetailStoreSchema.index({ retailBrand: 1 });
|
|
90
111
|
exports.RetailStoreSchema.index({ collectionCompany: 1 });
|
|
91
112
|
exports.RetailStoreSchema.index({ deliveryMan: 1 });
|
|
113
|
+
exports.RetailStoreSchema.index({ loginId: 1 }, { unique: true });
|
|
92
114
|
// Automatically exclude deleted records in all queries
|
|
93
115
|
exports.RetailStoreSchema.pre(/^find/, function (next) {
|
|
94
116
|
const query = this;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"retailStore.schema.js","sourceRoot":"","sources":["../src/retailStore.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,+CAA+D;AAC/D,uCAAoC;AACpC,wDAAgC;AAGzB,IAAM,WAAW,GAAjB,MAAM,WAAW;
|
|
1
|
+
{"version":3,"file":"retailStore.schema.js","sourceRoot":"","sources":["../src/retailStore.schema.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sildeswj/thechium-schema",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "rm -rf dist && tsc",
|
|
8
8
|
"prepublishOnly": "npm run build",
|
|
9
|
+
"prerelease example": "npm version prerelease --preid=your-branch-name",
|
|
10
|
+
"prerelease publish example": "npm publish --tag your-branch-name",
|
|
9
11
|
"patch": "yarn version --patch && git push --follow-tags",
|
|
10
12
|
"minor": "yarn version --minor && git push --follow-tags",
|
|
11
13
|
"major": "yarn version --major && git push --follow-tags"
|
package/dist/payment.schema.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
import { SubscriptionScheduling } from './subscriptionScheduling.schema';
|
|
3
|
-
export declare class Payment {
|
|
4
|
-
collectionCompanyId: mongoose.Schema.Types.ObjectId;
|
|
5
|
-
payAmount: string;
|
|
6
|
-
subscriptionScheduling: SubscriptionScheduling;
|
|
7
|
-
status: string;
|
|
8
|
-
}
|
|
9
|
-
export declare const PaymentSchema: mongoose.Schema<Payment, mongoose.Model<Payment, any, any, any, mongoose.Document<unknown, any, Payment> & Payment & {
|
|
10
|
-
_id: mongoose.Types.ObjectId;
|
|
11
|
-
} & {
|
|
12
|
-
__v: number;
|
|
13
|
-
}, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, Payment, mongoose.Document<unknown, {}, mongoose.FlatRecord<Payment>> & mongoose.FlatRecord<Payment> & {
|
|
14
|
-
_id: mongoose.Types.ObjectId;
|
|
15
|
-
} & {
|
|
16
|
-
__v: number;
|
|
17
|
-
}>;
|
|
18
|
-
//# sourceMappingURL=payment.schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"payment.schema.d.ts","sourceRoot":"","sources":["../src/payment.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EACL,sBAAsB,EAEvB,MAAM,iCAAiC,CAAC;AAEzC,qBACa,OAAO;IAKlB,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAGpD,SAAS,EAAE,MAAM,CAAC;IAGlB,sBAAsB,EAAE,sBAAsB,CAAC;IAO/C,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,aAAa;;;;;;;;EAAwC,CAAC"}
|
package/dist/payment.schema.js
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.PaymentSchema = exports.Payment = void 0;
|
|
16
|
-
const mongoose_1 = require("@nestjs/mongoose");
|
|
17
|
-
const options_1 = require("./options");
|
|
18
|
-
const mongoose_2 = __importDefault(require("mongoose"));
|
|
19
|
-
const subscriptionScheduling_schema_1 = require("./subscriptionScheduling.schema");
|
|
20
|
-
let Payment = class Payment {
|
|
21
|
-
};
|
|
22
|
-
exports.Payment = Payment;
|
|
23
|
-
__decorate([
|
|
24
|
-
(0, mongoose_1.Prop)({
|
|
25
|
-
required: true,
|
|
26
|
-
type: mongoose_2.default.Schema.Types.ObjectId,
|
|
27
|
-
}),
|
|
28
|
-
__metadata("design:type", mongoose_2.default.Schema.Types.ObjectId)
|
|
29
|
-
], Payment.prototype, "collectionCompanyId", void 0);
|
|
30
|
-
__decorate([
|
|
31
|
-
(0, mongoose_1.Prop)({ required: true }),
|
|
32
|
-
__metadata("design:type", String)
|
|
33
|
-
], Payment.prototype, "payAmount", void 0);
|
|
34
|
-
__decorate([
|
|
35
|
-
(0, mongoose_1.Prop)({ type: subscriptionScheduling_schema_1.SubscriptionSchedulingSchema }),
|
|
36
|
-
__metadata("design:type", subscriptionScheduling_schema_1.SubscriptionScheduling)
|
|
37
|
-
], Payment.prototype, "subscriptionScheduling", void 0);
|
|
38
|
-
__decorate([
|
|
39
|
-
(0, mongoose_1.Prop)({
|
|
40
|
-
required: true,
|
|
41
|
-
enum: ['active', 'deleted'],
|
|
42
|
-
default: 'active',
|
|
43
|
-
}),
|
|
44
|
-
__metadata("design:type", String)
|
|
45
|
-
], Payment.prototype, "status", void 0);
|
|
46
|
-
exports.Payment = Payment = __decorate([
|
|
47
|
-
(0, mongoose_1.Schema)(options_1.options)
|
|
48
|
-
], Payment);
|
|
49
|
-
exports.PaymentSchema = mongoose_1.SchemaFactory.createForClass(Payment);
|
|
50
|
-
exports.PaymentSchema.index({ collectionCompanyId: 1 });
|
|
51
|
-
// Automatically exclude deleted records in all queries
|
|
52
|
-
exports.PaymentSchema.pre(/^find/, function (next) {
|
|
53
|
-
const query = this;
|
|
54
|
-
query.setQuery(Object.assign(Object.assign({}, query.getFilter()), { status: { $ne: 'deleted' } }));
|
|
55
|
-
next();
|
|
56
|
-
});
|
|
57
|
-
//# sourceMappingURL=payment.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"payment.schema.js","sourceRoot":"","sources":["../src/payment.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,+CAA+D;AAC/D,uCAAoC;AACpC,wDAAgC;AAChC,mFAGyC;AAGlC,IAAM,OAAO,GAAb,MAAM,OAAO;CAmBnB,CAAA;AAnBY,0BAAO;AAKlB;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACmB,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;oDAAC;AAGpD;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACP;AAGlB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,4DAA4B,EAAE,CAAC;8BACrB,sDAAsB;uDAAC;AAO/C;IALC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC;QAC3B,OAAO,EAAE,QAAQ;KAClB,CAAC;;uCACa;kBAlBJ,OAAO;IADnB,IAAA,iBAAM,EAAC,iBAAO,CAAC;GACH,OAAO,CAmBnB;AAEY,QAAA,aAAa,GAAG,wBAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;AAEnE,qBAAa,CAAC,KAAK,CAAC,EAAE,mBAAmB,EAAE,CAAC,EAAE,CAAC,CAAC;AAEhD,uDAAuD;AACvD,qBAAa,CAAC,GAAG,CAAC,OAAO,EAAE,UAAU,IAAI;IACvC,MAAM,KAAK,GAAG,IAAgC,CAAC;IAC/C,KAAK,CAAC,QAAQ,iCAAM,KAAK,CAAC,SAAS,EAAE,KAAE,MAAM,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE,IAAG,CAAC;IACrE,IAAI,EAAE,CAAC;AACT,CAAC,CAAC,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
export declare class SubscriptionScheduling {
|
|
3
|
-
collectionCompanyId: mongoose.Schema.Types.ObjectId;
|
|
4
|
-
startDate: Date;
|
|
5
|
-
status: string;
|
|
6
|
-
}
|
|
7
|
-
export declare const SubscriptionSchedulingSchema: mongoose.Schema<SubscriptionScheduling, mongoose.Model<SubscriptionScheduling, any, any, any, mongoose.Document<unknown, any, SubscriptionScheduling> & SubscriptionScheduling & {
|
|
8
|
-
_id: mongoose.Types.ObjectId;
|
|
9
|
-
} & {
|
|
10
|
-
__v: number;
|
|
11
|
-
}, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, SubscriptionScheduling, mongoose.Document<unknown, {}, mongoose.FlatRecord<SubscriptionScheduling>> & mongoose.FlatRecord<SubscriptionScheduling> & {
|
|
12
|
-
_id: mongoose.Types.ObjectId;
|
|
13
|
-
} & {
|
|
14
|
-
__v: number;
|
|
15
|
-
}>;
|
|
16
|
-
//# sourceMappingURL=subscriptionScheduling.schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"subscriptionScheduling.schema.d.ts","sourceRoot":"","sources":["../src/subscriptionScheduling.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,qBACa,sBAAsB;IAKjC,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAGpD,SAAS,EAAE,IAAI,CAAC;IAOhB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,4BAA4B;;;;;;;;EAAuD,CAAC"}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.SubscriptionSchedulingSchema = exports.SubscriptionScheduling = void 0;
|
|
16
|
-
const mongoose_1 = require("@nestjs/mongoose");
|
|
17
|
-
const options_1 = require("./options");
|
|
18
|
-
const mongoose_2 = __importDefault(require("mongoose"));
|
|
19
|
-
let SubscriptionScheduling = class SubscriptionScheduling {
|
|
20
|
-
};
|
|
21
|
-
exports.SubscriptionScheduling = SubscriptionScheduling;
|
|
22
|
-
__decorate([
|
|
23
|
-
(0, mongoose_1.Prop)({
|
|
24
|
-
required: true,
|
|
25
|
-
type: mongoose_2.default.Schema.Types.ObjectId,
|
|
26
|
-
}),
|
|
27
|
-
__metadata("design:type", mongoose_2.default.Schema.Types.ObjectId)
|
|
28
|
-
], SubscriptionScheduling.prototype, "collectionCompanyId", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
(0, mongoose_1.Prop)({ required: true }),
|
|
31
|
-
__metadata("design:type", Date)
|
|
32
|
-
], SubscriptionScheduling.prototype, "startDate", void 0);
|
|
33
|
-
__decorate([
|
|
34
|
-
(0, mongoose_1.Prop)({
|
|
35
|
-
required: true,
|
|
36
|
-
enum: ['active', 'deleted'],
|
|
37
|
-
default: 'active',
|
|
38
|
-
}),
|
|
39
|
-
__metadata("design:type", String)
|
|
40
|
-
], SubscriptionScheduling.prototype, "status", void 0);
|
|
41
|
-
exports.SubscriptionScheduling = SubscriptionScheduling = __decorate([
|
|
42
|
-
(0, mongoose_1.Schema)(options_1.options)
|
|
43
|
-
], SubscriptionScheduling);
|
|
44
|
-
exports.SubscriptionSchedulingSchema = mongoose_1.SchemaFactory.createForClass(SubscriptionScheduling);
|
|
45
|
-
exports.SubscriptionSchedulingSchema.index({ collectionCompanyId: 1 });
|
|
46
|
-
// Automatically exclude deleted records in all queries
|
|
47
|
-
exports.SubscriptionSchedulingSchema.pre(/^find/, function (next) {
|
|
48
|
-
const query = this;
|
|
49
|
-
query.setQuery(Object.assign(Object.assign({}, query.getFilter()), { status: { $ne: 'deleted' } }));
|
|
50
|
-
next();
|
|
51
|
-
});
|
|
52
|
-
//# sourceMappingURL=subscriptionScheduling.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"subscriptionScheduling.schema.js","sourceRoot":"","sources":["../src/subscriptionScheduling.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,+CAA+D;AAC/D,uCAAoC;AACpC,wDAAgC;AAGzB,IAAM,sBAAsB,GAA5B,MAAM,sBAAsB;CAgBlC,CAAA;AAhBY,wDAAsB;AAKjC;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACmB,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;mEAAC;AAGpD;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACd,IAAI;yDAAC;AAOhB;IALC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC;QAC3B,OAAO,EAAE,QAAQ;KAClB,CAAC;;sDACa;iCAfJ,sBAAsB;IADlC,IAAA,iBAAM,EAAC,iBAAO,CAAC;GACH,sBAAsB,CAgBlC;AAEY,QAAA,4BAA4B,GAAG,wBAAa,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC;AAEjG,oCAA4B,CAAC,KAAK,CAAC,EAAE,mBAAmB,EAAE,CAAC,EAAE,CAAC,CAAC;AAE/D,uDAAuD;AACvD,oCAA4B,CAAC,GAAG,CAAC,OAAO,EAAE,UAAU,IAAI;IACtD,MAAM,KAAK,GAAG,IAAgC,CAAC;IAC/C,KAAK,CAAC,QAAQ,iCAAM,KAAK,CAAC,SAAS,EAAE,KAAE,MAAM,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE,IAAG,CAAC;IACrE,IAAI,EAAE,CAAC;AACT,CAAC,CAAC,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
export declare class TossPaymentBillingKey {
|
|
3
|
-
collectionCompanyId: mongoose.Schema.Types.ObjectId;
|
|
4
|
-
customerKey: string;
|
|
5
|
-
billingKey: string;
|
|
6
|
-
status: string;
|
|
7
|
-
}
|
|
8
|
-
export declare const TossPaymentBillingKeySchema: mongoose.Schema<TossPaymentBillingKey, mongoose.Model<TossPaymentBillingKey, any, any, any, mongoose.Document<unknown, any, TossPaymentBillingKey> & TossPaymentBillingKey & {
|
|
9
|
-
_id: mongoose.Types.ObjectId;
|
|
10
|
-
} & {
|
|
11
|
-
__v: number;
|
|
12
|
-
}, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, TossPaymentBillingKey, mongoose.Document<unknown, {}, mongoose.FlatRecord<TossPaymentBillingKey>> & mongoose.FlatRecord<TossPaymentBillingKey> & {
|
|
13
|
-
_id: mongoose.Types.ObjectId;
|
|
14
|
-
} & {
|
|
15
|
-
__v: number;
|
|
16
|
-
}>;
|
|
17
|
-
//# sourceMappingURL=tossPaymentBillingKey.schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tossPaymentBillingKey.schema.d.ts","sourceRoot":"","sources":["../src/tossPaymentBillingKey.schema.ts"],"names":[],"mappings":"AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,qBACa,qBAAqB;IAKhC,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;IAGpD,WAAW,EAAE,MAAM,CAAC;IAGpB,UAAU,EAAE,MAAM,CAAC;IAOnB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,2BAA2B;;;;;;;;EAAsD,CAAC"}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.TossPaymentBillingKeySchema = exports.TossPaymentBillingKey = void 0;
|
|
16
|
-
const mongoose_1 = require("@nestjs/mongoose");
|
|
17
|
-
const options_1 = require("./options");
|
|
18
|
-
const mongoose_2 = __importDefault(require("mongoose"));
|
|
19
|
-
let TossPaymentBillingKey = class TossPaymentBillingKey {
|
|
20
|
-
};
|
|
21
|
-
exports.TossPaymentBillingKey = TossPaymentBillingKey;
|
|
22
|
-
__decorate([
|
|
23
|
-
(0, mongoose_1.Prop)({
|
|
24
|
-
required: true,
|
|
25
|
-
type: mongoose_2.default.Schema.Types.ObjectId,
|
|
26
|
-
}),
|
|
27
|
-
__metadata("design:type", mongoose_2.default.Schema.Types.ObjectId)
|
|
28
|
-
], TossPaymentBillingKey.prototype, "collectionCompanyId", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
(0, mongoose_1.Prop)({ required: true }),
|
|
31
|
-
__metadata("design:type", String)
|
|
32
|
-
], TossPaymentBillingKey.prototype, "customerKey", void 0);
|
|
33
|
-
__decorate([
|
|
34
|
-
(0, mongoose_1.Prop)({ required: true }),
|
|
35
|
-
__metadata("design:type", String)
|
|
36
|
-
], TossPaymentBillingKey.prototype, "billingKey", void 0);
|
|
37
|
-
__decorate([
|
|
38
|
-
(0, mongoose_1.Prop)({
|
|
39
|
-
required: true,
|
|
40
|
-
enum: ['active', 'deleted'],
|
|
41
|
-
default: 'active',
|
|
42
|
-
}),
|
|
43
|
-
__metadata("design:type", String)
|
|
44
|
-
], TossPaymentBillingKey.prototype, "status", void 0);
|
|
45
|
-
exports.TossPaymentBillingKey = TossPaymentBillingKey = __decorate([
|
|
46
|
-
(0, mongoose_1.Schema)(options_1.options)
|
|
47
|
-
], TossPaymentBillingKey);
|
|
48
|
-
exports.TossPaymentBillingKeySchema = mongoose_1.SchemaFactory.createForClass(TossPaymentBillingKey);
|
|
49
|
-
exports.TossPaymentBillingKeySchema.index({ collectionCompanyId: 1 });
|
|
50
|
-
// Automatically exclude deleted records in all queries
|
|
51
|
-
exports.TossPaymentBillingKeySchema.pre(/^find/, function (next) {
|
|
52
|
-
const query = this;
|
|
53
|
-
query.setQuery(Object.assign(Object.assign({}, query.getFilter()), { status: { $ne: 'deleted' } }));
|
|
54
|
-
next();
|
|
55
|
-
});
|
|
56
|
-
//# sourceMappingURL=tossPaymentBillingKey.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tossPaymentBillingKey.schema.js","sourceRoot":"","sources":["../src/tossPaymentBillingKey.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,+CAA+D;AAC/D,uCAAoC;AACpC,wDAAgC;AAGzB,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;CAmBjC,CAAA;AAnBY,sDAAqB;AAKhC;IAJC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;KACrC,CAAC;8BACmB,kBAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ;kEAAC;AAGpD;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACL;AAGpB;IADC,IAAA,eAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACN;AAOnB;IALC,IAAA,eAAI,EAAC;QACJ,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC;QAC3B,OAAO,EAAE,QAAQ;KAClB,CAAC;;qDACa;gCAlBJ,qBAAqB;IADjC,IAAA,iBAAM,EAAC,iBAAO,CAAC;GACH,qBAAqB,CAmBjC;AAEY,QAAA,2BAA2B,GAAG,wBAAa,CAAC,cAAc,CAAC,qBAAqB,CAAC,CAAC;AAE/F,mCAA2B,CAAC,KAAK,CAAC,EAAE,mBAAmB,EAAE,CAAC,EAAE,CAAC,CAAC;AAE9D,uDAAuD;AACvD,mCAA2B,CAAC,GAAG,CAAC,OAAO,EAAE,UAAU,IAAI;IACrD,MAAM,KAAK,GAAG,IAAgC,CAAC;IAC/C,KAAK,CAAC,QAAQ,iCAAM,KAAK,CAAC,SAAS,EAAE,KAAE,MAAM,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE,IAAG,CAAC;IACrE,IAAI,EAAE,CAAC;AACT,CAAC,CAAC,CAAC"}
|