expo-backend-types 0.56.0-EXPO-372-EB-Schema-formulario-dinamico.1 → 0.56.0-EXPO-372-EB-Schema-formulario-dinamico.3
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 +32 -28
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -40
- package/dist/src/event/dto/update-event.dto.d.ts +10 -8
- package/dist/src/i18n/es.d.ts +3 -0
- package/dist/src/i18n/es.js +3 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/production/dto/create-role.dto.d.ts +7 -4
- 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 +13 -8
- 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 +37 -5
- package/dist/types/prisma-schema/index-browser.js +34 -2
- package/dist/types/prisma-schema/index.d.ts +5216 -143
- package/dist/types/prisma-schema/index.js +37 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +55 -2
- package/dist/types/prisma-schema/wasm.js +34 -2
- package/dist/types/schema.d.ts +26 -26
- package/package.json +1 -1
@@ -312,6 +312,34 @@ exports.Prisma.ProductionAffiliationRequestScalarFieldEnum = {
|
|
312
312
|
updated_at: 'updated_at'
|
313
313
|
};
|
314
314
|
|
315
|
+
exports.Prisma.DynamicFormScalarFieldEnum = {
|
316
|
+
id: 'id',
|
317
|
+
name: 'name',
|
318
|
+
created_at: 'created_at',
|
319
|
+
updated_at: 'updated_at'
|
320
|
+
};
|
321
|
+
|
322
|
+
exports.Prisma.DynamicQuestionScalarFieldEnum = {
|
323
|
+
id: 'id',
|
324
|
+
formId: 'formId',
|
325
|
+
text: 'text',
|
326
|
+
tagGroupId: 'tagGroupId',
|
327
|
+
disabled: 'disabled',
|
328
|
+
required: 'required',
|
329
|
+
multipleChoice: 'multipleChoice',
|
330
|
+
created_at: 'created_at',
|
331
|
+
updated_at: 'updated_at'
|
332
|
+
};
|
333
|
+
|
334
|
+
exports.Prisma.DynamicOptionScalarFieldEnum = {
|
335
|
+
id: 'id',
|
336
|
+
text: 'text',
|
337
|
+
tagId: 'tagId',
|
338
|
+
questionId: 'questionId',
|
339
|
+
created_at: 'created_at',
|
340
|
+
updated_at: 'updated_at'
|
341
|
+
};
|
342
|
+
|
315
343
|
exports.Prisma.SortOrder = {
|
316
344
|
asc: 'asc',
|
317
345
|
desc: 'desc'
|
@@ -349,7 +377,8 @@ exports.TagType = exports.$Enums.TagType = {
|
|
349
377
|
EVENT: 'EVENT',
|
350
378
|
PARTICIPANT: 'PARTICIPANT',
|
351
379
|
NOT_IN_SYSTEM: 'NOT_IN_SYSTEM',
|
352
|
-
PRODUCTION_ROLE: 'PRODUCTION_ROLE'
|
380
|
+
PRODUCTION_ROLE: 'PRODUCTION_ROLE',
|
381
|
+
FORM_OPTION: 'FORM_OPTION'
|
353
382
|
};
|
354
383
|
|
355
384
|
exports.MessageState = exports.$Enums.MessageState = {
|
@@ -405,7 +434,10 @@ exports.Prisma.ModelName = {
|
|
405
434
|
Enums: 'Enums',
|
406
435
|
EventTicket: 'EventTicket',
|
407
436
|
Production: 'Production',
|
408
|
-
ProductionAffiliationRequest: 'ProductionAffiliationRequest'
|
437
|
+
ProductionAffiliationRequest: 'ProductionAffiliationRequest',
|
438
|
+
DynamicForm: 'DynamicForm',
|
439
|
+
DynamicQuestion: 'DynamicQuestion',
|
440
|
+
DynamicOption: 'DynamicOption'
|
409
441
|
};
|
410
442
|
|
411
443
|
/**
|