@lyxa.ai/core 1.0.293-alpha.0 → 1.0.293-alpha.2
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.
|
@@ -7,6 +7,16 @@ import { Address, RegularOrderAddress } from './shared/address.model';
|
|
|
7
7
|
import { User } from './user.model';
|
|
8
8
|
import { LineItem } from './line-item.model';
|
|
9
9
|
import { Charge } from './embedded/charge.model';
|
|
10
|
+
export declare class ShopSnap {
|
|
11
|
+
name: string;
|
|
12
|
+
chargeType: ChargeType;
|
|
13
|
+
charge: Charge;
|
|
14
|
+
itemType: ItemType;
|
|
15
|
+
address: Address;
|
|
16
|
+
logo?: string;
|
|
17
|
+
isShopDelivery?: boolean;
|
|
18
|
+
defaultPreparationTime?: number;
|
|
19
|
+
}
|
|
10
20
|
export declare class Cart extends TimeStamps {
|
|
11
21
|
cartId: string;
|
|
12
22
|
title?: string;
|
|
@@ -16,14 +26,7 @@ export declare class Cart extends TimeStamps {
|
|
|
16
26
|
user: Ref<User>;
|
|
17
27
|
parent: Ref<Parent>;
|
|
18
28
|
shop: Ref<Shop>;
|
|
19
|
-
|
|
20
|
-
chargeType: ChargeType;
|
|
21
|
-
charge: Charge;
|
|
22
|
-
itemType: ItemType;
|
|
23
|
-
shopAddress: Address;
|
|
24
|
-
shopLogo?: string;
|
|
25
|
-
isShopDelivery?: boolean;
|
|
26
|
-
defaultPreparationTime?: number;
|
|
29
|
+
shopSnap?: ShopSnap;
|
|
27
30
|
deliveryAddress?: RegularOrderAddress;
|
|
28
31
|
isGroupOrder?: boolean;
|
|
29
32
|
paymentPreference?: PaymentPreference;
|
|
@@ -9,7 +9,7 @@ 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
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.Cart = void 0;
|
|
12
|
+
exports.Cart = exports.ShopSnap = void 0;
|
|
13
13
|
const typegoose_1 = require("@typegoose/typegoose");
|
|
14
14
|
const shop_model_1 = require("./shop.model");
|
|
15
15
|
const parent_model_1 = require("./parent.model");
|
|
@@ -21,6 +21,49 @@ const line_item_model_1 = require("./line-item.model");
|
|
|
21
21
|
const uniqueIdHooks_1 = require("../utilities/uniqueIdHooks");
|
|
22
22
|
const _1 = require(".");
|
|
23
23
|
const charge_model_1 = require("./embedded/charge.model");
|
|
24
|
+
class ShopSnap {
|
|
25
|
+
name;
|
|
26
|
+
chargeType;
|
|
27
|
+
charge;
|
|
28
|
+
itemType;
|
|
29
|
+
address;
|
|
30
|
+
logo;
|
|
31
|
+
isShopDelivery;
|
|
32
|
+
defaultPreparationTime;
|
|
33
|
+
}
|
|
34
|
+
exports.ShopSnap = ShopSnap;
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, typegoose_1.prop)({ required: true, type: String }),
|
|
37
|
+
__metadata("design:type", String)
|
|
38
|
+
], ShopSnap.prototype, "name", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, typegoose_1.prop)({ required: true, type: String, enum: enum_1.ChargeType, default: enum_1.ChargeType.CUSTOM }),
|
|
41
|
+
__metadata("design:type", String)
|
|
42
|
+
], ShopSnap.prototype, "chargeType", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, typegoose_1.prop)({ required: true, type: charge_model_1.Charge }),
|
|
45
|
+
__metadata("design:type", charge_model_1.Charge)
|
|
46
|
+
], ShopSnap.prototype, "charge", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, typegoose_1.prop)({ required: true, type: String, enum: enum_1.ItemType }),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], ShopSnap.prototype, "itemType", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, typegoose_1.prop)({ required: true, type: address_model_1.Address }),
|
|
53
|
+
__metadata("design:type", address_model_1.Address)
|
|
54
|
+
], ShopSnap.prototype, "address", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, typegoose_1.prop)({ type: String }),
|
|
57
|
+
__metadata("design:type", String)
|
|
58
|
+
], ShopSnap.prototype, "logo", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, typegoose_1.prop)({ type: Boolean, default: false }),
|
|
61
|
+
__metadata("design:type", Boolean)
|
|
62
|
+
], ShopSnap.prototype, "isShopDelivery", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, typegoose_1.prop)({ type: Number, default: 10 }),
|
|
65
|
+
__metadata("design:type", Number)
|
|
66
|
+
], ShopSnap.prototype, "defaultPreparationTime", void 0);
|
|
24
67
|
let Cart = class Cart extends defaultClasses_1.TimeStamps {
|
|
25
68
|
cartId;
|
|
26
69
|
title;
|
|
@@ -30,14 +73,7 @@ let Cart = class Cart extends defaultClasses_1.TimeStamps {
|
|
|
30
73
|
user;
|
|
31
74
|
parent;
|
|
32
75
|
shop;
|
|
33
|
-
|
|
34
|
-
chargeType;
|
|
35
|
-
charge;
|
|
36
|
-
itemType;
|
|
37
|
-
shopAddress;
|
|
38
|
-
shopLogo;
|
|
39
|
-
isShopDelivery;
|
|
40
|
-
defaultPreparationTime;
|
|
76
|
+
shopSnap;
|
|
41
77
|
deliveryAddress;
|
|
42
78
|
isGroupOrder;
|
|
43
79
|
paymentPreference;
|
|
@@ -81,37 +117,9 @@ __decorate([
|
|
|
81
117
|
__metadata("design:type", Object)
|
|
82
118
|
], Cart.prototype, "shop", void 0);
|
|
83
119
|
__decorate([
|
|
84
|
-
(0, typegoose_1.prop)({ type:
|
|
85
|
-
__metadata("design:type",
|
|
86
|
-
], Cart.prototype, "
|
|
87
|
-
__decorate([
|
|
88
|
-
(0, typegoose_1.prop)({ required: true, type: String, enum: enum_1.ChargeType, default: enum_1.ChargeType.CUSTOM }),
|
|
89
|
-
__metadata("design:type", String)
|
|
90
|
-
], Cart.prototype, "chargeType", void 0);
|
|
91
|
-
__decorate([
|
|
92
|
-
(0, typegoose_1.prop)({ required: true, type: charge_model_1.Charge }),
|
|
93
|
-
__metadata("design:type", charge_model_1.Charge)
|
|
94
|
-
], Cart.prototype, "charge", void 0);
|
|
95
|
-
__decorate([
|
|
96
|
-
(0, typegoose_1.prop)({ required: true, type: String, enum: enum_1.ItemType }),
|
|
97
|
-
__metadata("design:type", String)
|
|
98
|
-
], Cart.prototype, "itemType", void 0);
|
|
99
|
-
__decorate([
|
|
100
|
-
(0, typegoose_1.prop)({ required: true, type: address_model_1.Address }),
|
|
101
|
-
__metadata("design:type", address_model_1.Address)
|
|
102
|
-
], Cart.prototype, "shopAddress", void 0);
|
|
103
|
-
__decorate([
|
|
104
|
-
(0, typegoose_1.prop)({ type: String }),
|
|
105
|
-
__metadata("design:type", String)
|
|
106
|
-
], Cart.prototype, "shopLogo", void 0);
|
|
107
|
-
__decorate([
|
|
108
|
-
(0, typegoose_1.prop)({ type: Boolean, default: false }),
|
|
109
|
-
__metadata("design:type", Boolean)
|
|
110
|
-
], Cart.prototype, "isShopDelivery", void 0);
|
|
111
|
-
__decorate([
|
|
112
|
-
(0, typegoose_1.prop)({ type: Number, default: 10 }),
|
|
113
|
-
__metadata("design:type", Number)
|
|
114
|
-
], Cart.prototype, "defaultPreparationTime", void 0);
|
|
120
|
+
(0, typegoose_1.prop)({ type: ShopSnap }),
|
|
121
|
+
__metadata("design:type", ShopSnap)
|
|
122
|
+
], Cart.prototype, "shopSnap", void 0);
|
|
115
123
|
__decorate([
|
|
116
124
|
(0, typegoose_1.prop)({ required: false, type: address_model_1.RegularOrderAddress }),
|
|
117
125
|
__metadata("design:type", address_model_1.RegularOrderAddress)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cart.model.js","sourceRoot":"/","sources":["libraries/mongo/models/cart.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAAqF;AACrF,6CAAoC;AACpC,iDAAwC;AACxC,4EAAqE;AACrE,kDAA8F;AAC9F,0DAAsE;AAEtE,6CAAoC;AACpC,uDAA6C;AAC7C,8DAAsE;AACtE,wBAA8B;AAC9B,0DAAiD;
|
|
1
|
+
{"version":3,"file":"cart.model.js","sourceRoot":"/","sources":["libraries/mongo/models/cart.model.ts"],"names":[],"mappings":"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","sourcesContent":["import { prop, Ref, index, modelOptions, Severity, pre } from '@typegoose/typegoose';\nimport { Shop } from './shop.model';\nimport { Parent } from './parent.model';\nimport { TimeStamps } from '@typegoose/typegoose/lib/defaultClasses';\nimport { CartStatus, ChargeType, ItemType, PaymentPreference } from '../../../utilities/enum';\nimport { Address, RegularOrderAddress } from './shared/address.model';\nimport { Coupon } from './coupon.model';\nimport { User } from './user.model';\nimport { LineItem } from './line-item.model';\nimport { handlePreSaveForUniqueId } from '../utilities/uniqueIdHooks';\nimport { CartModel } from '.';\nimport { Charge } from './embedded/charge.model';\n\nexport class ShopSnap {\n\t@prop({ required: true, type: String })\n\tpublic name!: string;\n\n\t@prop({ required: true, type: String, enum: ChargeType, default: ChargeType.CUSTOM })\n\tpublic chargeType!: ChargeType;\n\n\t@prop({ required: true, type: Charge })\n\tpublic charge!: Charge;\n\n\t@prop({ required: true, type: String, enum: ItemType })\n\tpublic itemType!: ItemType;\n\n\t@prop({ required: true, type: Address })\n\tpublic address!: Address;\n\n\t@prop({ type: String })\n\tpublic logo?: string;\n\n\t@prop({ type: Boolean, default: false })\n\tpublic isShopDelivery?: boolean;\n\n\t@prop({ type: Number, default: 10 })\n\tpublic defaultPreparationTime?: number;\n}\n\n@modelOptions({\n\tschemaOptions: {\n\t\tcollection: 'carts',\n\t\ttoJSON: { virtuals: true },\n\t\ttoObject: { virtuals: true },\n\t},\n\toptions: {\n\t\tallowMixed: Severity.ALLOW,\n\t},\n})\n@index({ user: 1 })\n@index({ shop: 1 })\n@index({ status: 1 })\n@index(\n\t{ user: 1, shop: 1 },\n\t{\n\t\tunique: true,\n\t\tpartialFilterExpression: {\n\t\t\tstatus: { $in: [CartStatus.ACTIVE, CartStatus.LOCKED] },\n\t\t\tdeletedAt: null,\n\t\t},\n\t}\n)\n@pre<Cart>('save', async function (next) {\n\t// Generate unique id if not exists\n\tawait handlePreSaveForUniqueId.call(this, CartModel, 'cartId');\n\n\tnext();\n})\nexport class Cart extends TimeStamps {\n\t@prop({ type: String, unique: true, index: true })\n\tpublic cartId: string;\n\n\t@prop({ trim: true, maxlength: 100 })\n\tpublic title?: string;\n\n\t@prop({ type: Number, default: 0 })\n\tpublic exchangeRate?: number;\n\n\t@prop({ type: Number, default: 0.01 })\n\tpublic roundTo?: number;\n\n\t@prop({ type: Number, default: 1000 })\n\tpublic secondaryRoundTo?: number;\n\n\t@prop({ required: true, ref: () => User })\n\tpublic user!: Ref<User>;\n\n\t@prop({ required: true, ref: () => Parent })\n\tpublic parent: Ref<Parent>;\n\n\t@prop({ required: true, ref: () => Shop })\n\tpublic shop!: Ref<Shop>;\n\n\t@prop({ type: ShopSnap })\n\tpublic shopSnap?: ShopSnap;\n\n\t// @prop({ type: String, required: true })\n\t// public shopName!: string;\n\n\t// @prop({ required: true, type: String, enum: ChargeType, default: ChargeType.CUSTOM })\n\t// public chargeType!: ChargeType;\n\n\t// @prop({ required: true, type: Charge })\n\t// public charge!: Charge;\n\n\t// @prop({ required: true, type: String, enum: ItemType })\n\t// public itemType!: ItemType;\n\n\t// @prop({ required: true, type: Address })\n\t// public shopAddress!: Address;\n\n\t// @prop({ type: String })\n\t// public shopLogo?: string;\n\n\t// @prop({ type: Boolean, default: false })\n\t// public isShopDelivery?: boolean;\n\n\t// @prop({ type: Number, default: 10 })\n\t// public defaultPreparationTime?: number;\n\n\t@prop({ required: false, type: RegularOrderAddress })\n\tpublic deliveryAddress?: RegularOrderAddress;\n\n\t@prop({ type: Boolean, default: false })\n\tpublic isGroupOrder?: boolean;\n\n\t@prop({ type: String, enum: PaymentPreference })\n\tpublic paymentPreference?: PaymentPreference;\n\n\t@prop({ type: Number, default: Infinity })\n\tpublic spendingLimitForGuest?: number;\n\n\t@prop({ type: Number, default: Infinity })\n\tpublic secondarySpendingLimitForGuest?: number;\n\n\t@prop({\n\t\tenum: CartStatus,\n\t\ttype: String,\n\t\tdefault: CartStatus.ACTIVE,\n\t\trequired: true,\n\t})\n\tpublic status!: CartStatus;\n\n\t@prop({ type: String, trim: true })\n\tpublic couponCode?: string;\n\n\t@prop({\n\t\tref: () => LineItem,\n\t\tforeignField: 'cart',\n\t\tlocalField: '_id',\n\t})\n\tpublic lineItems: Ref<LineItem>[];\n}\n"]}
|
package/dist/types/README.md
CHANGED
package/dist/types/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lyxa.ai/types",
|
|
3
|
-
"version": "1.0.293-alpha.
|
|
3
|
+
"version": "1.0.293-alpha.2",
|
|
4
4
|
"description": "Lyxa type definitions and validation schemas for both frontend and backend",
|
|
5
5
|
"author": "elie <42282499+Internalizable@users.noreply.github.com>",
|
|
6
6
|
"license": "MIT",
|
package/package.json
CHANGED