document-drive 1.29.9-dev.1 → 1.29.9-dev.2

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.
Files changed (43) hide show
  1. package/dist/prisma/schema.prisma +1 -2
  2. package/dist/src/processors/processor-manager.d.ts +7 -0
  3. package/dist/src/processors/processor-manager.d.ts.map +1 -1
  4. package/dist/src/processors/processor-manager.js +30 -21
  5. package/dist/src/processors/processor-manager.js.map +1 -1
  6. package/dist/src/server/base-server.d.ts +4 -0
  7. package/dist/src/server/base-server.d.ts.map +1 -1
  8. package/dist/src/server/base-server.js +28 -17
  9. package/dist/src/server/base-server.js.map +1 -1
  10. package/dist/src/storage/browser.d.ts +4 -1
  11. package/dist/src/storage/browser.d.ts.map +1 -1
  12. package/dist/src/storage/browser.js +43 -25
  13. package/dist/src/storage/browser.js.map +1 -1
  14. package/dist/src/storage/filesystem.d.ts +4 -1
  15. package/dist/src/storage/filesystem.d.ts.map +1 -1
  16. package/dist/src/storage/filesystem.js +52 -26
  17. package/dist/src/storage/filesystem.js.map +1 -1
  18. package/dist/src/storage/ipfs.d.ts +4 -1
  19. package/dist/src/storage/ipfs.d.ts.map +1 -1
  20. package/dist/src/storage/ipfs.js +68 -10
  21. package/dist/src/storage/ipfs.js.map +1 -1
  22. package/dist/src/storage/memory.d.ts +2 -1
  23. package/dist/src/storage/memory.d.ts.map +1 -1
  24. package/dist/src/storage/memory.js +35 -23
  25. package/dist/src/storage/memory.js.map +1 -1
  26. package/dist/src/storage/prisma/client/edge.js +5 -6
  27. package/dist/src/storage/prisma/client/index-browser.js +2 -3
  28. package/dist/src/storage/prisma/client/index.d.ts +49 -111
  29. package/dist/src/storage/prisma/client/index.js +5 -6
  30. package/dist/src/storage/prisma/client/package.json +1 -1
  31. package/dist/src/storage/prisma/client/schema.prisma +1 -2
  32. package/dist/src/storage/prisma/client/wasm.js +2 -3
  33. package/dist/src/storage/prisma/prisma.d.ts +1 -1
  34. package/dist/src/storage/prisma/prisma.d.ts.map +1 -1
  35. package/dist/src/storage/prisma/prisma.js +43 -69
  36. package/dist/src/storage/prisma/prisma.js.map +1 -1
  37. package/dist/src/storage/types.d.ts +15 -1
  38. package/dist/src/storage/types.d.ts.map +1 -1
  39. package/dist/test/utils.d.ts +2 -2
  40. package/dist/test/utils.d.ts.map +1 -1
  41. package/dist/test/utils.js.map +1 -1
  42. package/dist/tsconfig.tsbuildinfo +1 -1
  43. package/package.json +3 -3
