expo-backend-types 0.60.0-feat-desfile-12-octubre.1 → 0.60.0-feat-desfile-12-octubre.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.
- package/dist/src/event/dto/create-event.dto.d.ts +46 -0
- package/dist/src/event/dto/create-event.dto.js +1 -0
- package/dist/src/event/dto/event.dto.d.ts +13 -0
- package/dist/src/event/dto/event.dto.js +10 -1
- package/dist/src/event/dto/update-event.dto.d.ts +46 -0
- package/dist/src/event/dto/update-event.dto.js +1 -0
- package/dist/src/i18n/es.d.ts +9 -0
- package/dist/src/i18n/es.js +9 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/types/prisma-schema/edge.js +15 -4
- package/dist/types/prisma-schema/index-browser.js +12 -1
- package/dist/types/prisma-schema/index.d.ts +1721 -2
- package/dist/types/prisma-schema/index.js +15 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +23 -0
- package/dist/types/prisma-schema/wasm.js +12 -1
- package/dist/types/schema.d.ts +10 -0
- package/package.json +1 -1
@@ -345,6 +345,16 @@ exports.Prisma.DynamicOptionScalarFieldEnum = {
|
|
345
345
|
updated_at: 'updated_at'
|
346
346
|
};
|
347
347
|
|
348
|
+
exports.Prisma.EventProducerLoginScalarFieldEnum = {
|
349
|
+
id: 'id',
|
350
|
+
eventId: 'eventId',
|
351
|
+
mail: 'mail',
|
352
|
+
password: 'password',
|
353
|
+
isActive: 'isActive',
|
354
|
+
created_at: 'created_at',
|
355
|
+
updated_at: 'updated_at'
|
356
|
+
};
|
357
|
+
|
348
358
|
exports.Prisma.SortOrder = {
|
349
359
|
asc: 'asc',
|
350
360
|
desc: 'desc'
|
@@ -449,7 +459,8 @@ exports.Prisma.ModelName = {
|
|
449
459
|
ProductionAffiliationRequest: 'ProductionAffiliationRequest',
|
450
460
|
DynamicForm: 'DynamicForm',
|
451
461
|
DynamicQuestion: 'DynamicQuestion',
|
452
|
-
DynamicOption: 'DynamicOption'
|
462
|
+
DynamicOption: 'DynamicOption',
|
463
|
+
EventProducerLogin: 'EventProducerLogin'
|
453
464
|
};
|
454
465
|
|
455
466
|
/**
|