@a_team/prisma 3.31.2-win → 3.31.3-linux-debian

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.
@@ -15322,6 +15322,7 @@ export namespace Prisma {
15322
15322
 
15323
15323
 
15324
15324
  export type AdminNoteSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
15325
+ id?: boolean
15325
15326
  text?: boolean
15326
15327
  category?: boolean
15327
15328
  createdAt?: boolean
@@ -15331,6 +15332,7 @@ export namespace Prisma {
15331
15332
 
15332
15333
 
15333
15334
  export type AdminNoteSelectScalar = {
15335
+ id?: boolean
15334
15336
  text?: boolean
15335
15337
  category?: boolean
15336
15338
  createdAt?: boolean
@@ -15343,6 +15345,7 @@ export namespace Prisma {
15343
15345
  name: "AdminNote"
15344
15346
  objects: {}
15345
15347
  scalars: {
15348
+ id: string | null
15346
15349
  text: string
15347
15350
  category: string | null
15348
15351
  createdAt: Date | null
@@ -15363,6 +15366,7 @@ export namespace Prisma {
15363
15366
  * Fields of the AdminNote model
15364
15367
  */
15365
15368
  interface AdminNoteFieldRefs {
15369
+ readonly id: FieldRef<"AdminNote", 'String'>
15366
15370
  readonly text: FieldRef<"AdminNote", 'String'>
15367
15371
  readonly category: FieldRef<"AdminNote", 'String'>
15368
15372
  readonly createdAt: FieldRef<"AdminNote", 'DateTime'>
@@ -82668,6 +82672,7 @@ export namespace Prisma {
82668
82672
  }
82669
82673
 
82670
82674
  export type AdminNoteObjectEqualityInput = {
82675
+ id?: string | null
82671
82676
  text: string
82672
82677
  category?: string | null
82673
82678
  createdAt?: Date | string | null
@@ -94083,6 +94088,7 @@ export namespace Prisma {
94083
94088
  }
94084
94089
 
94085
94090
  export type AdminNoteCreateInput = {
94091
+ id?: string | null
94086
94092
  text: string
94087
94093
  category?: string | null
94088
94094
  createdAt?: Date | string | null
@@ -105657,6 +105663,7 @@ export namespace Prisma {
105657
105663
  AND?: AdminNoteWhereInput | AdminNoteWhereInput[]
105658
105664
  OR?: AdminNoteWhereInput[]
105659
105665
  NOT?: AdminNoteWhereInput | AdminNoteWhereInput[]
105666
+ id?: StringNullableFilter<"AdminNote"> | string | null
105660
105667
  text?: StringFilter<"AdminNote"> | string
105661
105668
  category?: StringNullableFilter<"AdminNote"> | string | null
105662
105669
  createdAt?: DateTimeNullableFilter<"AdminNote"> | Date | string | null
@@ -106790,6 +106797,7 @@ export namespace Prisma {
106790
106797
  }
106791
106798
 
106792
106799
  export type AdminNoteUpdateInput = {
106800
+ id?: NullableStringFieldUpdateOperationsInput | string | null
106793
106801
  text?: StringFieldUpdateOperationsInput | string
106794
106802
  category?: NullableStringFieldUpdateOperationsInput | string | null
106795
106803
  createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null