@@ -1461,34 +1461,28 @@ export namespace Prisma {
1461
1461
 
1462
1462
  export type DriveMinAggregateOutputType = {
1463
1463
  id: string | null
1464
- slug: string | null
1465
1464
  }
1466
1465
 
1467
1466
  export type DriveMaxAggregateOutputType = {
1468
1467
  id: string | null
1469
- slug: string | null
1470
1468
  }
1471
1469
 
1472
1470
  export type DriveCountAggregateOutputType = {
1473
1471
  id: number
1474
- slug: number
1475
1472
  _all: number
1476
1473
  }
1477
1474
 
1478
1475
 
1479
1476
  export type DriveMinAggregateInputType = {
1480
1477
  id?: true
1481
- slug?: true
1482
1478
  }
1483
1479
 
1484
1480
  export type DriveMaxAggregateInputType = {
1485
1481
  id?: true
1486
- slug?: true
1487
1482
  }
1488
1483
 
1489
1484
  export type DriveCountAggregateInputType = {
1490
1485
  id?: true
1491
- slug?: true
1492
1486
  _all?: true
1493
1487
  }
1494
1488
 
@@ -1566,7 +1560,6 @@ export namespace Prisma {
1566
1560
 
1567
1561
  export type DriveGroupByOutputType = {
1568
1562
  id: string
1569
- slug: string
1570
1563
  _count: DriveCountAggregateOutputType | null
1571
1564
  _min: DriveMinAggregateOutputType | null
1572
1565
  _max: DriveMaxAggregateOutputType | null
@@ -1588,19 +1581,16 @@ export namespace Prisma {
1588
1581
 
1589
1582
  export type DriveSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
1590
1583
  id?: boolean
1591
- slug?: boolean
1592
1584
  driveDocuments?: boolean | Drive$driveDocumentsArgs<ExtArgs>
1593
1585
  _count?: boolean | DriveCountOutputTypeDefaultArgs<ExtArgs>
1594
1586
  }, ExtArgs["result"]["drive"]>
1595
1587
 
1596
1588
  export type DriveSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
1597
1589
  id?: boolean
1598
- slug?: boolean
1599
1590
  }, ExtArgs["result"]["drive"]>
1600
1591
 
1601
1592
  export type DriveSelectScalar = {
1602
1593
  id?: boolean
1603
- slug?: boolean
1604
1594
  }
1605
1595
 
1606
1596
  export type DriveInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -1616,7 +1606,6 @@ export namespace Prisma {
1616
1606
  }
1617
1607
  scalars: $Extensions.GetPayloadResult<{
1618
1608
  id: string
1619
- slug: string
1620
1609
  }, ExtArgs["result"]["drive"]>
1621
1610
  composites: {}
1622
1611
  }
@@ -2012,7 +2001,6 @@ export namespace Prisma {
2012
2001
  */
2013
2002
  interface DriveFieldRefs {
2014
2003
  readonly id: FieldRef<"Drive", 'String'>
2015
- readonly slug: FieldRef<"Drive", 'String'>
2016
2004
  }
2017
2005
 
2018
2006
 
@@ -2375,7 +2363,7 @@ export namespace Prisma {
2375
2363
  id: string | null
2376
2364
  created: Date | null
2377
2365
  lastModified: Date | null
2378
- isDrive: boolean | null
2366
+ slug: string | null
2379
2367
  revision: string | null
2380
2368
  name: string | null
2381
2369
  initialState: string | null
@@ -2387,7 +2375,7 @@ export namespace Prisma {
2387
2375
  id: string | null
2388
2376
  created: Date | null
2389
2377
  lastModified: Date | null
2390
- isDrive: boolean | null
2378
+ slug: string | null
2391
2379
  revision: string | null
2392
2380
  name: string | null
2393
2381
  initialState: string | null
@@ -2399,7 +2387,7 @@ export namespace Prisma {
2399
2387
  id: number
2400
2388
  created: number
2401
2389
  lastModified: number
2402
- isDrive: number
2390
+ slug: number
2403
2391
  revision: number
2404
2392
  name: number
2405
2393
  initialState: number
@@ -2413,7 +2401,7 @@ export namespace Prisma {
2413
2401
  id?: true
2414
2402
  created?: true
2415
2403
  lastModified?: true
2416
- isDrive?: true
2404
+ slug?: true
2417
2405
  revision?: true
2418
2406
  name?: true
2419
2407
  initialState?: true
@@ -2425,7 +2413,7 @@ export namespace Prisma {
2425
2413
  id?: true
2426
2414
  created?: true
2427
2415
  lastModified?: true
2428
- isDrive?: true
2416
+ slug?: true
2429
2417
  revision?: true
2430
2418
  name?: true
2431
2419
  initialState?: true
@@ -2437,7 +2425,7 @@ export namespace Prisma {
2437
2425
  id?: true
2438
2426
  created?: true
2439
2427
  lastModified?: true
2440
- isDrive?: true
2428
+ slug?: true
2441
2429
  revision?: true
2442
2430
  name?: true
2443
2431
  initialState?: true
@@ -2522,7 +2510,7 @@ export namespace Prisma {
2522
2510
  id: string
2523
2511
  created: Date
2524
2512
  lastModified: Date
2525
- isDrive: boolean
2513
+ slug: string | null
2526
2514
  revision: string
2527
2515
  name: string | null
2528
2516
  initialState: string
@@ -2551,7 +2539,7 @@ export namespace Prisma {
2551
2539
  id?: boolean
2552
2540
  created?: boolean
2553
2541
  lastModified?: boolean
2554
- isDrive?: boolean
2542
+ slug?: boolean
2555
2543
  revision?: boolean
2556
2544
  name?: boolean
2557
2545
  initialState?: boolean
@@ -2567,7 +2555,7 @@ export namespace Prisma {
2567
2555
  id?: boolean
2568
2556
  created?: boolean
2569
2557
  lastModified?: boolean
2570
- isDrive?: boolean
2558
+ slug?: boolean
2571
2559
  revision?: boolean
2572
2560
  name?: boolean
2573
2561
  initialState?: boolean
@@ -2579,7 +2567,7 @@ export namespace Prisma {
2579
2567
  id?: boolean
2580
2568
  created?: boolean
2581
2569
  lastModified?: boolean
2582
- isDrive?: boolean
2570
+ slug?: boolean
2583
2571
  revision?: boolean
2584
2572
  name?: boolean
2585
2573
  initialState?: boolean
@@ -2606,7 +2594,7 @@ export namespace Prisma {
2606
2594
  id: string
2607
2595
  created: Date
2608
2596
  lastModified: Date
2609
- isDrive: boolean
2597
+ slug: string | null
2610
2598
  revision: string
2611
2599
  name: string | null
2612
2600
  initialState: string
@@ -3011,7 +2999,7 @@ export namespace Prisma {
3011
2999
  readonly id: FieldRef<"Document", 'String'>
3012
3000
  readonly created: FieldRef<"Document", 'DateTime'>
3013
3001
  readonly lastModified: FieldRef<"Document", 'DateTime'>
3014
- readonly isDrive: FieldRef<"Document", 'Boolean'>
3002
+ readonly slug: FieldRef<"Document", 'String'>
3015
3003
  readonly revision: FieldRef<"Document", 'String'>
3016
3004
  readonly name: FieldRef<"Document", 'String'>
3017
3005
  readonly initialState: FieldRef<"Document", 'String'>
@@ -7376,8 +7364,7 @@ export namespace Prisma {
7376
7364
 
7377
7365
 
7378
7366
  export const DriveScalarFieldEnum: {
7379
- id: 'id',
7380
- slug: 'slug'
7367
+ id: 'id'
7381
7368
  };
7382
7369
 
7383
7370
  export type DriveScalarFieldEnum = (typeof DriveScalarFieldEnum)[keyof typeof DriveScalarFieldEnum]
@@ -7387,7 +7374,7 @@ export namespace Prisma {
7387
7374
  id: 'id',
7388
7375
  created: 'created',
7389
7376
  lastModified: 'lastModified',
7390
- isDrive: 'isDrive',
7377
+ slug: 'slug',
7391
7378
  revision: 'revision',
7392
7379
  name: 'name',
7393
7380
  initialState: 'initialState',
@@ -7525,23 +7512,23 @@ export namespace Prisma {
7525
7512
 
7526
7513
 
7527
7514
  /**
7528
- * Reference to a field of type 'Boolean'
7515
+ * Reference to a field of type 'Int'
7529
7516
  */
7530
- export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
7517
+ export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>
7531
7518
 
7532
7519
 
7533
7520
 
7534
7521
  /**
7535
- * Reference to a field of type 'Int'
7522
+ * Reference to a field of type 'Int[]'
7536
7523
  */
7537
- export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>
7524
+ export type ListIntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int[]'>
7538
7525
 
7539
7526
 
7540
7527
 
7541
7528
  /**
7542
- * Reference to a field of type 'Int[]'
7529
+ * Reference to a field of type 'Boolean'
7543
7530
  */
7544
- export type ListIntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int[]'>
7531
+ export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
7545
7532
 
7546
7533
 
7547
7534
 
@@ -7588,28 +7575,24 @@ export namespace Prisma {
7588
7575
  OR?: DriveWhereInput[]
7589
7576
  NOT?: DriveWhereInput | DriveWhereInput[]
7590
7577
  id?: StringFilter<"Drive"> | string
7591
- slug?: StringFilter<"Drive"> | string
7592
7578
  driveDocuments?: DriveDocumentListRelationFilter
7593
7579
  }
7594
7580
 
7595
7581
  export type DriveOrderByWithRelationInput = {
7596
7582
  id?: SortOrder
7597
- slug?: SortOrder
7598
7583
  driveDocuments?: DriveDocumentOrderByRelationAggregateInput
7599
7584
  }
7600
7585
 
7601
7586
  export type DriveWhereUniqueInput = Prisma.AtLeast<{
7602
7587
  id?: string
7603
- slug?: string
7604
7588
  AND?: DriveWhereInput | DriveWhereInput[]
7605
7589
  OR?: DriveWhereInput[]
7606
7590
  NOT?: DriveWhereInput | DriveWhereInput[]
7607
7591
  driveDocuments?: DriveDocumentListRelationFilter
7608
- }, "id" | "slug">
7592
+ }, "id">
7609
7593
 
7610
7594
  export type DriveOrderByWithAggregationInput = {
7611
7595
  id?: SortOrder
7612
- slug?: SortOrder
7613
7596
  _count?: DriveCountOrderByAggregateInput
7614
7597
  _max?: DriveMaxOrderByAggregateInput
7615
7598
  _min?: DriveMinOrderByAggregateInput
@@ -7620,7 +7603,6 @@ export namespace Prisma {
7620
7603
  OR?: DriveScalarWhereWithAggregatesInput[]
7621
7604
  NOT?: DriveScalarWhereWithAggregatesInput | DriveScalarWhereWithAggregatesInput[]
7622
7605
  id?: StringWithAggregatesFilter<"Drive"> | string
7623
- slug?: StringWithAggregatesFilter<"Drive"> | string
7624
7606
  }
7625
7607
 
7626
7608
  export type DocumentWhereInput = {
@@ -7630,7 +7612,7 @@ export namespace Prisma {
7630
7612
  id?: StringFilter<"Document"> | string
7631
7613
  created?: DateTimeFilter<"Document"> | Date | string
7632
7614
  lastModified?: DateTimeFilter<"Document"> | Date | string
7633
- isDrive?: BoolFilter<"Document"> | boolean
7615
+ slug?: StringNullableFilter<"Document"> | string | null
7634
7616
  revision?: StringFilter<"Document"> | string
7635
7617
  name?: StringNullableFilter<"Document"> | string | null
7636
7618
  initialState?: StringFilter<"Document"> | string
@@ -7645,7 +7627,7 @@ export namespace Prisma {
7645
7627
  id?: SortOrder
7646
7628
  created?: SortOrder
7647
7629
  lastModified?: SortOrder
7648
- isDrive?: SortOrder
7630
+ slug?: SortOrderInput | SortOrder
7649
7631
  revision?: SortOrder
7650
7632
  name?: SortOrderInput | SortOrder
7651
7633
  initialState?: SortOrder
@@ -7658,12 +7640,12 @@ export namespace Prisma {
7658
7640
 
7659
7641
  export type DocumentWhereUniqueInput = Prisma.AtLeast<{
7660
7642
  id?: string
7643
+ slug?: string
7661
7644
  AND?: DocumentWhereInput | DocumentWhereInput[]
7662
7645
  OR?: DocumentWhereInput[]
7663
7646
  NOT?: DocumentWhereInput | DocumentWhereInput[]
7664
7647
  created?: DateTimeFilter<"Document"> | Date | string
7665
7648
  lastModified?: DateTimeFilter<"Document"> | Date | string
7666
- isDrive?: BoolFilter<"Document"> | boolean
7667
7649
  revision?: StringFilter<"Document"> | string
7668
7650
  name?: StringNullableFilter<"Document"> | string | null
7669
7651
  initialState?: StringFilter<"Document"> | string
@@ -7672,13 +7654,13 @@ export namespace Prisma {
7672
7654
  operations?: OperationListRelationFilter
7673
7655
  synchronizationUnits?: SynchronizationUnitListRelationFilter
7674
7656
  driveDocuments?: DriveDocumentListRelationFilter
7675
- }, "id">
7657
+ }, "id" | "slug">
7676
7658
 
7677
7659
  export type DocumentOrderByWithAggregationInput = {
7678
7660
  id?: SortOrder
7679
7661
  created?: SortOrder
7680
7662
  lastModified?: SortOrder
7681
- isDrive?: SortOrder
7663
+ slug?: SortOrderInput | SortOrder
7682
7664
  revision?: SortOrder
7683
7665
  name?: SortOrderInput | SortOrder
7684
7666
  initialState?: SortOrder
@@ -7696,7 +7678,7 @@ export namespace Prisma {
7696
7678
  id?: StringWithAggregatesFilter<"Document"> | string
7697
7679
  created?: DateTimeWithAggregatesFilter<"Document"> | Date | string
7698
7680
  lastModified?: DateTimeWithAggregatesFilter<"Document"> | Date | string
7699
- isDrive?: BoolWithAggregatesFilter<"Document"> | boolean
7681
+ slug?: StringNullableWithAggregatesFilter<"Document"> | string | null
7700
7682
  revision?: StringWithAggregatesFilter<"Document"> | string
7701
7683
  name?: StringNullableWithAggregatesFilter<"Document"> | string | null
7702
7684
  initialState?: StringWithAggregatesFilter<"Document"> | string
@@ -7982,48 +7964,41 @@ export namespace Prisma {
7982
7964
 
7983
7965
  export type DriveCreateInput = {
7984
7966
  id: string
7985
- slug: string
7986
7967
  driveDocuments?: DriveDocumentCreateNestedManyWithoutDriveInput
7987
7968
  }
7988
7969
 
7989
7970
  export type DriveUncheckedCreateInput = {
7990
7971
  id: string
7991
- slug: string
7992
7972
  driveDocuments?: DriveDocumentUncheckedCreateNestedManyWithoutDriveInput
7993
7973
  }
7994
7974
 
7995
7975
  export type DriveUpdateInput = {
7996
7976
  id?: StringFieldUpdateOperationsInput | string
7997
- slug?: StringFieldUpdateOperationsInput | string
7998
7977
  driveDocuments?: DriveDocumentUpdateManyWithoutDriveNestedInput
7999
7978
  }
8000
7979
 
8001
7980
  export type DriveUncheckedUpdateInput = {
8002
7981
  id?: StringFieldUpdateOperationsInput | string
8003
- slug?: StringFieldUpdateOperationsInput | string
8004
7982
  driveDocuments?: DriveDocumentUncheckedUpdateManyWithoutDriveNestedInput
8005
7983
  }
8006
7984
 
8007
7985
  export type DriveCreateManyInput = {
8008
7986
  id: string
8009
- slug: string
8010
7987
  }
8011
7988
 
8012
7989
  export type DriveUpdateManyMutationInput = {
8013
7990
  id?: StringFieldUpdateOperationsInput | string
8014
- slug?: StringFieldUpdateOperationsInput | string
8015
7991
  }
8016
7992
 
8017
7993
  export type DriveUncheckedUpdateManyInput = {
8018
7994
  id?: StringFieldUpdateOperationsInput | string
8019
- slug?: StringFieldUpdateOperationsInput | string
8020
7995
  }
8021
7996
 
8022
7997
  export type DocumentCreateInput = {
8023
7998
  id: string
8024
7999
  created?: Date | string
8025
8000
  lastModified?: Date | string
8026
- isDrive: boolean
8001
+ slug?: string | null
8027
8002
  revision: string
8028
8003
  name?: string | null
8029
8004
  initialState: string
@@ -8038,7 +8013,7 @@ export namespace Prisma {
8038
8013
  id: string
8039
8014
  created?: Date | string
8040
8015
  lastModified?: Date | string
8041
- isDrive: boolean
8016
+ slug?: string | null
8042
8017
  revision: string
8043
8018
  name?: string | null
8044
8019
  initialState: string
@@ -8053,7 +8028,7 @@ export namespace Prisma {
8053
8028
  id?: StringFieldUpdateOperationsInput | string
8054
8029
  created?: DateTimeFieldUpdateOperationsInput | Date | string
8055
8030
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
8056
- isDrive?: BoolFieldUpdateOperationsInput | boolean
8031
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
8057
8032
  revision?: StringFieldUpdateOperationsInput | string
8058
8033
  name?: NullableStringFieldUpdateOperationsInput | string | null
8059
8034
  initialState?: StringFieldUpdateOperationsInput | string
@@ -8068,7 +8043,7 @@ export namespace Prisma {
8068
8043
  id?: StringFieldUpdateOperationsInput | string
8069
8044
  created?: DateTimeFieldUpdateOperationsInput | Date | string
8070
8045
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
8071
- isDrive?: BoolFieldUpdateOperationsInput | boolean
8046
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
8072
8047
  revision?: StringFieldUpdateOperationsInput | string
8073
8048
  name?: NullableStringFieldUpdateOperationsInput | string | null
8074
8049
  initialState?: StringFieldUpdateOperationsInput | string
@@ -8083,7 +8058,7 @@ export namespace Prisma {
8083
8058
  id: string
8084
8059
  created?: Date | string
8085
8060
  lastModified?: Date | string
8086
- isDrive: boolean
8061
+ slug?: string | null
8087
8062
  revision: string
8088
8063
  name?: string | null
8089
8064
  initialState: string
@@ -8095,7 +8070,7 @@ export namespace Prisma {
8095
8070
  id?: StringFieldUpdateOperationsInput | string
8096
8071
  created?: DateTimeFieldUpdateOperationsInput | Date | string
8097
8072
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
8098
- isDrive?: BoolFieldUpdateOperationsInput | boolean
8073
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
8099
8074
  revision?: StringFieldUpdateOperationsInput | string
8100
8075
  name?: NullableStringFieldUpdateOperationsInput | string | null
8101
8076
  initialState?: StringFieldUpdateOperationsInput | string
@@ -8107,7 +8082,7 @@ export namespace Prisma {
8107
8082
  id?: StringFieldUpdateOperationsInput | string
8108
8083
  created?: DateTimeFieldUpdateOperationsInput | Date | string
8109
8084
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
8110
- isDrive?: BoolFieldUpdateOperationsInput | boolean
8085
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
8111
8086
  revision?: StringFieldUpdateOperationsInput | string
8112
8087
  name?: NullableStringFieldUpdateOperationsInput | string | null
8113
8088
  initialState?: StringFieldUpdateOperationsInput | string
@@ -8425,17 +8400,14 @@ export namespace Prisma {
8425
8400
 
8426
8401
  export type DriveCountOrderByAggregateInput = {
8427
8402
  id?: SortOrder
8428
- slug?: SortOrder
8429
8403
  }
8430
8404
 
8431
8405
  export type DriveMaxOrderByAggregateInput = {
8432
8406
  id?: SortOrder
8433
- slug?: SortOrder
8434
8407
  }
8435
8408
 
8436
8409
  export type DriveMinOrderByAggregateInput = {
8437
8410
  id?: SortOrder
8438
- slug?: SortOrder
8439
8411
  }
8440
8412
 
8441
8413
  export type StringWithAggregatesFilter<$PrismaModel = never> = {
@@ -8467,11 +8439,6 @@ export namespace Prisma {
8467
8439
  not?: NestedDateTimeFilter<$PrismaModel> | Date | string
8468
8440
  }
8469
8441
 
8470
- export type BoolFilter<$PrismaModel = never> = {
8471
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
8472
- not?: NestedBoolFilter<$PrismaModel> | boolean
8473
- }
8474
-
8475
8442
  export type StringNullableFilter<$PrismaModel = never> = {
8476
8443
  equals?: string | StringFieldRefInput<$PrismaModel> | null
8477
8444
  in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
@@ -8516,7 +8483,7 @@ export namespace Prisma {
8516
8483
  id?: SortOrder
8517
8484
  created?: SortOrder
8518
8485
  lastModified?: SortOrder
8519
- isDrive?: SortOrder
8486
+ slug?: SortOrder
8520
8487
  revision?: SortOrder
8521
8488
  name?: SortOrder
8522
8489
  initialState?: SortOrder
@@ -8528,7 +8495,7 @@ export namespace Prisma {
8528
8495
  id?: SortOrder
8529
8496
  created?: SortOrder
8530
8497
  lastModified?: SortOrder
8531
- isDrive?: SortOrder
8498
+ slug?: SortOrder
8532
8499
  revision?: SortOrder
8533
8500
  name?: SortOrder
8534
8501
  initialState?: SortOrder
@@ -8540,7 +8507,7 @@ export namespace Prisma {
8540
8507
  id?: SortOrder
8541
8508
  created?: SortOrder
8542
8509
  lastModified?: SortOrder
8543
- isDrive?: SortOrder
8510
+ slug?: SortOrder
8544
8511
  revision?: SortOrder
8545
8512
  name?: SortOrder
8546
8513
  initialState?: SortOrder
@@ -8562,14 +8529,6 @@ export namespace Prisma {
8562
8529
  _max?: NestedDateTimeFilter<$PrismaModel>
8563
8530
  }
8564
8531
 
8565
- export type BoolWithAggregatesFilter<$PrismaModel = never> = {
8566
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
8567
- not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
8568
- _count?: NestedIntFilter<$PrismaModel>
8569
- _min?: NestedBoolFilter<$PrismaModel>
8570
- _max?: NestedBoolFilter<$PrismaModel>
8571
- }
8572
-
8573
8532
  export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
8574
8533
  equals?: string | StringFieldRefInput<$PrismaModel> | null
8575
8534
  in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
@@ -8959,10 +8918,6 @@ export namespace Prisma {
8959
8918
  set?: Date | string
8960
8919
  }
8961
8920
 
8962
- export type BoolFieldUpdateOperationsInput = {
8963
- set?: boolean
8964
- }
8965
-
8966
8921
  export type NullableStringFieldUpdateOperationsInput = {
8967
8922
  set?: string | null
8968
8923
  }
@@ -9292,11 +9247,6 @@ export namespace Prisma {
9292
9247
  not?: NestedDateTimeFilter<$PrismaModel> | Date | string
9293
9248
  }
9294
9249
 
9295
- export type NestedBoolFilter<$PrismaModel = never> = {
9296
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
9297
- not?: NestedBoolFilter<$PrismaModel> | boolean
9298
- }
9299
-
9300
9250
  export type NestedStringNullableFilter<$PrismaModel = never> = {
9301
9251
  equals?: string | StringFieldRefInput<$PrismaModel> | null
9302
9252
  in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
@@ -9325,14 +9275,6 @@ export namespace Prisma {
9325
9275
  _max?: NestedDateTimeFilter<$PrismaModel>
9326
9276
  }
9327
9277
 
9328
- export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
9329
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
9330
- not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
9331
- _count?: NestedIntFilter<$PrismaModel>
9332
- _min?: NestedBoolFilter<$PrismaModel>
9333
- _max?: NestedBoolFilter<$PrismaModel>
9334
- }
9335
-
9336
9278
  export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
9337
9279
  equals?: string | StringFieldRefInput<$PrismaModel> | null
9338
9280
  in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
@@ -9651,12 +9593,10 @@ export namespace Prisma {
9651
9593
 
9652
9594
  export type DriveCreateWithoutDriveDocumentsInput = {
9653
9595
  id: string
9654
- slug: string
9655
9596
  }
9656
9597
 
9657
9598
  export type DriveUncheckedCreateWithoutDriveDocumentsInput = {
9658
9599
  id: string
9659
- slug: string
9660
9600
  }
9661
9601
 
9662
9602
  export type DriveCreateOrConnectWithoutDriveDocumentsInput = {
@@ -9668,7 +9608,7 @@ export namespace Prisma {
9668
9608
  id: string
9669
9609
  created?: Date | string
9670
9610
  lastModified?: Date | string
9671
- isDrive: boolean
9611
+ slug?: string | null
9672
9612
  revision: string
9673
9613
  name?: string | null
9674
9614
  initialState: string
@@ -9682,7 +9622,7 @@ export namespace Prisma {
9682
9622
  id: string
9683
9623
  created?: Date | string
9684
9624
  lastModified?: Date | string
9685
- isDrive: boolean
9625
+ slug?: string | null
9686
9626
  revision: string
9687
9627
  name?: string | null
9688
9628
  initialState: string
@@ -9710,12 +9650,10 @@ export namespace Prisma {
9710
9650
 
9711
9651
  export type DriveUpdateWithoutDriveDocumentsInput = {
9712
9652
  id?: StringFieldUpdateOperationsInput | string
9713
- slug?: StringFieldUpdateOperationsInput | string
9714
9653
  }
9715
9654
 
9716
9655
  export type DriveUncheckedUpdateWithoutDriveDocumentsInput = {
9717
9656
  id?: StringFieldUpdateOperationsInput | string
9718
- slug?: StringFieldUpdateOperationsInput | string
9719
9657
  }
9720
9658
 
9721
9659
  export type DocumentUpsertWithoutDriveDocumentsInput = {
@@ -9733,7 +9671,7 @@ export namespace Prisma {
9733
9671
  id?: StringFieldUpdateOperationsInput | string
9734
9672
  created?: DateTimeFieldUpdateOperationsInput | Date | string
9735
9673
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
9736
- isDrive?: BoolFieldUpdateOperationsInput | boolean
9674
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
9737
9675
  revision?: StringFieldUpdateOperationsInput | string
9738
9676
  name?: NullableStringFieldUpdateOperationsInput | string | null
9739
9677
  initialState?: StringFieldUpdateOperationsInput | string
@@ -9747,7 +9685,7 @@ export namespace Prisma {
9747
9685
  id?: StringFieldUpdateOperationsInput | string
9748
9686
  created?: DateTimeFieldUpdateOperationsInput | Date | string
9749
9687
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
9750
- isDrive?: BoolFieldUpdateOperationsInput | boolean
9688
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
9751
9689
  revision?: StringFieldUpdateOperationsInput | string
9752
9690
  name?: NullableStringFieldUpdateOperationsInput | string | null
9753
9691
  initialState?: StringFieldUpdateOperationsInput | string
@@ -9761,7 +9699,7 @@ export namespace Prisma {
9761
9699
  id: string
9762
9700
  created?: Date | string
9763
9701
  lastModified?: Date | string
9764
- isDrive: boolean
9702
+ slug?: string | null
9765
9703
  revision: string
9766
9704
  name?: string | null
9767
9705
  initialState: string
@@ -9775,7 +9713,7 @@ export namespace Prisma {
9775
9713
  id: string
9776
9714
  created?: Date | string
9777
9715
  lastModified?: Date | string
9778
- isDrive: boolean
9716
+ slug?: string | null
9779
9717
  revision: string
9780
9718
  name?: string | null
9781
9719
  initialState: string
@@ -9852,7 +9790,7 @@ export namespace Prisma {
9852
9790
  id?: StringFieldUpdateOperationsInput | string
9853
9791
  created?: DateTimeFieldUpdateOperationsInput | Date | string
9854
9792
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
9855
- isDrive?: BoolFieldUpdateOperationsInput | boolean
9793
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
9856
9794
  revision?: StringFieldUpdateOperationsInput | string
9857
9795
  name?: NullableStringFieldUpdateOperationsInput | string | null
9858
9796
  initialState?: StringFieldUpdateOperationsInput | string
@@ -9866,7 +9804,7 @@ export namespace Prisma {
9866
9804
  id?: StringFieldUpdateOperationsInput | string
9867
9805
  created?: DateTimeFieldUpdateOperationsInput | Date | string
9868
9806
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
9869
- isDrive?: BoolFieldUpdateOperationsInput | boolean
9807
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
9870
9808
  revision?: StringFieldUpdateOperationsInput | string
9871
9809
  name?: NullableStringFieldUpdateOperationsInput | string | null
9872
9810
  initialState?: StringFieldUpdateOperationsInput | string
@@ -9934,7 +9872,7 @@ export namespace Prisma {
9934
9872
  id: string
9935
9873
  created?: Date | string
9936
9874
  lastModified?: Date | string
9937
- isDrive: boolean
9875
+ slug?: string | null
9938
9876
  revision: string
9939
9877
  name?: string | null
9940
9878
  initialState: string
@@ -9948,7 +9886,7 @@ export namespace Prisma {
9948
9886
  id: string
9949
9887
  created?: Date | string
9950
9888
  lastModified?: Date | string
9951
- isDrive: boolean
9889
+ slug?: string | null
9952
9890
  revision: string
9953
9891
  name?: string | null
9954
9892
  initialState: string
@@ -10024,7 +9962,7 @@ export namespace Prisma {
10024
9962
  id?: StringFieldUpdateOperationsInput | string
10025
9963
  created?: DateTimeFieldUpdateOperationsInput | Date | string
10026
9964
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
10027
- isDrive?: BoolFieldUpdateOperationsInput | boolean
9965
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
10028
9966
  revision?: StringFieldUpdateOperationsInput | string
10029
9967
  name?: NullableStringFieldUpdateOperationsInput | string | null
10030
9968
  initialState?: StringFieldUpdateOperationsInput | string
@@ -10038,7 +9976,7 @@ export namespace Prisma {
10038
9976
  id?: StringFieldUpdateOperationsInput | string
10039
9977
  created?: DateTimeFieldUpdateOperationsInput | Date | string
10040
9978
  lastModified?: DateTimeFieldUpdateOperationsInput | Date | string
10041
- isDrive?: BoolFieldUpdateOperationsInput | boolean
9979
+ slug?: NullableStringFieldUpdateOperationsInput | string | null
10042
9980
  revision?: StringFieldUpdateOperationsInput | string
10043
9981
  name?: NullableStringFieldUpdateOperationsInput | string | null
10044
9982
  initialState?: StringFieldUpdateOperationsInput | string