@lyxa.ai/core 1.0.242 → 1.0.244
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/libraries/mongo/models/banner.model.d.ts +1 -1
- package/dist/libraries/mongo/models/banner.model.js +10 -9
- package/dist/libraries/mongo/models/banner.model.js.map +1 -1
- package/dist/libraries/mongo/models/professional-schedule.d.ts +1 -1
- package/dist/libraries/mongo/models/professional-schedule.js +6 -2
- package/dist/libraries/mongo/models/professional-schedule.js.map +1 -1
- package/dist/types/README.md +1 -1
- package/dist/types/package.json +1 -1
- package/package.json +1 -1
|
@@ -11,12 +11,12 @@ export declare class Banner extends TimeStamps {
|
|
|
11
11
|
itemType: UserAppSectionItemType;
|
|
12
12
|
status?: Status;
|
|
13
13
|
visibility?: BannerUserType;
|
|
14
|
+
zones?: Ref<Zone>[];
|
|
14
15
|
isClickable?: boolean;
|
|
15
16
|
clickType?: BannerClickType;
|
|
16
17
|
linkType?: BannerLinkType;
|
|
17
18
|
link?: string;
|
|
18
19
|
shop?: Ref<Shop>;
|
|
19
|
-
zones: Ref<Zone>[];
|
|
20
20
|
product?: Ref<Product>;
|
|
21
21
|
listContainer?: Ref<ListContainer>;
|
|
22
22
|
sortingOrder?: number;
|
|
@@ -24,19 +24,19 @@ let Banner = class Banner extends defaultClasses_1.TimeStamps {
|
|
|
24
24
|
itemType;
|
|
25
25
|
status;
|
|
26
26
|
visibility;
|
|
27
|
+
zones;
|
|
27
28
|
isClickable;
|
|
28
29
|
clickType;
|
|
29
30
|
linkType;
|
|
30
31
|
link;
|
|
31
32
|
shop;
|
|
32
|
-
zones;
|
|
33
33
|
product;
|
|
34
34
|
listContainer;
|
|
35
35
|
sortingOrder;
|
|
36
36
|
};
|
|
37
37
|
exports.Banner = Banner;
|
|
38
38
|
__decorate([
|
|
39
|
-
(0, typegoose_1.prop)({ required: true, type: String }),
|
|
39
|
+
(0, typegoose_1.prop)({ required: true, type: String, trim: true, maxlength: 50 }),
|
|
40
40
|
__metadata("design:type", String)
|
|
41
41
|
], Banner.prototype, "title", void 0);
|
|
42
42
|
__decorate([
|
|
@@ -55,6 +55,10 @@ __decorate([
|
|
|
55
55
|
(0, typegoose_1.prop)({ type: String, enum: enum_1.BannerUserType, default: enum_1.BannerUserType.ALL }),
|
|
56
56
|
__metadata("design:type", String)
|
|
57
57
|
], Banner.prototype, "visibility", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, typegoose_1.prop)({ ref: () => zone_model_1.Zone, default: [] }),
|
|
60
|
+
__metadata("design:type", Array)
|
|
61
|
+
], Banner.prototype, "zones", void 0);
|
|
58
62
|
__decorate([
|
|
59
63
|
(0, typegoose_1.prop)({ type: Boolean, default: false }),
|
|
60
64
|
__metadata("design:type", Boolean)
|
|
@@ -68,17 +72,13 @@ __decorate([
|
|
|
68
72
|
__metadata("design:type", String)
|
|
69
73
|
], Banner.prototype, "linkType", void 0);
|
|
70
74
|
__decorate([
|
|
71
|
-
(0, typegoose_1.prop)({ type: String
|
|
75
|
+
(0, typegoose_1.prop)({ type: String }),
|
|
72
76
|
__metadata("design:type", String)
|
|
73
77
|
], Banner.prototype, "link", void 0);
|
|
74
78
|
__decorate([
|
|
75
79
|
(0, typegoose_1.prop)({ ref: () => shop_model_1.Shop }),
|
|
76
80
|
__metadata("design:type", Object)
|
|
77
81
|
], Banner.prototype, "shop", void 0);
|
|
78
|
-
__decorate([
|
|
79
|
-
(0, typegoose_1.prop)({ required: true, ref: () => zone_model_1.Zone }),
|
|
80
|
-
__metadata("design:type", Array)
|
|
81
|
-
], Banner.prototype, "zones", void 0);
|
|
82
82
|
__decorate([
|
|
83
83
|
(0, typegoose_1.prop)({ ref: () => product_model_1.Product }),
|
|
84
84
|
__metadata("design:type", Object)
|
|
@@ -88,7 +88,7 @@ __decorate([
|
|
|
88
88
|
__metadata("design:type", Object)
|
|
89
89
|
], Banner.prototype, "listContainer", void 0);
|
|
90
90
|
__decorate([
|
|
91
|
-
(0, typegoose_1.prop)({ type: Number
|
|
91
|
+
(0, typegoose_1.prop)({ type: Number }),
|
|
92
92
|
__metadata("design:type", Number)
|
|
93
93
|
], Banner.prototype, "sortingOrder", void 0);
|
|
94
94
|
exports.Banner = Banner = __decorate([
|
|
@@ -116,6 +116,7 @@ exports.Banner = Banner = __decorate([
|
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
next();
|
|
119
|
-
})
|
|
119
|
+
}),
|
|
120
|
+
(0, typegoose_1.index)({ title: 1 }, { unique: true, partialFilterExpression: { deletedAt: null } })
|
|
120
121
|
], Banner);
|
|
121
122
|
//# sourceMappingURL=banner.model.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"banner.model.js","sourceRoot":"/","sources":["libraries/mongo/models/banner.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"banner.model.js","sourceRoot":"/","sources":["libraries/mongo/models/banner.model.ts"],"names":[],"mappings":"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","sourcesContent":["import { index, modelOptions, pre, prop, Ref } from '@typegoose/typegoose';\nimport { TimeStamps } from '@typegoose/typegoose/lib/defaultClasses';\nimport {\n\tBannerClickType,\n\tBannerLinkType,\n\tBannerUserType,\n\tItemType,\n\tStatus,\n\tUserAppSectionItemType,\n} from '../../../utilities/enum';\nimport { Shop } from './shop.model';\nimport { Product } from './product.model';\nimport { Zone } from './zone.model';\nimport { ListContainer } from './list-container.model';\nimport { BannerModel } from '.';\n\n@modelOptions({ schemaOptions: { collection: 'banners' } })\n@pre<Banner>('save', async function (next) {\n\t// Only set sortingOrder if it's a new document or sortingOrder is not set\n\tif (this.isNew || typeof this.sortingOrder === 'undefined') {\n\t\ttry {\n\t\t\t// Find the maximum sortingOrder that aren't deleted\n\t\t\tconst maxSortingOrder = await BannerModel.aggregate<{ maxSortingOrder: number }>([\n\t\t\t\t{\n\t\t\t\t\t$match: {\n\t\t\t\t\t\tdeletedAt: null,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t$group: {\n\t\t\t\t\t\t_id: null,\n\t\t\t\t\t\tmaxSortingOrder: { $max: '$sortingOrder' },\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t]).exec();\n\n\t\t\t// Set the new sortingOrder to max + 1 (or 0 if no items found)\n\t\t\tthis.sortingOrder = (maxSortingOrder[0]?.maxSortingOrder ?? -1) + 1;\n\t\t} catch (error) {\n\t\t\treturn next(error as Error);\n\t\t}\n\t}\n\tnext();\n})\n@index({ title: 1 }, { unique: true, partialFilterExpression: { deletedAt: null } })\nexport class Banner extends TimeStamps {\n\t@prop({ required: true, type: String, trim: true, maxlength: 50 })\n\tpublic title!: string;\n\n\t@prop({ required: true, type: String })\n\tpublic image!: string;\n\n\t@prop({ required: true, type: String, enum: UserAppSectionItemType })\n\tpublic itemType!: UserAppSectionItemType;\n\n\t@prop({ type: String, enum: Status, default: Status.ACTIVE })\n\tpublic status?: Status;\n\n\t@prop({ type: String, enum: BannerUserType, default: BannerUserType.ALL })\n\tpublic visibility?: BannerUserType;\n\n\t@prop({ ref: () => Zone, default: [] })\n\tpublic zones?: Ref<Zone>[];\n\n\t@prop({ type: Boolean, default: false })\n\tpublic isClickable?: boolean;\n\n\t@prop({ type: String, enum: BannerClickType })\n\tpublic clickType?: BannerClickType;\n\n\t@prop({ type: String, enum: BannerLinkType })\n\tpublic linkType?: BannerLinkType;\n\n\t@prop({ type: String })\n\tpublic link?: string;\n\n\t@prop({ ref: () => Shop })\n\tpublic shop?: Ref<Shop>;\n\n\t@prop({ ref: () => Product })\n\tpublic product?: Ref<Product>;\n\n\t@prop({ ref: () => ListContainer })\n\tpublic listContainer?: Ref<ListContainer>;\n\n\t@prop({ type: Number })\n\tpublic sortingOrder?: number;\n}\n"]}
|
|
@@ -9,7 +9,7 @@ export declare class ProfessionalSchedule {
|
|
|
9
9
|
timeTo?: Date;
|
|
10
10
|
reason?: string;
|
|
11
11
|
serviceOrder?: Ref<ServiceOrder>;
|
|
12
|
-
servicePackage?: Ref<ServicePackage
|
|
12
|
+
servicePackage?: Ref<ServicePackage>[];
|
|
13
13
|
isRecurring: boolean;
|
|
14
14
|
recurrencePattern?: ProfessionalRecurrencePattern;
|
|
15
15
|
type: ProfessionalScheduleType;
|
|
@@ -8,6 +8,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
11
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
15
|
exports.ProfessionalSchedule = void 0;
|
|
13
16
|
const typegoose_1 = require("@typegoose/typegoose");
|
|
@@ -15,6 +18,7 @@ const professional_model_1 = require("./professional.model");
|
|
|
15
18
|
const enum_1 = require("../../../utilities/enum");
|
|
16
19
|
const service_order_model_1 = require("./service-order.model");
|
|
17
20
|
const service_package_model_1 = require("./service-package.model");
|
|
21
|
+
const mongoose_1 = __importDefault(require("mongoose"));
|
|
18
22
|
let ProfessionalSchedule = class ProfessionalSchedule {
|
|
19
23
|
professional;
|
|
20
24
|
timeFrom;
|
|
@@ -48,8 +52,8 @@ __decorate([
|
|
|
48
52
|
__metadata("design:type", Object)
|
|
49
53
|
], ProfessionalSchedule.prototype, "serviceOrder", void 0);
|
|
50
54
|
__decorate([
|
|
51
|
-
(0, typegoose_1.prop)({ ref: () => service_package_model_1.ServicePackage }),
|
|
52
|
-
__metadata("design:type",
|
|
55
|
+
(0, typegoose_1.prop)({ ref: () => service_package_model_1.ServicePackage, type: () => [mongoose_1.default.Types.ObjectId] }),
|
|
56
|
+
__metadata("design:type", Array)
|
|
53
57
|
], ProfessionalSchedule.prototype, "servicePackage", void 0);
|
|
54
58
|
__decorate([
|
|
55
59
|
(0, typegoose_1.prop)({ default: false }),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"professional-schedule.js","sourceRoot":"/","sources":["libraries/mongo/models/professional-schedule.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"professional-schedule.js","sourceRoot":"/","sources":["libraries/mongo/models/professional-schedule.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,oDAA+D;AAC/D,6DAAoD;AACpD,kDAAkJ;AAClJ,+DAAqD;AACrD,mEAAyD;AACzD,wDAAgC;AASzB,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;IAEtB,YAAY,CAAoB;IAGhC,QAAQ,CAAO;IAGf,MAAM,CAAO;IAIb,MAAM,CAAS;IAGf,YAAY,CAAoB;IAGhC,cAAc,CAAwB;IAItC,WAAW,CAAU;IAGrB,iBAAiB,CAAgC;IAGjD,IAAI,CAA2B;CAEzC,CAAA;AA9BY,oDAAoB;AAEtB;IADN,IAAA,gBAAI,EAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,iCAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACX;AAGhC;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACP,IAAI;sDAAA;AAGf;IADN,IAAA,gBAAI,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACT,IAAI;oDAAA;AAIb;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;oDACD;AAGf;IADN,IAAA,gBAAI,EAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,kCAAY,EAAE,CAAC;;0DACK;AAGhC;IADN,IAAA,gBAAI,EAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,sCAAc,EAAC,IAAI,EAAE,GAAE,EAAE,CAAC,CAAC,kBAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;;4DAC5B;AAItC;IADN,IAAA,gBAAI,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;yDACG;AAGrB;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,oCAA6B,EAAE,CAAC;;+DACU;AAGjD;IADN,IAAA,gBAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,+BAAwB,EAAE,CAAC;;kDACjC;+BA5B7B,oBAAoB;IANhC,IAAA,wBAAY,EAAC;QACV,aAAa,EAAE;YACX,UAAU,EAAE,uBAAuB;YACnC,UAAU,EAAE,IAAI;SACnB;KACJ,CAAC;GACW,oBAAoB,CA8BhC","sourcesContent":["import { modelOptions, prop, Ref } from \"@typegoose/typegoose\";\nimport { Professional } from \"./professional.model\";\nimport { ProfessionalRecurrencePattern, ProfessionalScheduleType, ProfessionalStatus, ServiceOrderStatus, Status } from \"../../../utilities/enum\";\nimport { ServiceOrder } from \"./service-order.model\";\nimport { ServicePackage } from \"./service-package.model\";\nimport mongoose from \"mongoose\";\n\n\n@modelOptions({\n schemaOptions: {\n collection: \"professionalSchedules\",\n timestamps: true\n }\n})\nexport class ProfessionalSchedule {\n @prop({ ref: () => Professional, required: true })\n public professional!: Ref<Professional>\n\n @prop({ required: true })\n public timeFrom!: Date\n\n @prop({ required: true })\n public timeTo?: Date\n\n\n @prop({ type: String })\n public reason?: string\n\n @prop({ ref: () => ServiceOrder })\n public serviceOrder?: Ref<ServiceOrder>\n\n @prop({ ref: () => ServicePackage,type: ()=> [mongoose.Types.ObjectId] })\n public servicePackage?: Ref<ServicePackage>[]\n \n\n @prop({ default: false })\n public isRecurring!: boolean\n \n @prop({ enum: ProfessionalRecurrencePattern })\n public recurrencePattern?: ProfessionalRecurrencePattern\n\n @prop({ type: String, required: true, enum: ProfessionalScheduleType })\n public type!: ProfessionalScheduleType\n\n}"]}
|
package/dist/types/README.md
CHANGED
package/dist/types/package.json
CHANGED