@lyxa.ai/core 1.3.4 → 1.3.5
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/socket/events/order-actions.socket.event.d.ts +64 -0
- package/dist/libraries/socket/events/order-actions.socket.event.js +1 -1
- package/dist/libraries/socket/events/order-actions.socket.event.js.map +1 -1
- package/dist/types/README.md +1 -1
- package/dist/types/package.json +1 -1
- package/package.json +1 -1
|
@@ -98,6 +98,14 @@ export declare const OrderActionsOutputSchema: z.ZodObject<{
|
|
|
98
98
|
latitude: z.ZodNumber;
|
|
99
99
|
longitude: z.ZodNumber;
|
|
100
100
|
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>]>>;
|
|
101
|
+
} & {
|
|
102
|
+
addressLabel: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
103
|
+
apartment: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
104
|
+
buildingName: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
105
|
+
deliveryOption: z.ZodOptional<z.ZodString> | z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
106
|
+
instructions: z.ZodOptional<z.ZodString> | z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
107
|
+
} & {
|
|
108
|
+
_id: 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>]>;
|
|
101
109
|
}, "strip", z.ZodTypeAny, {
|
|
102
110
|
location: {
|
|
103
111
|
type: import("../../../utilities/enum").GeoLocationType;
|
|
@@ -105,12 +113,18 @@ export declare const OrderActionsOutputSchema: z.ZodObject<{
|
|
|
105
113
|
};
|
|
106
114
|
address: string;
|
|
107
115
|
country: string;
|
|
116
|
+
_id: import("mongoose").Types.ObjectId;
|
|
108
117
|
city: string;
|
|
109
118
|
latitude: number;
|
|
110
119
|
longitude: number;
|
|
120
|
+
addressLabel: string;
|
|
121
|
+
apartment: string;
|
|
122
|
+
buildingName: string;
|
|
111
123
|
state?: string | undefined;
|
|
112
124
|
description?: string | undefined;
|
|
113
125
|
zone?: import("mongoose").Types.ObjectId | undefined;
|
|
126
|
+
deliveryOption?: string | undefined;
|
|
127
|
+
instructions?: string | undefined;
|
|
114
128
|
}, {
|
|
115
129
|
location: {
|
|
116
130
|
coordinates: [number, number];
|
|
@@ -118,12 +132,18 @@ export declare const OrderActionsOutputSchema: z.ZodObject<{
|
|
|
118
132
|
};
|
|
119
133
|
address: string;
|
|
120
134
|
country: string;
|
|
135
|
+
_id: string | import("mongoose").Types.ObjectId;
|
|
121
136
|
city: string;
|
|
122
137
|
latitude: number;
|
|
123
138
|
longitude: number;
|
|
139
|
+
addressLabel: string;
|
|
140
|
+
apartment: string;
|
|
141
|
+
buildingName: string;
|
|
124
142
|
state?: string | undefined;
|
|
125
143
|
description?: string | undefined;
|
|
126
144
|
zone?: string | import("mongoose").Types.ObjectId | undefined;
|
|
145
|
+
deliveryOption?: string | undefined;
|
|
146
|
+
instructions?: string | undefined;
|
|
127
147
|
}>;
|
|
128
148
|
paymentSummary: z.ZodObject<{
|
|
129
149
|
paymentMethod: z.ZodNativeEnum<typeof PaymentMethod>;
|
|
@@ -156,12 +176,18 @@ export declare const OrderActionsOutputSchema: z.ZodObject<{
|
|
|
156
176
|
};
|
|
157
177
|
address: string;
|
|
158
178
|
country: string;
|
|
179
|
+
_id: import("mongoose").Types.ObjectId;
|
|
159
180
|
city: string;
|
|
160
181
|
latitude: number;
|
|
161
182
|
longitude: number;
|
|
183
|
+
addressLabel: string;
|
|
184
|
+
apartment: string;
|
|
185
|
+
buildingName: string;
|
|
162
186
|
state?: string | undefined;
|
|
163
187
|
description?: string | undefined;
|
|
164
188
|
zone?: import("mongoose").Types.ObjectId | undefined;
|
|
189
|
+
deliveryOption?: string | undefined;
|
|
190
|
+
instructions?: string | undefined;
|
|
165
191
|
};
|
|
166
192
|
user: {
|
|
167
193
|
name: string;
|
|
@@ -209,12 +235,18 @@ export declare const OrderActionsOutputSchema: z.ZodObject<{
|
|
|
209
235
|
};
|
|
210
236
|
address: string;
|
|
211
237
|
country: string;
|
|
238
|
+
_id: string | import("mongoose").Types.ObjectId;
|
|
212
239
|
city: string;
|
|
213
240
|
latitude: number;
|
|
214
241
|
longitude: number;
|
|
242
|
+
addressLabel: string;
|
|
243
|
+
apartment: string;
|
|
244
|
+
buildingName: string;
|
|
215
245
|
state?: string | undefined;
|
|
216
246
|
description?: string | undefined;
|
|
217
247
|
zone?: string | import("mongoose").Types.ObjectId | undefined;
|
|
248
|
+
deliveryOption?: string | undefined;
|
|
249
|
+
instructions?: string | undefined;
|
|
218
250
|
};
|
|
219
251
|
user: {
|
|
220
252
|
name: string;
|
|
@@ -364,6 +396,14 @@ export declare class OrderActionsSocketEvent extends BaseSocketEvent<typeof Orde
|
|
|
364
396
|
latitude: z.ZodNumber;
|
|
365
397
|
longitude: z.ZodNumber;
|
|
366
398
|
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>]>>;
|
|
399
|
+
} & {
|
|
400
|
+
addressLabel: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
401
|
+
apartment: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
402
|
+
buildingName: z.ZodString | z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
403
|
+
deliveryOption: z.ZodOptional<z.ZodString> | z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
404
|
+
instructions: z.ZodOptional<z.ZodString> | z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
405
|
+
} & {
|
|
406
|
+
_id: 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>]>;
|
|
367
407
|
}, "strip", z.ZodTypeAny, {
|
|
368
408
|
location: {
|
|
369
409
|
type: import("../../../utilities/enum").GeoLocationType;
|
|
@@ -371,12 +411,18 @@ export declare class OrderActionsSocketEvent extends BaseSocketEvent<typeof Orde
|
|
|
371
411
|
};
|
|
372
412
|
address: string;
|
|
373
413
|
country: string;
|
|
414
|
+
_id: import("mongoose").Types.ObjectId;
|
|
374
415
|
city: string;
|
|
375
416
|
latitude: number;
|
|
376
417
|
longitude: number;
|
|
418
|
+
addressLabel: string;
|
|
419
|
+
apartment: string;
|
|
420
|
+
buildingName: string;
|
|
377
421
|
state?: string | undefined;
|
|
378
422
|
description?: string | undefined;
|
|
379
423
|
zone?: import("mongoose").Types.ObjectId | undefined;
|
|
424
|
+
deliveryOption?: string | undefined;
|
|
425
|
+
instructions?: string | undefined;
|
|
380
426
|
}, {
|
|
381
427
|
location: {
|
|
382
428
|
coordinates: [number, number];
|
|
@@ -384,12 +430,18 @@ export declare class OrderActionsSocketEvent extends BaseSocketEvent<typeof Orde
|
|
|
384
430
|
};
|
|
385
431
|
address: string;
|
|
386
432
|
country: string;
|
|
433
|
+
_id: string | import("mongoose").Types.ObjectId;
|
|
387
434
|
city: string;
|
|
388
435
|
latitude: number;
|
|
389
436
|
longitude: number;
|
|
437
|
+
addressLabel: string;
|
|
438
|
+
apartment: string;
|
|
439
|
+
buildingName: string;
|
|
390
440
|
state?: string | undefined;
|
|
391
441
|
description?: string | undefined;
|
|
392
442
|
zone?: string | import("mongoose").Types.ObjectId | undefined;
|
|
443
|
+
deliveryOption?: string | undefined;
|
|
444
|
+
instructions?: string | undefined;
|
|
393
445
|
}>;
|
|
394
446
|
paymentSummary: z.ZodObject<{
|
|
395
447
|
paymentMethod: z.ZodNativeEnum<typeof PaymentMethod>;
|
|
@@ -422,12 +474,18 @@ export declare class OrderActionsSocketEvent extends BaseSocketEvent<typeof Orde
|
|
|
422
474
|
};
|
|
423
475
|
address: string;
|
|
424
476
|
country: string;
|
|
477
|
+
_id: import("mongoose").Types.ObjectId;
|
|
425
478
|
city: string;
|
|
426
479
|
latitude: number;
|
|
427
480
|
longitude: number;
|
|
481
|
+
addressLabel: string;
|
|
482
|
+
apartment: string;
|
|
483
|
+
buildingName: string;
|
|
428
484
|
state?: string | undefined;
|
|
429
485
|
description?: string | undefined;
|
|
430
486
|
zone?: import("mongoose").Types.ObjectId | undefined;
|
|
487
|
+
deliveryOption?: string | undefined;
|
|
488
|
+
instructions?: string | undefined;
|
|
431
489
|
};
|
|
432
490
|
user: {
|
|
433
491
|
name: string;
|
|
@@ -475,12 +533,18 @@ export declare class OrderActionsSocketEvent extends BaseSocketEvent<typeof Orde
|
|
|
475
533
|
};
|
|
476
534
|
address: string;
|
|
477
535
|
country: string;
|
|
536
|
+
_id: string | import("mongoose").Types.ObjectId;
|
|
478
537
|
city: string;
|
|
479
538
|
latitude: number;
|
|
480
539
|
longitude: number;
|
|
540
|
+
addressLabel: string;
|
|
541
|
+
apartment: string;
|
|
542
|
+
buildingName: string;
|
|
481
543
|
state?: string | undefined;
|
|
482
544
|
description?: string | undefined;
|
|
483
545
|
zone?: string | import("mongoose").Types.ObjectId | undefined;
|
|
546
|
+
deliveryOption?: string | undefined;
|
|
547
|
+
instructions?: string | undefined;
|
|
484
548
|
};
|
|
485
549
|
user: {
|
|
486
550
|
name: string;
|
|
@@ -54,7 +54,7 @@ exports.OrderActionsOutputSchema = zod_1.z.object({
|
|
|
54
54
|
user: OrderUserSchema,
|
|
55
55
|
lineItems: validation_1.ZodValidation.array(ItemSchema, 'items'),
|
|
56
56
|
canceledLineItems: validation_1.ZodValidation.array(ItemSchema, 'canceledItems').optional(),
|
|
57
|
-
address: validation_1.
|
|
57
|
+
address: validation_1.RegularOrderAddressSchema,
|
|
58
58
|
paymentSummary: OrderPaymentSummarySchema,
|
|
59
59
|
preparationTimeMinutes: validation_1.ZodValidation.number('Preparation Time (minutes)', {
|
|
60
60
|
isNonnegative: true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"order-actions.socket.event.js","sourceRoot":"/","sources":["libraries/socket/events/order-actions.socket.event.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,+
|
|
1
|
+
{"version":3,"file":"order-actions.socket.event.js","sourceRoot":"/","sources":["libraries/socket/events/order-actions.socket.event.ts"],"names":[],"mappings":"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","sourcesContent":["import { z } from 'zod';\nimport {\n\tAddressSchema,\n\tDTO,\n\tRegularOrderAddressSchema,\n\tUserAddressSchema,\n\tZodValidation,\n} from '../../../utilities/validation/';\nimport { roundBaseCurrency, roundSecondaryCurrency } from '../../../utilities/shared';\nimport { PaymentMethod, RegularOrderStatus, SocketEventType } from '../../../utilities/enum';\nimport { BaseSocketEvent } from '../BaseSocketEvent';\n\nexport enum OrderAction {\n\tPLACED = 'placed',\n\tADJUSTMENT = 'adjustment',\n\tREPLACEMENT = 'replacement',\n}\n\nconst OrderUserSchema = z.object({\n\t_id: ZodValidation.objectId('User ID'),\n\tname: ZodValidation.string('User Name'),\n\tordersCount: ZodValidation.number('ordersCount', {\n\t\tisNonnegative: true,\n\t}),\n});\n\nconst ItemSchema = z.object({\n\t_id: ZodValidation.objectId('Order Item ID'),\n\tname: ZodValidation.string('Name'),\n\tdescription: ZodValidation.string('Description').optional(),\n\tattributes: ZodValidation.array(ZodValidation.string()).optional(),\n\tinstructions: ZodValidation.string('instructions').optional(),\n\tquantity: ZodValidation.number('quantity', { isPositive: true }),\n\tprice: ZodValidation.number('price', { isNonnegative: true }).transform(v => roundBaseCurrency(v)),\n\tsecondaryPrice: ZodValidation.number('Secondary Item Price', {\n\t\tisNonnegative: true,\n\t})\n\t\t.transform(v => roundSecondaryCurrency(v))\n\t\t.optional(),\n});\n\nconst OrderPaymentSummarySchema = z.object({\n\tpaymentMethod: ZodValidation.enumType(PaymentMethod, 'paymentMethod'),\n\tsubtotal: ZodValidation.number('Subtotal', { isNonnegative: true }).transform(v => roundBaseCurrency(v)),\n\tsecondarySubtotal: ZodValidation.number('Secondary Subtotal', {\n\t\tisNonnegative: true,\n\t})\n\t\t.transform(v => roundSecondaryCurrency(v))\n\t\t.optional(),\n\n\ttotalAmount: ZodValidation.number('Total Amount', { isNonnegative: true }).transform(v =>\n\t\troundBaseCurrency(v)\n\t),\n\tsecondaryTotalAmount: ZodValidation.number('Secondary Total Amount', {\n\t\tisNonnegative: true,\n\t})\n\t\t.transform(v => roundSecondaryCurrency(v))\n\t\t.optional(),\n});\n\nexport const OrderActionsOutputSchema = z.object({\n\t_id: ZodValidation.objectId('Order ID'),\n\torderId: ZodValidation.string('Readable Order ID'),\n\tuser: OrderUserSchema,\n\tlineItems: ZodValidation.array(ItemSchema, 'items'),\n\tcanceledLineItems: ZodValidation.array(ItemSchema, 'canceledItems').optional(),\n\taddress: RegularOrderAddressSchema,\n\tpaymentSummary: OrderPaymentSummarySchema,\n\tpreparationTimeMinutes: ZodValidation.number('Preparation Time (minutes)', {\n\t\tisNonnegative: true,\n\t}),\n\tplacedAt: ZodValidation.coerce.date('placedAt'),\n\torderStatus: ZodValidation.enumType(RegularOrderStatus, 'status'),\n\torderAction: ZodValidation.enumType(OrderAction, 'orderAction'),\n});\n\nexport const OrderActionsInputSchema = z.object({\n\tshopId: ZodValidation.objectId('shopId'),\n});\n\nexport type OrderActionSocketInputDTO = DTO<typeof OrderActionsInputSchema>;\nexport type OrderActionSocketOutputDTO = DTO<typeof OrderActionsOutputSchema>;\n\nexport class OrderActionsSocketEvent extends BaseSocketEvent<\n\ttypeof OrderActionsInputSchema,\n\ttypeof OrderActionsOutputSchema\n> {\n\tstatic readonly schemas = {\n\t\tinput: OrderActionsInputSchema,\n\t\toutput: OrderActionsOutputSchema,\n\t};\n\n\tconstructor(payload: OrderActionSocketOutputDTO) {\n\t\tsuper(SocketEventType.ORDER_ACTIONS, OrderActionsSocketEvent.schemas, payload);\n\t}\n\n\tprotected getIdentifier(): string {\n\t\treturn 'default';\n\t}\n}\n"]}
|
package/dist/types/README.md
CHANGED
package/dist/types/package.json
CHANGED