expo-backend-types 0.60.0-feat-desfile-12-octubre.7 → 0.60.0-feat-desfile-12-octubre.9
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,10 +4,13 @@ export declare const updateTicketGroupSchema: import("zod").ZodObject<{
|
|
4
4
|
PAID: "PAID";
|
5
5
|
FREE: "FREE";
|
6
6
|
}>>;
|
7
|
+
amountTickets: import("zod").ZodOptional<import("zod").ZodNumber>;
|
7
8
|
}, "strip", import("zod").ZodTypeAny, {
|
8
9
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
10
|
+
amountTickets?: number | undefined;
|
9
11
|
}, {
|
10
12
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
13
|
+
amountTickets?: number | undefined;
|
11
14
|
}>;
|
12
15
|
declare const UpdateTicketGroupDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
13
16
|
status: import("zod").ZodOptional<import("zod").ZodNativeEnum<{
|
@@ -15,10 +18,13 @@ declare const UpdateTicketGroupDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
15
18
|
PAID: "PAID";
|
16
19
|
FREE: "FREE";
|
17
20
|
}>>;
|
21
|
+
amountTickets: import("zod").ZodOptional<import("zod").ZodNumber>;
|
18
22
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
19
23
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
24
|
+
amountTickets?: number | undefined;
|
20
25
|
}, {
|
21
26
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
27
|
+
amountTickets?: number | undefined;
|
22
28
|
}>>;
|
23
29
|
export declare class UpdateTicketGroupDto extends UpdateTicketGroupDto_base {
|
24
30
|
}
|
@@ -6,6 +6,7 @@ const ticket_group_dto_1 = require("./ticket-group.dto");
|
|
6
6
|
exports.updateTicketGroupSchema = ticket_group_dto_1.ticketGroupSchema
|
7
7
|
.pick({
|
8
8
|
status: true,
|
9
|
+
amountTickets: true,
|
9
10
|
})
|
10
11
|
.partial();
|
11
12
|
class UpdateTicketGroupDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateTicketGroupSchema) {
|
package/dist/types/schema.d.ts
CHANGED
@@ -1686,9 +1686,9 @@ export interface paths {
|
|
1686
1686
|
path?: never;
|
1687
1687
|
cookie?: never;
|
1688
1688
|
};
|
1689
|
-
get
|
1689
|
+
get?: never;
|
1690
1690
|
put?: never;
|
1691
|
-
post
|
1691
|
+
post: operations["ExpoTicketsProducerLoginController_getEventTickets"];
|
1692
1692
|
delete?: never;
|
1693
1693
|
options?: never;
|
1694
1694
|
head?: never;
|
@@ -3764,6 +3764,7 @@ export interface components {
|
|
3764
3764
|
};
|
3765
3765
|
UpdateTicketGroupDto: {
|
3766
3766
|
status?: "BOOKED" | "PAID" | "FREE";
|
3767
|
+
amountTickets?: number;
|
3767
3768
|
};
|
3768
3769
|
UpdateTicketGroupResponseDto: {
|
3769
3770
|
id: string;
|