@excali-boards/boards-api-client 1.1.70 → 1.1.72

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.
@@ -23627,6 +23627,7 @@ export namespace Prisma {
23627
23627
  token: string | null
23628
23628
  device: $Enums.Device | null
23629
23629
  locationEncrypted: string | null
23630
+ isQrLogin: boolean | null
23630
23631
  userId: string | null
23631
23632
  createdAt: Date | null
23632
23633
  expiresAt: Date | null
@@ -23638,6 +23639,7 @@ export namespace Prisma {
23638
23639
  token: string | null
23639
23640
  device: $Enums.Device | null
23640
23641
  locationEncrypted: string | null
23642
+ isQrLogin: boolean | null
23641
23643
  userId: string | null
23642
23644
  createdAt: Date | null
23643
23645
  expiresAt: Date | null
@@ -23649,6 +23651,7 @@ export namespace Prisma {
23649
23651
  token: number
23650
23652
  device: number
23651
23653
  locationEncrypted: number
23654
+ isQrLogin: number
23652
23655
  userId: number
23653
23656
  createdAt: number
23654
23657
  expiresAt: number
@@ -23662,6 +23665,7 @@ export namespace Prisma {
23662
23665
  token?: true
23663
23666
  device?: true
23664
23667
  locationEncrypted?: true
23668
+ isQrLogin?: true
23665
23669
  userId?: true
23666
23670
  createdAt?: true
23667
23671
  expiresAt?: true
@@ -23673,6 +23677,7 @@ export namespace Prisma {
23673
23677
  token?: true
23674
23678
  device?: true
23675
23679
  locationEncrypted?: true
23680
+ isQrLogin?: true
23676
23681
  userId?: true
23677
23682
  createdAt?: true
23678
23683
  expiresAt?: true
@@ -23684,6 +23689,7 @@ export namespace Prisma {
23684
23689
  token?: true
23685
23690
  device?: true
23686
23691
  locationEncrypted?: true
23692
+ isQrLogin?: true
23687
23693
  userId?: true
23688
23694
  createdAt?: true
23689
23695
  expiresAt?: true
@@ -23768,6 +23774,7 @@ export namespace Prisma {
23768
23774
  token: string
23769
23775
  device: $Enums.Device | null
23770
23776
  locationEncrypted: string | null
23777
+ isQrLogin: boolean
23771
23778
  userId: string
23772
23779
  createdAt: Date
23773
23780
  expiresAt: Date
@@ -23796,6 +23803,7 @@ export namespace Prisma {
23796
23803
  token?: boolean
23797
23804
  device?: boolean
23798
23805
  locationEncrypted?: boolean
23806
+ isQrLogin?: boolean
23799
23807
  userId?: boolean
23800
23808
  createdAt?: boolean
23801
23809
  expiresAt?: boolean
@@ -23808,6 +23816,7 @@ export namespace Prisma {
23808
23816
  token?: boolean
23809
23817
  device?: boolean
23810
23818
  locationEncrypted?: boolean
23819
+ isQrLogin?: boolean
23811
23820
  userId?: boolean
23812
23821
  createdAt?: boolean
23813
23822
  expiresAt?: boolean
@@ -23820,6 +23829,7 @@ export namespace Prisma {
23820
23829
  token?: boolean
23821
23830
  device?: boolean
23822
23831
  locationEncrypted?: boolean
23832
+ isQrLogin?: boolean
23823
23833
  userId?: boolean
23824
23834
  createdAt?: boolean
23825
23835
  expiresAt?: boolean
@@ -23832,13 +23842,14 @@ export namespace Prisma {
23832
23842
  token?: boolean
23833
23843
  device?: boolean
23834
23844
  locationEncrypted?: boolean
23845
+ isQrLogin?: boolean
23835
23846
  userId?: boolean
23836
23847
  createdAt?: boolean
23837
23848
  expiresAt?: boolean
23838
23849
  lastUsed?: boolean
23839
23850
  }
23840
23851
 
23841
- export type SessionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"dbId" | "token" | "device" | "locationEncrypted" | "userId" | "createdAt" | "expiresAt" | "lastUsed", ExtArgs["result"]["session"]>
23852
+ export type SessionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"dbId" | "token" | "device" | "locationEncrypted" | "isQrLogin" | "userId" | "createdAt" | "expiresAt" | "lastUsed", ExtArgs["result"]["session"]>
23842
23853
  export type SessionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
23843
23854
  user?: boolean | UserDefaultArgs<ExtArgs>
23844
23855
  }
@@ -23859,6 +23870,7 @@ export namespace Prisma {
23859
23870
  token: string
23860
23871
  device: $Enums.Device | null
23861
23872
  locationEncrypted: string | null
23873
+ isQrLogin: boolean
23862
23874
  userId: string
23863
23875
  createdAt: Date
23864
23876
  expiresAt: Date
@@ -24291,6 +24303,7 @@ export namespace Prisma {
24291
24303
  readonly token: FieldRef<"Session", 'String'>
24292
24304
  readonly device: FieldRef<"Session", 'Device'>
24293
24305
  readonly locationEncrypted: FieldRef<"Session", 'String'>
24306
+ readonly isQrLogin: FieldRef<"Session", 'Boolean'>
24294
24307
  readonly userId: FieldRef<"Session", 'String'>
24295
24308
  readonly createdAt: FieldRef<"Session", 'DateTime'>
24296
24309
  readonly expiresAt: FieldRef<"Session", 'DateTime'>
@@ -26009,6 +26022,7 @@ export namespace Prisma {
26009
26022
  token: 'token',
26010
26023
  device: 'device',
26011
26024
  locationEncrypted: 'locationEncrypted',
26025
+ isQrLogin: 'isQrLogin',
26012
26026
  userId: 'userId',
26013
26027
  createdAt: 'createdAt',
26014
26028
  expiresAt: 'expiresAt',
@@ -27534,6 +27548,7 @@ export namespace Prisma {
27534
27548
  token?: StringFilter<"Session"> | string
27535
27549
  device?: EnumDeviceNullableFilter<"Session"> | $Enums.Device | null
27536
27550
  locationEncrypted?: StringNullableFilter<"Session"> | string | null
27551
+ isQrLogin?: BoolFilter<"Session"> | boolean
27537
27552
  userId?: StringFilter<"Session"> | string
27538
27553
  createdAt?: DateTimeFilter<"Session"> | Date | string
27539
27554
  expiresAt?: DateTimeFilter<"Session"> | Date | string
@@ -27546,6 +27561,7 @@ export namespace Prisma {
27546
27561
  token?: SortOrder
27547
27562
  device?: SortOrderInput | SortOrder
27548
27563
  locationEncrypted?: SortOrderInput | SortOrder
27564
+ isQrLogin?: SortOrder
27549
27565
  userId?: SortOrder
27550
27566
  createdAt?: SortOrder
27551
27567
  expiresAt?: SortOrder
@@ -27561,6 +27577,7 @@ export namespace Prisma {
27561
27577
  NOT?: SessionWhereInput | SessionWhereInput[]
27562
27578
  device?: EnumDeviceNullableFilter<"Session"> | $Enums.Device | null
27563
27579
  locationEncrypted?: StringNullableFilter<"Session"> | string | null
27580
+ isQrLogin?: BoolFilter<"Session"> | boolean
27564
27581
  userId?: StringFilter<"Session"> | string
27565
27582
  createdAt?: DateTimeFilter<"Session"> | Date | string
27566
27583
  expiresAt?: DateTimeFilter<"Session"> | Date | string
@@ -27573,6 +27590,7 @@ export namespace Prisma {
27573
27590
  token?: SortOrder
27574
27591
  device?: SortOrderInput | SortOrder
27575
27592
  locationEncrypted?: SortOrderInput | SortOrder
27593
+ isQrLogin?: SortOrder
27576
27594
  userId?: SortOrder
27577
27595
  createdAt?: SortOrder
27578
27596
  expiresAt?: SortOrder
@@ -27590,6 +27608,7 @@ export namespace Prisma {
27590
27608
  token?: StringWithAggregatesFilter<"Session"> | string
27591
27609
  device?: EnumDeviceNullableWithAggregatesFilter<"Session"> | $Enums.Device | null
27592
27610
  locationEncrypted?: StringNullableWithAggregatesFilter<"Session"> | string | null
27611
+ isQrLogin?: BoolWithAggregatesFilter<"Session"> | boolean
27593
27612
  userId?: StringWithAggregatesFilter<"Session"> | string
27594
27613
  createdAt?: DateTimeWithAggregatesFilter<"Session"> | Date | string
27595
27614
  expiresAt?: DateTimeWithAggregatesFilter<"Session"> | Date | string
@@ -29009,6 +29028,7 @@ export namespace Prisma {
29009
29028
  token: string
29010
29029
  device?: $Enums.Device | null
29011
29030
  locationEncrypted?: string | null
29031
+ isQrLogin?: boolean
29012
29032
  createdAt?: Date | string
29013
29033
  expiresAt: Date | string
29014
29034
  lastUsed?: Date | string
@@ -29020,6 +29040,7 @@ export namespace Prisma {
29020
29040
  token: string
29021
29041
  device?: $Enums.Device | null
29022
29042
  locationEncrypted?: string | null
29043
+ isQrLogin?: boolean
29023
29044
  userId: string
29024
29045
  createdAt?: Date | string
29025
29046
  expiresAt: Date | string
@@ -29031,6 +29052,7 @@ export namespace Prisma {
29031
29052
  token?: StringFieldUpdateOperationsInput | string
29032
29053
  device?: NullableEnumDeviceFieldUpdateOperationsInput | $Enums.Device | null
29033
29054
  locationEncrypted?: NullableStringFieldUpdateOperationsInput | string | null
29055
+ isQrLogin?: BoolFieldUpdateOperationsInput | boolean
29034
29056
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
29035
29057
  expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
29036
29058
  lastUsed?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -29042,6 +29064,7 @@ export namespace Prisma {
29042
29064
  token?: StringFieldUpdateOperationsInput | string
29043
29065
  device?: NullableEnumDeviceFieldUpdateOperationsInput | $Enums.Device | null
29044
29066
  locationEncrypted?: NullableStringFieldUpdateOperationsInput | string | null
29067
+ isQrLogin?: BoolFieldUpdateOperationsInput | boolean
29045
29068
  userId?: StringFieldUpdateOperationsInput | string
29046
29069
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
29047
29070
  expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -29053,6 +29076,7 @@ export namespace Prisma {
29053
29076
  token: string
29054
29077
  device?: $Enums.Device | null
29055
29078
  locationEncrypted?: string | null
29079
+ isQrLogin?: boolean
29056
29080
  userId: string
29057
29081
  createdAt?: Date | string
29058
29082
  expiresAt: Date | string
@@ -29064,6 +29088,7 @@ export namespace Prisma {
29064
29088
  token?: StringFieldUpdateOperationsInput | string
29065
29089
  device?: NullableEnumDeviceFieldUpdateOperationsInput | $Enums.Device | null
29066
29090
  locationEncrypted?: NullableStringFieldUpdateOperationsInput | string | null
29091
+ isQrLogin?: BoolFieldUpdateOperationsInput | boolean
29067
29092
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
29068
29093
  expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
29069
29094
  lastUsed?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -29074,6 +29099,7 @@ export namespace Prisma {
29074
29099
  token?: StringFieldUpdateOperationsInput | string
29075
29100
  device?: NullableEnumDeviceFieldUpdateOperationsInput | $Enums.Device | null
29076
29101
  locationEncrypted?: NullableStringFieldUpdateOperationsInput | string | null
29102
+ isQrLogin?: BoolFieldUpdateOperationsInput | boolean
29077
29103
  userId?: StringFieldUpdateOperationsInput | string
29078
29104
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
29079
29105
  expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -30329,6 +30355,7 @@ export namespace Prisma {
30329
30355
  token?: SortOrder
30330
30356
  device?: SortOrder
30331
30357
  locationEncrypted?: SortOrder
30358
+ isQrLogin?: SortOrder
30332
30359
  userId?: SortOrder
30333
30360
  createdAt?: SortOrder
30334
30361
  expiresAt?: SortOrder
@@ -30340,6 +30367,7 @@ export namespace Prisma {
30340
30367
  token?: SortOrder
30341
30368
  device?: SortOrder
30342
30369
  locationEncrypted?: SortOrder
30370
+ isQrLogin?: SortOrder
30343
30371
  userId?: SortOrder
30344
30372
  createdAt?: SortOrder
30345
30373
  expiresAt?: SortOrder
@@ -30351,6 +30379,7 @@ export namespace Prisma {
30351
30379
  token?: SortOrder
30352
30380
  device?: SortOrder
30353
30381
  locationEncrypted?: SortOrder
30382
+ isQrLogin?: SortOrder
30354
30383
  userId?: SortOrder
30355
30384
  createdAt?: SortOrder
30356
30385
  expiresAt?: SortOrder
@@ -35267,6 +35296,7 @@ export namespace Prisma {
35267
35296
  token: string
35268
35297
  device?: $Enums.Device | null
35269
35298
  locationEncrypted?: string | null
35299
+ isQrLogin?: boolean
35270
35300
  createdAt?: Date | string
35271
35301
  expiresAt: Date | string
35272
35302
  lastUsed?: Date | string
@@ -35277,6 +35307,7 @@ export namespace Prisma {
35277
35307
  token: string
35278
35308
  device?: $Enums.Device | null
35279
35309
  locationEncrypted?: string | null
35310
+ isQrLogin?: boolean
35280
35311
  createdAt?: Date | string
35281
35312
  expiresAt: Date | string
35282
35313
  lastUsed?: Date | string
@@ -35537,6 +35568,7 @@ export namespace Prisma {
35537
35568
  token?: StringFilter<"Session"> | string
35538
35569
  device?: EnumDeviceNullableFilter<"Session"> | $Enums.Device | null
35539
35570
  locationEncrypted?: StringNullableFilter<"Session"> | string | null
35571
+ isQrLogin?: BoolFilter<"Session"> | boolean
35540
35572
  userId?: StringFilter<"Session"> | string
35541
35573
  createdAt?: DateTimeFilter<"Session"> | Date | string
35542
35574
  expiresAt?: DateTimeFilter<"Session"> | Date | string
@@ -36352,6 +36384,7 @@ export namespace Prisma {
36352
36384
  token: string
36353
36385
  device?: $Enums.Device | null
36354
36386
  locationEncrypted?: string | null
36387
+ isQrLogin?: boolean
36355
36388
  createdAt?: Date | string
36356
36389
  expiresAt: Date | string
36357
36390
  lastUsed?: Date | string
@@ -36515,6 +36548,7 @@ export namespace Prisma {
36515
36548
  token?: StringFieldUpdateOperationsInput | string
36516
36549
  device?: NullableEnumDeviceFieldUpdateOperationsInput | $Enums.Device | null
36517
36550
  locationEncrypted?: NullableStringFieldUpdateOperationsInput | string | null
36551
+ isQrLogin?: BoolFieldUpdateOperationsInput | boolean
36518
36552
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
36519
36553
  expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
36520
36554
  lastUsed?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -36525,6 +36559,7 @@ export namespace Prisma {
36525
36559
  token?: StringFieldUpdateOperationsInput | string
36526
36560
  device?: NullableEnumDeviceFieldUpdateOperationsInput | $Enums.Device | null
36527
36561
  locationEncrypted?: NullableStringFieldUpdateOperationsInput | string | null
36562
+ isQrLogin?: BoolFieldUpdateOperationsInput | boolean
36528
36563
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
36529
36564
  expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
36530
36565
  lastUsed?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -36535,6 +36570,7 @@ export namespace Prisma {
36535
36570
  token?: StringFieldUpdateOperationsInput | string
36536
36571
  device?: NullableEnumDeviceFieldUpdateOperationsInput | $Enums.Device | null
36537
36572
  locationEncrypted?: NullableStringFieldUpdateOperationsInput | string | null
36573
+ isQrLogin?: BoolFieldUpdateOperationsInput | boolean
36538
36574
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
36539
36575
  expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
36540
36576
  lastUsed?: DateTimeFieldUpdateOperationsInput | Date | string