expo-backend-types 0.50.0-EXPO-349-Ricardo-Fort.2 → 0.51.0
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/src/account/dto/get-global-filter.dto.d.ts +10 -8
- package/dist/src/account/dto/get-me.dto.d.ts +20 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +10 -8
- package/dist/src/event/dto/get-all-event.dto.d.ts +236 -232
- package/dist/src/event/dto/get-all-event.dto.js +1 -1
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +20 -20
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +136 -126
- package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +20 -20
- package/dist/src/event/dto/update-event.dto.d.ts +10 -8
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +57 -0
- package/dist/src/i18n/es.js +57 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/production/dto/create-production.dto.d.ts +41 -0
- package/dist/src/production/dto/create-production.dto.js +18 -0
- package/dist/src/production/dto/create-role.dto.d.ts +86 -0
- package/dist/src/production/dto/create-role.dto.js +16 -0
- package/dist/src/production/dto/delete-production.dto.d.ts +41 -0
- package/dist/src/production/dto/delete-production.dto.js +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +451 -0
- package/dist/src/production/dto/get-all-production.dto.js +21 -0
- package/dist/src/production/dto/production.dto.d.ts +20 -0
- package/dist/src/production/dto/production.dto.js +21 -0
- package/dist/src/production/dto/update-production.dto.d.ts +63 -0
- package/dist/src/production/dto/update-production.dto.js +19 -0
- package/dist/src/production/exports.d.ts +6 -0
- package/dist/src/production/exports.js +23 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.d.ts +80 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.js +16 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +563 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.js +21 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +27 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +22 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +390 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.js +15 -0
- package/dist/src/production-affiliation-request/exports.d.ts +4 -0
- package/dist/src/production-affiliation-request/exports.js +21 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +24 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +14 -12
- package/dist/src/tag/dto/create-tag.dto.d.ts +41 -9
- package/dist/src/tag/dto/create-tag.dto.js +6 -5
- package/dist/src/tag/dto/delete-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +7 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +10 -8
- package/dist/types/prisma-schema/edge.js +32 -5
- package/dist/types/prisma-schema/index-browser.js +29 -2
- package/dist/types/prisma-schema/index.d.ts +4879 -290
- package/dist/types/prisma-schema/index.js +32 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +54 -4
- package/dist/types/prisma-schema/wasm.js +29 -2
- package/dist/types/schema.d.ts +607 -28
- package/package.json +1 -1
@@ -14,7 +14,7 @@ const zod_1 = __importDefault(require("zod"));
|
|
14
14
|
const eventWithAllThings = event_dto_1.eventSchema.merge(zod_1.default.object({
|
15
15
|
supraEvent: event_dto_1.eventSchema.nullable(),
|
16
16
|
subEvents: zod_1.default.array(event_dto_1.eventSchema),
|
17
|
-
|
17
|
+
profileTags: zod_1.default.array(tag_dto_1.tagSchema
|
18
18
|
.pick({
|
19
19
|
id: true,
|
20
20
|
name: true,
|
@@ -124,16 +124,6 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
124
124
|
created_at: Date;
|
125
125
|
updated_at: Date;
|
126
126
|
active: boolean;
|
127
|
-
folderId: string | null;
|
128
|
-
tagAssistedId: string;
|
129
|
-
tagConfirmedId: string;
|
130
|
-
supraEventId: string | null;
|
131
|
-
eventTickets: {
|
132
|
-
id: string;
|
133
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
134
|
-
amount: number | null;
|
135
|
-
price: number | null;
|
136
|
-
}[];
|
137
127
|
tickets: {
|
138
128
|
id: string;
|
139
129
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -148,6 +138,16 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
148
138
|
scannedAt: Date | null;
|
149
139
|
ticketGroupId: string | null;
|
150
140
|
}[];
|
141
|
+
folderId: string | null;
|
142
|
+
tagAssistedId: string;
|
143
|
+
tagConfirmedId: string;
|
144
|
+
supraEventId: string | null;
|
145
|
+
eventTickets: {
|
146
|
+
id: string;
|
147
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
148
|
+
amount: number | null;
|
149
|
+
price: number | null;
|
150
|
+
}[];
|
151
151
|
ticketGroups: {
|
152
152
|
id: string;
|
153
153
|
eventId: string;
|
@@ -166,16 +166,6 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
166
166
|
created_at: Date;
|
167
167
|
updated_at: Date;
|
168
168
|
active: boolean;
|
169
|
-
folderId: string | null;
|
170
|
-
tagAssistedId: string;
|
171
|
-
tagConfirmedId: string;
|
172
|
-
supraEventId: string | null;
|
173
|
-
eventTickets: {
|
174
|
-
id: string;
|
175
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
176
|
-
amount: number | null;
|
177
|
-
price: number | null;
|
178
|
-
}[];
|
179
169
|
tickets: {
|
180
170
|
id: string;
|
181
171
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -190,6 +180,16 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
190
180
|
scannedAt: Date | null;
|
191
181
|
ticketGroupId: string | null;
|
192
182
|
}[];
|
183
|
+
folderId: string | null;
|
184
|
+
tagAssistedId: string;
|
185
|
+
tagConfirmedId: string;
|
186
|
+
supraEventId: string | null;
|
187
|
+
eventTickets: {
|
188
|
+
id: string;
|
189
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
190
|
+
amount: number | null;
|
191
|
+
price: number | null;
|
192
|
+
}[];
|
193
193
|
ticketGroups: {
|
194
194
|
id: string;
|
195
195
|
eventId: string;
|