expo-backend-types 0.57.0 → 0.58.0-EXPO-404-Etapa-4-Paquete-02.5.1
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/dynamic-form/dto/create-dynamic-form.dto.d.ts +10 -0
- package/dist/src/dynamic-form/dto/dynamic-form.dto.d.ts +27 -0
- package/dist/src/dynamic-form/dto/dynamic-form.dto.js +8 -1
- package/dist/src/dynamic-form/dto/find-all-dynamic-form.dto.d.ts +14 -0
- package/dist/src/dynamic-form/dto/find-by-id-dynamic-question.dto.d.ts +266 -0
- package/dist/src/dynamic-form/dto/find-by-id-dynamic-question.dto.js +19 -0
- package/dist/src/dynamic-form/dto/find-by-type-dynamic-form.dto.d.ts +266 -0
- package/dist/src/dynamic-form/dto/find-by-type-dynamic-form.dto.js +18 -0
- package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.d.ts +350 -0
- package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.js +23 -0
- package/dist/src/dynamic-form/dto/update-dynamic-form.dto.d.ts +19 -0
- package/dist/src/dynamic-form/exports.d.ts +2 -0
- package/dist/src/dynamic-form/exports.js +2 -0
- package/dist/src/i18n/es.d.ts +21 -0
- package/dist/src/i18n/es.js +21 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +20 -0
- package/dist/src/mi-expo/dto/update-me-first-time.dto.d.ts +382 -0
- package/dist/src/mi-expo/dto/update-me-first-time.dto.js +35 -0
- package/dist/src/mi-expo/exports.d.ts +1 -0
- package/dist/src/mi-expo/exports.js +1 -0
- package/dist/src/production/dto/create-production.dto.d.ts +8 -1
- package/dist/src/production/dto/create-production.dto.js +1 -0
- package/dist/src/production/dto/delete-production.dto.d.ts +6 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +10 -0
- package/dist/src/production/dto/production.dto.d.ts +3 -0
- package/dist/src/production/dto/production.dto.js +3 -0
- package/dist/src/production/dto/update-production.dto.d.ts +12 -0
- package/dist/src/production/dto/update-production.dto.js +1 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +141 -2
- package/dist/src/profile/dto/find-by-phone-number.dto.js +21 -1
- package/dist/src/schema/profile.schema.js +16 -2
- package/dist/types/prisma-schema/edge.js +11 -3
- package/dist/types/prisma-schema/index-browser.js +8 -0
- package/dist/types/prisma-schema/index.d.ts +150 -2
- package/dist/types/prisma-schema/index.js +11 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +11 -3
- package/dist/types/prisma-schema/wasm.js +8 -0
- package/dist/types/schema.d.ts +274 -0
- package/package.json +1 -1
@@ -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
|
*
|
@@ -21043,6 +21056,7 @@ export namespace Prisma {
|
|
21043
21056
|
export type ProductionMinAggregateOutputType = {
|
21044
21057
|
id: string | null
|
21045
21058
|
name: string | null
|
21059
|
+
description: string | null
|
21046
21060
|
administratorId: string | null
|
21047
21061
|
created_at: Date | null
|
21048
21062
|
updated_at: Date | null
|
@@ -21051,6 +21065,7 @@ export namespace Prisma {
|
|
21051
21065
|
export type ProductionMaxAggregateOutputType = {
|
21052
21066
|
id: string | null
|
21053
21067
|
name: string | null
|
21068
|
+
description: string | null
|
21054
21069
|
administratorId: string | null
|
21055
21070
|
created_at: Date | null
|
21056
21071
|
updated_at: Date | null
|
@@ -21059,6 +21074,7 @@ export namespace Prisma {
|
|
21059
21074
|
export type ProductionCountAggregateOutputType = {
|
21060
21075
|
id: number
|
21061
21076
|
name: number
|
21077
|
+
description: number
|
21062
21078
|
administratorId: number
|
21063
21079
|
created_at: number
|
21064
21080
|
updated_at: number
|
@@ -21069,6 +21085,7 @@ export namespace Prisma {
|
|
21069
21085
|
export type ProductionMinAggregateInputType = {
|
21070
21086
|
id?: true
|
21071
21087
|
name?: true
|
21088
|
+
description?: true
|
21072
21089
|
administratorId?: true
|
21073
21090
|
created_at?: true
|
21074
21091
|
updated_at?: true
|
@@ -21077,6 +21094,7 @@ export namespace Prisma {
|
|
21077
21094
|
export type ProductionMaxAggregateInputType = {
|
21078
21095
|
id?: true
|
21079
21096
|
name?: true
|
21097
|
+
description?: true
|
21080
21098
|
administratorId?: true
|
21081
21099
|
created_at?: true
|
21082
21100
|
updated_at?: true
|
@@ -21085,6 +21103,7 @@ export namespace Prisma {
|
|
21085
21103
|
export type ProductionCountAggregateInputType = {
|
21086
21104
|
id?: true
|
21087
21105
|
name?: true
|
21106
|
+
description?: true
|
21088
21107
|
administratorId?: true
|
21089
21108
|
created_at?: true
|
21090
21109
|
updated_at?: true
|
@@ -21166,6 +21185,7 @@ export namespace Prisma {
|
|
21166
21185
|
export type ProductionGroupByOutputType = {
|
21167
21186
|
id: string
|
21168
21187
|
name: string
|
21188
|
+
description: string
|
21169
21189
|
administratorId: string | null
|
21170
21190
|
created_at: Date
|
21171
21191
|
updated_at: Date
|
@@ -21191,6 +21211,7 @@ export namespace Prisma {
|
|
21191
21211
|
export type ProductionSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
21192
21212
|
id?: boolean
|
21193
21213
|
name?: boolean
|
21214
|
+
description?: boolean
|
21194
21215
|
administratorId?: boolean
|
21195
21216
|
created_at?: boolean
|
21196
21217
|
updated_at?: boolean
|
@@ -21204,6 +21225,7 @@ export namespace Prisma {
|
|
21204
21225
|
export type ProductionSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
21205
21226
|
id?: boolean
|
21206
21227
|
name?: boolean
|
21228
|
+
description?: boolean
|
21207
21229
|
administratorId?: boolean
|
21208
21230
|
created_at?: boolean
|
21209
21231
|
updated_at?: boolean
|
@@ -21213,6 +21235,7 @@ export namespace Prisma {
|
|
21213
21235
|
export type ProductionSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
21214
21236
|
id?: boolean
|
21215
21237
|
name?: boolean
|
21238
|
+
description?: boolean
|
21216
21239
|
administratorId?: boolean
|
21217
21240
|
created_at?: boolean
|
21218
21241
|
updated_at?: boolean
|
@@ -21222,12 +21245,13 @@ export namespace Prisma {
|
|
21222
21245
|
export type ProductionSelectScalar = {
|
21223
21246
|
id?: boolean
|
21224
21247
|
name?: boolean
|
21248
|
+
description?: boolean
|
21225
21249
|
administratorId?: boolean
|
21226
21250
|
created_at?: boolean
|
21227
21251
|
updated_at?: boolean
|
21228
21252
|
}
|
21229
21253
|
|
21230
|
-
export type ProductionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "administratorId" | "created_at" | "updated_at", ExtArgs["result"]["production"]>
|
21254
|
+
export type ProductionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "description" | "administratorId" | "created_at" | "updated_at", ExtArgs["result"]["production"]>
|
21231
21255
|
export type ProductionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
21232
21256
|
administrator?: boolean | Production$administratorArgs<ExtArgs>
|
21233
21257
|
participants?: boolean | Production$participantsArgs<ExtArgs>
|
@@ -21253,6 +21277,7 @@ export namespace Prisma {
|
|
21253
21277
|
scalars: $Extensions.GetPayloadResult<{
|
21254
21278
|
id: string
|
21255
21279
|
name: string
|
21280
|
+
description: string
|
21256
21281
|
administratorId: string | null
|
21257
21282
|
created_at: Date
|
21258
21283
|
updated_at: Date
|
@@ -21685,6 +21710,7 @@ export namespace Prisma {
|
|
21685
21710
|
interface ProductionFieldRefs {
|
21686
21711
|
readonly id: FieldRef<"Production", 'String'>
|
21687
21712
|
readonly name: FieldRef<"Production", 'String'>
|
21713
|
+
readonly description: FieldRef<"Production", 'String'>
|
21688
21714
|
readonly administratorId: FieldRef<"Production", 'String'>
|
21689
21715
|
readonly created_at: FieldRef<"Production", 'DateTime'>
|
21690
21716
|
readonly updated_at: FieldRef<"Production", 'DateTime'>
|
@@ -23298,6 +23324,7 @@ export namespace Prisma {
|
|
23298
23324
|
export type DynamicFormMinAggregateOutputType = {
|
23299
23325
|
id: string | null
|
23300
23326
|
name: string | null
|
23327
|
+
type: $Enums.DynamicFormType | null
|
23301
23328
|
created_at: Date | null
|
23302
23329
|
updated_at: Date | null
|
23303
23330
|
}
|
@@ -23305,6 +23332,7 @@ export namespace Prisma {
|
|
23305
23332
|
export type DynamicFormMaxAggregateOutputType = {
|
23306
23333
|
id: string | null
|
23307
23334
|
name: string | null
|
23335
|
+
type: $Enums.DynamicFormType | null
|
23308
23336
|
created_at: Date | null
|
23309
23337
|
updated_at: Date | null
|
23310
23338
|
}
|
@@ -23312,6 +23340,7 @@ export namespace Prisma {
|
|
23312
23340
|
export type DynamicFormCountAggregateOutputType = {
|
23313
23341
|
id: number
|
23314
23342
|
name: number
|
23343
|
+
type: number
|
23315
23344
|
created_at: number
|
23316
23345
|
updated_at: number
|
23317
23346
|
_all: number
|
@@ -23321,6 +23350,7 @@ export namespace Prisma {
|
|
23321
23350
|
export type DynamicFormMinAggregateInputType = {
|
23322
23351
|
id?: true
|
23323
23352
|
name?: true
|
23353
|
+
type?: true
|
23324
23354
|
created_at?: true
|
23325
23355
|
updated_at?: true
|
23326
23356
|
}
|
@@ -23328,6 +23358,7 @@ export namespace Prisma {
|
|
23328
23358
|
export type DynamicFormMaxAggregateInputType = {
|
23329
23359
|
id?: true
|
23330
23360
|
name?: true
|
23361
|
+
type?: true
|
23331
23362
|
created_at?: true
|
23332
23363
|
updated_at?: true
|
23333
23364
|
}
|
@@ -23335,6 +23366,7 @@ export namespace Prisma {
|
|
23335
23366
|
export type DynamicFormCountAggregateInputType = {
|
23336
23367
|
id?: true
|
23337
23368
|
name?: true
|
23369
|
+
type?: true
|
23338
23370
|
created_at?: true
|
23339
23371
|
updated_at?: true
|
23340
23372
|
_all?: true
|
@@ -23415,6 +23447,7 @@ export namespace Prisma {
|
|
23415
23447
|
export type DynamicFormGroupByOutputType = {
|
23416
23448
|
id: string
|
23417
23449
|
name: string
|
23450
|
+
type: $Enums.DynamicFormType
|
23418
23451
|
created_at: Date
|
23419
23452
|
updated_at: Date
|
23420
23453
|
_count: DynamicFormCountAggregateOutputType | null
|
@@ -23439,6 +23472,7 @@ export namespace Prisma {
|
|
23439
23472
|
export type DynamicFormSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
23440
23473
|
id?: boolean
|
23441
23474
|
name?: boolean
|
23475
|
+
type?: boolean
|
23442
23476
|
created_at?: boolean
|
23443
23477
|
updated_at?: boolean
|
23444
23478
|
questions?: boolean | DynamicForm$questionsArgs<ExtArgs>
|
@@ -23448,6 +23482,7 @@ export namespace Prisma {
|
|
23448
23482
|
export type DynamicFormSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
23449
23483
|
id?: boolean
|
23450
23484
|
name?: boolean
|
23485
|
+
type?: boolean
|
23451
23486
|
created_at?: boolean
|
23452
23487
|
updated_at?: boolean
|
23453
23488
|
}, ExtArgs["result"]["dynamicForm"]>
|
@@ -23455,6 +23490,7 @@ export namespace Prisma {
|
|
23455
23490
|
export type DynamicFormSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
23456
23491
|
id?: boolean
|
23457
23492
|
name?: boolean
|
23493
|
+
type?: boolean
|
23458
23494
|
created_at?: boolean
|
23459
23495
|
updated_at?: boolean
|
23460
23496
|
}, ExtArgs["result"]["dynamicForm"]>
|
@@ -23462,11 +23498,12 @@ export namespace Prisma {
|
|
23462
23498
|
export type DynamicFormSelectScalar = {
|
23463
23499
|
id?: boolean
|
23464
23500
|
name?: boolean
|
23501
|
+
type?: boolean
|
23465
23502
|
created_at?: boolean
|
23466
23503
|
updated_at?: boolean
|
23467
23504
|
}
|
23468
23505
|
|
23469
|
-
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"]>
|
23470
23507
|
export type DynamicFormInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
23471
23508
|
questions?: boolean | DynamicForm$questionsArgs<ExtArgs>
|
23472
23509
|
_count?: boolean | DynamicFormCountOutputTypeDefaultArgs<ExtArgs>
|
@@ -23482,6 +23519,7 @@ export namespace Prisma {
|
|
23482
23519
|
scalars: $Extensions.GetPayloadResult<{
|
23483
23520
|
id: string
|
23484
23521
|
name: string
|
23522
|
+
type: $Enums.DynamicFormType
|
23485
23523
|
created_at: Date
|
23486
23524
|
updated_at: Date
|
23487
23525
|
}, ExtArgs["result"]["dynamicForm"]>
|
@@ -23910,6 +23948,7 @@ export namespace Prisma {
|
|
23910
23948
|
interface DynamicFormFieldRefs {
|
23911
23949
|
readonly id: FieldRef<"DynamicForm", 'String'>
|
23912
23950
|
readonly name: FieldRef<"DynamicForm", 'String'>
|
23951
|
+
readonly type: FieldRef<"DynamicForm", 'DynamicFormType'>
|
23913
23952
|
readonly created_at: FieldRef<"DynamicForm", 'DateTime'>
|
23914
23953
|
readonly updated_at: FieldRef<"DynamicForm", 'DateTime'>
|
23915
23954
|
}
|
@@ -26808,6 +26847,7 @@ export namespace Prisma {
|
|
26808
26847
|
export const ProductionScalarFieldEnum: {
|
26809
26848
|
id: 'id',
|
26810
26849
|
name: 'name',
|
26850
|
+
description: 'description',
|
26811
26851
|
administratorId: 'administratorId',
|
26812
26852
|
created_at: 'created_at',
|
26813
26853
|
updated_at: 'updated_at'
|
@@ -26832,6 +26872,7 @@ export namespace Prisma {
|
|
26832
26872
|
export const DynamicFormScalarFieldEnum: {
|
26833
26873
|
id: 'id',
|
26834
26874
|
name: 'name',
|
26875
|
+
type: 'type',
|
26835
26876
|
created_at: 'created_at',
|
26836
26877
|
updated_at: 'updated_at'
|
26837
26878
|
};
|
@@ -27098,6 +27139,20 @@ export namespace Prisma {
|
|
27098
27139
|
*/
|
27099
27140
|
export type ListEnumAffiliationStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AffiliationStatus[]'>
|
27100
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
|
+
|
27101
27156
|
/**
|
27102
27157
|
* Deep Input Types
|
27103
27158
|
*/
|
@@ -28341,6 +28396,7 @@ export namespace Prisma {
|
|
28341
28396
|
NOT?: ProductionWhereInput | ProductionWhereInput[]
|
28342
28397
|
id?: StringFilter<"Production"> | string
|
28343
28398
|
name?: StringFilter<"Production"> | string
|
28399
|
+
description?: StringFilter<"Production"> | string
|
28344
28400
|
administratorId?: StringNullableFilter<"Production"> | string | null
|
28345
28401
|
created_at?: DateTimeFilter<"Production"> | Date | string
|
28346
28402
|
updated_at?: DateTimeFilter<"Production"> | Date | string
|
@@ -28353,6 +28409,7 @@ export namespace Prisma {
|
|
28353
28409
|
export type ProductionOrderByWithRelationInput = {
|
28354
28410
|
id?: SortOrder
|
28355
28411
|
name?: SortOrder
|
28412
|
+
description?: SortOrder
|
28356
28413
|
administratorId?: SortOrderInput | SortOrder
|
28357
28414
|
created_at?: SortOrder
|
28358
28415
|
updated_at?: SortOrder
|
@@ -28368,6 +28425,7 @@ export namespace Prisma {
|
|
28368
28425
|
AND?: ProductionWhereInput | ProductionWhereInput[]
|
28369
28426
|
OR?: ProductionWhereInput[]
|
28370
28427
|
NOT?: ProductionWhereInput | ProductionWhereInput[]
|
28428
|
+
description?: StringFilter<"Production"> | string
|
28371
28429
|
administratorId?: StringNullableFilter<"Production"> | string | null
|
28372
28430
|
created_at?: DateTimeFilter<"Production"> | Date | string
|
28373
28431
|
updated_at?: DateTimeFilter<"Production"> | Date | string
|
@@ -28380,6 +28438,7 @@ export namespace Prisma {
|
|
28380
28438
|
export type ProductionOrderByWithAggregationInput = {
|
28381
28439
|
id?: SortOrder
|
28382
28440
|
name?: SortOrder
|
28441
|
+
description?: SortOrder
|
28383
28442
|
administratorId?: SortOrderInput | SortOrder
|
28384
28443
|
created_at?: SortOrder
|
28385
28444
|
updated_at?: SortOrder
|
@@ -28394,6 +28453,7 @@ export namespace Prisma {
|
|
28394
28453
|
NOT?: ProductionScalarWhereWithAggregatesInput | ProductionScalarWhereWithAggregatesInput[]
|
28395
28454
|
id?: StringWithAggregatesFilter<"Production"> | string
|
28396
28455
|
name?: StringWithAggregatesFilter<"Production"> | string
|
28456
|
+
description?: StringWithAggregatesFilter<"Production"> | string
|
28397
28457
|
administratorId?: StringNullableWithAggregatesFilter<"Production"> | string | null
|
28398
28458
|
created_at?: DateTimeWithAggregatesFilter<"Production"> | Date | string
|
28399
28459
|
updated_at?: DateTimeWithAggregatesFilter<"Production"> | Date | string
|
@@ -28473,6 +28533,7 @@ export namespace Prisma {
|
|
28473
28533
|
NOT?: DynamicFormWhereInput | DynamicFormWhereInput[]
|
28474
28534
|
id?: StringFilter<"DynamicForm"> | string
|
28475
28535
|
name?: StringFilter<"DynamicForm"> | string
|
28536
|
+
type?: EnumDynamicFormTypeFilter<"DynamicForm"> | $Enums.DynamicFormType
|
28476
28537
|
created_at?: DateTimeFilter<"DynamicForm"> | Date | string
|
28477
28538
|
updated_at?: DateTimeFilter<"DynamicForm"> | Date | string
|
28478
28539
|
questions?: DynamicQuestionListRelationFilter
|
@@ -28481,6 +28542,7 @@ export namespace Prisma {
|
|
28481
28542
|
export type DynamicFormOrderByWithRelationInput = {
|
28482
28543
|
id?: SortOrder
|
28483
28544
|
name?: SortOrder
|
28545
|
+
type?: SortOrder
|
28484
28546
|
created_at?: SortOrder
|
28485
28547
|
updated_at?: SortOrder
|
28486
28548
|
questions?: DynamicQuestionOrderByRelationAggregateInput
|
@@ -28492,6 +28554,7 @@ export namespace Prisma {
|
|
28492
28554
|
AND?: DynamicFormWhereInput | DynamicFormWhereInput[]
|
28493
28555
|
OR?: DynamicFormWhereInput[]
|
28494
28556
|
NOT?: DynamicFormWhereInput | DynamicFormWhereInput[]
|
28557
|
+
type?: EnumDynamicFormTypeFilter<"DynamicForm"> | $Enums.DynamicFormType
|
28495
28558
|
created_at?: DateTimeFilter<"DynamicForm"> | Date | string
|
28496
28559
|
updated_at?: DateTimeFilter<"DynamicForm"> | Date | string
|
28497
28560
|
questions?: DynamicQuestionListRelationFilter
|
@@ -28500,6 +28563,7 @@ export namespace Prisma {
|
|
28500
28563
|
export type DynamicFormOrderByWithAggregationInput = {
|
28501
28564
|
id?: SortOrder
|
28502
28565
|
name?: SortOrder
|
28566
|
+
type?: SortOrder
|
28503
28567
|
created_at?: SortOrder
|
28504
28568
|
updated_at?: SortOrder
|
28505
28569
|
_count?: DynamicFormCountOrderByAggregateInput
|
@@ -28513,6 +28577,7 @@ export namespace Prisma {
|
|
28513
28577
|
NOT?: DynamicFormScalarWhereWithAggregatesInput | DynamicFormScalarWhereWithAggregatesInput[]
|
28514
28578
|
id?: StringWithAggregatesFilter<"DynamicForm"> | string
|
28515
28579
|
name?: StringWithAggregatesFilter<"DynamicForm"> | string
|
28580
|
+
type?: EnumDynamicFormTypeWithAggregatesFilter<"DynamicForm"> | $Enums.DynamicFormType
|
28516
28581
|
created_at?: DateTimeWithAggregatesFilter<"DynamicForm"> | Date | string
|
28517
28582
|
updated_at?: DateTimeWithAggregatesFilter<"DynamicForm"> | Date | string
|
28518
28583
|
}
|
@@ -30021,6 +30086,7 @@ export namespace Prisma {
|
|
30021
30086
|
export type ProductionCreateInput = {
|
30022
30087
|
id?: string
|
30023
30088
|
name: string
|
30089
|
+
description?: string
|
30024
30090
|
created_at?: Date | string
|
30025
30091
|
updated_at?: Date | string
|
30026
30092
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -30032,6 +30098,7 @@ export namespace Prisma {
|
|
30032
30098
|
export type ProductionUncheckedCreateInput = {
|
30033
30099
|
id?: string
|
30034
30100
|
name: string
|
30101
|
+
description?: string
|
30035
30102
|
administratorId?: string | null
|
30036
30103
|
created_at?: Date | string
|
30037
30104
|
updated_at?: Date | string
|
@@ -30043,6 +30110,7 @@ export namespace Prisma {
|
|
30043
30110
|
export type ProductionUpdateInput = {
|
30044
30111
|
id?: StringFieldUpdateOperationsInput | string
|
30045
30112
|
name?: StringFieldUpdateOperationsInput | string
|
30113
|
+
description?: StringFieldUpdateOperationsInput | string
|
30046
30114
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30047
30115
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30048
30116
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -30054,6 +30122,7 @@ export namespace Prisma {
|
|
30054
30122
|
export type ProductionUncheckedUpdateInput = {
|
30055
30123
|
id?: StringFieldUpdateOperationsInput | string
|
30056
30124
|
name?: StringFieldUpdateOperationsInput | string
|
30125
|
+
description?: StringFieldUpdateOperationsInput | string
|
30057
30126
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
30058
30127
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30059
30128
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -30065,6 +30134,7 @@ export namespace Prisma {
|
|
30065
30134
|
export type ProductionCreateManyInput = {
|
30066
30135
|
id?: string
|
30067
30136
|
name: string
|
30137
|
+
description?: string
|
30068
30138
|
administratorId?: string | null
|
30069
30139
|
created_at?: Date | string
|
30070
30140
|
updated_at?: Date | string
|
@@ -30073,6 +30143,7 @@ export namespace Prisma {
|
|
30073
30143
|
export type ProductionUpdateManyMutationInput = {
|
30074
30144
|
id?: StringFieldUpdateOperationsInput | string
|
30075
30145
|
name?: StringFieldUpdateOperationsInput | string
|
30146
|
+
description?: StringFieldUpdateOperationsInput | string
|
30076
30147
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30077
30148
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30078
30149
|
}
|
@@ -30080,6 +30151,7 @@ export namespace Prisma {
|
|
30080
30151
|
export type ProductionUncheckedUpdateManyInput = {
|
30081
30152
|
id?: StringFieldUpdateOperationsInput | string
|
30082
30153
|
name?: StringFieldUpdateOperationsInput | string
|
30154
|
+
description?: StringFieldUpdateOperationsInput | string
|
30083
30155
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
30084
30156
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30085
30157
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -30156,6 +30228,7 @@ export namespace Prisma {
|
|
30156
30228
|
export type DynamicFormCreateInput = {
|
30157
30229
|
id?: string
|
30158
30230
|
name: string
|
30231
|
+
type?: $Enums.DynamicFormType
|
30159
30232
|
created_at?: Date | string
|
30160
30233
|
updated_at?: Date | string
|
30161
30234
|
questions?: DynamicQuestionCreateNestedManyWithoutFormInput
|
@@ -30164,6 +30237,7 @@ export namespace Prisma {
|
|
30164
30237
|
export type DynamicFormUncheckedCreateInput = {
|
30165
30238
|
id?: string
|
30166
30239
|
name: string
|
30240
|
+
type?: $Enums.DynamicFormType
|
30167
30241
|
created_at?: Date | string
|
30168
30242
|
updated_at?: Date | string
|
30169
30243
|
questions?: DynamicQuestionUncheckedCreateNestedManyWithoutFormInput
|
@@ -30172,6 +30246,7 @@ export namespace Prisma {
|
|
30172
30246
|
export type DynamicFormUpdateInput = {
|
30173
30247
|
id?: StringFieldUpdateOperationsInput | string
|
30174
30248
|
name?: StringFieldUpdateOperationsInput | string
|
30249
|
+
type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
|
30175
30250
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30176
30251
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30177
30252
|
questions?: DynamicQuestionUpdateManyWithoutFormNestedInput
|
@@ -30180,6 +30255,7 @@ export namespace Prisma {
|
|
30180
30255
|
export type DynamicFormUncheckedUpdateInput = {
|
30181
30256
|
id?: StringFieldUpdateOperationsInput | string
|
30182
30257
|
name?: StringFieldUpdateOperationsInput | string
|
30258
|
+
type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
|
30183
30259
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30184
30260
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30185
30261
|
questions?: DynamicQuestionUncheckedUpdateManyWithoutFormNestedInput
|
@@ -30188,6 +30264,7 @@ export namespace Prisma {
|
|
30188
30264
|
export type DynamicFormCreateManyInput = {
|
30189
30265
|
id?: string
|
30190
30266
|
name: string
|
30267
|
+
type?: $Enums.DynamicFormType
|
30191
30268
|
created_at?: Date | string
|
30192
30269
|
updated_at?: Date | string
|
30193
30270
|
}
|
@@ -30195,6 +30272,7 @@ export namespace Prisma {
|
|
30195
30272
|
export type DynamicFormUpdateManyMutationInput = {
|
30196
30273
|
id?: StringFieldUpdateOperationsInput | string
|
30197
30274
|
name?: StringFieldUpdateOperationsInput | string
|
30275
|
+
type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
|
30198
30276
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30199
30277
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30200
30278
|
}
|
@@ -30202,6 +30280,7 @@ export namespace Prisma {
|
|
30202
30280
|
export type DynamicFormUncheckedUpdateManyInput = {
|
30203
30281
|
id?: StringFieldUpdateOperationsInput | string
|
30204
30282
|
name?: StringFieldUpdateOperationsInput | string
|
30283
|
+
type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
|
30205
30284
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30206
30285
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30207
30286
|
}
|
@@ -31538,6 +31617,7 @@ export namespace Prisma {
|
|
31538
31617
|
export type ProductionCountOrderByAggregateInput = {
|
31539
31618
|
id?: SortOrder
|
31540
31619
|
name?: SortOrder
|
31620
|
+
description?: SortOrder
|
31541
31621
|
administratorId?: SortOrder
|
31542
31622
|
created_at?: SortOrder
|
31543
31623
|
updated_at?: SortOrder
|
@@ -31546,6 +31626,7 @@ export namespace Prisma {
|
|
31546
31626
|
export type ProductionMaxOrderByAggregateInput = {
|
31547
31627
|
id?: SortOrder
|
31548
31628
|
name?: SortOrder
|
31629
|
+
description?: SortOrder
|
31549
31630
|
administratorId?: SortOrder
|
31550
31631
|
created_at?: SortOrder
|
31551
31632
|
updated_at?: SortOrder
|
@@ -31554,6 +31635,7 @@ export namespace Prisma {
|
|
31554
31635
|
export type ProductionMinOrderByAggregateInput = {
|
31555
31636
|
id?: SortOrder
|
31556
31637
|
name?: SortOrder
|
31638
|
+
description?: SortOrder
|
31557
31639
|
administratorId?: SortOrder
|
31558
31640
|
created_at?: SortOrder
|
31559
31641
|
updated_at?: SortOrder
|
@@ -31611,6 +31693,13 @@ export namespace Prisma {
|
|
31611
31693
|
_max?: NestedEnumAffiliationStatusFilter<$PrismaModel>
|
31612
31694
|
}
|
31613
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
|
+
|
31614
31703
|
export type DynamicQuestionListRelationFilter = {
|
31615
31704
|
every?: DynamicQuestionWhereInput
|
31616
31705
|
some?: DynamicQuestionWhereInput
|
@@ -31624,6 +31713,7 @@ export namespace Prisma {
|
|
31624
31713
|
export type DynamicFormCountOrderByAggregateInput = {
|
31625
31714
|
id?: SortOrder
|
31626
31715
|
name?: SortOrder
|
31716
|
+
type?: SortOrder
|
31627
31717
|
created_at?: SortOrder
|
31628
31718
|
updated_at?: SortOrder
|
31629
31719
|
}
|
@@ -31631,6 +31721,7 @@ export namespace Prisma {
|
|
31631
31721
|
export type DynamicFormMaxOrderByAggregateInput = {
|
31632
31722
|
id?: SortOrder
|
31633
31723
|
name?: SortOrder
|
31724
|
+
type?: SortOrder
|
31634
31725
|
created_at?: SortOrder
|
31635
31726
|
updated_at?: SortOrder
|
31636
31727
|
}
|
@@ -31638,10 +31729,21 @@ export namespace Prisma {
|
|
31638
31729
|
export type DynamicFormMinOrderByAggregateInput = {
|
31639
31730
|
id?: SortOrder
|
31640
31731
|
name?: SortOrder
|
31732
|
+
type?: SortOrder
|
31641
31733
|
created_at?: SortOrder
|
31642
31734
|
updated_at?: SortOrder
|
31643
31735
|
}
|
31644
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
|
+
|
31645
31747
|
export type DynamicFormScalarRelationFilter = {
|
31646
31748
|
is?: DynamicFormWhereInput
|
31647
31749
|
isNot?: DynamicFormWhereInput
|
@@ -33611,6 +33713,10 @@ export namespace Prisma {
|
|
33611
33713
|
connect?: DynamicQuestionWhereUniqueInput | DynamicQuestionWhereUniqueInput[]
|
33612
33714
|
}
|
33613
33715
|
|
33716
|
+
export type EnumDynamicFormTypeFieldUpdateOperationsInput = {
|
33717
|
+
set?: $Enums.DynamicFormType
|
33718
|
+
}
|
33719
|
+
|
33614
33720
|
export type DynamicQuestionUpdateManyWithoutFormNestedInput = {
|
33615
33721
|
create?: XOR<DynamicQuestionCreateWithoutFormInput, DynamicQuestionUncheckedCreateWithoutFormInput> | DynamicQuestionCreateWithoutFormInput[] | DynamicQuestionUncheckedCreateWithoutFormInput[]
|
33616
33722
|
connectOrCreate?: DynamicQuestionCreateOrConnectWithoutFormInput | DynamicQuestionCreateOrConnectWithoutFormInput[]
|
@@ -34129,6 +34235,23 @@ export namespace Prisma {
|
|
34129
34235
|
_max?: NestedEnumAffiliationStatusFilter<$PrismaModel>
|
34130
34236
|
}
|
34131
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
|
+
|
34132
34255
|
export type CommentCreateWithoutAccountInput = {
|
34133
34256
|
id?: string
|
34134
34257
|
content: string
|
@@ -34589,6 +34712,7 @@ export namespace Prisma {
|
|
34589
34712
|
export type ProductionCreateWithoutAdministratorInput = {
|
34590
34713
|
id?: string
|
34591
34714
|
name: string
|
34715
|
+
description?: string
|
34592
34716
|
created_at?: Date | string
|
34593
34717
|
updated_at?: Date | string
|
34594
34718
|
participants?: ProfileCreateNestedManyWithoutProductionsParticipatedInput
|
@@ -34599,6 +34723,7 @@ export namespace Prisma {
|
|
34599
34723
|
export type ProductionUncheckedCreateWithoutAdministratorInput = {
|
34600
34724
|
id?: string
|
34601
34725
|
name: string
|
34726
|
+
description?: string
|
34602
34727
|
created_at?: Date | string
|
34603
34728
|
updated_at?: Date | string
|
34604
34729
|
participants?: ProfileUncheckedCreateNestedManyWithoutProductionsParticipatedInput
|
@@ -34619,6 +34744,7 @@ export namespace Prisma {
|
|
34619
34744
|
export type ProductionCreateWithoutParticipantsInput = {
|
34620
34745
|
id?: string
|
34621
34746
|
name: string
|
34747
|
+
description?: string
|
34622
34748
|
created_at?: Date | string
|
34623
34749
|
updated_at?: Date | string
|
34624
34750
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -34629,6 +34755,7 @@ export namespace Prisma {
|
|
34629
34755
|
export type ProductionUncheckedCreateWithoutParticipantsInput = {
|
34630
34756
|
id?: string
|
34631
34757
|
name: string
|
34758
|
+
description?: string
|
34632
34759
|
administratorId?: string | null
|
34633
34760
|
created_at?: Date | string
|
34634
34761
|
updated_at?: Date | string
|
@@ -34915,6 +35042,7 @@ export namespace Prisma {
|
|
34915
35042
|
NOT?: ProductionScalarWhereInput | ProductionScalarWhereInput[]
|
34916
35043
|
id?: StringFilter<"Production"> | string
|
34917
35044
|
name?: StringFilter<"Production"> | string
|
35045
|
+
description?: StringFilter<"Production"> | string
|
34918
35046
|
administratorId?: StringNullableFilter<"Production"> | string | null
|
34919
35047
|
created_at?: DateTimeFilter<"Production"> | Date | string
|
34920
35048
|
updated_at?: DateTimeFilter<"Production"> | Date | string
|
@@ -36866,6 +36994,7 @@ export namespace Prisma {
|
|
36866
36994
|
export type ProductionCreateWithoutEventsInput = {
|
36867
36995
|
id?: string
|
36868
36996
|
name: string
|
36997
|
+
description?: string
|
36869
36998
|
created_at?: Date | string
|
36870
36999
|
updated_at?: Date | string
|
36871
37000
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -36876,6 +37005,7 @@ export namespace Prisma {
|
|
36876
37005
|
export type ProductionUncheckedCreateWithoutEventsInput = {
|
36877
37006
|
id?: string
|
36878
37007
|
name: string
|
37008
|
+
description?: string
|
36879
37009
|
administratorId?: string | null
|
36880
37010
|
created_at?: Date | string
|
36881
37011
|
updated_at?: Date | string
|
@@ -38611,6 +38741,7 @@ export namespace Prisma {
|
|
38611
38741
|
export type ProductionCreateWithoutAffiliationRequestsInput = {
|
38612
38742
|
id?: string
|
38613
38743
|
name: string
|
38744
|
+
description?: string
|
38614
38745
|
created_at?: Date | string
|
38615
38746
|
updated_at?: Date | string
|
38616
38747
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -38621,6 +38752,7 @@ export namespace Prisma {
|
|
38621
38752
|
export type ProductionUncheckedCreateWithoutAffiliationRequestsInput = {
|
38622
38753
|
id?: string
|
38623
38754
|
name: string
|
38755
|
+
description?: string
|
38624
38756
|
administratorId?: string | null
|
38625
38757
|
created_at?: Date | string
|
38626
38758
|
updated_at?: Date | string
|
@@ -38724,6 +38856,7 @@ export namespace Prisma {
|
|
38724
38856
|
export type ProductionUpdateWithoutAffiliationRequestsInput = {
|
38725
38857
|
id?: StringFieldUpdateOperationsInput | string
|
38726
38858
|
name?: StringFieldUpdateOperationsInput | string
|
38859
|
+
description?: StringFieldUpdateOperationsInput | string
|
38727
38860
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38728
38861
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38729
38862
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -38734,6 +38867,7 @@ export namespace Prisma {
|
|
38734
38867
|
export type ProductionUncheckedUpdateWithoutAffiliationRequestsInput = {
|
38735
38868
|
id?: StringFieldUpdateOperationsInput | string
|
38736
38869
|
name?: StringFieldUpdateOperationsInput | string
|
38870
|
+
description?: StringFieldUpdateOperationsInput | string
|
38737
38871
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
38738
38872
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38739
38873
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -38892,6 +39026,7 @@ export namespace Prisma {
|
|
38892
39026
|
export type DynamicFormCreateWithoutQuestionsInput = {
|
38893
39027
|
id?: string
|
38894
39028
|
name: string
|
39029
|
+
type?: $Enums.DynamicFormType
|
38895
39030
|
created_at?: Date | string
|
38896
39031
|
updated_at?: Date | string
|
38897
39032
|
}
|
@@ -38899,6 +39034,7 @@ export namespace Prisma {
|
|
38899
39034
|
export type DynamicFormUncheckedCreateWithoutQuestionsInput = {
|
38900
39035
|
id?: string
|
38901
39036
|
name: string
|
39037
|
+
type?: $Enums.DynamicFormType
|
38902
39038
|
created_at?: Date | string
|
38903
39039
|
updated_at?: Date | string
|
38904
39040
|
}
|
@@ -38973,6 +39109,7 @@ export namespace Prisma {
|
|
38973
39109
|
export type DynamicFormUpdateWithoutQuestionsInput = {
|
38974
39110
|
id?: StringFieldUpdateOperationsInput | string
|
38975
39111
|
name?: StringFieldUpdateOperationsInput | string
|
39112
|
+
type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
|
38976
39113
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38977
39114
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38978
39115
|
}
|
@@ -38980,6 +39117,7 @@ export namespace Prisma {
|
|
38980
39117
|
export type DynamicFormUncheckedUpdateWithoutQuestionsInput = {
|
38981
39118
|
id?: StringFieldUpdateOperationsInput | string
|
38982
39119
|
name?: StringFieldUpdateOperationsInput | string
|
39120
|
+
type?: EnumDynamicFormTypeFieldUpdateOperationsInput | $Enums.DynamicFormType
|
38983
39121
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38984
39122
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38985
39123
|
}
|
@@ -39400,6 +39538,7 @@ export namespace Prisma {
|
|
39400
39538
|
export type ProductionCreateManyAdministratorInput = {
|
39401
39539
|
id?: string
|
39402
39540
|
name: string
|
39541
|
+
description?: string
|
39403
39542
|
created_at?: Date | string
|
39404
39543
|
updated_at?: Date | string
|
39405
39544
|
}
|
@@ -39598,6 +39737,7 @@ export namespace Prisma {
|
|
39598
39737
|
export type ProductionUpdateWithoutAdministratorInput = {
|
39599
39738
|
id?: StringFieldUpdateOperationsInput | string
|
39600
39739
|
name?: StringFieldUpdateOperationsInput | string
|
39740
|
+
description?: StringFieldUpdateOperationsInput | string
|
39601
39741
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39602
39742
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39603
39743
|
participants?: ProfileUpdateManyWithoutProductionsParticipatedNestedInput
|
@@ -39608,6 +39748,7 @@ export namespace Prisma {
|
|
39608
39748
|
export type ProductionUncheckedUpdateWithoutAdministratorInput = {
|
39609
39749
|
id?: StringFieldUpdateOperationsInput | string
|
39610
39750
|
name?: StringFieldUpdateOperationsInput | string
|
39751
|
+
description?: StringFieldUpdateOperationsInput | string
|
39611
39752
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39612
39753
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39613
39754
|
participants?: ProfileUncheckedUpdateManyWithoutProductionsParticipatedNestedInput
|
@@ -39618,6 +39759,7 @@ export namespace Prisma {
|
|
39618
39759
|
export type ProductionUncheckedUpdateManyWithoutAdministratorInput = {
|
39619
39760
|
id?: StringFieldUpdateOperationsInput | string
|
39620
39761
|
name?: StringFieldUpdateOperationsInput | string
|
39762
|
+
description?: StringFieldUpdateOperationsInput | string
|
39621
39763
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39622
39764
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39623
39765
|
}
|
@@ -39625,6 +39767,7 @@ export namespace Prisma {
|
|
39625
39767
|
export type ProductionUpdateWithoutParticipantsInput = {
|
39626
39768
|
id?: StringFieldUpdateOperationsInput | string
|
39627
39769
|
name?: StringFieldUpdateOperationsInput | string
|
39770
|
+
description?: StringFieldUpdateOperationsInput | string
|
39628
39771
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39629
39772
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39630
39773
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -39635,6 +39778,7 @@ export namespace Prisma {
|
|
39635
39778
|
export type ProductionUncheckedUpdateWithoutParticipantsInput = {
|
39636
39779
|
id?: StringFieldUpdateOperationsInput | string
|
39637
39780
|
name?: StringFieldUpdateOperationsInput | string
|
39781
|
+
description?: StringFieldUpdateOperationsInput | string
|
39638
39782
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
39639
39783
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39640
39784
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -39645,6 +39789,7 @@ export namespace Prisma {
|
|
39645
39789
|
export type ProductionUncheckedUpdateManyWithoutParticipantsInput = {
|
39646
39790
|
id?: StringFieldUpdateOperationsInput | string
|
39647
39791
|
name?: StringFieldUpdateOperationsInput | string
|
39792
|
+
description?: StringFieldUpdateOperationsInput | string
|
39648
39793
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
39649
39794
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39650
39795
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -40618,6 +40763,7 @@ export namespace Prisma {
|
|
40618
40763
|
export type ProductionUpdateWithoutEventsInput = {
|
40619
40764
|
id?: StringFieldUpdateOperationsInput | string
|
40620
40765
|
name?: StringFieldUpdateOperationsInput | string
|
40766
|
+
description?: StringFieldUpdateOperationsInput | string
|
40621
40767
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40622
40768
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40623
40769
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -40628,6 +40774,7 @@ export namespace Prisma {
|
|
40628
40774
|
export type ProductionUncheckedUpdateWithoutEventsInput = {
|
40629
40775
|
id?: StringFieldUpdateOperationsInput | string
|
40630
40776
|
name?: StringFieldUpdateOperationsInput | string
|
40777
|
+
description?: StringFieldUpdateOperationsInput | string
|
40631
40778
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
40632
40779
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40633
40780
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -40638,6 +40785,7 @@ export namespace Prisma {
|
|
40638
40785
|
export type ProductionUncheckedUpdateManyWithoutEventsInput = {
|
40639
40786
|
id?: StringFieldUpdateOperationsInput | string
|
40640
40787
|
name?: StringFieldUpdateOperationsInput | string
|
40788
|
+
description?: StringFieldUpdateOperationsInput | string
|
40641
40789
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
40642
40790
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40643
40791
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|