expo-backend-types 0.60.0-feat-desfile-12-octubre.3 → 0.60.0-feat-desfile-12-octubre.4
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/event/dto/get-all-event.dto.d.ts +152 -0
- package/dist/src/event/dto/get-all-event.dto.js +5 -0
- package/dist/types/prisma-schema/edge.js +3 -3
- package/dist/types/prisma-schema/index.d.ts +12 -12
- package/dist/types/prisma-schema/index.js +3 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -1
- package/dist/types/schema.d.ts +10 -0
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -2363,6 +2363,11 @@ export interface components {
|
|
2363
2363
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2364
2364
|
price: number | null;
|
2365
2365
|
}[];
|
2366
|
+
eventProducerLogin: {
|
2367
|
+
mail: string;
|
2368
|
+
password: string;
|
2369
|
+
isActive: boolean;
|
2370
|
+
}[];
|
2366
2371
|
}[];
|
2367
2372
|
}[];
|
2368
2373
|
withoutFolder: {
|
@@ -2435,6 +2440,11 @@ export interface components {
|
|
2435
2440
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2436
2441
|
price: number | null;
|
2437
2442
|
}[];
|
2443
|
+
eventProducerLogin: {
|
2444
|
+
mail: string;
|
2445
|
+
password: string;
|
2446
|
+
isActive: boolean;
|
2447
|
+
}[];
|
2438
2448
|
}[];
|
2439
2449
|
};
|
2440
2450
|
GetActiveEventsResponseDto: {
|