@lyxa.ai/core 1.0.71 → 1.0.72

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.
@@ -4,4 +4,5 @@ export declare class CancellationReason extends TimeStamps {
4
4
  reason: string;
5
5
  reasonType: CancellationReasonTypeEnum;
6
6
  status: SettingsReasonStatus;
7
+ sortingOrder?: number;
7
8
  }
@@ -13,10 +13,12 @@ exports.CancellationReason = void 0;
13
13
  const typegoose_1 = require("@typegoose/typegoose");
14
14
  const defaultClasses_1 = require("@typegoose/typegoose/lib/defaultClasses");
15
15
  const enum_1 = require("../../../utilities/enum");
16
+ const _1 = require(".");
16
17
  let CancellationReason = class CancellationReason extends defaultClasses_1.TimeStamps {
17
18
  reason;
18
19
  reasonType;
19
20
  status;
21
+ sortingOrder;
20
22
  };
21
23
  exports.CancellationReason = CancellationReason;
22
24
  __decorate([
@@ -31,7 +33,37 @@ __decorate([
31
33
  (0, typegoose_1.prop)({ required: true, type: String, enum: enum_1.SettingsReasonStatus }),
32
34
  __metadata("design:type", String)
33
35
  ], CancellationReason.prototype, "status", void 0);
36
+ __decorate([
37
+ (0, typegoose_1.prop)({ type: Number }),
38
+ __metadata("design:type", Number)
39
+ ], CancellationReason.prototype, "sortingOrder", void 0);
34
40
  exports.CancellationReason = CancellationReason = __decorate([
35
- (0, typegoose_1.modelOptions)({ schemaOptions: { collection: 'cancellation-reasons' } })
41
+ (0, typegoose_1.modelOptions)({ schemaOptions: { collection: 'cancellationReasons' } }),
42
+ (0, typegoose_1.pre)('save', async function (next) {
43
+ if (this.isNew || typeof this.sortingOrder === 'undefined') {
44
+ try {
45
+ const maxSortingOrder = await _1.CancellationReasonModel.aggregate([
46
+ {
47
+ $match: {
48
+ reasonType: this.reasonType,
49
+ status: enum_1.SettingsReasonStatus.ACTIVE,
50
+ deletedAt: null,
51
+ },
52
+ },
53
+ {
54
+ $group: {
55
+ _id: null,
56
+ maxSortingOrder: { $max: '$sortingOrder' },
57
+ },
58
+ },
59
+ ]).exec();
60
+ this.sortingOrder = (maxSortingOrder[0]?.maxSortingOrder ?? -1) + 1;
61
+ }
62
+ catch (error) {
63
+ return next(error);
64
+ }
65
+ }
66
+ next();
67
+ })
36
68
  ], CancellationReason);
37
69
  //# sourceMappingURL=cancellation-reason.model.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"cancellation-reason.model.js","sourceRoot":"/","sources":["libraries/mongo/models/cancellation-reason.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAA0D;AAC1D,4EAAqE;AACrE,kDAAkH;AAG3G,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,2BAAU;IAEvC,MAAM,CAAS;IAGf,UAAU,CAA6B;IAGvC,MAAM,CAAuB;CACvC,CAAA;AATY,gDAAkB;AAEpB;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;kDACjB;AAGf;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,iCAA0B,EAAE,CAAC;;sDAC3B;AAGvC;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,2BAAoB,EAAE,CAAC;;kDAC/B;6BAR3B,kBAAkB;IAD9B,IAAA,wBAAY,EAAC,EAAE,aAAa,EAAE,EAAE,UAAU,EAAE,sBAAsB,EAAE,EAAE,CAAC;GAC3D,kBAAkB,CAS9B","sourcesContent":["import { modelOptions, prop } from '@typegoose/typegoose';\nimport { TimeStamps } from '@typegoose/typegoose/lib/defaultClasses';\nimport { SettingsReasonStatus, CancellationReasonTypeEnum, SupportReasonTypeEnum } from '../../../utilities/enum';\n\n@modelOptions({ schemaOptions: { collection: 'cancellation-reasons' } })\nexport class CancellationReason extends TimeStamps {\n @prop({ required: true, type: String })\n public reason: string;\n\n @prop({ required: true, type: String, enum: CancellationReasonTypeEnum })\n public reasonType: CancellationReasonTypeEnum;\n\n @prop({ required: true, type: String, enum: SettingsReasonStatus })\n public status: SettingsReasonStatus;\n}\n"]}
1
+ {"version":3,"file":"cancellation-reason.model.js","sourceRoot":"/","sources":["libraries/mongo/models/cancellation-reason.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAA+D;AAC/D,4EAAqE;AACrE,kDAAkH;AAClH,wBAA4C;AAgCrC,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,2BAAU;IAEvC,MAAM,CAAS;IAGf,UAAU,CAA6B;IAGvC,MAAM,CAAuB;IAGhC,YAAY,CAAU;CAC7B,CAAA;AAZY,gDAAkB;AAEpB;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;kDACjB;AAGf;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,iCAA0B,EAAE,CAAC;;sDAC3B;AAGvC;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,2BAAoB,EAAE,CAAC;;kDAC/B;AAGhC;IADH,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;wDACG;6BAXjB,kBAAkB;IA9B9B,IAAA,wBAAY,EAAC,EAAE,aAAa,EAAE,EAAE,UAAU,EAAE,qBAAqB,EAAE,EAAE,CAAC;IACtE,IAAA,eAAG,EAAqB,MAAM,EAAE,KAAK,WAAW,IAAI;QAEjD,IAAI,IAAI,CAAC,KAAK,IAAI,OAAO,IAAI,CAAC,YAAY,KAAK,WAAW,EAAE,CAAC;YACzD,IAAI,CAAC;gBAED,MAAM,eAAe,GAAG,MAAM,0BAAuB,CAAC,SAAS,CAA8B;oBACzF;wBACI,MAAM,EAAE;4BACJ,UAAU,EAAE,IAAI,CAAC,UAAU;4BAC3B,MAAM,EAAE,2BAAoB,CAAC,MAAM;4BACnC,SAAS,EAAE,IAAI;yBAClB;qBACJ;oBACD;wBACI,MAAM,EAAE;4BACJ,GAAG,EAAE,IAAI;4BACT,eAAe,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE;yBAC7C;qBACJ;iBACJ,CAAC,CAAC,IAAI,EAAE,CAAC;gBAGV,IAAI,CAAC,YAAY,GAAG,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,eAAe,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACxE,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACb,OAAO,IAAI,CAAC,KAAc,CAAC,CAAC;YAChC,CAAC;QACL,CAAC;QACD,IAAI,EAAE,CAAC;IACX,CAAC,CAAC;GACW,kBAAkB,CAY9B","sourcesContent":["import { modelOptions, prop, pre } from '@typegoose/typegoose';\nimport { TimeStamps } from '@typegoose/typegoose/lib/defaultClasses';\nimport { SettingsReasonStatus, CancellationReasonTypeEnum, SupportReasonTypeEnum } from '../../../utilities/enum';\nimport { CancellationReasonModel } from '.';\n\n@modelOptions({ schemaOptions: { collection: 'cancellationReasons' } })\n@pre<CancellationReason>('save', async function (next) {\n // Only set sortingOrder if it's a new document or sortingOrder is not set\n if (this.isNew || typeof this.sortingOrder === 'undefined') {\n try {\n // Find the maximum sortingOrder for tags with the same itemType that aren't deleted\n const maxSortingOrder = await CancellationReasonModel.aggregate<{ maxSortingOrder: number }>([\n {\n $match: {\n reasonType: this.reasonType,\n status: SettingsReasonStatus.ACTIVE,\n deletedAt: null,\n },\n },\n {\n $group: {\n _id: null,\n maxSortingOrder: { $max: '$sortingOrder' },\n },\n },\n ]).exec();\n\n // Set the new sortingOrder to max + 1 (or 0 if no items found)\n this.sortingOrder = (maxSortingOrder[0]?.maxSortingOrder ?? -1) + 1;\n } catch (error) {\n return next(error as Error);\n }\n }\n next();\n})\nexport class CancellationReason extends TimeStamps {\n @prop({ required: true, type: String })\n public reason: string;\n\n @prop({ required: true, type: String, enum: CancellationReasonTypeEnum })\n public reasonType: CancellationReasonTypeEnum;\n\n @prop({ required: true, type: String, enum: SettingsReasonStatus })\n public status: SettingsReasonStatus;\n\n @prop({ type: Number })\n\tpublic sortingOrder?: number;\n}\n"]}
@@ -5,4 +5,5 @@ export declare class SupportReason extends TimeStamps {
5
5
  reason: SupportReasonInfo;
6
6
  reasonType: SupportReasonTypeEnum;
7
7
  status: SettingsReasonStatus;
8
+ sortingOrder?: number;
8
9
  }
@@ -14,10 +14,12 @@ const typegoose_1 = require("@typegoose/typegoose");
14
14
  const defaultClasses_1 = require("@typegoose/typegoose/lib/defaultClasses");
15
15
  const enum_1 = require("../../../utilities/enum");
16
16
  const support_reason_info_model_1 = require("./embedded/support-reason-info.model");
17
+ const _1 = require(".");
17
18
  let SupportReason = class SupportReason extends defaultClasses_1.TimeStamps {
18
19
  reason;
19
20
  reasonType;
20
21
  status;
22
+ sortingOrder;
21
23
  };
22
24
  exports.SupportReason = SupportReason;
23
25
  __decorate([
@@ -32,7 +34,37 @@ __decorate([
32
34
  (0, typegoose_1.prop)({ required: true, type: String, enum: enum_1.SettingsReasonStatus }),
33
35
  __metadata("design:type", String)
34
36
  ], SupportReason.prototype, "status", void 0);
37
+ __decorate([
38
+ (0, typegoose_1.prop)({ type: Number }),
39
+ __metadata("design:type", Number)
40
+ ], SupportReason.prototype, "sortingOrder", void 0);
35
41
  exports.SupportReason = SupportReason = __decorate([
36
- (0, typegoose_1.modelOptions)({ schemaOptions: { collection: 'support-reasons' } })
42
+ (0, typegoose_1.modelOptions)({ schemaOptions: { collection: 'supportReasons' } }),
43
+ (0, typegoose_1.pre)('save', async function (next) {
44
+ if (this.isNew || typeof this.sortingOrder === 'undefined') {
45
+ try {
46
+ const maxSortingOrder = await _1.SupportReasonModel.aggregate([
47
+ {
48
+ $match: {
49
+ reasonType: this.reasonType,
50
+ status: enum_1.SettingsReasonStatus.ACTIVE,
51
+ deletedAt: null,
52
+ },
53
+ },
54
+ {
55
+ $group: {
56
+ _id: null,
57
+ maxSortingOrder: { $max: '$sortingOrder' },
58
+ },
59
+ },
60
+ ]).exec();
61
+ this.sortingOrder = (maxSortingOrder[0]?.maxSortingOrder ?? -1) + 1;
62
+ }
63
+ catch (error) {
64
+ return next(error);
65
+ }
66
+ }
67
+ next();
68
+ })
37
69
  ], SupportReason);
38
70
  //# sourceMappingURL=support-reason.model.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"support-reason.model.js","sourceRoot":"/","sources":["libraries/mongo/models/support-reason.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAA0D;AAC1D,4EAAqE;AACrE,kDAAsF;AACtF,oFAAyE;AAGlE,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,2BAAU;IAElC,MAAM,CAAoB;IAG1B,UAAU,CAAwB;IAGlC,MAAM,CAAuB;CACvC,CAAA;AATY,sCAAa;AAEf;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,6CAAiB,EAAE,CAAC;8BACzC,6CAAiB;6CAAC;AAG1B;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,4BAAqB,EAAE,CAAC;;iDAC3B;AAGlC;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,2BAAoB,EAAE,CAAC;;6CAC/B;wBAR3B,aAAa;IADzB,IAAA,wBAAY,EAAC,EAAE,aAAa,EAAE,EAAE,UAAU,EAAE,iBAAiB,EAAE,EAAE,CAAC;GACtD,aAAa,CASzB","sourcesContent":["import { modelOptions, prop } from '@typegoose/typegoose';\nimport { TimeStamps } from '@typegoose/typegoose/lib/defaultClasses';\nimport { SettingsReasonStatus, SupportReasonTypeEnum } from '../../../utilities/enum';\nimport { SupportReasonInfo } from './embedded/support-reason-info.model';\n\n@modelOptions({ schemaOptions: { collection: 'support-reasons' } })\nexport class SupportReason extends TimeStamps {\n @prop({ required: true, type: () => SupportReasonInfo })\n public reason: SupportReasonInfo;\n\n @prop({ required: true, type: String, enum: SupportReasonTypeEnum })\n public reasonType: SupportReasonTypeEnum;\n\n @prop({ required: true, type: String, enum: SettingsReasonStatus })\n public status: SettingsReasonStatus;\n}\n"]}
1
+ {"version":3,"file":"support-reason.model.js","sourceRoot":"/","sources":["libraries/mongo/models/support-reason.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAA+D;AAC/D,4EAAqE;AACrE,kDAAsF;AACtF,oFAAyE;AACzE,wBAAuC;AAgChC,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,2BAAU;IAElC,MAAM,CAAoB;IAG1B,UAAU,CAAwB;IAGlC,MAAM,CAAuB;IAGhC,YAAY,CAAU;CAC7B,CAAA;AAZY,sCAAa;AAEf;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,6CAAiB,EAAE,CAAC;8BACzC,6CAAiB;6CAAC;AAG1B;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,4BAAqB,EAAE,CAAC;;iDAC3B;AAGlC;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,2BAAoB,EAAE,CAAC;;6CAC/B;AAGhC;IADH,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;mDACG;wBAXjB,aAAa;IA9BzB,IAAA,wBAAY,EAAC,EAAE,aAAa,EAAE,EAAE,UAAU,EAAE,gBAAgB,EAAE,EAAE,CAAC;IACjE,IAAA,eAAG,EAAgB,MAAM,EAAE,KAAK,WAAW,IAAI;QAE5C,IAAI,IAAI,CAAC,KAAK,IAAI,OAAO,IAAI,CAAC,YAAY,KAAK,WAAW,EAAE,CAAC;YACzD,IAAI,CAAC;gBAED,MAAM,eAAe,GAAG,MAAM,qBAAkB,CAAC,SAAS,CAA8B;oBACpF;wBACI,MAAM,EAAE;4BACJ,UAAU,EAAE,IAAI,CAAC,UAAU;4BAC3B,MAAM,EAAE,2BAAoB,CAAC,MAAM;4BACnC,SAAS,EAAE,IAAI;yBAClB;qBACJ;oBACD;wBACI,MAAM,EAAE;4BACJ,GAAG,EAAE,IAAI;4BACT,eAAe,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE;yBAC7C;qBACJ;iBACJ,CAAC,CAAC,IAAI,EAAE,CAAC;gBAGV,IAAI,CAAC,YAAY,GAAG,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,eAAe,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACxE,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACb,OAAO,IAAI,CAAC,KAAc,CAAC,CAAC;YAChC,CAAC;QACL,CAAC;QACD,IAAI,EAAE,CAAC;IACX,CAAC,CAAC;GACW,aAAa,CAYzB","sourcesContent":["import { modelOptions, prop, pre } from '@typegoose/typegoose';\nimport { TimeStamps } from '@typegoose/typegoose/lib/defaultClasses';\nimport { SettingsReasonStatus, SupportReasonTypeEnum } from '../../../utilities/enum';\nimport { SupportReasonInfo } from './embedded/support-reason-info.model';\nimport { SupportReasonModel } from '.';\n\n@modelOptions({ schemaOptions: { collection: 'supportReasons' } })\n@pre<SupportReason>('save', async function (next) {\n // Only set sortingOrder if it's a new document or sortingOrder is not set\n if (this.isNew || typeof this.sortingOrder === 'undefined') {\n try {\n // Find the maximum sortingOrder for tags with the same itemType that aren't deleted\n const maxSortingOrder = await SupportReasonModel.aggregate<{ maxSortingOrder: number }>([\n {\n $match: {\n reasonType: this.reasonType,\n status: SettingsReasonStatus.ACTIVE,\n deletedAt: null,\n },\n },\n {\n $group: {\n _id: null,\n maxSortingOrder: { $max: '$sortingOrder' },\n },\n },\n ]).exec();\n\n // Set the new sortingOrder to max + 1 (or 0 if no items found)\n this.sortingOrder = (maxSortingOrder[0]?.maxSortingOrder ?? -1) + 1;\n } catch (error) {\n return next(error as Error);\n }\n }\n next();\n})\nexport class SupportReason extends TimeStamps {\n @prop({ required: true, type: () => SupportReasonInfo })\n public reason: SupportReasonInfo;\n\n @prop({ required: true, type: String, enum: SupportReasonTypeEnum })\n public reasonType: SupportReasonTypeEnum;\n\n @prop({ required: true, type: String, enum: SettingsReasonStatus })\n public status: SettingsReasonStatus;\n\n @prop({ type: Number })\n\tpublic sortingOrder?: number;\n}\n"]}
@@ -195,7 +195,7 @@ export declare const AddressSchema: z.ZodObject<{
195
195
  description?: string | undefined;
196
196
  zone?: string | import("mongoose").Types.ObjectId | undefined;
197
197
  }>;
198
- export declare const UserAddressSchema: z.ZodObject<z.objectUtil.extendShape<{
198
+ export declare const UserAddressSchema: z.ZodObject<{
199
199
  address: z.ZodString;
200
200
  description: z.ZodOptional<z.ZodString>;
201
201
  city: z.ZodString;
@@ -214,13 +214,13 @@ export declare const UserAddressSchema: z.ZodObject<z.objectUtil.extendShape<{
214
214
  latitude: z.ZodNumber;
215
215
  longitude: z.ZodNumber;
216
216
  zone: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, import("mongoose").Types.ObjectId, string>, z.ZodType<import("mongoose").Types.ObjectId, z.ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
217
- }, {
217
+ } & {
218
218
  addressLabel: z.ZodString;
219
219
  apartment: z.ZodString;
220
220
  buildingName: z.ZodString;
221
221
  deliveryOption: z.ZodOptional<z.ZodString>;
222
222
  instructions: z.ZodOptional<z.ZodString>;
223
- }>, "strip", z.ZodTypeAny, {
223
+ }, "strip", z.ZodTypeAny, {
224
224
  location: {
225
225
  type: GeoLocationType;
226
226
  coordinates: [number, number];
@@ -257,7 +257,7 @@ export declare const UserAddressSchema: z.ZodObject<z.objectUtil.extendShape<{
257
257
  deliveryOption?: string | undefined;
258
258
  instructions?: string | undefined;
259
259
  }>;
260
- export declare const CourierAddressSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
260
+ export declare const CourierAddressSchema: z.ZodObject<{
261
261
  address: z.ZodString;
262
262
  description: z.ZodOptional<z.ZodString>;
263
263
  city: z.ZodString;
@@ -276,16 +276,16 @@ export declare const CourierAddressSchema: z.ZodObject<z.objectUtil.extendShape<
276
276
  latitude: z.ZodNumber;
277
277
  longitude: z.ZodNumber;
278
278
  zone: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, import("mongoose").Types.ObjectId, string>, z.ZodType<import("mongoose").Types.ObjectId, z.ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
279
- }, {
279
+ } & {
280
280
  addressLabel: z.ZodString;
281
281
  apartment: z.ZodString;
282
282
  buildingName: z.ZodString;
283
283
  deliveryOption: z.ZodOptional<z.ZodString>;
284
284
  instructions: z.ZodOptional<z.ZodString>;
285
- }>, {
285
+ } & {
286
286
  name: z.ZodString;
287
287
  phoneNumber: z.ZodString;
288
- }>, "strip", z.ZodTypeAny, {
288
+ }, "strip", z.ZodTypeAny, {
289
289
  name: string;
290
290
  location: {
291
291
  type: GeoLocationType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lyxa.ai/core",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "description": "The Core system of the Lyxa services.",
5
5
  "author": "elie <42282499+Internalizable@users.noreply.github.com>",
6
6
  "license": "MIT",
@@ -1,16 +0,0 @@
1
- import { Ref } from '@typegoose/typegoose';
2
- import { Shop } from '../shop.model';
3
- import { Order } from '../order.model';
4
- declare class UsedPoint {
5
- amountUsed: number;
6
- dateUsed: Date;
7
- }
8
- export declare class LoyaltyPoint {
9
- points: number;
10
- dateGenerated: Date;
11
- dateExpiry: Date;
12
- shop?: Ref<Shop>;
13
- order?: Ref<Order>;
14
- usedPoints: UsedPoint[];
15
- }
16
- export {};
@@ -1,61 +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
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.LoyaltyPoint = void 0;
13
- const typegoose_1 = require("@typegoose/typegoose");
14
- const shop_model_1 = require("../shop.model");
15
- const order_model_1 = require("../order.model");
16
- class UsedPoint {
17
- amountUsed;
18
- dateUsed;
19
- }
20
- __decorate([
21
- (0, typegoose_1.prop)({ required: true }),
22
- __metadata("design:type", Number)
23
- ], UsedPoint.prototype, "amountUsed", void 0);
24
- __decorate([
25
- (0, typegoose_1.prop)({ required: true }),
26
- __metadata("design:type", Date)
27
- ], UsedPoint.prototype, "dateUsed", void 0);
28
- class LoyaltyPoint {
29
- points;
30
- dateGenerated;
31
- dateExpiry;
32
- shop;
33
- order;
34
- usedPoints;
35
- }
36
- exports.LoyaltyPoint = LoyaltyPoint;
37
- __decorate([
38
- (0, typegoose_1.prop)({ required: true }),
39
- __metadata("design:type", Number)
40
- ], LoyaltyPoint.prototype, "points", void 0);
41
- __decorate([
42
- (0, typegoose_1.prop)({ required: true }),
43
- __metadata("design:type", Date)
44
- ], LoyaltyPoint.prototype, "dateGenerated", void 0);
45
- __decorate([
46
- (0, typegoose_1.prop)({ required: true }),
47
- __metadata("design:type", Date)
48
- ], LoyaltyPoint.prototype, "dateExpiry", void 0);
49
- __decorate([
50
- (0, typegoose_1.prop)({ ref: () => shop_model_1.Shop, required: true }),
51
- __metadata("design:type", Object)
52
- ], LoyaltyPoint.prototype, "shop", void 0);
53
- __decorate([
54
- (0, typegoose_1.prop)({ ref: () => order_model_1.Order, required: true }),
55
- __metadata("design:type", Object)
56
- ], LoyaltyPoint.prototype, "order", void 0);
57
- __decorate([
58
- (0, typegoose_1.prop)({ type: () => [UsedPoint], default: [] }),
59
- __metadata("design:type", Array)
60
- ], LoyaltyPoint.prototype, "usedPoints", void 0);
61
- //# sourceMappingURL=loyaltyPoint.model.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"loyaltyPoint.model.js","sourceRoot":"/","sources":["libraries/mongo/models/embedded/loyaltyPoint.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AACA,oDAAiD;AACjD,8CAAqC;AACrC,gDAAuC;AAEvC,MAAM,SAAS;IAEP,UAAU,CAAU;IAGpB,QAAQ,CAAQ;CACvB;AAJO;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACE;AAGpB;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACP,IAAI;2CAAC;AAGxB,MAAa,YAAY;IAEjB,MAAM,CAAU;IAGhB,aAAa,CAAQ;IAGrB,UAAU,CAAQ;IAGlB,IAAI,CAAa;IAGjB,KAAK,CAAc;IAEnB,UAAU,CAAe;CAChC;AAjBD,oCAiBC;AAfO;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACF;AAGhB;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACF,IAAI;mDAAC;AAGrB;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACL,IAAI;gDAAC;AAGlB;IADN,IAAA,gBAAI,EAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,iBAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CAClB;AAGjB;IADN,IAAA,gBAAI,EAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,mBAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACjB;AAEnB;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC;;gDACf","sourcesContent":["// loyaltyPoint.model.ts\nimport { prop, Ref } from '@typegoose/typegoose';\nimport { Shop } from '../shop.model';\nimport { Order } from '../order.model';\n\nclass UsedPoint {\n\t@prop({ required: true })\n\tpublic amountUsed!: number;\n\n\t@prop({ required: true })\n\tpublic dateUsed!: Date;\n}\n\nexport class LoyaltyPoint {\n\t@prop({ required: true })\n\tpublic points!: number;\n\n\t@prop({ required: true })\n\tpublic dateGenerated!: Date;\n\n\t@prop({ required: true })\n\tpublic dateExpiry!: Date;\n\n\t@prop({ ref: () => Shop, required: true })\n\tpublic shop?: Ref<Shop>;\n\n\t@prop({ ref: () => Order, required: true })\n\tpublic order?: Ref<Order>;\n\t@prop({ type: () => [UsedPoint], default: [] })\n\tpublic usedPoints!: UsedPoint[];\n}\n"]}
@@ -1,7 +0,0 @@
1
- import { OrderFinance } from '../order-finance.model';
2
- import { OrderType } from '../../../../utilities/enum';
3
- import { CourierOrderProfit } from '../embedded/profit.model';
4
- export declare class CourierOrderFinance extends OrderFinance {
5
- orderType: OrderType.COURIER;
6
- companyProfit?: CourierOrderProfit;
7
- }
@@ -1,26 +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
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.CourierOrderFinance = void 0;
13
- const typegoose_1 = require("@typegoose/typegoose");
14
- const order_finance_model_1 = require("../order-finance.model");
15
- const enum_1 = require("../../../../utilities/enum");
16
- const profit_model_1 = require("../embedded/profit.model");
17
- class CourierOrderFinance extends order_finance_model_1.OrderFinance {
18
- orderType = enum_1.OrderType.COURIER;
19
- companyProfit;
20
- }
21
- exports.CourierOrderFinance = CourierOrderFinance;
22
- __decorate([
23
- (0, typegoose_1.prop)({ type: () => profit_model_1.CourierOrderProfit }),
24
- __metadata("design:type", profit_model_1.CourierOrderProfit)
25
- ], CourierOrderFinance.prototype, "companyProfit", void 0);
26
- //# sourceMappingURL=courier-order-finance.model.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"courier-order-finance.model.js","sourceRoot":"/","sources":["libraries/mongo/models/providers/courier-order-finance.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAA4C;AAC5C,gEAAsD;AACtD,qDAAuD;AACvD,2DAA8D;AAE9D,MAAa,mBAAoB,SAAQ,kCAAY;IAC7C,SAAS,GAAG,gBAAS,CAAC,OAAgB,CAAC;IAGvC,aAAa,CAAsB;CAC1C;AALD,kDAKC;AADO;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,iCAAkB,EAAE,CAAC;8BAClB,iCAAkB;0DAAC","sourcesContent":["import { prop } from '@typegoose/typegoose';\nimport { OrderFinance } from '../order-finance.model';\nimport { OrderType } from '../../../../utilities/enum';\nimport { CourierOrderProfit } from '../embedded/profit.model';\n\nexport class CourierOrderFinance extends OrderFinance {\n\tpublic orderType = OrderType.COURIER as const;\n\n\t@prop({ type: () => CourierOrderProfit })\n\tpublic companyProfit?: CourierOrderProfit;\n}\n"]}
@@ -1,25 +0,0 @@
1
- import { Ref } from '@typegoose/typegoose';
2
- import { OrderFinance } from '../order-finance.model';
3
- import { ItemType, OrderType } from '../../../../utilities/enum';
4
- import { RegularOrderProfit } from '../embedded/profit.model';
5
- import { Vat } from '../embedded/vat.model';
6
- import { CouponDetails, LoyaltyPoint, MarketingCut } from '../embedded/marketing-cut.model';
7
- import { Parent } from '../parent.model';
8
- import { Shop } from '../shop.model';
9
- export declare class RegularOrderFinance extends OrderFinance {
10
- orderType: OrderType.REGULAR;
11
- parent: Ref<Parent>;
12
- shop: Ref<Shop>;
13
- itemType: ItemType;
14
- isShopDelivery?: boolean;
15
- companyProfit?: RegularOrderProfit;
16
- shopProfit?: RegularOrderProfit;
17
- vat?: Vat;
18
- discount?: MarketingCut;
19
- buy1get1?: MarketingCut;
20
- loyaltyPoint?: LoyaltyPoint;
21
- coupon?: CouponDetails;
22
- freeDelivery?: MarketingCut;
23
- replacementOrder?: MarketingCut;
24
- endorseLoss?: MarketingCut;
25
- }
@@ -1,95 +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
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.RegularOrderFinance = void 0;
13
- const typegoose_1 = require("@typegoose/typegoose");
14
- const order_finance_model_1 = require("../order-finance.model");
15
- const enum_1 = require("../../../../utilities/enum");
16
- const profit_model_1 = require("../embedded/profit.model");
17
- const vat_model_1 = require("../embedded/vat.model");
18
- const marketing_cut_model_1 = require("../embedded/marketing-cut.model");
19
- const parent_model_1 = require("../parent.model");
20
- const shop_model_1 = require("../shop.model");
21
- class RegularOrderFinance extends order_finance_model_1.OrderFinance {
22
- orderType = enum_1.OrderType.REGULAR;
23
- parent;
24
- shop;
25
- itemType;
26
- isShopDelivery;
27
- companyProfit;
28
- shopProfit;
29
- vat;
30
- discount;
31
- buy1get1;
32
- loyaltyPoint;
33
- coupon;
34
- freeDelivery;
35
- replacementOrder;
36
- endorseLoss;
37
- }
38
- exports.RegularOrderFinance = RegularOrderFinance;
39
- __decorate([
40
- (0, typegoose_1.prop)({ required: true, ref: () => parent_model_1.Parent, index: true }),
41
- __metadata("design:type", Object)
42
- ], RegularOrderFinance.prototype, "parent", void 0);
43
- __decorate([
44
- (0, typegoose_1.prop)({ required: true, ref: () => shop_model_1.Shop, index: true }),
45
- __metadata("design:type", Object)
46
- ], RegularOrderFinance.prototype, "shop", void 0);
47
- __decorate([
48
- (0, typegoose_1.prop)({ required: true, type: String, enum: enum_1.ItemType, index: true }),
49
- __metadata("design:type", String)
50
- ], RegularOrderFinance.prototype, "itemType", void 0);
51
- __decorate([
52
- (0, typegoose_1.prop)({ type: Boolean, default: false }),
53
- __metadata("design:type", Boolean)
54
- ], RegularOrderFinance.prototype, "isShopDelivery", void 0);
55
- __decorate([
56
- (0, typegoose_1.prop)({ type: () => profit_model_1.RegularOrderProfit }),
57
- __metadata("design:type", profit_model_1.RegularOrderProfit)
58
- ], RegularOrderFinance.prototype, "companyProfit", void 0);
59
- __decorate([
60
- (0, typegoose_1.prop)({ type: () => profit_model_1.RegularOrderProfit }),
61
- __metadata("design:type", profit_model_1.RegularOrderProfit)
62
- ], RegularOrderFinance.prototype, "shopProfit", void 0);
63
- __decorate([
64
- (0, typegoose_1.prop)({ type: () => vat_model_1.Vat }),
65
- __metadata("design:type", vat_model_1.Vat)
66
- ], RegularOrderFinance.prototype, "vat", void 0);
67
- __decorate([
68
- (0, typegoose_1.prop)({ type: () => marketing_cut_model_1.MarketingCut }),
69
- __metadata("design:type", marketing_cut_model_1.MarketingCut)
70
- ], RegularOrderFinance.prototype, "discount", void 0);
71
- __decorate([
72
- (0, typegoose_1.prop)({ type: () => marketing_cut_model_1.MarketingCut }),
73
- __metadata("design:type", marketing_cut_model_1.MarketingCut)
74
- ], RegularOrderFinance.prototype, "buy1get1", void 0);
75
- __decorate([
76
- (0, typegoose_1.prop)({ type: () => marketing_cut_model_1.LoyaltyPoint }),
77
- __metadata("design:type", marketing_cut_model_1.LoyaltyPoint)
78
- ], RegularOrderFinance.prototype, "loyaltyPoint", void 0);
79
- __decorate([
80
- (0, typegoose_1.prop)({ type: () => marketing_cut_model_1.CouponDetails }),
81
- __metadata("design:type", marketing_cut_model_1.CouponDetails)
82
- ], RegularOrderFinance.prototype, "coupon", void 0);
83
- __decorate([
84
- (0, typegoose_1.prop)({ type: () => marketing_cut_model_1.MarketingCut }),
85
- __metadata("design:type", marketing_cut_model_1.MarketingCut)
86
- ], RegularOrderFinance.prototype, "freeDelivery", void 0);
87
- __decorate([
88
- (0, typegoose_1.prop)({ type: () => marketing_cut_model_1.MarketingCut }),
89
- __metadata("design:type", marketing_cut_model_1.MarketingCut)
90
- ], RegularOrderFinance.prototype, "replacementOrder", void 0);
91
- __decorate([
92
- (0, typegoose_1.prop)({ type: () => marketing_cut_model_1.MarketingCut }),
93
- __metadata("design:type", marketing_cut_model_1.MarketingCut)
94
- ], RegularOrderFinance.prototype, "endorseLoss", void 0);
95
- //# sourceMappingURL=regular-order-finance.model.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"regular-order-finance.model.js","sourceRoot":"/","sources":["libraries/mongo/models/providers/regular-order-finance.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAAiD;AACjD,gEAAsD;AACtD,qDAAiE;AACjE,2DAA8D;AAC9D,qDAA4C;AAC5C,yEAA4F;AAC5F,kDAAyC;AACzC,8CAAqC;AAErC,MAAa,mBAAoB,SAAQ,kCAAY;IAC7C,SAAS,GAAG,gBAAS,CAAC,OAAgB,CAAC;IAGvC,MAAM,CAAe;IAGrB,IAAI,CAAa;IAGjB,QAAQ,CAAY;IAGpB,cAAc,CAAW;IAGzB,aAAa,CAAsB;IAGnC,UAAU,CAAsB;IAGhC,GAAG,CAAO;IAGV,QAAQ,CAAgB;IAGxB,QAAQ,CAAgB;IAGxB,YAAY,CAAgB;IAG5B,MAAM,CAAiB;IAGvB,YAAY,CAAgB;IAG5B,gBAAgB,CAAgB;IAGhC,WAAW,CAAgB;CAClC;AA5CD,kDA4CC;AAxCO;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,qBAAM,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;;mDAC7B;AAGrB;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,iBAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;;iDAC/B;AAGjB;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,eAAQ,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;;qDACzC;AAGpB;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;2DACR;AAGzB;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,iCAAkB,EAAE,CAAC;8BAClB,iCAAkB;0DAAC;AAGnC;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,iCAAkB,EAAE,CAAC;8BACrB,iCAAkB;uDAAC;AAGhC;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,eAAG,EAAE,CAAC;8BACb,eAAG;gDAAC;AAGV;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kCAAY,EAAE,CAAC;8BACjB,kCAAY;qDAAC;AAGxB;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kCAAY,EAAE,CAAC;8BACjB,kCAAY;qDAAC;AAGxB;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kCAAY,EAAE,CAAC;8BACb,kCAAY;yDAAC;AAG5B;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,mCAAa,EAAE,CAAC;8BACpB,mCAAa;mDAAC;AAGvB;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kCAAY,EAAE,CAAC;8BACb,kCAAY;yDAAC;AAG5B;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kCAAY,EAAE,CAAC;8BACT,kCAAY;6DAAC;AAGhC;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kCAAY,EAAE,CAAC;8BACd,kCAAY;wDAAC","sourcesContent":["import { prop, Ref } from '@typegoose/typegoose';\nimport { OrderFinance } from '../order-finance.model';\nimport { ItemType, OrderType } from '../../../../utilities/enum';\nimport { RegularOrderProfit } from '../embedded/profit.model';\nimport { Vat } from '../embedded/vat.model';\nimport { CouponDetails, LoyaltyPoint, MarketingCut } from '../embedded/marketing-cut.model';\nimport { Parent } from '../parent.model';\nimport { Shop } from '../shop.model';\n\nexport class RegularOrderFinance extends OrderFinance {\n\tpublic orderType = OrderType.REGULAR as const;\n\n\t@prop({ required: true, ref: () => Parent, index: true })\n\tpublic parent!: Ref<Parent>;\n\n\t@prop({ required: true, ref: () => Shop, index: true })\n\tpublic shop!: Ref<Shop>;\n\n\t@prop({ required: true, type: String, enum: ItemType, index: true })\n\tpublic itemType!: ItemType;\n\n\t@prop({ type: Boolean, default: false })\n\tpublic isShopDelivery?: boolean;\n\n\t@prop({ type: () => RegularOrderProfit })\n\tpublic companyProfit?: RegularOrderProfit;\n\n\t@prop({ type: () => RegularOrderProfit })\n\tpublic shopProfit?: RegularOrderProfit;\n\n\t@prop({ type: () => Vat })\n\tpublic vat?: Vat;\n\n\t@prop({ type: () => MarketingCut })\n\tpublic discount?: MarketingCut;\n\n\t@prop({ type: () => MarketingCut })\n\tpublic buy1get1?: MarketingCut;\n\n\t@prop({ type: () => LoyaltyPoint })\n\tpublic loyaltyPoint?: LoyaltyPoint;\n\n\t@prop({ type: () => CouponDetails })\n\tpublic coupon?: CouponDetails;\n\n\t@prop({ type: () => MarketingCut })\n\tpublic freeDelivery?: MarketingCut;\n\n\t@prop({ type: () => MarketingCut })\n\tpublic replacementOrder?: MarketingCut;\n\n\t@prop({ type: () => MarketingCut })\n\tpublic endorseLoss?: MarketingCut;\n}\n"]}