expo-backend-types 0.57.0-EXPO-387-Etapa-4-Paquete-03.1 → 0.57.0-EXPO-377-Etapa-4-Paquete-02.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/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-name-dynamic-form.dto.d.ts +515 -0
- package/dist/src/dynamic-form/dto/find-by-name-dynamic-form.dto.js +23 -0
- package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.d.ts +345 -0
- package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.js +24 -0
- package/dist/src/dynamic-form/exports.d.ts +1 -0
- package/dist/src/dynamic-form/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +14 -0
- package/dist/src/i18n/es.js +14 -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/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +51 -1
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +2 -1
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +286 -0
- package/package.json +1 -1
@@ -297,6 +297,7 @@ exports.Prisma.EventTicketScalarFieldEnum = {
|
|
297
297
|
exports.Prisma.ProductionScalarFieldEnum = {
|
298
298
|
id: 'id',
|
299
299
|
name: 'name',
|
300
|
+
description: 'description',
|
300
301
|
administratorId: 'administratorId',
|
301
302
|
created_at: 'created_at',
|
302
303
|
updated_at: 'updated_at'
|
@@ -21043,6 +21043,7 @@ export namespace Prisma {
|
|
21043
21043
|
export type ProductionMinAggregateOutputType = {
|
21044
21044
|
id: string | null
|
21045
21045
|
name: string | null
|
21046
|
+
description: string | null
|
21046
21047
|
administratorId: string | null
|
21047
21048
|
created_at: Date | null
|
21048
21049
|
updated_at: Date | null
|
@@ -21051,6 +21052,7 @@ export namespace Prisma {
|
|
21051
21052
|
export type ProductionMaxAggregateOutputType = {
|
21052
21053
|
id: string | null
|
21053
21054
|
name: string | null
|
21055
|
+
description: string | null
|
21054
21056
|
administratorId: string | null
|
21055
21057
|
created_at: Date | null
|
21056
21058
|
updated_at: Date | null
|
@@ -21059,6 +21061,7 @@ export namespace Prisma {
|
|
21059
21061
|
export type ProductionCountAggregateOutputType = {
|
21060
21062
|
id: number
|
21061
21063
|
name: number
|
21064
|
+
description: number
|
21062
21065
|
administratorId: number
|
21063
21066
|
created_at: number
|
21064
21067
|
updated_at: number
|
@@ -21069,6 +21072,7 @@ export namespace Prisma {
|
|
21069
21072
|
export type ProductionMinAggregateInputType = {
|
21070
21073
|
id?: true
|
21071
21074
|
name?: true
|
21075
|
+
description?: true
|
21072
21076
|
administratorId?: true
|
21073
21077
|
created_at?: true
|
21074
21078
|
updated_at?: true
|
@@ -21077,6 +21081,7 @@ export namespace Prisma {
|
|
21077
21081
|
export type ProductionMaxAggregateInputType = {
|
21078
21082
|
id?: true
|
21079
21083
|
name?: true
|
21084
|
+
description?: true
|
21080
21085
|
administratorId?: true
|
21081
21086
|
created_at?: true
|
21082
21087
|
updated_at?: true
|
@@ -21085,6 +21090,7 @@ export namespace Prisma {
|
|
21085
21090
|
export type ProductionCountAggregateInputType = {
|
21086
21091
|
id?: true
|
21087
21092
|
name?: true
|
21093
|
+
description?: true
|
21088
21094
|
administratorId?: true
|
21089
21095
|
created_at?: true
|
21090
21096
|
updated_at?: true
|
@@ -21166,6 +21172,7 @@ export namespace Prisma {
|
|
21166
21172
|
export type ProductionGroupByOutputType = {
|
21167
21173
|
id: string
|
21168
21174
|
name: string
|
21175
|
+
description: string
|
21169
21176
|
administratorId: string | null
|
21170
21177
|
created_at: Date
|
21171
21178
|
updated_at: Date
|
@@ -21191,6 +21198,7 @@ export namespace Prisma {
|
|
21191
21198
|
export type ProductionSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
21192
21199
|
id?: boolean
|
21193
21200
|
name?: boolean
|
21201
|
+
description?: boolean
|
21194
21202
|
administratorId?: boolean
|
21195
21203
|
created_at?: boolean
|
21196
21204
|
updated_at?: boolean
|
@@ -21204,6 +21212,7 @@ export namespace Prisma {
|
|
21204
21212
|
export type ProductionSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
21205
21213
|
id?: boolean
|
21206
21214
|
name?: boolean
|
21215
|
+
description?: boolean
|
21207
21216
|
administratorId?: boolean
|
21208
21217
|
created_at?: boolean
|
21209
21218
|
updated_at?: boolean
|
@@ -21213,6 +21222,7 @@ export namespace Prisma {
|
|
21213
21222
|
export type ProductionSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
21214
21223
|
id?: boolean
|
21215
21224
|
name?: boolean
|
21225
|
+
description?: boolean
|
21216
21226
|
administratorId?: boolean
|
21217
21227
|
created_at?: boolean
|
21218
21228
|
updated_at?: boolean
|
@@ -21222,12 +21232,13 @@ export namespace Prisma {
|
|
21222
21232
|
export type ProductionSelectScalar = {
|
21223
21233
|
id?: boolean
|
21224
21234
|
name?: boolean
|
21235
|
+
description?: boolean
|
21225
21236
|
administratorId?: boolean
|
21226
21237
|
created_at?: boolean
|
21227
21238
|
updated_at?: boolean
|
21228
21239
|
}
|
21229
21240
|
|
21230
|
-
export type ProductionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "administratorId" | "created_at" | "updated_at", ExtArgs["result"]["production"]>
|
21241
|
+
export type ProductionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "description" | "administratorId" | "created_at" | "updated_at", ExtArgs["result"]["production"]>
|
21231
21242
|
export type ProductionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
21232
21243
|
administrator?: boolean | Production$administratorArgs<ExtArgs>
|
21233
21244
|
participants?: boolean | Production$participantsArgs<ExtArgs>
|
@@ -21253,6 +21264,7 @@ export namespace Prisma {
|
|
21253
21264
|
scalars: $Extensions.GetPayloadResult<{
|
21254
21265
|
id: string
|
21255
21266
|
name: string
|
21267
|
+
description: string
|
21256
21268
|
administratorId: string | null
|
21257
21269
|
created_at: Date
|
21258
21270
|
updated_at: Date
|
@@ -21685,6 +21697,7 @@ export namespace Prisma {
|
|
21685
21697
|
interface ProductionFieldRefs {
|
21686
21698
|
readonly id: FieldRef<"Production", 'String'>
|
21687
21699
|
readonly name: FieldRef<"Production", 'String'>
|
21700
|
+
readonly description: FieldRef<"Production", 'String'>
|
21688
21701
|
readonly administratorId: FieldRef<"Production", 'String'>
|
21689
21702
|
readonly created_at: FieldRef<"Production", 'DateTime'>
|
21690
21703
|
readonly updated_at: FieldRef<"Production", 'DateTime'>
|
@@ -26808,6 +26821,7 @@ export namespace Prisma {
|
|
26808
26821
|
export const ProductionScalarFieldEnum: {
|
26809
26822
|
id: 'id',
|
26810
26823
|
name: 'name',
|
26824
|
+
description: 'description',
|
26811
26825
|
administratorId: 'administratorId',
|
26812
26826
|
created_at: 'created_at',
|
26813
26827
|
updated_at: 'updated_at'
|
@@ -28341,6 +28355,7 @@ export namespace Prisma {
|
|
28341
28355
|
NOT?: ProductionWhereInput | ProductionWhereInput[]
|
28342
28356
|
id?: StringFilter<"Production"> | string
|
28343
28357
|
name?: StringFilter<"Production"> | string
|
28358
|
+
description?: StringFilter<"Production"> | string
|
28344
28359
|
administratorId?: StringNullableFilter<"Production"> | string | null
|
28345
28360
|
created_at?: DateTimeFilter<"Production"> | Date | string
|
28346
28361
|
updated_at?: DateTimeFilter<"Production"> | Date | string
|
@@ -28353,6 +28368,7 @@ export namespace Prisma {
|
|
28353
28368
|
export type ProductionOrderByWithRelationInput = {
|
28354
28369
|
id?: SortOrder
|
28355
28370
|
name?: SortOrder
|
28371
|
+
description?: SortOrder
|
28356
28372
|
administratorId?: SortOrderInput | SortOrder
|
28357
28373
|
created_at?: SortOrder
|
28358
28374
|
updated_at?: SortOrder
|
@@ -28368,6 +28384,7 @@ export namespace Prisma {
|
|
28368
28384
|
AND?: ProductionWhereInput | ProductionWhereInput[]
|
28369
28385
|
OR?: ProductionWhereInput[]
|
28370
28386
|
NOT?: ProductionWhereInput | ProductionWhereInput[]
|
28387
|
+
description?: StringFilter<"Production"> | string
|
28371
28388
|
administratorId?: StringNullableFilter<"Production"> | string | null
|
28372
28389
|
created_at?: DateTimeFilter<"Production"> | Date | string
|
28373
28390
|
updated_at?: DateTimeFilter<"Production"> | Date | string
|
@@ -28380,6 +28397,7 @@ export namespace Prisma {
|
|
28380
28397
|
export type ProductionOrderByWithAggregationInput = {
|
28381
28398
|
id?: SortOrder
|
28382
28399
|
name?: SortOrder
|
28400
|
+
description?: SortOrder
|
28383
28401
|
administratorId?: SortOrderInput | SortOrder
|
28384
28402
|
created_at?: SortOrder
|
28385
28403
|
updated_at?: SortOrder
|
@@ -28394,6 +28412,7 @@ export namespace Prisma {
|
|
28394
28412
|
NOT?: ProductionScalarWhereWithAggregatesInput | ProductionScalarWhereWithAggregatesInput[]
|
28395
28413
|
id?: StringWithAggregatesFilter<"Production"> | string
|
28396
28414
|
name?: StringWithAggregatesFilter<"Production"> | string
|
28415
|
+
description?: StringWithAggregatesFilter<"Production"> | string
|
28397
28416
|
administratorId?: StringNullableWithAggregatesFilter<"Production"> | string | null
|
28398
28417
|
created_at?: DateTimeWithAggregatesFilter<"Production"> | Date | string
|
28399
28418
|
updated_at?: DateTimeWithAggregatesFilter<"Production"> | Date | string
|
@@ -30021,6 +30040,7 @@ export namespace Prisma {
|
|
30021
30040
|
export type ProductionCreateInput = {
|
30022
30041
|
id?: string
|
30023
30042
|
name: string
|
30043
|
+
description?: string
|
30024
30044
|
created_at?: Date | string
|
30025
30045
|
updated_at?: Date | string
|
30026
30046
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -30032,6 +30052,7 @@ export namespace Prisma {
|
|
30032
30052
|
export type ProductionUncheckedCreateInput = {
|
30033
30053
|
id?: string
|
30034
30054
|
name: string
|
30055
|
+
description?: string
|
30035
30056
|
administratorId?: string | null
|
30036
30057
|
created_at?: Date | string
|
30037
30058
|
updated_at?: Date | string
|
@@ -30043,6 +30064,7 @@ export namespace Prisma {
|
|
30043
30064
|
export type ProductionUpdateInput = {
|
30044
30065
|
id?: StringFieldUpdateOperationsInput | string
|
30045
30066
|
name?: StringFieldUpdateOperationsInput | string
|
30067
|
+
description?: StringFieldUpdateOperationsInput | string
|
30046
30068
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30047
30069
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30048
30070
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -30054,6 +30076,7 @@ export namespace Prisma {
|
|
30054
30076
|
export type ProductionUncheckedUpdateInput = {
|
30055
30077
|
id?: StringFieldUpdateOperationsInput | string
|
30056
30078
|
name?: StringFieldUpdateOperationsInput | string
|
30079
|
+
description?: StringFieldUpdateOperationsInput | string
|
30057
30080
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
30058
30081
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30059
30082
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -30065,6 +30088,7 @@ export namespace Prisma {
|
|
30065
30088
|
export type ProductionCreateManyInput = {
|
30066
30089
|
id?: string
|
30067
30090
|
name: string
|
30091
|
+
description?: string
|
30068
30092
|
administratorId?: string | null
|
30069
30093
|
created_at?: Date | string
|
30070
30094
|
updated_at?: Date | string
|
@@ -30073,6 +30097,7 @@ export namespace Prisma {
|
|
30073
30097
|
export type ProductionUpdateManyMutationInput = {
|
30074
30098
|
id?: StringFieldUpdateOperationsInput | string
|
30075
30099
|
name?: StringFieldUpdateOperationsInput | string
|
30100
|
+
description?: StringFieldUpdateOperationsInput | string
|
30076
30101
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30077
30102
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30078
30103
|
}
|
@@ -30080,6 +30105,7 @@ export namespace Prisma {
|
|
30080
30105
|
export type ProductionUncheckedUpdateManyInput = {
|
30081
30106
|
id?: StringFieldUpdateOperationsInput | string
|
30082
30107
|
name?: StringFieldUpdateOperationsInput | string
|
30108
|
+
description?: StringFieldUpdateOperationsInput | string
|
30083
30109
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
30084
30110
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30085
30111
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -31538,6 +31564,7 @@ export namespace Prisma {
|
|
31538
31564
|
export type ProductionCountOrderByAggregateInput = {
|
31539
31565
|
id?: SortOrder
|
31540
31566
|
name?: SortOrder
|
31567
|
+
description?: SortOrder
|
31541
31568
|
administratorId?: SortOrder
|
31542
31569
|
created_at?: SortOrder
|
31543
31570
|
updated_at?: SortOrder
|
@@ -31546,6 +31573,7 @@ export namespace Prisma {
|
|
31546
31573
|
export type ProductionMaxOrderByAggregateInput = {
|
31547
31574
|
id?: SortOrder
|
31548
31575
|
name?: SortOrder
|
31576
|
+
description?: SortOrder
|
31549
31577
|
administratorId?: SortOrder
|
31550
31578
|
created_at?: SortOrder
|
31551
31579
|
updated_at?: SortOrder
|
@@ -31554,6 +31582,7 @@ export namespace Prisma {
|
|
31554
31582
|
export type ProductionMinOrderByAggregateInput = {
|
31555
31583
|
id?: SortOrder
|
31556
31584
|
name?: SortOrder
|
31585
|
+
description?: SortOrder
|
31557
31586
|
administratorId?: SortOrder
|
31558
31587
|
created_at?: SortOrder
|
31559
31588
|
updated_at?: SortOrder
|
@@ -34589,6 +34618,7 @@ export namespace Prisma {
|
|
34589
34618
|
export type ProductionCreateWithoutAdministratorInput = {
|
34590
34619
|
id?: string
|
34591
34620
|
name: string
|
34621
|
+
description?: string
|
34592
34622
|
created_at?: Date | string
|
34593
34623
|
updated_at?: Date | string
|
34594
34624
|
participants?: ProfileCreateNestedManyWithoutProductionsParticipatedInput
|
@@ -34599,6 +34629,7 @@ export namespace Prisma {
|
|
34599
34629
|
export type ProductionUncheckedCreateWithoutAdministratorInput = {
|
34600
34630
|
id?: string
|
34601
34631
|
name: string
|
34632
|
+
description?: string
|
34602
34633
|
created_at?: Date | string
|
34603
34634
|
updated_at?: Date | string
|
34604
34635
|
participants?: ProfileUncheckedCreateNestedManyWithoutProductionsParticipatedInput
|
@@ -34619,6 +34650,7 @@ export namespace Prisma {
|
|
34619
34650
|
export type ProductionCreateWithoutParticipantsInput = {
|
34620
34651
|
id?: string
|
34621
34652
|
name: string
|
34653
|
+
description?: string
|
34622
34654
|
created_at?: Date | string
|
34623
34655
|
updated_at?: Date | string
|
34624
34656
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -34629,6 +34661,7 @@ export namespace Prisma {
|
|
34629
34661
|
export type ProductionUncheckedCreateWithoutParticipantsInput = {
|
34630
34662
|
id?: string
|
34631
34663
|
name: string
|
34664
|
+
description?: string
|
34632
34665
|
administratorId?: string | null
|
34633
34666
|
created_at?: Date | string
|
34634
34667
|
updated_at?: Date | string
|
@@ -34915,6 +34948,7 @@ export namespace Prisma {
|
|
34915
34948
|
NOT?: ProductionScalarWhereInput | ProductionScalarWhereInput[]
|
34916
34949
|
id?: StringFilter<"Production"> | string
|
34917
34950
|
name?: StringFilter<"Production"> | string
|
34951
|
+
description?: StringFilter<"Production"> | string
|
34918
34952
|
administratorId?: StringNullableFilter<"Production"> | string | null
|
34919
34953
|
created_at?: DateTimeFilter<"Production"> | Date | string
|
34920
34954
|
updated_at?: DateTimeFilter<"Production"> | Date | string
|
@@ -36866,6 +36900,7 @@ export namespace Prisma {
|
|
36866
36900
|
export type ProductionCreateWithoutEventsInput = {
|
36867
36901
|
id?: string
|
36868
36902
|
name: string
|
36903
|
+
description?: string
|
36869
36904
|
created_at?: Date | string
|
36870
36905
|
updated_at?: Date | string
|
36871
36906
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -36876,6 +36911,7 @@ export namespace Prisma {
|
|
36876
36911
|
export type ProductionUncheckedCreateWithoutEventsInput = {
|
36877
36912
|
id?: string
|
36878
36913
|
name: string
|
36914
|
+
description?: string
|
36879
36915
|
administratorId?: string | null
|
36880
36916
|
created_at?: Date | string
|
36881
36917
|
updated_at?: Date | string
|
@@ -38611,6 +38647,7 @@ export namespace Prisma {
|
|
38611
38647
|
export type ProductionCreateWithoutAffiliationRequestsInput = {
|
38612
38648
|
id?: string
|
38613
38649
|
name: string
|
38650
|
+
description?: string
|
38614
38651
|
created_at?: Date | string
|
38615
38652
|
updated_at?: Date | string
|
38616
38653
|
administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
|
@@ -38621,6 +38658,7 @@ export namespace Prisma {
|
|
38621
38658
|
export type ProductionUncheckedCreateWithoutAffiliationRequestsInput = {
|
38622
38659
|
id?: string
|
38623
38660
|
name: string
|
38661
|
+
description?: string
|
38624
38662
|
administratorId?: string | null
|
38625
38663
|
created_at?: Date | string
|
38626
38664
|
updated_at?: Date | string
|
@@ -38724,6 +38762,7 @@ export namespace Prisma {
|
|
38724
38762
|
export type ProductionUpdateWithoutAffiliationRequestsInput = {
|
38725
38763
|
id?: StringFieldUpdateOperationsInput | string
|
38726
38764
|
name?: StringFieldUpdateOperationsInput | string
|
38765
|
+
description?: StringFieldUpdateOperationsInput | string
|
38727
38766
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38728
38767
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38729
38768
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -38734,6 +38773,7 @@ export namespace Prisma {
|
|
38734
38773
|
export type ProductionUncheckedUpdateWithoutAffiliationRequestsInput = {
|
38735
38774
|
id?: StringFieldUpdateOperationsInput | string
|
38736
38775
|
name?: StringFieldUpdateOperationsInput | string
|
38776
|
+
description?: StringFieldUpdateOperationsInput | string
|
38737
38777
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
38738
38778
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
38739
38779
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -39400,6 +39440,7 @@ export namespace Prisma {
|
|
39400
39440
|
export type ProductionCreateManyAdministratorInput = {
|
39401
39441
|
id?: string
|
39402
39442
|
name: string
|
39443
|
+
description?: string
|
39403
39444
|
created_at?: Date | string
|
39404
39445
|
updated_at?: Date | string
|
39405
39446
|
}
|
@@ -39598,6 +39639,7 @@ export namespace Prisma {
|
|
39598
39639
|
export type ProductionUpdateWithoutAdministratorInput = {
|
39599
39640
|
id?: StringFieldUpdateOperationsInput | string
|
39600
39641
|
name?: StringFieldUpdateOperationsInput | string
|
39642
|
+
description?: StringFieldUpdateOperationsInput | string
|
39601
39643
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39602
39644
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39603
39645
|
participants?: ProfileUpdateManyWithoutProductionsParticipatedNestedInput
|
@@ -39608,6 +39650,7 @@ export namespace Prisma {
|
|
39608
39650
|
export type ProductionUncheckedUpdateWithoutAdministratorInput = {
|
39609
39651
|
id?: StringFieldUpdateOperationsInput | string
|
39610
39652
|
name?: StringFieldUpdateOperationsInput | string
|
39653
|
+
description?: StringFieldUpdateOperationsInput | string
|
39611
39654
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39612
39655
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39613
39656
|
participants?: ProfileUncheckedUpdateManyWithoutProductionsParticipatedNestedInput
|
@@ -39618,6 +39661,7 @@ export namespace Prisma {
|
|
39618
39661
|
export type ProductionUncheckedUpdateManyWithoutAdministratorInput = {
|
39619
39662
|
id?: StringFieldUpdateOperationsInput | string
|
39620
39663
|
name?: StringFieldUpdateOperationsInput | string
|
39664
|
+
description?: StringFieldUpdateOperationsInput | string
|
39621
39665
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39622
39666
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39623
39667
|
}
|
@@ -39625,6 +39669,7 @@ export namespace Prisma {
|
|
39625
39669
|
export type ProductionUpdateWithoutParticipantsInput = {
|
39626
39670
|
id?: StringFieldUpdateOperationsInput | string
|
39627
39671
|
name?: StringFieldUpdateOperationsInput | string
|
39672
|
+
description?: StringFieldUpdateOperationsInput | string
|
39628
39673
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39629
39674
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39630
39675
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -39635,6 +39680,7 @@ export namespace Prisma {
|
|
39635
39680
|
export type ProductionUncheckedUpdateWithoutParticipantsInput = {
|
39636
39681
|
id?: StringFieldUpdateOperationsInput | string
|
39637
39682
|
name?: StringFieldUpdateOperationsInput | string
|
39683
|
+
description?: StringFieldUpdateOperationsInput | string
|
39638
39684
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
39639
39685
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39640
39686
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -39645,6 +39691,7 @@ export namespace Prisma {
|
|
39645
39691
|
export type ProductionUncheckedUpdateManyWithoutParticipantsInput = {
|
39646
39692
|
id?: StringFieldUpdateOperationsInput | string
|
39647
39693
|
name?: StringFieldUpdateOperationsInput | string
|
39694
|
+
description?: StringFieldUpdateOperationsInput | string
|
39648
39695
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
39649
39696
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
39650
39697
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -40618,6 +40665,7 @@ export namespace Prisma {
|
|
40618
40665
|
export type ProductionUpdateWithoutEventsInput = {
|
40619
40666
|
id?: StringFieldUpdateOperationsInput | string
|
40620
40667
|
name?: StringFieldUpdateOperationsInput | string
|
40668
|
+
description?: StringFieldUpdateOperationsInput | string
|
40621
40669
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40622
40670
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40623
40671
|
administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
|
@@ -40628,6 +40676,7 @@ export namespace Prisma {
|
|
40628
40676
|
export type ProductionUncheckedUpdateWithoutEventsInput = {
|
40629
40677
|
id?: StringFieldUpdateOperationsInput | string
|
40630
40678
|
name?: StringFieldUpdateOperationsInput | string
|
40679
|
+
description?: StringFieldUpdateOperationsInput | string
|
40631
40680
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
40632
40681
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40633
40682
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -40638,6 +40687,7 @@ export namespace Prisma {
|
|
40638
40687
|
export type ProductionUncheckedUpdateManyWithoutEventsInput = {
|
40639
40688
|
id?: StringFieldUpdateOperationsInput | string
|
40640
40689
|
name?: StringFieldUpdateOperationsInput | string
|
40690
|
+
description?: StringFieldUpdateOperationsInput | string
|
40641
40691
|
administratorId?: NullableStringFieldUpdateOperationsInput | string | null
|
40642
40692
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40643
40693
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|