expo-backend-types 0.57.0-EXPO-377-Etapa-4-Paquete-02.5 → 0.57.0-EXPO-377-Etapa-4-Paquete-02.7

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.
@@ -316,6 +316,7 @@ exports.Prisma.ProductionAffiliationRequestScalarFieldEnum = {
316
316
  exports.Prisma.DynamicFormScalarFieldEnum = {
317
317
  id: 'id',
318
318
  name: 'name',
319
+ type: 'type',
319
320
  created_at: 'created_at',
320
321
  updated_at: 'updated_at'
321
322
  };
@@ -418,6 +419,12 @@ exports.AffiliationStatus = exports.$Enums.AffiliationStatus = {
418
419
  REJECTED: 'REJECTED'
419
420
  };
420
421
 
422
+ exports.DynamicFormType = exports.$Enums.DynamicFormType = {
423
+ PERSONAL_INFO: 'PERSONAL_INFO',
424
+ PRODUCTION: 'PRODUCTION',
425
+ PARTICIPANT: 'PARTICIPANT'
426
+ };
427
+
421
428
  exports.Prisma.ModelName = {
422
429
  Account: 'Account',
423
430
  Profile: 'Profile',
@@ -194,6 +194,15 @@ export const TicketGroupStatus: {
194
194
 
195
195
  export type TicketGroupStatus = (typeof TicketGroupStatus)[keyof typeof TicketGroupStatus]
196
196
 
197
+
198
+ export const DynamicFormType: {
199
+ PERSONAL_INFO: 'PERSONAL_INFO',
200
+ PRODUCTION: 'PRODUCTION',
201
+ PARTICIPANT: 'PARTICIPANT'
202
+ };
203
+
204
+ export type DynamicFormType = (typeof DynamicFormType)[keyof typeof DynamicFormType]
205
+
197
206
  }
198
207
 
199
208
  export type Role = $Enums.Role
@@ -228,6 +237,10 @@ export type TicketGroupStatus = $Enums.TicketGroupStatus
228
237
 
229
238
  export const TicketGroupStatus: typeof $Enums.TicketGroupStatus
230
239
 
240
+ export type DynamicFormType = $Enums.DynamicFormType
241
+
242
+ export const DynamicFormType: typeof $Enums.DynamicFormType
243
+
231
244
  /**
232
245
  * ## Prisma Client ʲˢ
233
246
  *
@@ -23311,6 +23324,7 @@ export namespace Prisma {
23311
23324
  export type DynamicFormMinAggregateOutputType = {
23312
23325
  id: string | null
23313
23326
  name: string | null
23327
+ type: $Enums.DynamicFormType | null
23314
23328
  created_at: Date | null
23315
23329
  updated_at: Date | null
23316
23330
  }
@@ -23318,6 +23332,7 @@ export namespace Prisma {
23318
23332
  export type DynamicFormMaxAggregateOutputType = {
23319
23333
  id: string | null
23320
23334
  name: string | null
23335
+ type: $Enums.DynamicFormType | null
23321
23336
  created_at: Date | null
23322
23337
  updated_at: Date | null
23323
23338
  }
@@ -23325,6 +23340,7 @@ export namespace Prisma {
23325
23340
  export type DynamicFormCountAggregateOutputType = {
23326
23341
  id: number
23327
23342
  name: number
23343
+ type: number
23328
23344
  created_at: number
23329
23345
  updated_at: number
23330
23346
  _all: number
@@ -23334,6 +23350,7 @@ export namespace Prisma {
23334
23350
  export type DynamicFormMinAggregateInputType = {
23335
23351
  id?: true
23336
23352
  name?: true
23353
+ type?: true
23337
23354
  created_at?: true
23338
23355
  updated_at?: true
23339
23356
  }
@@ -23341,6 +23358,7 @@ export namespace Prisma {
23341
23358
  export type DynamicFormMaxAggregateInputType = {
23342
23359
  id?: true
23343
23360
  name?: true
23361
+ type?: true
23344
23362
  created_at?: true
23345
23363
  updated_at?: true
23346
23364
  }
@@ -23348,6 +23366,7 @@ export namespace Prisma {
23348
23366
  export type DynamicFormCountAggregateInputType = {
23349
23367
  id?: true
23350
23368
  name?: true
23369
+ type?: true
23351
23370
  created_at?: true
23352
23371
  updated_at?: true
23353
23372
  _all?: true
@@ -23428,6 +23447,7 @@ export namespace Prisma {
23428
23447
  export type DynamicFormGroupByOutputType = {
23429
23448
  id: string
23430
23449
  name: string
23450
+ type: $Enums.DynamicFormType
23431
23451
  created_at: Date
23432
23452
  updated_at: Date
23433
23453
  _count: DynamicFormCountAggregateOutputType | null
@@ -23452,6 +23472,7 @@ export namespace Prisma {
23452
23472
  export type DynamicFormSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
23453
23473
  id?: boolean
23454
23474
  name?: boolean
23475
+ type?: boolean
23455
23476
  created_at?: boolean
23456
23477
  updated_at?: boolean
23457
23478
  questions?: boolean | DynamicForm$questionsArgs<ExtArgs>
@@ -23461,6 +23482,7 @@ export namespace Prisma {
23461
23482
  export type DynamicFormSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
23462
23483
  id?: boolean
23463
23484
  name?: boolean
23485
+ type?: boolean
23464
23486
  created_at?: boolean
23465
23487
  updated_at?: boolean
23466
23488
  }, ExtArgs["result"]["dynamicForm"]>
@@ -23468,6 +23490,7 @@ export namespace Prisma {
23468
23490
  export type DynamicFormSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
23469
23491
  id?: boolean
23470
23492
  name?: boolean
23493
+ type?: boolean
23471
23494
  created_at?: boolean
23472
23495
  updated_at?: boolean
23473
23496
  }, ExtArgs["result"]["dynamicForm"]>
@@ -23475,11 +23498,12 @@ export namespace Prisma {
23475
23498
  export type DynamicFormSelectScalar = {
23476
23499
  id?: boolean
23477
23500
  name?: boolean
23501
+ type?: boolean
23478
23502
  created_at?: boolean
23479
23503
  updated_at?: boolean
23480
23504
  }
23481
23505
 
23482
- export type DynamicFormOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "created_at" | "updated_at", ExtArgs["result"]["dynamicForm"]>
23506
+ export type DynamicFormOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "type" | "created_at" | "updated_at", ExtArgs["result"]["dynamicForm"]>
23483
23507
  export type DynamicFormInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
23484
23508
  questions?: boolean | DynamicForm$questionsArgs<ExtArgs>
23485
23509
  _count?: boolean | DynamicFormCountOutputTypeDefaultArgs<ExtArgs>
@@ -23495,6 +23519,7 @@ export namespace Prisma {
23495
23519
  scalars: $Extensions.GetPayloadResult<{
23496
23520
  id: string
23497
23521
  name: string
23522
+ type: $Enums.DynamicFormType
23498
23523
  created_at: Date
23499
23524
  updated_at: Date
23500
23525
  }, ExtArgs["result"]["dynamicForm"]>
@@ -23923,6 +23948,7 @@ export namespace Prisma {
23923
23948
  interface DynamicFormFieldRefs {
23924
23949
  readonly id: FieldRef<"DynamicForm", 'String'>
23925
23950
  readonly name: FieldRef<"DynamicForm", 'String'>
23951
+ readonly type: FieldRef<"DynamicForm", 'DynamicFormType'>
23926
23952
  readonly created_at: FieldRef<"DynamicForm", 'DateTime'>
23927
23953
  readonly updated_at: FieldRef<"DynamicForm", 'DateTime'>
23928
23954
  }
@@ -26846,6 +26872,7 @@ export namespace Prisma {
26846
26872
  export const DynamicFormScalarFieldEnum: {
26847
26873
  id: 'id',
26848
26874
  name: 'name',
26875
+ type: 'type',
26849
26876
  created_at: 'created_at',
26850
26877
  updated_at: 'updated_at'
26851
26878
  };
@@ -27112,6 +27139,20 @@ export namespace Prisma {
27112
27139
  */
27113
27140
  export type ListEnumAffiliationStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AffiliationStatus[]'>
27114
27141
 
27142
+
27143
+
27144
+ /**
27145
+ * Reference to a field of type 'DynamicFormType'
27146
+ */
27147
+ export type EnumDynamicFormTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DynamicFormType'>
27148
+
27149
+
27150
+
27151
+ /**
27152
+ * Reference to a field of type 'DynamicFormType[]'
27153
+ */
27154
+ export type ListEnumDynamicFormTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DynamicFormType[]'>
27155
+
27115
27156
  /**
27116
27157
  * Deep Input Types
27117
27158
  */
@@ -28492,6 +28533,7 @@ export namespace Prisma {
28492
28533
  NOT?: DynamicFormWhereInput | DynamicFormWhereInput[]
28493
28534
  id?: StringFilter<"DynamicForm"> | string
28494
28535
  name?: StringFilter<"DynamicForm"> | string
28536
+ type?: EnumDynamicFormTypeFilter<"DynamicForm"> | $Enums.DynamicFormType
28495
28537
  created_at?: DateTimeFilter<"DynamicForm"> | Date | string
28496
28538
  updated_at?: DateTimeFilter<"DynamicForm"> | Date | string
28497
28539
  questions?: DynamicQuestionListRelationFilter
@@ -28500,6 +28542,7 @@ export namespace Prisma {
28500
28542
  export type DynamicFormOrderByWithRelationInput = {
28501
28543
  id?: SortOrder
28502
28544
  name?: SortOrder
28545
+ type?: SortOrder
28503
28546
  created_at?: SortOrder
28504
28547
  updated_at?: SortOrder
28505
28548
  questions?: DynamicQuestionOrderByRelationAggregateInput
@@ -28511,6 +28554,7 @@ export namespace Prisma {
28511
28554
  AND?: DynamicFormWhereInput | DynamicFormWhereInput[]
28512
28555
  OR?: DynamicFormWhereInput[]
28513
28556
  NOT?: DynamicFormWhereInput | DynamicFormWhereInput[]
28557
+ type?: EnumDynamicFormTypeFilter<"DynamicForm"> | $Enums.DynamicFormType
28514
28558
  created_at?: DateTimeFilter<"DynamicForm"> | Date | string
28515
28559
  updated_at?: DateTimeFilter<"DynamicForm"> | Date | string
28516
28560
  questions?: DynamicQuestionListRelationFilter
@@ -28519,6 +28563,7 @@ export namespace Prisma {
28519
28563
  export type DynamicFormOrderByWithAggregationInput = {
28520
28564
  id?: SortOrder
28521
28565
  name?: SortOrder
28566
+ type?: SortOrder
28522
28567
  created_at?: SortOrder
28523
28568
  updated_at?: SortOrder
28524
28569
  _count?: DynamicFormCountOrderByAggregateInput
@@ -28532,6 +28577,7 @@ export namespace Prisma {
28532
28577
  NOT?: DynamicFormScalarWhereWithAggregatesInput | DynamicFormScalarWhereWithAggregatesInput[]
28533
28578
  id?: StringWithAggregatesFilter<"DynamicForm"> | string
28534
28579
  name?: StringWithAggregatesFilter<"DynamicForm"> | string
28580
+ type?: EnumDynamicFormTypeWithAggregatesFilter<"DynamicForm"> | $Enums.DynamicFormType
28535
28581
  created_at?: DateTimeWithAggregatesFilter<"DynamicForm"> | Date | string
28536
28582
  updated_at?: DateTimeWithAggregatesFilter<"DynamicForm"> | Date | string
28537
28583
  }
@@ -30182,6 +30228,7 @@ export namespace Prisma {
30182
30228
  export type DynamicFormCreateInput = {
30183
30229
  id?: string
30184
30230
  name: string
30231
+ type?: $Enums.DynamicFormType
30185
30232
  created_at?: Date | string
30186
30233
  updated_at?: Date | string
30187
30234
  questions?: DynamicQuestionCreateNestedManyWithoutFormInput
@@ -30190,6 +30237,7 @@ export namespace Prisma {
30190
30237
  export type DynamicFormUncheckedCreateInput = {
30191
30238
  id?: string
30192
30239
  name: string
30240
+ type?: $Enums.DynamicFormType
30193
30241
  created_at?: Date | string
30194
30242
  updated_at?: Date | string
30195
30243
  questions?: DynamicQuestionUncheckedCreateNestedManyWithoutFormInput
@@ -30198,6 +30246,7 @@ export namespace Prisma {
30198
30246
  export type DynamicFormUpdateInput = {
30199
30247
  id?: StringFieldUpdateOperationsInput | string
30200
30248
  name?: StringFieldUpdateOperationsInput | string
30249
+ type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
30201
30250
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
30202
30251
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
30203
30252
  questions?: DynamicQuestionUpdateManyWithoutFormNestedInput
@@ -30206,6 +30255,7 @@ export namespace Prisma {
30206
30255
  export type DynamicFormUncheckedUpdateInput = {
30207
30256
  id?: StringFieldUpdateOperationsInput | string
30208
30257
  name?: StringFieldUpdateOperationsInput | string
30258
+ type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
30209
30259
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
30210
30260
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
30211
30261
  questions?: DynamicQuestionUncheckedUpdateManyWithoutFormNestedInput
@@ -30214,6 +30264,7 @@ export namespace Prisma {
30214
30264
  export type DynamicFormCreateManyInput = {
30215
30265
  id?: string
30216
30266
  name: string
30267
+ type?: $Enums.DynamicFormType
30217
30268
  created_at?: Date | string
30218
30269
  updated_at?: Date | string
30219
30270
  }
@@ -30221,6 +30272,7 @@ export namespace Prisma {
30221
30272
  export type DynamicFormUpdateManyMutationInput = {
30222
30273
  id?: StringFieldUpdateOperationsInput | string
30223
30274
  name?: StringFieldUpdateOperationsInput | string
30275
+ type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
30224
30276
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
30225
30277
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
30226
30278
  }
@@ -30228,6 +30280,7 @@ export namespace Prisma {
30228
30280
  export type DynamicFormUncheckedUpdateManyInput = {
30229
30281
  id?: StringFieldUpdateOperationsInput | string
30230
30282
  name?: StringFieldUpdateOperationsInput | string
30283
+ type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
30231
30284
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
30232
30285
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
30233
30286
  }
@@ -31640,6 +31693,13 @@ export namespace Prisma {
31640
31693
  _max?: NestedEnumAffiliationStatusFilter<$PrismaModel>
31641
31694
  }
31642
31695
 
31696
+ export type EnumDynamicFormTypeFilter<$PrismaModel = never> = {
31697
+ equals?: $Enums.DynamicFormType | EnumDynamicFormTypeFieldRefInput<$PrismaModel>
31698
+ in?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
31699
+ notIn?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
31700
+ not?: NestedEnumDynamicFormTypeFilter<$PrismaModel> | $Enums.DynamicFormType
31701
+ }
31702
+
31643
31703
  export type DynamicQuestionListRelationFilter = {
31644
31704
  every?: DynamicQuestionWhereInput
31645
31705
  some?: DynamicQuestionWhereInput
@@ -31653,6 +31713,7 @@ export namespace Prisma {
31653
31713
  export type DynamicFormCountOrderByAggregateInput = {
31654
31714
  id?: SortOrder
31655
31715
  name?: SortOrder
31716
+ type?: SortOrder
31656
31717
  created_at?: SortOrder
31657
31718
  updated_at?: SortOrder
31658
31719
  }
@@ -31660,6 +31721,7 @@ export namespace Prisma {
31660
31721
  export type DynamicFormMaxOrderByAggregateInput = {
31661
31722
  id?: SortOrder
31662
31723
  name?: SortOrder
31724
+ type?: SortOrder
31663
31725
  created_at?: SortOrder
31664
31726
  updated_at?: SortOrder
31665
31727
  }
@@ -31667,10 +31729,21 @@ export namespace Prisma {
31667
31729
  export type DynamicFormMinOrderByAggregateInput = {
31668
31730
  id?: SortOrder
31669
31731
  name?: SortOrder
31732
+ type?: SortOrder
31670
31733
  created_at?: SortOrder
31671
31734
  updated_at?: SortOrder
31672
31735
  }
31673
31736
 
31737
+ export type EnumDynamicFormTypeWithAggregatesFilter<$PrismaModel = never> = {
31738
+ equals?: $Enums.DynamicFormType | EnumDynamicFormTypeFieldRefInput<$PrismaModel>
31739
+ in?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
31740
+ notIn?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
31741
+ not?: NestedEnumDynamicFormTypeWithAggregatesFilter<$PrismaModel> | $Enums.DynamicFormType
31742
+ _count?: NestedIntFilter<$PrismaModel>
31743
+ _min?: NestedEnumDynamicFormTypeFilter<$PrismaModel>
31744
+ _max?: NestedEnumDynamicFormTypeFilter<$PrismaModel>
31745
+ }
31746
+
31674
31747
  export type DynamicFormScalarRelationFilter = {
31675
31748
  is?: DynamicFormWhereInput
31676
31749
  isNot?: DynamicFormWhereInput
@@ -33640,6 +33713,10 @@ export namespace Prisma {
33640
33713
  connect?: DynamicQuestionWhereUniqueInput | DynamicQuestionWhereUniqueInput[]
33641
33714
  }
33642
33715
 
33716
+ export type EnumDynamicFormTypeFieldUpdateOperationsInput = {
33717
+ set?: $Enums.DynamicFormType
33718
+ }
33719
+
33643
33720
  export type DynamicQuestionUpdateManyWithoutFormNestedInput = {
33644
33721
  create?: XOR<DynamicQuestionCreateWithoutFormInput, DynamicQuestionUncheckedCreateWithoutFormInput> | DynamicQuestionCreateWithoutFormInput[] | DynamicQuestionUncheckedCreateWithoutFormInput[]
33645
33722
  connectOrCreate?: DynamicQuestionCreateOrConnectWithoutFormInput | DynamicQuestionCreateOrConnectWithoutFormInput[]
@@ -34158,6 +34235,23 @@ export namespace Prisma {
34158
34235
  _max?: NestedEnumAffiliationStatusFilter<$PrismaModel>
34159
34236
  }
34160
34237
 
34238
+ export type NestedEnumDynamicFormTypeFilter<$PrismaModel = never> = {
34239
+ equals?: $Enums.DynamicFormType | EnumDynamicFormTypeFieldRefInput<$PrismaModel>
34240
+ in?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
34241
+ notIn?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
34242
+ not?: NestedEnumDynamicFormTypeFilter<$PrismaModel> | $Enums.DynamicFormType
34243
+ }
34244
+
34245
+ export type NestedEnumDynamicFormTypeWithAggregatesFilter<$PrismaModel = never> = {
34246
+ equals?: $Enums.DynamicFormType | EnumDynamicFormTypeFieldRefInput<$PrismaModel>
34247
+ in?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
34248
+ notIn?: $Enums.DynamicFormType[] | ListEnumDynamicFormTypeFieldRefInput<$PrismaModel>
34249
+ not?: NestedEnumDynamicFormTypeWithAggregatesFilter<$PrismaModel> | $Enums.DynamicFormType
34250
+ _count?: NestedIntFilter<$PrismaModel>
34251
+ _min?: NestedEnumDynamicFormTypeFilter<$PrismaModel>
34252
+ _max?: NestedEnumDynamicFormTypeFilter<$PrismaModel>
34253
+ }
34254
+
34161
34255
  export type CommentCreateWithoutAccountInput = {
34162
34256
  id?: string
34163
34257
  content: string
@@ -38932,6 +39026,7 @@ export namespace Prisma {
38932
39026
  export type DynamicFormCreateWithoutQuestionsInput = {
38933
39027
  id?: string
38934
39028
  name: string
39029
+ type?: $Enums.DynamicFormType
38935
39030
  created_at?: Date | string
38936
39031
  updated_at?: Date | string
38937
39032
  }
@@ -38939,6 +39034,7 @@ export namespace Prisma {
38939
39034
  export type DynamicFormUncheckedCreateWithoutQuestionsInput = {
38940
39035
  id?: string
38941
39036
  name: string
39037
+ type?: $Enums.DynamicFormType
38942
39038
  created_at?: Date | string
38943
39039
  updated_at?: Date | string
38944
39040
  }
@@ -39013,6 +39109,7 @@ export namespace Prisma {
39013
39109
  export type DynamicFormUpdateWithoutQuestionsInput = {
39014
39110
  id?: StringFieldUpdateOperationsInput | string
39015
39111
  name?: StringFieldUpdateOperationsInput | string
39112
+ type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
39016
39113
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
39017
39114
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
39018
39115
  }
@@ -39020,6 +39117,7 @@ export namespace Prisma {
39020
39117
  export type DynamicFormUncheckedUpdateWithoutQuestionsInput = {
39021
39118
  id?: StringFieldUpdateOperationsInput | string
39022
39119
  name?: StringFieldUpdateOperationsInput | string
39120
+ type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
39023
39121
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
39024
39122
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
39025
39123
  }