@aldb2b/common 1.0.2138 → 1.0.2139
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/build/entities/models/subscriptions/entities/subscription/subscription-price.entity.d.ts +33 -0
- package/build/entities/models/subscriptions/entities/subscription/subscription-price.entity.js +25 -0
- package/build/entities/models/subscriptions/entities/subscription/subscription-price.entity.js.map +1 -0
- package/build/entities/models/subscriptions/entities/subscription/subscription.entity.d.ts +5 -2
- package/build/entities/models/subscriptions/entities/subscription/subscription.entity.js +88 -72
- package/build/entities/models/subscriptions/entities/subscription/subscription.entity.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/build/entities/models/subscriptions/entities/subscription/subscription-price.entity.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
|
+
import { Schema } from "mongoose";
|
|
27
|
+
import { CustomModel } from "../../../../../db/CustomModel";
|
|
28
|
+
export type SubscriptionPriceModel = CustomModel<SubscriptionPrice>;
|
|
29
|
+
export declare class SubscriptionPrice {
|
|
30
|
+
currency: string;
|
|
31
|
+
amount: number;
|
|
32
|
+
}
|
|
33
|
+
export declare const getSubscriptionPriceSchema: () => Schema<SubscriptionPrice, SubscriptionPriceModel>;
|
package/build/entities/models/subscriptions/entities/subscription/subscription-price.entity.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getSubscriptionPriceSchema = exports.SubscriptionPrice = void 0;
|
|
4
|
+
const mongoose_1 = require("mongoose");
|
|
5
|
+
class SubscriptionPrice {
|
|
6
|
+
}
|
|
7
|
+
exports.SubscriptionPrice = SubscriptionPrice;
|
|
8
|
+
const getSubscriptionPriceSchema = () => {
|
|
9
|
+
return new mongoose_1.Schema({
|
|
10
|
+
currency: {
|
|
11
|
+
type: String,
|
|
12
|
+
required: true,
|
|
13
|
+
},
|
|
14
|
+
amount: {
|
|
15
|
+
type: Number,
|
|
16
|
+
required: true,
|
|
17
|
+
},
|
|
18
|
+
}, {
|
|
19
|
+
_id: false,
|
|
20
|
+
id: false,
|
|
21
|
+
timestamps: false,
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
exports.getSubscriptionPriceSchema = getSubscriptionPriceSchema;
|
|
25
|
+
//# sourceMappingURL=subscription-price.entity.js.map
|
package/build/entities/models/subscriptions/entities/subscription/subscription-price.entity.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subscription-price.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/models/subscriptions/entities/subscription/subscription-price.entity.ts"],"names":[],"mappings":";;;AAAA,uCAAkC;AAKlC,MAAa,iBAAiB;CAG7B;AAHD,8CAGC;AAEM,MAAM,0BAA0B,GAAG,GAGxC,EAAE;IACF,OAAO,IAAI,iBAAM,CAA4C;QAC3D,QAAQ,EAAE;YACR,IAAI,EAAE,MAAM;YACZ,QAAQ,EAAE,IAAI;SACf;QACD,MAAM,EAAE;YACN,IAAI,EAAE,MAAM;YACZ,QAAQ,EAAE,IAAI;SACf;KACF,EAAE;QACD,GAAG,EAAE,KAAK;QACV,EAAE,EAAE,KAAK;QACT,UAAU,EAAE,KAAK;KAClB,CAAC,CAAC;AACL,CAAC,CAAC;AAlBW,QAAA,0BAA0B,8BAkBrC"}
|
|
@@ -23,12 +23,13 @@
|
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
|
-
import { Connection, Schema } from
|
|
27
|
-
import { CustomModel } from
|
|
26
|
+
import { Connection, Schema } from "mongoose";
|
|
27
|
+
import { CustomModel } from "../../../../../db/CustomModel";
|
|
28
28
|
import { SubscriptionType } from "./subscription-type.enum";
|
|
29
29
|
import { SubscriptionCategory } from "./subscription-category.enum";
|
|
30
30
|
import { SubscriptionModelEnum } from "./subscription-model.enum";
|
|
31
31
|
import { UserSetterOption } from "./user-settin-option.entity";
|
|
32
|
+
import { SubscriptionPrice } from "./subscription-price.entity";
|
|
32
33
|
import { Feature } from "../features";
|
|
33
34
|
export type SubscriptionModel = CustomModel<Subscription>;
|
|
34
35
|
export declare class Subscription {
|
|
@@ -39,7 +40,9 @@ export declare class Subscription {
|
|
|
39
40
|
subscriptionModel: SubscriptionModelEnum;
|
|
40
41
|
category: SubscriptionCategory;
|
|
41
42
|
price: number;
|
|
43
|
+
prices: Array<SubscriptionPrice>;
|
|
42
44
|
yearlyPrice: number;
|
|
45
|
+
yearlyPrices: Array<SubscriptionPrice>;
|
|
43
46
|
maxUsers: number[];
|
|
44
47
|
discount: number;
|
|
45
48
|
points: number;
|
|
@@ -11,6 +11,7 @@ const subscription_type_enum_1 = require("./subscription-type.enum");
|
|
|
11
11
|
const subscription_category_enum_1 = require("./subscription-category.enum");
|
|
12
12
|
const subscription_model_enum_1 = require("./subscription-model.enum");
|
|
13
13
|
const user_settin_option_entity_1 = require("./user-settin-option.entity");
|
|
14
|
+
const subscription_price_entity_1 = require("./subscription-price.entity");
|
|
14
15
|
const services_1 = require("../../../../services");
|
|
15
16
|
const ObjectId = mongoose_1.Schema.Types.ObjectId;
|
|
16
17
|
class Subscription {
|
|
@@ -18,6 +19,7 @@ class Subscription {
|
|
|
18
19
|
exports.Subscription = Subscription;
|
|
19
20
|
const getSubscriptionSchema = (connection) => {
|
|
20
21
|
const usersSettersOptionsSchema = (0, user_settin_option_entity_1.getUserSetterOptionSchema)();
|
|
22
|
+
const priceSchema = (0, subscription_price_entity_1.getSubscriptionPriceSchema)();
|
|
21
23
|
return new mongoose_1.Schema({
|
|
22
24
|
name: { type: String, required: true },
|
|
23
25
|
type: {
|
|
@@ -41,13 +43,21 @@ const getSubscriptionSchema = (connection) => {
|
|
|
41
43
|
},
|
|
42
44
|
price: { type: Number, required: true },
|
|
43
45
|
yearlyPrice: { type: Number, required: true },
|
|
46
|
+
prices: { type: [priceSchema], default: [] },
|
|
47
|
+
yearlyPrices: { type: [priceSchema], default: [] },
|
|
44
48
|
maxUsers: { type: [Number], required: true },
|
|
45
49
|
discount: { type: Number, required: true },
|
|
46
50
|
points: { type: Number, required: true },
|
|
47
51
|
priority: { type: Number, required: true },
|
|
48
52
|
validityPeriod: { type: Number, required: true },
|
|
49
53
|
maxSubscribers: { type: Number, required: true },
|
|
50
|
-
features: [
|
|
54
|
+
features: [
|
|
55
|
+
{
|
|
56
|
+
type: ObjectId,
|
|
57
|
+
required: true,
|
|
58
|
+
ref: (0, services_1.getModelRef)("Feature", connection),
|
|
59
|
+
},
|
|
60
|
+
],
|
|
51
61
|
actionName: { type: String, required: true },
|
|
52
62
|
tooltip: { type: String, required: true },
|
|
53
63
|
usersOptions: { type: [usersSettersOptionsSchema], required: true },
|
|
@@ -62,79 +72,85 @@ exports.getSubscriptionSchema = getSubscriptionSchema;
|
|
|
62
72
|
const subscriptionFactory = (connection) => {
|
|
63
73
|
const subscriptionSchema = (0, exports.getSubscriptionSchema)(connection);
|
|
64
74
|
const allProjectionFieldArray = [
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
75
|
+
"_id",
|
|
76
|
+
"name",
|
|
77
|
+
"type",
|
|
78
|
+
"description",
|
|
79
|
+
"subscriptionModel",
|
|
80
|
+
"category",
|
|
81
|
+
"price",
|
|
82
|
+
"prices",
|
|
83
|
+
"yearlyPrice",
|
|
84
|
+
"yearlyPrices",
|
|
85
|
+
"maxUsers",
|
|
86
|
+
"discount",
|
|
87
|
+
"points",
|
|
88
|
+
"priority",
|
|
89
|
+
"validityPeriod",
|
|
90
|
+
"maxSubscribers",
|
|
91
|
+
"features",
|
|
92
|
+
"actionName",
|
|
93
|
+
"tooltip",
|
|
94
|
+
"usersOptions",
|
|
95
|
+
"settersOptions",
|
|
96
|
+
"createdFor",
|
|
97
|
+
"createdBy",
|
|
98
|
+
"createdAt",
|
|
99
|
+
"updatedAt",
|
|
88
100
|
];
|
|
89
101
|
const allValidateNewItemFieldArray = [
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
102
|
+
"_id",
|
|
103
|
+
"name",
|
|
104
|
+
"type",
|
|
105
|
+
"description",
|
|
106
|
+
"subscriptionModel",
|
|
107
|
+
"category",
|
|
108
|
+
"price",
|
|
109
|
+
"prices",
|
|
110
|
+
"yearlyPrice",
|
|
111
|
+
"yearlyPrices",
|
|
112
|
+
"maxUsers",
|
|
113
|
+
"discount",
|
|
114
|
+
"points",
|
|
115
|
+
"priority",
|
|
116
|
+
"validityPeriod",
|
|
117
|
+
"maxSubscribers",
|
|
118
|
+
"features",
|
|
119
|
+
"actionName",
|
|
120
|
+
"tooltip",
|
|
121
|
+
"usersOptions",
|
|
122
|
+
"settersOptions",
|
|
123
|
+
"createdFor",
|
|
124
|
+
"createdBy",
|
|
125
|
+
"createdAt",
|
|
126
|
+
"updatedAt",
|
|
113
127
|
];
|
|
114
128
|
const allValidateUpdateItemFieldArray = [
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
129
|
+
"_id",
|
|
130
|
+
"name",
|
|
131
|
+
"type",
|
|
132
|
+
"description",
|
|
133
|
+
"subscriptionModel",
|
|
134
|
+
"category",
|
|
135
|
+
"price",
|
|
136
|
+
"prices",
|
|
137
|
+
"yearlyPrice",
|
|
138
|
+
"yearlyPrices",
|
|
139
|
+
"maxUsers",
|
|
140
|
+
"discount",
|
|
141
|
+
"points",
|
|
142
|
+
"priority",
|
|
143
|
+
"validityPeriod",
|
|
144
|
+
"maxSubscribers",
|
|
145
|
+
"features",
|
|
146
|
+
"actionName",
|
|
147
|
+
"tooltip",
|
|
148
|
+
"usersOptions",
|
|
149
|
+
"settersOptions",
|
|
150
|
+
"createdFor",
|
|
151
|
+
"createdBy",
|
|
152
|
+
"createdAt",
|
|
153
|
+
"updatedAt",
|
|
138
154
|
];
|
|
139
155
|
const defaultPopulations = [];
|
|
140
156
|
subscriptionSchema.statics.validateProjectionResult = (necessaryProjectionObj) => (0, validateProjectionResult_1.validateProjectionResult)(allProjectionFieldArray, necessaryProjectionObj);
|
|
@@ -142,7 +158,7 @@ const subscriptionFactory = (connection) => {
|
|
|
142
158
|
subscriptionSchema.statics.validateNewItem = (newItemObj) => (0, validateNewItem_1.validateNewItem)(allValidateNewItemFieldArray, newItemObj);
|
|
143
159
|
subscriptionSchema.statics.validateUpdateItem = (updateItemObj) => (0, validateUpdateItem_1.validateUpdateItem)(allValidateUpdateItemFieldArray, updateItemObj);
|
|
144
160
|
subscriptionSchema.statics.getDefaultPopulations = () => defaultPopulations;
|
|
145
|
-
subscriptionSchema.pre(
|
|
161
|
+
subscriptionSchema.pre("findOneAndUpdate", async function (next) {
|
|
146
162
|
this._update.updatedAt = new Date();
|
|
147
163
|
next();
|
|
148
164
|
});
|
|
@@ -153,7 +169,7 @@ const subscriptionFactory = (connection) => {
|
|
|
153
169
|
createdAt: -1,
|
|
154
170
|
subscriptionModel: 1,
|
|
155
171
|
});
|
|
156
|
-
return (0, generate_model_1.generateModel)(
|
|
172
|
+
return (0, generate_model_1.generateModel)("Subscription", connection, subscriptionSchema);
|
|
157
173
|
};
|
|
158
174
|
exports.subscriptionFactory = subscriptionFactory;
|
|
159
175
|
//# sourceMappingURL=subscription.entity.js.map
|
package/build/entities/models/subscriptions/entities/subscription/subscription.entity.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscription.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/models/subscriptions/entities/subscription/subscription.entity.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"subscription.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/models/subscriptions/entities/subscription/subscription.entity.ts"],"names":[],"mappings":"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"}
|