📦 amake / prisma-validator-repro

📄 README.md · 1023 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023# prisma-validator-repro

This repo is a minimal reproduction of an error I encountered when trying to use
[create-validator-ts](https://github.com/azu/create-validator-ts) to generate
validation logic for a TypeScript type that pulls in a model type generated with
[Prisma ORM](https://www.prisma.io/).

**Update:** This issue is
[fixed](https://github.com/vega/ts-json-schema-generator/pull/2421) as of
release v2.5.0-next.16 of ts-json-schema-generator. You can work around the
issue in create-validator-ts by adding the following to your package.json:

```json
  "overrides": {
    "create-validator-ts": {
      "ts-json-schema-generator": ">=2.5.0-next.16 <3.0.0"
    }
  },
```

## Steps to reproduce

1. Clone this repository
2. Run `npm run setup`
3. Run `npm run gen:validator`
4. Note the error:

    ```
    % npm run gen:validator

    > prisma-validator-repro@1.0.0 gen:validator
    > create-validator-ts api-types.ts

    Fail to parse: /Users/user/prisma-validator-repro/api-types.ts LogicError: Invalid index "user" in type "indexed-type-1777104669-67853-67948-1777104669-67840-67949-1777104669-67838-68228-1777104669-67542-68229-1777104669-0-129753<structure-1777104669-21405-21407-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21408-21411-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21412-21415-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21416-21419-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753>"
        at /Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js:65:27
        at Array.map (<anonymous>)
        at IndexedAccessTypeNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js:52:42)
        at ChainNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/ChainNodeParser.js:31:49)
        at TypeReferenceNodeParser.createSubContext (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeReferenceNodeParser.js:66:62)
        at TypeReferenceNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeReferenceNodeParser.js:36:70)
        at ChainNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/ChainNodeParser.js:31:49)
        at AnnotatedNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/AnnotatedNodeParser.js:29:47)
        at /Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeLiteralNodeParser.js:39:133
    ...
    ```

    <details><summary>Full error output</summary>

    ```
    % npm run gen:validator

    > prisma-validator-repro@1.0.0 gen:validator
    > create-validator-ts api-types.ts

    Fail to parse: /Users/user/prisma-validator-repro/api-types.ts LogicError: Invalid index "user" in type "indexed-type-1777104669-67853-67948-1777104669-67840-67949-1777104669-67838-68228-1777104669-67542-68229-1777104669-0-129753<structure-1777104669-21405-21407-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21408-21411-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21412-21415-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21416-21419-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753>"
        at /Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js:65:27
        at Array.map (<anonymous>)
        at IndexedAccessTypeNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js:52:42)
        at ChainNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/ChainNodeParser.js:31:49)
        at TypeReferenceNodeParser.createSubContext (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeReferenceNodeParser.js:66:62)
        at TypeReferenceNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeReferenceNodeParser.js:36:70)
        at ChainNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/ChainNodeParser.js:31:49)
        at AnnotatedNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/AnnotatedNodeParser.js:29:47)
        at /Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeLiteralNodeParser.js:39:133
        at Array.map (<anonymous>) {
      diagnostic: {
        category: 1,
        file: SourceFileObject {
          pos: 0,
          end: 39476,
          kind: 308,
          id: 0,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: undefined,
          original: undefined,
          emitNode: undefined,
          statements: [Array],
          endOfFileToken: [TokenObject],
          text: '\n' +
            '/* !!! This is code generated by Prisma. Do not edit directly. !!! */\n' +
            '/* eslint-disable */\n' +
            '// biome-ignore-all lint: generated file\n' +
            '// @ts-nocheck \n' +
            '/*\n' +
            ' * This file exports the `User` model and its related types.\n' +
            ' *\n' +
            ' * 🟢 You can import this file directly.\n' +
            ' */\n' +
            'import type * as runtime from "@prisma/client/runtime/library"\n' +
            'import type * as $Enums from "../enums.js"\n' +
            'import type * as Prisma from "../internal/prismaNamespace.js"\n' +
            '\n' +
            '/**\n' +
            ' * Model User\n' +
            ' * \n' +
            ' */\n' +
            'export type UserModel = runtime.Types.Result.DefaultSelection<Prisma.$UserPayload>\n' +
            '\n' +
            'export type AggregateUser = {\n' +
            '  _count: UserCountAggregateOutputType | null\n' +
            '  _min: UserMinAggregateOutputType | null\n' +
            '  _max: UserMaxAggregateOutputType | null\n' +
            '}\n' +
            '\n' +
            'export type UserMinAggregateOutputType = {\n' +
            '  id: string | null\n' +
            '  email: string | null\n' +
            '  name: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserMaxAggregateOutputType = {\n' +
            '  id: string | null\n' +
            '  email: string | null\n' +
            '  name: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCountAggregateOutputType = {\n' +
            '  id: number\n' +
            '  email: number\n' +
            '  name: number\n' +
            '  _all: number\n' +
            '}\n' +
            '\n' +
            '\n' +
            'export type UserMinAggregateInputType = {\n' +
            '  id?: true\n' +
            '  email?: true\n' +
            '  name?: true\n' +
            '}\n' +
            '\n' +
            'export type UserMaxAggregateInputType = {\n' +
            '  id?: true\n' +
            '  email?: true\n' +
            '  name?: true\n' +
            '}\n' +
            '\n' +
            'export type UserCountAggregateInputType = {\n' +
            '  id?: true\n' +
            '  email?: true\n' +
            '  name?: true\n' +
            '  _all?: true\n' +
            '}\n' +
            '\n' +
            'export type UserAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {\n' +
            '  /**\n' +
            '   * Filter which User to aggregate.\n' +
            '   */\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}\n' +
            '   * \n' +
            '   * Determine the order of Users to fetch.\n' +
            '   */\n' +
            '  orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[]\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}\n' +
            '   * \n' +
            '   * Sets the start position\n' +
            '   */\n' +
            '  cursor?: Prisma.UserWhereUniqueInput\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}\n' +
            '   * \n' +
            '   * Take `±n` Users from the position of the cursor.\n' +
            '   */\n' +
            '  take?: number\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}\n' +
            '   * \n' +
            '   * Skip the first `n` Users.\n' +
            '   */\n' +
            '  skip?: number\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}\n' +
            '   * \n' +
            '   * Count returned Users\n' +
            '  **/\n' +
            '  _count?: true | UserCountAggregateInputType\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}\n' +
            '   * \n' +
            '   * Select which fields to find the minimum value\n' +
            '  **/\n' +
            '  _min?: UserMinAggregateInputType\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}\n' +
            '   * \n' +
            '   * Select which fields to find the maximum value\n' +
            '  **/\n' +
            '  _max?: UserMaxAggregateInputType\n' +
            '}\n' +
            '\n' +
            'export type GetUserAggregateType<T extends UserAggregateArgs> = {\n' +
            "      [P in keyof T & keyof AggregateUser]: P extends '_count' | 'count'\n" +
            '    ? T[P] extends true\n' +
            '      ? number\n' +
            '      : Prisma.GetScalarType<T[P], AggregateUser[P]>\n' +
            '    : Prisma.GetScalarType<T[P], AggregateUser[P]>\n' +
            '}\n' +
            '\n' +
            '\n' +
            '\n' +
            '\n' +
            'export type UserGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '  orderBy?: Prisma.UserOrderByWithAggregationInput | Prisma.UserOrderByWithAggregationInput[]\n' +
            '  by: Prisma.UserScalarFieldEnum[] | Prisma.UserScalarFieldEnum\n' +
            '  having?: Prisma.UserScalarWhereWithAggregatesInput\n' +
            '  take?: number\n' +
            '  skip?: number\n' +
            '  _count?: UserCountAggregateInputType | true\n' +
            '  _min?: UserMinAggregateInputType\n' +
            '  _max?: UserMaxAggregateInputType\n' +
            '}\n' +
            '\n' +
            'export type UserGroupByOutputType = {\n' +
            '  id: string\n' +
            '  email: string\n' +
            '  name: string | null\n' +
            '  _count: UserCountAggregateOutputType | null\n' +
            '  _min: UserMinAggregateOutputType | null\n' +
            '  _max: UserMaxAggregateOutputType | null\n' +
            '}\n' +
            '\n' +
            'type GetUserGroupByPayload<T extends UserGroupByArgs> = Prisma.PrismaPromise<\n' +
            '  Array<\n' +
            "    Prisma.PickEnumerable<UserGroupByOutputType, T['by']> &\n" +
            '      {\n' +
            "        [P in ((keyof T) & (keyof UserGroupByOutputType))]: P extends '_count'\n" +
            '          ? T[P] extends boolean\n' +
            '            ? number\n' +
            '            : Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>\n' +
            '          : Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>\n' +
            '      }\n' +
            '    >\n' +
            '  >\n' +
            '\n' +
            '\n' +
            '\n' +
            'export type UserWhereInput = {\n' +
            '  AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  OR?: Prisma.UserWhereInput[]\n' +
            '  NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  id?: Prisma.StringFilter<"User"> | string\n' +
            '  email?: Prisma.StringFilter<"User"> | string\n' +
            '  name?: Prisma.StringNullableFilter<"User"> | string | null\n' +
            '  posts?: Prisma.PostListRelationFilter\n' +
            '}\n' +
            '\n' +
            'export type UserOrderByWithRelationInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '  posts?: Prisma.PostOrderByRelationAggregateInput\n' +
            '}\n' +
            '\n' +
            'export type UserWhereUniqueInput = Prisma.AtLeast<{\n' +
            '  id?: string\n' +
            '  email?: string\n' +
            '  AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  OR?: Prisma.UserWhereInput[]\n' +
            '  NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  name?: Prisma.StringNullableFilter<"User"> | string | null\n' +
            '  posts?: Prisma.PostListRelationFilter\n' +
            '}, "id" | "email">\n' +
            '\n' +
            'export type UserOrderByWithAggregationInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '  _count?: Prisma.UserCountOrderByAggregateInput\n' +
            '  _max?: Prisma.UserMaxOrderByAggregateInput\n' +
            '  _min?: Prisma.UserMinOrderByAggregateInput\n' +
            '}\n' +
            '\n' +
            'export type UserScalarWhereWithAggregatesInput = {\n' +
            '  AND?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[]\n' +
            '  OR?: Prisma.UserScalarWhereWithAggregatesInput[]\n' +
            '  NOT?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[]\n' +
            '  id?: Prisma.StringWithAggregatesFilter<"User"> | string\n' +
            '  email?: Prisma.StringWithAggregatesFilter<"User"> | string\n' +
            '  name?: Prisma.StringNullableWithAggregatesFilter<"User"> | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCreateInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '  posts?: Prisma.PostCreateNestedManyWithoutAuthorInput\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedCreateInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '  posts?: Prisma.PostUncheckedCreateNestedManyWithoutAuthorInput\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '  posts?: Prisma.PostUpdateManyWithoutAuthorNestedInput\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedUpdateInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '  posts?: Prisma.PostUncheckedUpdateManyWithoutAuthorNestedInput\n' +
            '}\n' +
            '\n' +
            'export type UserCreateManyInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateManyMutationInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedUpdateManyInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCountOrderByAggregateInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '}\n' +
            '\n' +
            'export type UserMaxOrderByAggregateInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '}\n' +
            '\n' +
            'export type UserMinOrderByAggregateInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '}\n' +
            '\n' +
            'export type UserScalarRelationFilter = {\n' +
            '  is?: Prisma.UserWhereInput\n' +
            '  isNot?: Prisma.UserWhereInput\n' +
            '}\n' +
            '\n' +
            'export type StringFieldUpdateOperationsInput = {\n' +
            '  set?: string\n' +
            '}\n' +
            '\n' +
            'export type NullableStringFieldUpdateOperationsInput = {\n' +
            '  set?: string | null\n' +
            '  unset?: boolean\n' +
            '}\n' +
            '\n' +
            'export type UserCreateNestedOneWithoutPostsInput = {\n' +
            '  create?: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '  connectOrCreate?: Prisma.UserCreateOrConnectWithoutPostsInput\n' +
            '  connect?: Prisma.UserWhereUniqueInput\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateOneRequiredWithoutPostsNestedInput = {\n' +
            '  create?: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '  connectOrCreate?: Prisma.UserCreateOrConnectWithoutPostsInput\n' +
            '  upsert?: Prisma.UserUpsertWithoutPostsInput\n' +
            '  connect?: Prisma.UserWhereUniqueInput\n' +
            '  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutPostsInput, Prisma.UserUpdateWithoutPostsInput>, Prisma.UserUncheckedUpdateWithoutPostsInput>\n' +
            '}\n' +
            '\n' +
            'export type UserCreateWithoutPostsInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedCreateWithoutPostsInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCreateOrConnectWithoutPostsInput = {\n' +
            '  where: Prisma.UserWhereUniqueInput\n' +
            '  create: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '}\n' +
            '\n' +
            'export type UserUpsertWithoutPostsInput = {\n' +
            '  update: Prisma.XOR<Prisma.UserUpdateWithoutPostsInput, Prisma.UserUncheckedUpdateWithoutPostsInput>\n' +
            '  create: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateToOneWithWhereWithoutPostsInput = {\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '  data: Prisma.XOR<Prisma.UserUpdateWithoutPostsInput, Prisma.UserUncheckedUpdateWithoutPostsInput>\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateWithoutPostsInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedUpdateWithoutPostsInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            '\n' +
            '/**\n' +
            ' * Count Type UserCountOutputType\n' +
            ' */\n' +
            '\n' +
            'export type UserCountOutputType = {\n' +
            ' '... 29476 more characters,
          fileName: '/Users/user/prisma-validator-repro/generated/prisma/models/User.ts',
          path: '/users/user/prisma-validator-repro/generated/prisma/models/user.ts',
          resolvedPath: '/users/user/prisma-validator-repro/generated/prisma/models/user.ts',
          originalFileName: '/Users/user/prisma-validator-repro/generated/prisma/models/User.ts',
          languageVersion: 10,
          languageVariant: 0,
          scriptKind: 3,
          isDeclarationFile: false,
          hasNoDefaultLib: false,
          locals: [Map],
          nextContainer: [NodeObject],
          endFlowNode: [Object],
          nodeCount: 4604,
          identifierCount: 1730,
          symbolCount: 595,
          parseDiagnostics: [],
          bindDiagnostics: [],
          bindSuggestionDiagnostics: undefined,
          lineMap: undefined,
          externalModuleIndicator: [NodeObject],
          setExternalModuleIndicator: [Function: callback],
          pragmas: [Map],
          checkJsDirective: [Object],
          referencedFiles: [],
          typeReferenceDirectives: [],
          libReferenceDirectives: [],
          amdDependencies: [],
          commentDirectives: undefined,
          identifiers: [Map],
          packageJsonLocations: undefined,
          packageJsonScope: undefined,
          imports: [Array],
          moduleAugmentations: [],
          ambientModuleNames: [],
          classifiableNames: [Set],
          impliedNodeFormat: undefined,
          jsDocParsingMode: 0,
          symbol: [SymbolObject]
        },
        length: 25,
        start: 11969,
        code: 'J - 104',
        messageText: 'Invalid index "user" in type "indexed-type-1777104669-67853-67948-1777104669-67840-67949-1777104669-67838-68228-1777104669-67542-68229-1777104669-0-129753<structure-1777104669-21405-21407-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21408-21411-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21412-21415-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21416-21419-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753>"',
        node: undefined
      },
      node: <ref *1> NodeObject {
        pos: 11968,
        end: 11994,
        kind: 200,
        id: 1065,
        flags: 0,
        modifierFlagsCache: 0,
        transformFlags: 1,
        parent: NodeObject {
          pos: 11862,
          end: 11995,
          kind: 184,
          id: 1034,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: [NodeObject],
          original: undefined,
          emitNode: undefined,
          typeName: [NodeObject],
          typeArguments: [Array]
        },
        original: undefined,
        emitNode: undefined,
        objectType: NodeObject {
          pos: 11968,
          end: 11986,
          kind: 200,
          id: 1066,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: [Circular *1],
          original: undefined,
          emitNode: undefined,
          objectType: [NodeObject],
          indexType: [NodeObject]
        },
        indexType: NodeObject {
          pos: 11987,
          end: 11993,
          kind: 202,
          id: 1070,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: [Circular *1],
          original: undefined,
          emitNode: undefined,
          literal: [NodeObject]
        }
      }
    }
    LogicError: Invalid index "user" in type "indexed-type-1777104669-67853-67948-1777104669-67840-67949-1777104669-67838-68228-1777104669-67542-68229-1777104669-0-129753<structure-1777104669-21405-21407-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21408-21411-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21412-21415-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21416-21419-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753>"
        at /Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js:65:27
        at Array.map (<anonymous>)
        at IndexedAccessTypeNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js:52:42)
        at ChainNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/ChainNodeParser.js:31:49)
        at TypeReferenceNodeParser.createSubContext (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeReferenceNodeParser.js:66:62)
        at TypeReferenceNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeReferenceNodeParser.js:36:70)
        at ChainNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/ChainNodeParser.js:31:49)
        at AnnotatedNodeParser.createType (/Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/AnnotatedNodeParser.js:29:47)
        at /Users/user/prisma-validator-repro/node_modules/ts-json-schema-generator/dist/src/NodeParser/TypeLiteralNodeParser.js:39:133
        at Array.map (<anonymous>) {
      diagnostic: {
        category: 1,
        file: SourceFileObject {
          pos: 0,
          end: 39476,
          kind: 308,
          id: 0,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: undefined,
          original: undefined,
          emitNode: undefined,
          statements: [Array],
          endOfFileToken: [TokenObject],
          text: '\n' +
            '/* !!! This is code generated by Prisma. Do not edit directly. !!! */\n' +
            '/* eslint-disable */\n' +
            '// biome-ignore-all lint: generated file\n' +
            '// @ts-nocheck \n' +
            '/*\n' +
            ' * This file exports the `User` model and its related types.\n' +
            ' *\n' +
            ' * 🟢 You can import this file directly.\n' +
            ' */\n' +
            'import type * as runtime from "@prisma/client/runtime/library"\n' +
            'import type * as $Enums from "../enums.js"\n' +
            'import type * as Prisma from "../internal/prismaNamespace.js"\n' +
            '\n' +
            '/**\n' +
            ' * Model User\n' +
            ' * \n' +
            ' */\n' +
            'export type UserModel = runtime.Types.Result.DefaultSelection<Prisma.$UserPayload>\n' +
            '\n' +
            'export type AggregateUser = {\n' +
            '  _count: UserCountAggregateOutputType | null\n' +
            '  _min: UserMinAggregateOutputType | null\n' +
            '  _max: UserMaxAggregateOutputType | null\n' +
            '}\n' +
            '\n' +
            'export type UserMinAggregateOutputType = {\n' +
            '  id: string | null\n' +
            '  email: string | null\n' +
            '  name: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserMaxAggregateOutputType = {\n' +
            '  id: string | null\n' +
            '  email: string | null\n' +
            '  name: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCountAggregateOutputType = {\n' +
            '  id: number\n' +
            '  email: number\n' +
            '  name: number\n' +
            '  _all: number\n' +
            '}\n' +
            '\n' +
            '\n' +
            'export type UserMinAggregateInputType = {\n' +
            '  id?: true\n' +
            '  email?: true\n' +
            '  name?: true\n' +
            '}\n' +
            '\n' +
            'export type UserMaxAggregateInputType = {\n' +
            '  id?: true\n' +
            '  email?: true\n' +
            '  name?: true\n' +
            '}\n' +
            '\n' +
            'export type UserCountAggregateInputType = {\n' +
            '  id?: true\n' +
            '  email?: true\n' +
            '  name?: true\n' +
            '  _all?: true\n' +
            '}\n' +
            '\n' +
            'export type UserAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {\n' +
            '  /**\n' +
            '   * Filter which User to aggregate.\n' +
            '   */\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}\n' +
            '   * \n' +
            '   * Determine the order of Users to fetch.\n' +
            '   */\n' +
            '  orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[]\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}\n' +
            '   * \n' +
            '   * Sets the start position\n' +
            '   */\n' +
            '  cursor?: Prisma.UserWhereUniqueInput\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}\n' +
            '   * \n' +
            '   * Take `±n` Users from the position of the cursor.\n' +
            '   */\n' +
            '  take?: number\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}\n' +
            '   * \n' +
            '   * Skip the first `n` Users.\n' +
            '   */\n' +
            '  skip?: number\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}\n' +
            '   * \n' +
            '   * Count returned Users\n' +
            '  **/\n' +
            '  _count?: true | UserCountAggregateInputType\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}\n' +
            '   * \n' +
            '   * Select which fields to find the minimum value\n' +
            '  **/\n' +
            '  _min?: UserMinAggregateInputType\n' +
            '  /**\n' +
            '   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}\n' +
            '   * \n' +
            '   * Select which fields to find the maximum value\n' +
            '  **/\n' +
            '  _max?: UserMaxAggregateInputType\n' +
            '}\n' +
            '\n' +
            'export type GetUserAggregateType<T extends UserAggregateArgs> = {\n' +
            "      [P in keyof T & keyof AggregateUser]: P extends '_count' | 'count'\n" +
            '    ? T[P] extends true\n' +
            '      ? number\n' +
            '      : Prisma.GetScalarType<T[P], AggregateUser[P]>\n' +
            '    : Prisma.GetScalarType<T[P], AggregateUser[P]>\n' +
            '}\n' +
            '\n' +
            '\n' +
            '\n' +
            '\n' +
            'export type UserGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '  orderBy?: Prisma.UserOrderByWithAggregationInput | Prisma.UserOrderByWithAggregationInput[]\n' +
            '  by: Prisma.UserScalarFieldEnum[] | Prisma.UserScalarFieldEnum\n' +
            '  having?: Prisma.UserScalarWhereWithAggregatesInput\n' +
            '  take?: number\n' +
            '  skip?: number\n' +
            '  _count?: UserCountAggregateInputType | true\n' +
            '  _min?: UserMinAggregateInputType\n' +
            '  _max?: UserMaxAggregateInputType\n' +
            '}\n' +
            '\n' +
            'export type UserGroupByOutputType = {\n' +
            '  id: string\n' +
            '  email: string\n' +
            '  name: string | null\n' +
            '  _count: UserCountAggregateOutputType | null\n' +
            '  _min: UserMinAggregateOutputType | null\n' +
            '  _max: UserMaxAggregateOutputType | null\n' +
            '}\n' +
            '\n' +
            'type GetUserGroupByPayload<T extends UserGroupByArgs> = Prisma.PrismaPromise<\n' +
            '  Array<\n' +
            "    Prisma.PickEnumerable<UserGroupByOutputType, T['by']> &\n" +
            '      {\n' +
            "        [P in ((keyof T) & (keyof UserGroupByOutputType))]: P extends '_count'\n" +
            '          ? T[P] extends boolean\n' +
            '            ? number\n' +
            '            : Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>\n' +
            '          : Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>\n' +
            '      }\n' +
            '    >\n' +
            '  >\n' +
            '\n' +
            '\n' +
            '\n' +
            'export type UserWhereInput = {\n' +
            '  AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  OR?: Prisma.UserWhereInput[]\n' +
            '  NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  id?: Prisma.StringFilter<"User"> | string\n' +
            '  email?: Prisma.StringFilter<"User"> | string\n' +
            '  name?: Prisma.StringNullableFilter<"User"> | string | null\n' +
            '  posts?: Prisma.PostListRelationFilter\n' +
            '}\n' +
            '\n' +
            'export type UserOrderByWithRelationInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '  posts?: Prisma.PostOrderByRelationAggregateInput\n' +
            '}\n' +
            '\n' +
            'export type UserWhereUniqueInput = Prisma.AtLeast<{\n' +
            '  id?: string\n' +
            '  email?: string\n' +
            '  AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  OR?: Prisma.UserWhereInput[]\n' +
            '  NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[]\n' +
            '  name?: Prisma.StringNullableFilter<"User"> | string | null\n' +
            '  posts?: Prisma.PostListRelationFilter\n' +
            '}, "id" | "email">\n' +
            '\n' +
            'export type UserOrderByWithAggregationInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '  _count?: Prisma.UserCountOrderByAggregateInput\n' +
            '  _max?: Prisma.UserMaxOrderByAggregateInput\n' +
            '  _min?: Prisma.UserMinOrderByAggregateInput\n' +
            '}\n' +
            '\n' +
            'export type UserScalarWhereWithAggregatesInput = {\n' +
            '  AND?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[]\n' +
            '  OR?: Prisma.UserScalarWhereWithAggregatesInput[]\n' +
            '  NOT?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[]\n' +
            '  id?: Prisma.StringWithAggregatesFilter<"User"> | string\n' +
            '  email?: Prisma.StringWithAggregatesFilter<"User"> | string\n' +
            '  name?: Prisma.StringNullableWithAggregatesFilter<"User"> | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCreateInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '  posts?: Prisma.PostCreateNestedManyWithoutAuthorInput\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedCreateInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '  posts?: Prisma.PostUncheckedCreateNestedManyWithoutAuthorInput\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '  posts?: Prisma.PostUpdateManyWithoutAuthorNestedInput\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedUpdateInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '  posts?: Prisma.PostUncheckedUpdateManyWithoutAuthorNestedInput\n' +
            '}\n' +
            '\n' +
            'export type UserCreateManyInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateManyMutationInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedUpdateManyInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCountOrderByAggregateInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '}\n' +
            '\n' +
            'export type UserMaxOrderByAggregateInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '}\n' +
            '\n' +
            'export type UserMinOrderByAggregateInput = {\n' +
            '  id?: Prisma.SortOrder\n' +
            '  email?: Prisma.SortOrder\n' +
            '  name?: Prisma.SortOrder\n' +
            '}\n' +
            '\n' +
            'export type UserScalarRelationFilter = {\n' +
            '  is?: Prisma.UserWhereInput\n' +
            '  isNot?: Prisma.UserWhereInput\n' +
            '}\n' +
            '\n' +
            'export type StringFieldUpdateOperationsInput = {\n' +
            '  set?: string\n' +
            '}\n' +
            '\n' +
            'export type NullableStringFieldUpdateOperationsInput = {\n' +
            '  set?: string | null\n' +
            '  unset?: boolean\n' +
            '}\n' +
            '\n' +
            'export type UserCreateNestedOneWithoutPostsInput = {\n' +
            '  create?: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '  connectOrCreate?: Prisma.UserCreateOrConnectWithoutPostsInput\n' +
            '  connect?: Prisma.UserWhereUniqueInput\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateOneRequiredWithoutPostsNestedInput = {\n' +
            '  create?: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '  connectOrCreate?: Prisma.UserCreateOrConnectWithoutPostsInput\n' +
            '  upsert?: Prisma.UserUpsertWithoutPostsInput\n' +
            '  connect?: Prisma.UserWhereUniqueInput\n' +
            '  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutPostsInput, Prisma.UserUpdateWithoutPostsInput>, Prisma.UserUncheckedUpdateWithoutPostsInput>\n' +
            '}\n' +
            '\n' +
            'export type UserCreateWithoutPostsInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedCreateWithoutPostsInput = {\n' +
            '  id?: string\n' +
            '  email: string\n' +
            '  name?: string | null\n' +
            '}\n' +
            '\n' +
            'export type UserCreateOrConnectWithoutPostsInput = {\n' +
            '  where: Prisma.UserWhereUniqueInput\n' +
            '  create: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '}\n' +
            '\n' +
            'export type UserUpsertWithoutPostsInput = {\n' +
            '  update: Prisma.XOR<Prisma.UserUpdateWithoutPostsInput, Prisma.UserUncheckedUpdateWithoutPostsInput>\n' +
            '  create: Prisma.XOR<Prisma.UserCreateWithoutPostsInput, Prisma.UserUncheckedCreateWithoutPostsInput>\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateToOneWithWhereWithoutPostsInput = {\n' +
            '  where?: Prisma.UserWhereInput\n' +
            '  data: Prisma.XOR<Prisma.UserUpdateWithoutPostsInput, Prisma.UserUncheckedUpdateWithoutPostsInput>\n' +
            '}\n' +
            '\n' +
            'export type UserUpdateWithoutPostsInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            'export type UserUncheckedUpdateWithoutPostsInput = {\n' +
            '  email?: Prisma.StringFieldUpdateOperationsInput | string\n' +
            '  name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null\n' +
            '}\n' +
            '\n' +
            '\n' +
            '/**\n' +
            ' * Count Type UserCountOutputType\n' +
            ' */\n' +
            '\n' +
            'export type UserCountOutputType = {\n' +
            ' '... 29476 more characters,
          fileName: '/Users/user/prisma-validator-repro/generated/prisma/models/User.ts',
          path: '/users/user/prisma-validator-repro/generated/prisma/models/user.ts',
          resolvedPath: '/users/user/prisma-validator-repro/generated/prisma/models/user.ts',
          originalFileName: '/Users/user/prisma-validator-repro/generated/prisma/models/User.ts',
          languageVersion: 10,
          languageVariant: 0,
          scriptKind: 3,
          isDeclarationFile: false,
          hasNoDefaultLib: false,
          locals: [Map],
          nextContainer: [NodeObject],
          endFlowNode: [Object],
          nodeCount: 4604,
          identifierCount: 1730,
          symbolCount: 595,
          parseDiagnostics: [],
          bindDiagnostics: [],
          bindSuggestionDiagnostics: undefined,
          lineMap: undefined,
          externalModuleIndicator: [NodeObject],
          setExternalModuleIndicator: [Function: callback],
          pragmas: [Map],
          checkJsDirective: [Object],
          referencedFiles: [],
          typeReferenceDirectives: [],
          libReferenceDirectives: [],
          amdDependencies: [],
          commentDirectives: undefined,
          identifiers: [Map],
          packageJsonLocations: undefined,
          packageJsonScope: undefined,
          imports: [Array],
          moduleAugmentations: [],
          ambientModuleNames: [],
          classifiableNames: [Set],
          impliedNodeFormat: undefined,
          jsDocParsingMode: 0,
          symbol: [SymbolObject]
        },
        length: 25,
        start: 11969,
        code: 'J - 104',
        messageText: 'Invalid index "user" in type "indexed-type-1777104669-67853-67948-1777104669-67840-67949-1777104669-67838-68228-1777104669-67542-68229-1777104669-0-129753<structure-1777104669-21405-21407-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21408-21411-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21412-21415-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753,structure-1777104669-21416-21419-1777104669-21391-21420-1777104669-21354-21421-1777104669-0-129753>"',
        node: undefined
      },
      node: <ref *1> NodeObject {
        pos: 11968,
        end: 11994,
        kind: 200,
        id: 1065,
        flags: 0,
        modifierFlagsCache: 0,
        transformFlags: 1,
        parent: NodeObject {
          pos: 11862,
          end: 11995,
          kind: 184,
          id: 1034,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: [NodeObject],
          original: undefined,
          emitNode: undefined,
          typeName: [NodeObject],
          typeArguments: [Array]
        },
        original: undefined,
        emitNode: undefined,
        objectType: NodeObject {
          pos: 11968,
          end: 11986,
          kind: 200,
          id: 1066,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: [Circular *1],
          original: undefined,
          emitNode: undefined,
          objectType: [NodeObject],
          indexType: [NodeObject]
        },
        indexType: NodeObject {
          pos: 11987,
          end: 11993,
          kind: 202,
          id: 1070,
          flags: 0,
          modifierFlagsCache: 0,
          transformFlags: 1,
          parent: [Circular *1],
          original: undefined,
          emitNode: undefined,
          literal: [NodeObject]
        }
      }
    }
    ```
    </details>
## More

The change to our type that introduces the error is
[6e97000](https://github.com/amake/prisma-validator-repro/commit/6e970006a33cdf373530b8533ea65873a8a137ed).
Prior to that, validator generation succeeds.

create-validator-ts (ts-json-schema-generator) used to work with
Prisma-generated types; Prisma introduced an incompatibility somewhere between
4.7.1 and 4.16.2.

## Potential fix

An LLM was able to produce the following patch that works around the problem by
being less strict with indexed types, allowing an unknown type instead of
throwing an error:

```diff
diff --git a/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js b/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js
index b2ec937..fe5b262 100644
--- a/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js
+++ b/node_modules/ts-json-schema-generator/dist/src/NodeParser/IndexedAccessTypeNodeParser.js
@@ -62,9 +62,12 @@ class IndexedAccessTypeNodeParser {
                     if (objectType instanceof ReferenceType_js_1.ReferenceType) {
                         return objectType;
                     }
-                    throw new Errors_js_1.LogicError(node, `Invalid index "${type.getValue()}" in type "${objectType.getId()}"`);
+                    // Unknown index keys show up in some generated typings (e.g., Prisma
+                    // extension fields). Falling back to Unknown keeps schema generation
+                    // moving instead of throwing.
+                    return new UnknownType_js_1.UnknownType();
                 }
-                throw new Errors_js_1.LogicError(node, `No additional properties in type "${objectType.getId()}"`);
+                return new UnknownType_js_1.UnknownType();
             }
             return propertyType;
         });
```

A mechanism to auto-apply this patch can be seen on the [`patch`
branch](https://github.com/amake/prisma-validator-repro/tree/patch).