expo-backend-types 0.56.0-EXPO-372-EB-Schema-formulario-dinamico.2 → 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/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 +7 -6
- package/dist/types/prisma-schema/index-browser.js +4 -3
- package/dist/types/prisma-schema/index.d.ts +107 -122
- package/dist/types/prisma-schema/index.js +7 -6
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -4
- package/dist/types/prisma-schema/wasm.js +4 -3
- package/dist/types/schema.d.ts +26 -26
- package/package.json +1 -1
@@ -161,7 +161,8 @@ export const TagType: {
|
|
161
161
|
EVENT: 'EVENT',
|
162
162
|
PARTICIPANT: 'PARTICIPANT',
|
163
163
|
NOT_IN_SYSTEM: 'NOT_IN_SYSTEM',
|
164
|
-
PRODUCTION_ROLE: 'PRODUCTION_ROLE'
|
164
|
+
PRODUCTION_ROLE: 'PRODUCTION_ROLE',
|
165
|
+
FORM_OPTION: 'FORM_OPTION'
|
165
166
|
};
|
166
167
|
|
167
168
|
export type TagType = (typeof TagType)[keyof typeof TagType]
|
@@ -25503,27 +25504,27 @@ export namespace Prisma {
|
|
25503
25504
|
id: string | null
|
25504
25505
|
text: string | null
|
25505
25506
|
tagId: string | null
|
25507
|
+
questionId: string | null
|
25506
25508
|
created_at: Date | null
|
25507
25509
|
updated_at: Date | null
|
25508
|
-
dynamicQuestionId: string | null
|
25509
25510
|
}
|
25510
25511
|
|
25511
25512
|
export type DynamicOptionMaxAggregateOutputType = {
|
25512
25513
|
id: string | null
|
25513
25514
|
text: string | null
|
25514
25515
|
tagId: string | null
|
25516
|
+
questionId: string | null
|
25515
25517
|
created_at: Date | null
|
25516
25518
|
updated_at: Date | null
|
25517
|
-
dynamicQuestionId: string | null
|
25518
25519
|
}
|
25519
25520
|
|
25520
25521
|
export type DynamicOptionCountAggregateOutputType = {
|
25521
25522
|
id: number
|
25522
25523
|
text: number
|
25523
25524
|
tagId: number
|
25525
|
+
questionId: number
|
25524
25526
|
created_at: number
|
25525
25527
|
updated_at: number
|
25526
|
-
dynamicQuestionId: number
|
25527
25528
|
_all: number
|
25528
25529
|
}
|
25529
25530
|
|
@@ -25532,27 +25533,27 @@ export namespace Prisma {
|
|
25532
25533
|
id?: true
|
25533
25534
|
text?: true
|
25534
25535
|
tagId?: true
|
25536
|
+
questionId?: true
|
25535
25537
|
created_at?: true
|
25536
25538
|
updated_at?: true
|
25537
|
-
dynamicQuestionId?: true
|
25538
25539
|
}
|
25539
25540
|
|
25540
25541
|
export type DynamicOptionMaxAggregateInputType = {
|
25541
25542
|
id?: true
|
25542
25543
|
text?: true
|
25543
25544
|
tagId?: true
|
25545
|
+
questionId?: true
|
25544
25546
|
created_at?: true
|
25545
25547
|
updated_at?: true
|
25546
|
-
dynamicQuestionId?: true
|
25547
25548
|
}
|
25548
25549
|
|
25549
25550
|
export type DynamicOptionCountAggregateInputType = {
|
25550
25551
|
id?: true
|
25551
25552
|
text?: true
|
25552
25553
|
tagId?: true
|
25554
|
+
questionId?: true
|
25553
25555
|
created_at?: true
|
25554
25556
|
updated_at?: true
|
25555
|
-
dynamicQuestionId?: true
|
25556
25557
|
_all?: true
|
25557
25558
|
}
|
25558
25559
|
|
@@ -25632,9 +25633,9 @@ export namespace Prisma {
|
|
25632
25633
|
id: string
|
25633
25634
|
text: string
|
25634
25635
|
tagId: string
|
25636
|
+
questionId: string
|
25635
25637
|
created_at: Date
|
25636
25638
|
updated_at: Date
|
25637
|
-
dynamicQuestionId: string | null
|
25638
25639
|
_count: DynamicOptionCountAggregateOutputType | null
|
25639
25640
|
_min: DynamicOptionMinAggregateOutputType | null
|
25640
25641
|
_max: DynamicOptionMaxAggregateOutputType | null
|
@@ -25658,71 +25659,71 @@ export namespace Prisma {
|
|
25658
25659
|
id?: boolean
|
25659
25660
|
text?: boolean
|
25660
25661
|
tagId?: boolean
|
25662
|
+
questionId?: boolean
|
25661
25663
|
created_at?: boolean
|
25662
25664
|
updated_at?: boolean
|
25663
|
-
dynamicQuestionId?: boolean
|
25664
25665
|
tag?: boolean | TagDefaultArgs<ExtArgs>
|
25665
|
-
|
25666
|
+
question?: boolean | DynamicQuestionDefaultArgs<ExtArgs>
|
25666
25667
|
}, ExtArgs["result"]["dynamicOption"]>
|
25667
25668
|
|
25668
25669
|
export type DynamicOptionSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
25669
25670
|
id?: boolean
|
25670
25671
|
text?: boolean
|
25671
25672
|
tagId?: boolean
|
25673
|
+
questionId?: boolean
|
25672
25674
|
created_at?: boolean
|
25673
25675
|
updated_at?: boolean
|
25674
|
-
dynamicQuestionId?: boolean
|
25675
25676
|
tag?: boolean | TagDefaultArgs<ExtArgs>
|
25676
|
-
|
25677
|
+
question?: boolean | DynamicQuestionDefaultArgs<ExtArgs>
|
25677
25678
|
}, ExtArgs["result"]["dynamicOption"]>
|
25678
25679
|
|
25679
25680
|
export type DynamicOptionSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
25680
25681
|
id?: boolean
|
25681
25682
|
text?: boolean
|
25682
25683
|
tagId?: boolean
|
25684
|
+
questionId?: boolean
|
25683
25685
|
created_at?: boolean
|
25684
25686
|
updated_at?: boolean
|
25685
|
-
dynamicQuestionId?: boolean
|
25686
25687
|
tag?: boolean | TagDefaultArgs<ExtArgs>
|
25687
|
-
|
25688
|
+
question?: boolean | DynamicQuestionDefaultArgs<ExtArgs>
|
25688
25689
|
}, ExtArgs["result"]["dynamicOption"]>
|
25689
25690
|
|
25690
25691
|
export type DynamicOptionSelectScalar = {
|
25691
25692
|
id?: boolean
|
25692
25693
|
text?: boolean
|
25693
25694
|
tagId?: boolean
|
25695
|
+
questionId?: boolean
|
25694
25696
|
created_at?: boolean
|
25695
25697
|
updated_at?: boolean
|
25696
|
-
dynamicQuestionId?: boolean
|
25697
25698
|
}
|
25698
25699
|
|
25699
|
-
export type DynamicOptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "text" | "tagId" | "
|
25700
|
+
export type DynamicOptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "text" | "tagId" | "questionId" | "created_at" | "updated_at", ExtArgs["result"]["dynamicOption"]>
|
25700
25701
|
export type DynamicOptionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
25701
25702
|
tag?: boolean | TagDefaultArgs<ExtArgs>
|
25702
|
-
|
25703
|
+
question?: boolean | DynamicQuestionDefaultArgs<ExtArgs>
|
25703
25704
|
}
|
25704
25705
|
export type DynamicOptionIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
25705
25706
|
tag?: boolean | TagDefaultArgs<ExtArgs>
|
25706
|
-
|
25707
|
+
question?: boolean | DynamicQuestionDefaultArgs<ExtArgs>
|
25707
25708
|
}
|
25708
25709
|
export type DynamicOptionIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
25709
25710
|
tag?: boolean | TagDefaultArgs<ExtArgs>
|
25710
|
-
|
25711
|
+
question?: boolean | DynamicQuestionDefaultArgs<ExtArgs>
|
25711
25712
|
}
|
25712
25713
|
|
25713
25714
|
export type $DynamicOptionPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
25714
25715
|
name: "DynamicOption"
|
25715
25716
|
objects: {
|
25716
25717
|
tag: Prisma.$TagPayload<ExtArgs>
|
25717
|
-
|
25718
|
+
question: Prisma.$DynamicQuestionPayload<ExtArgs>
|
25718
25719
|
}
|
25719
25720
|
scalars: $Extensions.GetPayloadResult<{
|
25720
25721
|
id: string
|
25721
25722
|
text: string
|
25722
25723
|
tagId: string
|
25724
|
+
questionId: string
|
25723
25725
|
created_at: Date
|
25724
25726
|
updated_at: Date
|
25725
|
-
dynamicQuestionId: string | null
|
25726
25727
|
}, ExtArgs["result"]["dynamicOption"]>
|
25727
25728
|
composites: {}
|
25728
25729
|
}
|
@@ -26118,7 +26119,7 @@ export namespace Prisma {
|
|
26118
26119
|
export interface Prisma__DynamicOptionClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> extends Prisma.PrismaPromise<T> {
|
26119
26120
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
26120
26121
|
tag<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
|
26121
|
-
|
26122
|
+
question<T extends DynamicQuestionDefaultArgs<ExtArgs> = {}>(args?: Subset<T, DynamicQuestionDefaultArgs<ExtArgs>>): Prisma__DynamicQuestionClient<$Result.GetResult<Prisma.$DynamicQuestionPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
|
26122
26123
|
/**
|
26123
26124
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
26124
26125
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -26151,9 +26152,9 @@ export namespace Prisma {
|
|
26151
26152
|
readonly id: FieldRef<"DynamicOption", 'String'>
|
26152
26153
|
readonly text: FieldRef<"DynamicOption", 'String'>
|
26153
26154
|
readonly tagId: FieldRef<"DynamicOption", 'String'>
|
26155
|
+
readonly questionId: FieldRef<"DynamicOption", 'String'>
|
26154
26156
|
readonly created_at: FieldRef<"DynamicOption", 'DateTime'>
|
26155
26157
|
readonly updated_at: FieldRef<"DynamicOption", 'DateTime'>
|
26156
|
-
readonly dynamicQuestionId: FieldRef<"DynamicOption", 'String'>
|
26157
26158
|
}
|
26158
26159
|
|
26159
26160
|
|
@@ -26549,25 +26550,6 @@ export namespace Prisma {
|
|
26549
26550
|
limit?: number
|
26550
26551
|
}
|
26551
26552
|
|
26552
|
-
/**
|
26553
|
-
* DynamicOption.DynamicQuestion
|
26554
|
-
*/
|
26555
|
-
export type DynamicOption$DynamicQuestionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
26556
|
-
/**
|
26557
|
-
* Select specific fields to fetch from the DynamicQuestion
|
26558
|
-
*/
|
26559
|
-
select?: DynamicQuestionSelect<ExtArgs> | null
|
26560
|
-
/**
|
26561
|
-
* Omit specific fields from the DynamicQuestion
|
26562
|
-
*/
|
26563
|
-
omit?: DynamicQuestionOmit<ExtArgs> | null
|
26564
|
-
/**
|
26565
|
-
* Choose, which related nodes to fetch as well
|
26566
|
-
*/
|
26567
|
-
include?: DynamicQuestionInclude<ExtArgs> | null
|
26568
|
-
where?: DynamicQuestionWhereInput
|
26569
|
-
}
|
26570
|
-
|
26571
26553
|
/**
|
26572
26554
|
* DynamicOption without action
|
26573
26555
|
*/
|
@@ -26876,9 +26858,9 @@ export namespace Prisma {
|
|
26876
26858
|
id: 'id',
|
26877
26859
|
text: 'text',
|
26878
26860
|
tagId: 'tagId',
|
26861
|
+
questionId: 'questionId',
|
26879
26862
|
created_at: 'created_at',
|
26880
|
-
updated_at: 'updated_at'
|
26881
|
-
dynamicQuestionId: 'dynamicQuestionId'
|
26863
|
+
updated_at: 'updated_at'
|
26882
26864
|
};
|
26883
26865
|
|
26884
26866
|
export type DynamicOptionScalarFieldEnum = (typeof DynamicOptionScalarFieldEnum)[keyof typeof DynamicOptionScalarFieldEnum]
|
@@ -28623,22 +28605,22 @@ export namespace Prisma {
|
|
28623
28605
|
id?: StringFilter<"DynamicOption"> | string
|
28624
28606
|
text?: StringFilter<"DynamicOption"> | string
|
28625
28607
|
tagId?: StringFilter<"DynamicOption"> | string
|
28608
|
+
questionId?: StringFilter<"DynamicOption"> | string
|
28626
28609
|
created_at?: DateTimeFilter<"DynamicOption"> | Date | string
|
28627
28610
|
updated_at?: DateTimeFilter<"DynamicOption"> | Date | string
|
28628
|
-
dynamicQuestionId?: StringNullableFilter<"DynamicOption"> | string | null
|
28629
28611
|
tag?: XOR<TagScalarRelationFilter, TagWhereInput>
|
28630
|
-
|
28612
|
+
question?: XOR<DynamicQuestionScalarRelationFilter, DynamicQuestionWhereInput>
|
28631
28613
|
}
|
28632
28614
|
|
28633
28615
|
export type DynamicOptionOrderByWithRelationInput = {
|
28634
28616
|
id?: SortOrder
|
28635
28617
|
text?: SortOrder
|
28636
28618
|
tagId?: SortOrder
|
28619
|
+
questionId?: SortOrder
|
28637
28620
|
created_at?: SortOrder
|
28638
28621
|
updated_at?: SortOrder
|
28639
|
-
dynamicQuestionId?: SortOrderInput | SortOrder
|
28640
28622
|
tag?: TagOrderByWithRelationInput
|
28641
|
-
|
28623
|
+
question?: DynamicQuestionOrderByWithRelationInput
|
28642
28624
|
}
|
28643
28625
|
|
28644
28626
|
export type DynamicOptionWhereUniqueInput = Prisma.AtLeast<{
|
@@ -28648,20 +28630,20 @@ export namespace Prisma {
|
|
28648
28630
|
NOT?: DynamicOptionWhereInput | DynamicOptionWhereInput[]
|
28649
28631
|
text?: StringFilter<"DynamicOption"> | string
|
28650
28632
|
tagId?: StringFilter<"DynamicOption"> | string
|
28633
|
+
questionId?: StringFilter<"DynamicOption"> | string
|
28651
28634
|
created_at?: DateTimeFilter<"DynamicOption"> | Date | string
|
28652
28635
|
updated_at?: DateTimeFilter<"DynamicOption"> | Date | string
|
28653
|
-
dynamicQuestionId?: StringNullableFilter<"DynamicOption"> | string | null
|
28654
28636
|
tag?: XOR<TagScalarRelationFilter, TagWhereInput>
|
28655
|
-
|
28637
|
+
question?: XOR<DynamicQuestionScalarRelationFilter, DynamicQuestionWhereInput>
|
28656
28638
|
}, "id">
|
28657
28639
|
|
28658
28640
|
export type DynamicOptionOrderByWithAggregationInput = {
|
28659
28641
|
id?: SortOrder
|
28660
28642
|
text?: SortOrder
|
28661
28643
|
tagId?: SortOrder
|
28644
|
+
questionId?: SortOrder
|
28662
28645
|
created_at?: SortOrder
|
28663
28646
|
updated_at?: SortOrder
|
28664
|
-
dynamicQuestionId?: SortOrderInput | SortOrder
|
28665
28647
|
_count?: DynamicOptionCountOrderByAggregateInput
|
28666
28648
|
_max?: DynamicOptionMaxOrderByAggregateInput
|
28667
28649
|
_min?: DynamicOptionMinOrderByAggregateInput
|
@@ -28674,9 +28656,9 @@ export namespace Prisma {
|
|
28674
28656
|
id?: StringWithAggregatesFilter<"DynamicOption"> | string
|
28675
28657
|
text?: StringWithAggregatesFilter<"DynamicOption"> | string
|
28676
28658
|
tagId?: StringWithAggregatesFilter<"DynamicOption"> | string
|
28659
|
+
questionId?: StringWithAggregatesFilter<"DynamicOption"> | string
|
28677
28660
|
created_at?: DateTimeWithAggregatesFilter<"DynamicOption"> | Date | string
|
28678
28661
|
updated_at?: DateTimeWithAggregatesFilter<"DynamicOption"> | Date | string
|
28679
|
-
dynamicQuestionId?: StringNullableWithAggregatesFilter<"DynamicOption"> | string | null
|
28680
28662
|
}
|
28681
28663
|
|
28682
28664
|
export type AccountCreateInput = {
|
@@ -30234,7 +30216,7 @@ export namespace Prisma {
|
|
30234
30216
|
updated_at?: Date | string
|
30235
30217
|
form: DynamicFormCreateNestedOneWithoutQuestionsInput
|
30236
30218
|
tagGroup: TagGroupCreateNestedOneWithoutQuestionInput
|
30237
|
-
options?:
|
30219
|
+
options?: DynamicOptionCreateNestedManyWithoutQuestionInput
|
30238
30220
|
}
|
30239
30221
|
|
30240
30222
|
export type DynamicQuestionUncheckedCreateInput = {
|
@@ -30247,7 +30229,7 @@ export namespace Prisma {
|
|
30247
30229
|
multipleChoice?: boolean
|
30248
30230
|
created_at?: Date | string
|
30249
30231
|
updated_at?: Date | string
|
30250
|
-
options?:
|
30232
|
+
options?: DynamicOptionUncheckedCreateNestedManyWithoutQuestionInput
|
30251
30233
|
}
|
30252
30234
|
|
30253
30235
|
export type DynamicQuestionUpdateInput = {
|
@@ -30260,7 +30242,7 @@ export namespace Prisma {
|
|
30260
30242
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30261
30243
|
form?: DynamicFormUpdateOneRequiredWithoutQuestionsNestedInput
|
30262
30244
|
tagGroup?: TagGroupUpdateOneRequiredWithoutQuestionNestedInput
|
30263
|
-
options?:
|
30245
|
+
options?: DynamicOptionUpdateManyWithoutQuestionNestedInput
|
30264
30246
|
}
|
30265
30247
|
|
30266
30248
|
export type DynamicQuestionUncheckedUpdateInput = {
|
@@ -30273,7 +30255,7 @@ export namespace Prisma {
|
|
30273
30255
|
multipleChoice?: BoolFieldUpdateOperationsInput | boolean
|
30274
30256
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30275
30257
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30276
|
-
options?:
|
30258
|
+
options?: DynamicOptionUncheckedUpdateManyWithoutQuestionNestedInput
|
30277
30259
|
}
|
30278
30260
|
|
30279
30261
|
export type DynamicQuestionCreateManyInput = {
|
@@ -30316,16 +30298,16 @@ export namespace Prisma {
|
|
30316
30298
|
created_at?: Date | string
|
30317
30299
|
updated_at?: Date | string
|
30318
30300
|
tag: TagCreateNestedOneWithoutDynamicOptionInput
|
30319
|
-
|
30301
|
+
question: DynamicQuestionCreateNestedOneWithoutOptionsInput
|
30320
30302
|
}
|
30321
30303
|
|
30322
30304
|
export type DynamicOptionUncheckedCreateInput = {
|
30323
30305
|
id?: string
|
30324
30306
|
text: string
|
30325
30307
|
tagId: string
|
30308
|
+
questionId: string
|
30326
30309
|
created_at?: Date | string
|
30327
30310
|
updated_at?: Date | string
|
30328
|
-
dynamicQuestionId?: string | null
|
30329
30311
|
}
|
30330
30312
|
|
30331
30313
|
export type DynamicOptionUpdateInput = {
|
@@ -30334,25 +30316,25 @@ export namespace Prisma {
|
|
30334
30316
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30335
30317
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30336
30318
|
tag?: TagUpdateOneRequiredWithoutDynamicOptionNestedInput
|
30337
|
-
|
30319
|
+
question?: DynamicQuestionUpdateOneRequiredWithoutOptionsNestedInput
|
30338
30320
|
}
|
30339
30321
|
|
30340
30322
|
export type DynamicOptionUncheckedUpdateInput = {
|
30341
30323
|
id?: StringFieldUpdateOperationsInput | string
|
30342
30324
|
text?: StringFieldUpdateOperationsInput | string
|
30343
30325
|
tagId?: StringFieldUpdateOperationsInput | string
|
30326
|
+
questionId?: StringFieldUpdateOperationsInput | string
|
30344
30327
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30345
30328
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30346
|
-
dynamicQuestionId?: NullableStringFieldUpdateOperationsInput | string | null
|
30347
30329
|
}
|
30348
30330
|
|
30349
30331
|
export type DynamicOptionCreateManyInput = {
|
30350
30332
|
id?: string
|
30351
30333
|
text: string
|
30352
30334
|
tagId: string
|
30335
|
+
questionId: string
|
30353
30336
|
created_at?: Date | string
|
30354
30337
|
updated_at?: Date | string
|
30355
|
-
dynamicQuestionId?: string | null
|
30356
30338
|
}
|
30357
30339
|
|
30358
30340
|
export type DynamicOptionUpdateManyMutationInput = {
|
@@ -30366,9 +30348,9 @@ export namespace Prisma {
|
|
30366
30348
|
id?: StringFieldUpdateOperationsInput | string
|
30367
30349
|
text?: StringFieldUpdateOperationsInput | string
|
30368
30350
|
tagId?: StringFieldUpdateOperationsInput | string
|
30351
|
+
questionId?: StringFieldUpdateOperationsInput | string
|
30369
30352
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30370
30353
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30371
|
-
dynamicQuestionId?: NullableStringFieldUpdateOperationsInput | string | null
|
30372
30354
|
}
|
30373
30355
|
|
30374
30356
|
export type StringFilter<$PrismaModel = never> = {
|
@@ -31701,31 +31683,36 @@ export namespace Prisma {
|
|
31701
31683
|
updated_at?: SortOrder
|
31702
31684
|
}
|
31703
31685
|
|
31686
|
+
export type DynamicQuestionScalarRelationFilter = {
|
31687
|
+
is?: DynamicQuestionWhereInput
|
31688
|
+
isNot?: DynamicQuestionWhereInput
|
31689
|
+
}
|
31690
|
+
|
31704
31691
|
export type DynamicOptionCountOrderByAggregateInput = {
|
31705
31692
|
id?: SortOrder
|
31706
31693
|
text?: SortOrder
|
31707
31694
|
tagId?: SortOrder
|
31695
|
+
questionId?: SortOrder
|
31708
31696
|
created_at?: SortOrder
|
31709
31697
|
updated_at?: SortOrder
|
31710
|
-
dynamicQuestionId?: SortOrder
|
31711
31698
|
}
|
31712
31699
|
|
31713
31700
|
export type DynamicOptionMaxOrderByAggregateInput = {
|
31714
31701
|
id?: SortOrder
|
31715
31702
|
text?: SortOrder
|
31716
31703
|
tagId?: SortOrder
|
31704
|
+
questionId?: SortOrder
|
31717
31705
|
created_at?: SortOrder
|
31718
31706
|
updated_at?: SortOrder
|
31719
|
-
dynamicQuestionId?: SortOrder
|
31720
31707
|
}
|
31721
31708
|
|
31722
31709
|
export type DynamicOptionMinOrderByAggregateInput = {
|
31723
31710
|
id?: SortOrder
|
31724
31711
|
text?: SortOrder
|
31725
31712
|
tagId?: SortOrder
|
31713
|
+
questionId?: SortOrder
|
31726
31714
|
created_at?: SortOrder
|
31727
31715
|
updated_at?: SortOrder
|
31728
|
-
dynamicQuestionId?: SortOrder
|
31729
31716
|
}
|
31730
31717
|
|
31731
31718
|
export type AccountCreatefcmTokenInput = {
|
@@ -33664,17 +33651,17 @@ export namespace Prisma {
|
|
33664
33651
|
connect?: TagGroupWhereUniqueInput
|
33665
33652
|
}
|
33666
33653
|
|
33667
|
-
export type
|
33668
|
-
create?: XOR<
|
33669
|
-
connectOrCreate?:
|
33670
|
-
createMany?:
|
33654
|
+
export type DynamicOptionCreateNestedManyWithoutQuestionInput = {
|
33655
|
+
create?: XOR<DynamicOptionCreateWithoutQuestionInput, DynamicOptionUncheckedCreateWithoutQuestionInput> | DynamicOptionCreateWithoutQuestionInput[] | DynamicOptionUncheckedCreateWithoutQuestionInput[]
|
33656
|
+
connectOrCreate?: DynamicOptionCreateOrConnectWithoutQuestionInput | DynamicOptionCreateOrConnectWithoutQuestionInput[]
|
33657
|
+
createMany?: DynamicOptionCreateManyQuestionInputEnvelope
|
33671
33658
|
connect?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33672
33659
|
}
|
33673
33660
|
|
33674
|
-
export type
|
33675
|
-
create?: XOR<
|
33676
|
-
connectOrCreate?:
|
33677
|
-
createMany?:
|
33661
|
+
export type DynamicOptionUncheckedCreateNestedManyWithoutQuestionInput = {
|
33662
|
+
create?: XOR<DynamicOptionCreateWithoutQuestionInput, DynamicOptionUncheckedCreateWithoutQuestionInput> | DynamicOptionCreateWithoutQuestionInput[] | DynamicOptionUncheckedCreateWithoutQuestionInput[]
|
33663
|
+
connectOrCreate?: DynamicOptionCreateOrConnectWithoutQuestionInput | DynamicOptionCreateOrConnectWithoutQuestionInput[]
|
33664
|
+
createMany?: DynamicOptionCreateManyQuestionInputEnvelope
|
33678
33665
|
connect?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33679
33666
|
}
|
33680
33667
|
|
@@ -33694,31 +33681,31 @@ export namespace Prisma {
|
|
33694
33681
|
update?: XOR<XOR<TagGroupUpdateToOneWithWhereWithoutQuestionInput, TagGroupUpdateWithoutQuestionInput>, TagGroupUncheckedUpdateWithoutQuestionInput>
|
33695
33682
|
}
|
33696
33683
|
|
33697
|
-
export type
|
33698
|
-
create?: XOR<
|
33699
|
-
connectOrCreate?:
|
33700
|
-
upsert?:
|
33701
|
-
createMany?:
|
33684
|
+
export type DynamicOptionUpdateManyWithoutQuestionNestedInput = {
|
33685
|
+
create?: XOR<DynamicOptionCreateWithoutQuestionInput, DynamicOptionUncheckedCreateWithoutQuestionInput> | DynamicOptionCreateWithoutQuestionInput[] | DynamicOptionUncheckedCreateWithoutQuestionInput[]
|
33686
|
+
connectOrCreate?: DynamicOptionCreateOrConnectWithoutQuestionInput | DynamicOptionCreateOrConnectWithoutQuestionInput[]
|
33687
|
+
upsert?: DynamicOptionUpsertWithWhereUniqueWithoutQuestionInput | DynamicOptionUpsertWithWhereUniqueWithoutQuestionInput[]
|
33688
|
+
createMany?: DynamicOptionCreateManyQuestionInputEnvelope
|
33702
33689
|
set?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33703
33690
|
disconnect?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33704
33691
|
delete?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33705
33692
|
connect?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33706
|
-
update?:
|
33707
|
-
updateMany?:
|
33693
|
+
update?: DynamicOptionUpdateWithWhereUniqueWithoutQuestionInput | DynamicOptionUpdateWithWhereUniqueWithoutQuestionInput[]
|
33694
|
+
updateMany?: DynamicOptionUpdateManyWithWhereWithoutQuestionInput | DynamicOptionUpdateManyWithWhereWithoutQuestionInput[]
|
33708
33695
|
deleteMany?: DynamicOptionScalarWhereInput | DynamicOptionScalarWhereInput[]
|
33709
33696
|
}
|
33710
33697
|
|
33711
|
-
export type
|
33712
|
-
create?: XOR<
|
33713
|
-
connectOrCreate?:
|
33714
|
-
upsert?:
|
33715
|
-
createMany?:
|
33698
|
+
export type DynamicOptionUncheckedUpdateManyWithoutQuestionNestedInput = {
|
33699
|
+
create?: XOR<DynamicOptionCreateWithoutQuestionInput, DynamicOptionUncheckedCreateWithoutQuestionInput> | DynamicOptionCreateWithoutQuestionInput[] | DynamicOptionUncheckedCreateWithoutQuestionInput[]
|
33700
|
+
connectOrCreate?: DynamicOptionCreateOrConnectWithoutQuestionInput | DynamicOptionCreateOrConnectWithoutQuestionInput[]
|
33701
|
+
upsert?: DynamicOptionUpsertWithWhereUniqueWithoutQuestionInput | DynamicOptionUpsertWithWhereUniqueWithoutQuestionInput[]
|
33702
|
+
createMany?: DynamicOptionCreateManyQuestionInputEnvelope
|
33716
33703
|
set?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33717
33704
|
disconnect?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33718
33705
|
delete?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33719
33706
|
connect?: DynamicOptionWhereUniqueInput | DynamicOptionWhereUniqueInput[]
|
33720
|
-
update?:
|
33721
|
-
updateMany?:
|
33707
|
+
update?: DynamicOptionUpdateWithWhereUniqueWithoutQuestionInput | DynamicOptionUpdateWithWhereUniqueWithoutQuestionInput[]
|
33708
|
+
updateMany?: DynamicOptionUpdateManyWithWhereWithoutQuestionInput | DynamicOptionUpdateManyWithWhereWithoutQuestionInput[]
|
33722
33709
|
deleteMany?: DynamicOptionScalarWhereInput | DynamicOptionScalarWhereInput[]
|
33723
33710
|
}
|
33724
33711
|
|
@@ -33742,12 +33729,10 @@ export namespace Prisma {
|
|
33742
33729
|
update?: XOR<XOR<TagUpdateToOneWithWhereWithoutDynamicOptionInput, TagUpdateWithoutDynamicOptionInput>, TagUncheckedUpdateWithoutDynamicOptionInput>
|
33743
33730
|
}
|
33744
33731
|
|
33745
|
-
export type
|
33732
|
+
export type DynamicQuestionUpdateOneRequiredWithoutOptionsNestedInput = {
|
33746
33733
|
create?: XOR<DynamicQuestionCreateWithoutOptionsInput, DynamicQuestionUncheckedCreateWithoutOptionsInput>
|
33747
33734
|
connectOrCreate?: DynamicQuestionCreateOrConnectWithoutOptionsInput
|
33748
33735
|
upsert?: DynamicQuestionUpsertWithoutOptionsInput
|
33749
|
-
disconnect?: DynamicQuestionWhereInput | boolean
|
33750
|
-
delete?: DynamicQuestionWhereInput | boolean
|
33751
33736
|
connect?: DynamicQuestionWhereUniqueInput
|
33752
33737
|
update?: XOR<XOR<DynamicQuestionUpdateToOneWithWhereWithoutOptionsInput, DynamicQuestionUpdateWithoutOptionsInput>, DynamicQuestionUncheckedUpdateWithoutOptionsInput>
|
33753
33738
|
}
|
@@ -36093,15 +36078,15 @@ export namespace Prisma {
|
|
36093
36078
|
text: string
|
36094
36079
|
created_at?: Date | string
|
36095
36080
|
updated_at?: Date | string
|
36096
|
-
|
36081
|
+
question: DynamicQuestionCreateNestedOneWithoutOptionsInput
|
36097
36082
|
}
|
36098
36083
|
|
36099
36084
|
export type DynamicOptionUncheckedCreateWithoutTagInput = {
|
36100
36085
|
id?: string
|
36101
36086
|
text: string
|
36087
|
+
questionId: string
|
36102
36088
|
created_at?: Date | string
|
36103
36089
|
updated_at?: Date | string
|
36104
|
-
dynamicQuestionId?: string | null
|
36105
36090
|
}
|
36106
36091
|
|
36107
36092
|
export type DynamicOptionCreateOrConnectWithoutTagInput = {
|
@@ -36406,9 +36391,9 @@ export namespace Prisma {
|
|
36406
36391
|
id?: StringFilter<"DynamicOption"> | string
|
36407
36392
|
text?: StringFilter<"DynamicOption"> | string
|
36408
36393
|
tagId?: StringFilter<"DynamicOption"> | string
|
36394
|
+
questionId?: StringFilter<"DynamicOption"> | string
|
36409
36395
|
created_at?: DateTimeFilter<"DynamicOption"> | Date | string
|
36410
36396
|
updated_at?: DateTimeFilter<"DynamicOption"> | Date | string
|
36411
|
-
dynamicQuestionId?: StringNullableFilter<"DynamicOption"> | string | null
|
36412
36397
|
}
|
36413
36398
|
|
36414
36399
|
export type TagCreateWithoutGroupInput = {
|
@@ -36462,7 +36447,7 @@ export namespace Prisma {
|
|
36462
36447
|
created_at?: Date | string
|
36463
36448
|
updated_at?: Date | string
|
36464
36449
|
form: DynamicFormCreateNestedOneWithoutQuestionsInput
|
36465
|
-
options?:
|
36450
|
+
options?: DynamicOptionCreateNestedManyWithoutQuestionInput
|
36466
36451
|
}
|
36467
36452
|
|
36468
36453
|
export type DynamicQuestionUncheckedCreateWithoutTagGroupInput = {
|
@@ -36474,7 +36459,7 @@ export namespace Prisma {
|
|
36474
36459
|
multipleChoice?: boolean
|
36475
36460
|
created_at?: Date | string
|
36476
36461
|
updated_at?: Date | string
|
36477
|
-
options?:
|
36462
|
+
options?: DynamicOptionUncheckedCreateNestedManyWithoutQuestionInput
|
36478
36463
|
}
|
36479
36464
|
|
36480
36465
|
export type DynamicQuestionCreateOrConnectWithoutTagGroupInput = {
|
@@ -36518,7 +36503,7 @@ export namespace Prisma {
|
|
36518
36503
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
36519
36504
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
36520
36505
|
form?: DynamicFormUpdateOneRequiredWithoutQuestionsNestedInput
|
36521
|
-
options?:
|
36506
|
+
options?: DynamicOptionUpdateManyWithoutQuestionNestedInput
|
36522
36507
|
}
|
36523
36508
|
|
36524
36509
|
export type DynamicQuestionUncheckedUpdateWithoutTagGroupInput = {
|
@@ -36530,7 +36515,7 @@ export namespace Prisma {
|
|
36530
36515
|
multipleChoice?: BoolFieldUpdateOperationsInput | boolean
|
36531
36516
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
36532
36517
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
36533
|
-
options?:
|
36518
|
+
options?: DynamicOptionUncheckedUpdateManyWithoutQuestionNestedInput
|
36534
36519
|
}
|
36535
36520
|
|
36536
36521
|
export type EventFolderCreateWithoutEventsInput = {
|
@@ -38848,7 +38833,7 @@ export namespace Prisma {
|
|
38848
38833
|
created_at?: Date | string
|
38849
38834
|
updated_at?: Date | string
|
38850
38835
|
tagGroup: TagGroupCreateNestedOneWithoutQuestionInput
|
38851
|
-
options?:
|
38836
|
+
options?: DynamicOptionCreateNestedManyWithoutQuestionInput
|
38852
38837
|
}
|
38853
38838
|
|
38854
38839
|
export type DynamicQuestionUncheckedCreateWithoutFormInput = {
|
@@ -38860,7 +38845,7 @@ export namespace Prisma {
|
|
38860
38845
|
multipleChoice?: boolean
|
38861
38846
|
created_at?: Date | string
|
38862
38847
|
updated_at?: Date | string
|
38863
|
-
options?:
|
38848
|
+
options?: DynamicOptionUncheckedCreateNestedManyWithoutQuestionInput
|
38864
38849
|
}
|
38865
38850
|
|
38866
38851
|
export type DynamicQuestionCreateOrConnectWithoutFormInput = {
|
@@ -38948,7 +38933,7 @@ export namespace Prisma {
|
|
38948
38933
|
create: XOR<TagGroupCreateWithoutQuestionInput, TagGroupUncheckedCreateWithoutQuestionInput>
|
38949
38934
|
}
|
38950
38935
|
|
38951
|
-
export type
|
38936
|
+
export type DynamicOptionCreateWithoutQuestionInput = {
|
38952
38937
|
id?: string
|
38953
38938
|
text: string
|
38954
38939
|
created_at?: Date | string
|
@@ -38956,7 +38941,7 @@ export namespace Prisma {
|
|
38956
38941
|
tag: TagCreateNestedOneWithoutDynamicOptionInput
|
38957
38942
|
}
|
38958
38943
|
|
38959
|
-
export type
|
38944
|
+
export type DynamicOptionUncheckedCreateWithoutQuestionInput = {
|
38960
38945
|
id?: string
|
38961
38946
|
text: string
|
38962
38947
|
tagId: string
|
@@ -38964,13 +38949,13 @@ export namespace Prisma {
|
|
38964
38949
|
updated_at?: Date | string
|
38965
38950
|
}
|
38966
38951
|
|
38967
|
-
export type
|
38952
|
+
export type DynamicOptionCreateOrConnectWithoutQuestionInput = {
|
38968
38953
|
where: DynamicOptionWhereUniqueInput
|
38969
|
-
create: XOR<
|
38954
|
+
create: XOR<DynamicOptionCreateWithoutQuestionInput, DynamicOptionUncheckedCreateWithoutQuestionInput>
|
38970
38955
|
}
|
38971
38956
|
|
38972
|
-
export type
|
38973
|
-
data:
|
38957
|
+
export type DynamicOptionCreateManyQuestionInputEnvelope = {
|
38958
|
+
data: DynamicOptionCreateManyQuestionInput | DynamicOptionCreateManyQuestionInput[]
|
38974
38959
|
skipDuplicates?: boolean
|
38975
38960
|
}
|
38976
38961
|
|
@@ -39030,20 +39015,20 @@ export namespace Prisma {
|
|
39030
39015
|
tags?: TagUncheckedUpdateManyWithoutGroupNestedInput
|
39031
39016
|
}
|
39032
39017
|
|
39033
|
-
export type
|
39018
|
+
export type DynamicOptionUpsertWithWhereUniqueWithoutQuestionInput = {
|
39034
39019
|
where: DynamicOptionWhereUniqueInput
|
39035
|
-
update: XOR<
|
39036
|
-
create: XOR<
|
39020
|
+
update: XOR<DynamicOptionUpdateWithoutQuestionInput, DynamicOptionUncheckedUpdateWithoutQuestionInput>
|
39021
|
+
create: XOR<DynamicOptionCreateWithoutQuestionInput, DynamicOptionUncheckedCreateWithoutQuestionInput>
|
39037
39022
|
}
|
39038
39023
|
|
39039
|
-
export type
|
39024
|
+
export type DynamicOptionUpdateWithWhereUniqueWithoutQuestionInput = {
|
39040
39025
|
where: DynamicOptionWhereUniqueInput
|
39041
|
-
data: XOR<
|
39026
|
+
data: XOR<DynamicOptionUpdateWithoutQuestionInput, DynamicOptionUncheckedUpdateWithoutQuestionInput>
|
39042
39027
|
}
|
39043
39028
|
|
39044
|
-
export type
|
39029
|
+
export type DynamicOptionUpdateManyWithWhereWithoutQuestionInput = {
|
39045
39030
|
where: DynamicOptionScalarWhereInput
|
39046
|
-
data: XOR<DynamicOptionUpdateManyMutationInput,
|
39031
|
+
data: XOR<DynamicOptionUpdateManyMutationInput, DynamicOptionUncheckedUpdateManyWithoutQuestionInput>
|
39047
39032
|
}
|
39048
39033
|
|
39049
39034
|
export type TagCreateWithoutDynamicOptionInput = {
|
@@ -39976,9 +39961,9 @@ export namespace Prisma {
|
|
39976
39961
|
export type DynamicOptionCreateManyTagInput = {
|
39977
39962
|
id?: string
|
39978
39963
|
text: string
|
39964
|
+
questionId: string
|
39979
39965
|
created_at?: Date | string
|
39980
39966
|
updated_at?: Date | string
|
39981
|
-
dynamicQuestionId?: string | null
|
39982
39967
|
}
|
39983
39968
|
|
39984
39969
|
export type AccountUpdateWithoutTagsInput = {
|
@@ -40302,23 +40287,23 @@ export namespace Prisma {
|
|
40302
40287
|
text?: StringFieldUpdateOperationsInput | string
|
40303
40288
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40304
40289
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40305
|
-
|
40290
|
+
question?: DynamicQuestionUpdateOneRequiredWithoutOptionsNestedInput
|
40306
40291
|
}
|
40307
40292
|
|
40308
40293
|
export type DynamicOptionUncheckedUpdateWithoutTagInput = {
|
40309
40294
|
id?: StringFieldUpdateOperationsInput | string
|
40310
40295
|
text?: StringFieldUpdateOperationsInput | string
|
40296
|
+
questionId?: StringFieldUpdateOperationsInput | string
|
40311
40297
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40312
40298
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40313
|
-
dynamicQuestionId?: NullableStringFieldUpdateOperationsInput | string | null
|
40314
40299
|
}
|
40315
40300
|
|
40316
40301
|
export type DynamicOptionUncheckedUpdateManyWithoutTagInput = {
|
40317
40302
|
id?: StringFieldUpdateOperationsInput | string
|
40318
40303
|
text?: StringFieldUpdateOperationsInput | string
|
40304
|
+
questionId?: StringFieldUpdateOperationsInput | string
|
40319
40305
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40320
40306
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
40321
|
-
dynamicQuestionId?: NullableStringFieldUpdateOperationsInput | string | null
|
40322
40307
|
}
|
40323
40308
|
|
40324
40309
|
export type TagCreateManyGroupInput = {
|
@@ -41070,7 +41055,7 @@ export namespace Prisma {
|
|
41070
41055
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
41071
41056
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
41072
41057
|
tagGroup?: TagGroupUpdateOneRequiredWithoutQuestionNestedInput
|
41073
|
-
options?:
|
41058
|
+
options?: DynamicOptionUpdateManyWithoutQuestionNestedInput
|
41074
41059
|
}
|
41075
41060
|
|
41076
41061
|
export type DynamicQuestionUncheckedUpdateWithoutFormInput = {
|
@@ -41082,7 +41067,7 @@ export namespace Prisma {
|
|
41082
41067
|
multipleChoice?: BoolFieldUpdateOperationsInput | boolean
|
41083
41068
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
41084
41069
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
41085
|
-
options?:
|
41070
|
+
options?: DynamicOptionUncheckedUpdateManyWithoutQuestionNestedInput
|
41086
41071
|
}
|
41087
41072
|
|
41088
41073
|
export type DynamicQuestionUncheckedUpdateManyWithoutFormInput = {
|
@@ -41096,7 +41081,7 @@ export namespace Prisma {
|
|
41096
41081
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
41097
41082
|
}
|
41098
41083
|
|
41099
|
-
export type
|
41084
|
+
export type DynamicOptionCreateManyQuestionInput = {
|
41100
41085
|
id?: string
|
41101
41086
|
text: string
|
41102
41087
|
tagId: string
|
@@ -41104,7 +41089,7 @@ export namespace Prisma {
|
|
41104
41089
|
updated_at?: Date | string
|
41105
41090
|
}
|
41106
41091
|
|
41107
|
-
export type
|
41092
|
+
export type DynamicOptionUpdateWithoutQuestionInput = {
|
41108
41093
|
id?: StringFieldUpdateOperationsInput | string
|
41109
41094
|
text?: StringFieldUpdateOperationsInput | string
|
41110
41095
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -41112,7 +41097,7 @@ export namespace Prisma {
|
|
41112
41097
|
tag?: TagUpdateOneRequiredWithoutDynamicOptionNestedInput
|
41113
41098
|
}
|
41114
41099
|
|
41115
|
-
export type
|
41100
|
+
export type DynamicOptionUncheckedUpdateWithoutQuestionInput = {
|
41116
41101
|
id?: StringFieldUpdateOperationsInput | string
|
41117
41102
|
text?: StringFieldUpdateOperationsInput | string
|
41118
41103
|
tagId?: StringFieldUpdateOperationsInput | string
|
@@ -41120,7 +41105,7 @@ export namespace Prisma {
|
|
41120
41105
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
41121
41106
|
}
|
41122
41107
|
|
41123
|
-
export type
|
41108
|
+
export type DynamicOptionUncheckedUpdateManyWithoutQuestionInput = {
|
41124
41109
|
id?: StringFieldUpdateOperationsInput | string
|
41125
41110
|
text?: StringFieldUpdateOperationsInput | string
|
41126
41111
|
tagId?: StringFieldUpdateOperationsInput | string
|