zele 0.1.3 → 0.2.0

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 (64) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +112 -0
  3. package/dist/api-utils.d.ts +6 -0
  4. package/dist/api-utils.js +52 -0
  5. package/dist/api-utils.js.map +1 -0
  6. package/dist/auth.d.ts +16 -0
  7. package/dist/auth.js +74 -5
  8. package/dist/auth.js.map +1 -1
  9. package/dist/calendar-client.d.ts +135 -0
  10. package/dist/calendar-client.js +498 -0
  11. package/dist/calendar-client.js.map +1 -0
  12. package/dist/calendar-time.d.ts +24 -0
  13. package/dist/calendar-time.js +245 -0
  14. package/dist/calendar-time.js.map +1 -0
  15. package/dist/cli.js +5 -3
  16. package/dist/cli.js.map +1 -1
  17. package/dist/commands/auth-cmd.js +5 -5
  18. package/dist/commands/auth-cmd.js.map +1 -1
  19. package/dist/commands/calendar.d.ts +2 -0
  20. package/dist/commands/calendar.js +563 -0
  21. package/dist/commands/calendar.js.map +1 -0
  22. package/dist/generated/browser.d.ts +10 -0
  23. package/dist/generated/client.d.ts +10 -0
  24. package/dist/generated/internal/class.d.ts +22 -0
  25. package/dist/generated/internal/class.js +2 -2
  26. package/dist/generated/internal/class.js.map +1 -1
  27. package/dist/generated/internal/prismaNamespace.d.ts +174 -1
  28. package/dist/generated/internal/prismaNamespace.js +21 -0
  29. package/dist/generated/internal/prismaNamespace.js.map +1 -1
  30. package/dist/generated/internal/prismaNamespaceBrowser.d.ts +23 -0
  31. package/dist/generated/internal/prismaNamespaceBrowser.js +21 -0
  32. package/dist/generated/internal/prismaNamespaceBrowser.js.map +1 -1
  33. package/dist/generated/models/accounts.d.ts +281 -0
  34. package/dist/generated/models/calendar_events.d.ts +1433 -0
  35. package/dist/generated/models/calendar_events.js +2 -0
  36. package/dist/generated/models/calendar_events.js.map +1 -0
  37. package/dist/generated/models/calendar_lists.d.ts +1131 -0
  38. package/dist/generated/models/calendar_lists.js +2 -0
  39. package/dist/generated/models/calendar_lists.js.map +1 -0
  40. package/dist/generated/models.d.ts +2 -0
  41. package/dist/gmail-cache.d.ts +22 -0
  42. package/dist/gmail-cache.js +76 -0
  43. package/dist/gmail-cache.js.map +1 -1
  44. package/dist/gmail-client.js +1 -48
  45. package/dist/gmail-client.js.map +1 -1
  46. package/dist/output.d.ts +11 -0
  47. package/dist/output.js +42 -0
  48. package/dist/output.js.map +1 -1
  49. package/package.json +4 -2
  50. package/schema.prisma +39 -6
  51. package/scripts/test-device-code-clients.ts +186 -0
  52. package/scripts/test-micropython-scopes.ts +72 -0
  53. package/scripts/test-oauth-clients.ts +257 -0
  54. package/src/api-utils.ts +60 -0
  55. package/src/auth.ts +92 -5
  56. package/src/calendar-client.ts +758 -0
  57. package/src/calendar-time.ts +299 -0
  58. package/src/cli.ts +5 -3
  59. package/src/commands/auth-cmd.ts +5 -5
  60. package/src/commands/calendar.ts +634 -0
  61. package/src/gmail-cache.ts +96 -0
  62. package/src/gmail-client.ts +1 -57
  63. package/src/output.ts +51 -0
  64. package/src/schema.sql +22 -0
@@ -145,6 +145,8 @@ export type accountsWhereInput = {
145
145
  label_counts?: Prisma.XOR<Prisma.Label_countsNullableScalarRelationFilter, Prisma.label_countsWhereInput> | null;
146
146
  profiles?: Prisma.XOR<Prisma.ProfilesNullableScalarRelationFilter, Prisma.profilesWhereInput> | null;
147
147
  sync_states?: Prisma.Sync_statesListRelationFilter;
148
+ calendar_lists?: Prisma.XOR<Prisma.Calendar_listsNullableScalarRelationFilter, Prisma.calendar_listsWhereInput> | null;
149
+ calendar_events?: Prisma.Calendar_eventsListRelationFilter;
148
150
  };
149
151
  export type accountsOrderByWithRelationInput = {
150
152
  email?: Prisma.SortOrder;
@@ -158,6 +160,8 @@ export type accountsOrderByWithRelationInput = {
158
160
  label_counts?: Prisma.label_countsOrderByWithRelationInput;
159
161
  profiles?: Prisma.profilesOrderByWithRelationInput;
160
162
  sync_states?: Prisma.sync_statesOrderByRelationAggregateInput;
163
+ calendar_lists?: Prisma.calendar_listsOrderByWithRelationInput;
164
+ calendar_events?: Prisma.calendar_eventsOrderByRelationAggregateInput;
161
165
  };
162
166
  export type accountsWhereUniqueInput = Prisma.AtLeast<{
163
167
  email?: string;
@@ -174,6 +178,8 @@ export type accountsWhereUniqueInput = Prisma.AtLeast<{
174
178
  label_counts?: Prisma.XOR<Prisma.Label_countsNullableScalarRelationFilter, Prisma.label_countsWhereInput> | null;
175
179
  profiles?: Prisma.XOR<Prisma.ProfilesNullableScalarRelationFilter, Prisma.profilesWhereInput> | null;
176
180
  sync_states?: Prisma.Sync_statesListRelationFilter;
181
+ calendar_lists?: Prisma.XOR<Prisma.Calendar_listsNullableScalarRelationFilter, Prisma.calendar_listsWhereInput> | null;
182
+ calendar_events?: Prisma.Calendar_eventsListRelationFilter;
177
183
  }, "email">;
178
184
  export type accountsOrderByWithAggregationInput = {
179
185
  email?: Prisma.SortOrder;
@@ -207,6 +213,8 @@ export type accountsCreateInput = {
207
213
  label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
208
214
  profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
209
215
  sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
216
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
217
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
210
218
  };
211
219
  export type accountsUncheckedCreateInput = {
212
220
  email: string;
@@ -220,6 +228,8 @@ export type accountsUncheckedCreateInput = {
220
228
  label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
221
229
  profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
222
230
  sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
231
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
232
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
223
233
  };
224
234
  export type accountsUpdateInput = {
225
235
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -233,6 +243,8 @@ export type accountsUpdateInput = {
233
243
  label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
234
244
  profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
235
245
  sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
246
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
247
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
236
248
  };
237
249
  export type accountsUncheckedUpdateInput = {
238
250
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -246,6 +258,8 @@ export type accountsUncheckedUpdateInput = {
246
258
  label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
247
259
  profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
248
260
  sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
261
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
262
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
249
263
  };
250
264
  export type accountsCreateManyInput = {
251
265
  email: string;
@@ -362,6 +376,30 @@ export type accountsUpdateOneRequiredWithoutProfilesNestedInput = {
362
376
  connect?: Prisma.accountsWhereUniqueInput;
363
377
  update?: Prisma.XOR<Prisma.XOR<Prisma.accountsUpdateToOneWithWhereWithoutProfilesInput, Prisma.accountsUpdateWithoutProfilesInput>, Prisma.accountsUncheckedUpdateWithoutProfilesInput>;
364
378
  };
379
+ export type accountsCreateNestedOneWithoutCalendar_listsInput = {
380
+ create?: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_listsInput, Prisma.accountsUncheckedCreateWithoutCalendar_listsInput>;
381
+ connectOrCreate?: Prisma.accountsCreateOrConnectWithoutCalendar_listsInput;
382
+ connect?: Prisma.accountsWhereUniqueInput;
383
+ };
384
+ export type accountsUpdateOneRequiredWithoutCalendar_listsNestedInput = {
385
+ create?: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_listsInput, Prisma.accountsUncheckedCreateWithoutCalendar_listsInput>;
386
+ connectOrCreate?: Prisma.accountsCreateOrConnectWithoutCalendar_listsInput;
387
+ upsert?: Prisma.accountsUpsertWithoutCalendar_listsInput;
388
+ connect?: Prisma.accountsWhereUniqueInput;
389
+ update?: Prisma.XOR<Prisma.XOR<Prisma.accountsUpdateToOneWithWhereWithoutCalendar_listsInput, Prisma.accountsUpdateWithoutCalendar_listsInput>, Prisma.accountsUncheckedUpdateWithoutCalendar_listsInput>;
390
+ };
391
+ export type accountsCreateNestedOneWithoutCalendar_eventsInput = {
392
+ create?: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_eventsInput, Prisma.accountsUncheckedCreateWithoutCalendar_eventsInput>;
393
+ connectOrCreate?: Prisma.accountsCreateOrConnectWithoutCalendar_eventsInput;
394
+ connect?: Prisma.accountsWhereUniqueInput;
395
+ };
396
+ export type accountsUpdateOneRequiredWithoutCalendar_eventsNestedInput = {
397
+ create?: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_eventsInput, Prisma.accountsUncheckedCreateWithoutCalendar_eventsInput>;
398
+ connectOrCreate?: Prisma.accountsCreateOrConnectWithoutCalendar_eventsInput;
399
+ upsert?: Prisma.accountsUpsertWithoutCalendar_eventsInput;
400
+ connect?: Prisma.accountsWhereUniqueInput;
401
+ update?: Prisma.XOR<Prisma.XOR<Prisma.accountsUpdateToOneWithWhereWithoutCalendar_eventsInput, Prisma.accountsUpdateWithoutCalendar_eventsInput>, Prisma.accountsUncheckedUpdateWithoutCalendar_eventsInput>;
402
+ };
365
403
  export type accountsCreateNestedOneWithoutSync_statesInput = {
366
404
  create?: Prisma.XOR<Prisma.accountsCreateWithoutSync_statesInput, Prisma.accountsUncheckedCreateWithoutSync_statesInput>;
367
405
  connectOrCreate?: Prisma.accountsCreateOrConnectWithoutSync_statesInput;
@@ -385,6 +423,8 @@ export type accountsCreateWithoutThread_listsInput = {
385
423
  label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
386
424
  profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
387
425
  sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
426
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
427
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
388
428
  };
389
429
  export type accountsUncheckedCreateWithoutThread_listsInput = {
390
430
  email: string;
@@ -397,6 +437,8 @@ export type accountsUncheckedCreateWithoutThread_listsInput = {
397
437
  label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
398
438
  profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
399
439
  sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
440
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
441
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
400
442
  };
401
443
  export type accountsCreateOrConnectWithoutThread_listsInput = {
402
444
  where: Prisma.accountsWhereUniqueInput;
@@ -422,6 +464,8 @@ export type accountsUpdateWithoutThread_listsInput = {
422
464
  label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
423
465
  profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
424
466
  sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
467
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
468
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
425
469
  };
426
470
  export type accountsUncheckedUpdateWithoutThread_listsInput = {
427
471
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -434,6 +478,8 @@ export type accountsUncheckedUpdateWithoutThread_listsInput = {
434
478
  label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
435
479
  profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
436
480
  sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
481
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
482
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
437
483
  };
438
484
  export type accountsCreateWithoutThreadsInput = {
439
485
  email: string;
@@ -446,6 +492,8 @@ export type accountsCreateWithoutThreadsInput = {
446
492
  label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
447
493
  profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
448
494
  sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
495
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
496
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
449
497
  };
450
498
  export type accountsUncheckedCreateWithoutThreadsInput = {
451
499
  email: string;
@@ -458,6 +506,8 @@ export type accountsUncheckedCreateWithoutThreadsInput = {
458
506
  label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
459
507
  profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
460
508
  sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
509
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
510
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
461
511
  };
462
512
  export type accountsCreateOrConnectWithoutThreadsInput = {
463
513
  where: Prisma.accountsWhereUniqueInput;
@@ -483,6 +533,8 @@ export type accountsUpdateWithoutThreadsInput = {
483
533
  label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
484
534
  profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
485
535
  sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
536
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
537
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
486
538
  };
487
539
  export type accountsUncheckedUpdateWithoutThreadsInput = {
488
540
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -495,6 +547,8 @@ export type accountsUncheckedUpdateWithoutThreadsInput = {
495
547
  label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
496
548
  profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
497
549
  sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
550
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
551
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
498
552
  };
499
553
  export type accountsCreateWithoutLabelsInput = {
500
554
  email: string;
@@ -507,6 +561,8 @@ export type accountsCreateWithoutLabelsInput = {
507
561
  label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
508
562
  profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
509
563
  sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
564
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
565
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
510
566
  };
511
567
  export type accountsUncheckedCreateWithoutLabelsInput = {
512
568
  email: string;
@@ -519,6 +575,8 @@ export type accountsUncheckedCreateWithoutLabelsInput = {
519
575
  label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
520
576
  profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
521
577
  sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
578
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
579
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
522
580
  };
523
581
  export type accountsCreateOrConnectWithoutLabelsInput = {
524
582
  where: Prisma.accountsWhereUniqueInput;
@@ -544,6 +602,8 @@ export type accountsUpdateWithoutLabelsInput = {
544
602
  label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
545
603
  profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
546
604
  sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
605
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
606
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
547
607
  };
548
608
  export type accountsUncheckedUpdateWithoutLabelsInput = {
549
609
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -556,6 +616,8 @@ export type accountsUncheckedUpdateWithoutLabelsInput = {
556
616
  label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
557
617
  profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
558
618
  sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
619
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
620
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
559
621
  };
560
622
  export type accountsCreateWithoutLabel_countsInput = {
561
623
  email: string;
@@ -568,6 +630,8 @@ export type accountsCreateWithoutLabel_countsInput = {
568
630
  labels?: Prisma.labelsCreateNestedOneWithoutAccountInput;
569
631
  profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
570
632
  sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
633
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
634
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
571
635
  };
572
636
  export type accountsUncheckedCreateWithoutLabel_countsInput = {
573
637
  email: string;
@@ -580,6 +644,8 @@ export type accountsUncheckedCreateWithoutLabel_countsInput = {
580
644
  labels?: Prisma.labelsUncheckedCreateNestedOneWithoutAccountInput;
581
645
  profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
582
646
  sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
647
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
648
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
583
649
  };
584
650
  export type accountsCreateOrConnectWithoutLabel_countsInput = {
585
651
  where: Prisma.accountsWhereUniqueInput;
@@ -605,6 +671,8 @@ export type accountsUpdateWithoutLabel_countsInput = {
605
671
  labels?: Prisma.labelsUpdateOneWithoutAccountNestedInput;
606
672
  profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
607
673
  sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
674
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
675
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
608
676
  };
609
677
  export type accountsUncheckedUpdateWithoutLabel_countsInput = {
610
678
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -617,6 +685,8 @@ export type accountsUncheckedUpdateWithoutLabel_countsInput = {
617
685
  labels?: Prisma.labelsUncheckedUpdateOneWithoutAccountNestedInput;
618
686
  profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
619
687
  sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
688
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
689
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
620
690
  };
621
691
  export type accountsCreateWithoutProfilesInput = {
622
692
  email: string;
@@ -629,6 +699,8 @@ export type accountsCreateWithoutProfilesInput = {
629
699
  labels?: Prisma.labelsCreateNestedOneWithoutAccountInput;
630
700
  label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
631
701
  sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
702
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
703
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
632
704
  };
633
705
  export type accountsUncheckedCreateWithoutProfilesInput = {
634
706
  email: string;
@@ -641,6 +713,8 @@ export type accountsUncheckedCreateWithoutProfilesInput = {
641
713
  labels?: Prisma.labelsUncheckedCreateNestedOneWithoutAccountInput;
642
714
  label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
643
715
  sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
716
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
717
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
644
718
  };
645
719
  export type accountsCreateOrConnectWithoutProfilesInput = {
646
720
  where: Prisma.accountsWhereUniqueInput;
@@ -666,6 +740,8 @@ export type accountsUpdateWithoutProfilesInput = {
666
740
  labels?: Prisma.labelsUpdateOneWithoutAccountNestedInput;
667
741
  label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
668
742
  sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
743
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
744
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
669
745
  };
670
746
  export type accountsUncheckedUpdateWithoutProfilesInput = {
671
747
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -678,6 +754,146 @@ export type accountsUncheckedUpdateWithoutProfilesInput = {
678
754
  labels?: Prisma.labelsUncheckedUpdateOneWithoutAccountNestedInput;
679
755
  label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
680
756
  sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
757
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
758
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
759
+ };
760
+ export type accountsCreateWithoutCalendar_listsInput = {
761
+ email: string;
762
+ account_status?: $Enums.AccountStatus;
763
+ tokens: string;
764
+ created_at?: Date | string;
765
+ updated_at?: Date | string;
766
+ thread_lists?: Prisma.thread_listsCreateNestedManyWithoutAccountInput;
767
+ threads?: Prisma.threadsCreateNestedManyWithoutAccountInput;
768
+ labels?: Prisma.labelsCreateNestedOneWithoutAccountInput;
769
+ label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
770
+ profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
771
+ sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
772
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
773
+ };
774
+ export type accountsUncheckedCreateWithoutCalendar_listsInput = {
775
+ email: string;
776
+ account_status?: $Enums.AccountStatus;
777
+ tokens: string;
778
+ created_at?: Date | string;
779
+ updated_at?: Date | string;
780
+ thread_lists?: Prisma.thread_listsUncheckedCreateNestedManyWithoutAccountInput;
781
+ threads?: Prisma.threadsUncheckedCreateNestedManyWithoutAccountInput;
782
+ labels?: Prisma.labelsUncheckedCreateNestedOneWithoutAccountInput;
783
+ label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
784
+ profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
785
+ sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
786
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
787
+ };
788
+ export type accountsCreateOrConnectWithoutCalendar_listsInput = {
789
+ where: Prisma.accountsWhereUniqueInput;
790
+ create: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_listsInput, Prisma.accountsUncheckedCreateWithoutCalendar_listsInput>;
791
+ };
792
+ export type accountsUpsertWithoutCalendar_listsInput = {
793
+ update: Prisma.XOR<Prisma.accountsUpdateWithoutCalendar_listsInput, Prisma.accountsUncheckedUpdateWithoutCalendar_listsInput>;
794
+ create: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_listsInput, Prisma.accountsUncheckedCreateWithoutCalendar_listsInput>;
795
+ where?: Prisma.accountsWhereInput;
796
+ };
797
+ export type accountsUpdateToOneWithWhereWithoutCalendar_listsInput = {
798
+ where?: Prisma.accountsWhereInput;
799
+ data: Prisma.XOR<Prisma.accountsUpdateWithoutCalendar_listsInput, Prisma.accountsUncheckedUpdateWithoutCalendar_listsInput>;
800
+ };
801
+ export type accountsUpdateWithoutCalendar_listsInput = {
802
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
803
+ account_status?: Prisma.EnumAccountStatusFieldUpdateOperationsInput | $Enums.AccountStatus;
804
+ tokens?: Prisma.StringFieldUpdateOperationsInput | string;
805
+ created_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
806
+ updated_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
807
+ thread_lists?: Prisma.thread_listsUpdateManyWithoutAccountNestedInput;
808
+ threads?: Prisma.threadsUpdateManyWithoutAccountNestedInput;
809
+ labels?: Prisma.labelsUpdateOneWithoutAccountNestedInput;
810
+ label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
811
+ profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
812
+ sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
813
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
814
+ };
815
+ export type accountsUncheckedUpdateWithoutCalendar_listsInput = {
816
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
817
+ account_status?: Prisma.EnumAccountStatusFieldUpdateOperationsInput | $Enums.AccountStatus;
818
+ tokens?: Prisma.StringFieldUpdateOperationsInput | string;
819
+ created_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
820
+ updated_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
821
+ thread_lists?: Prisma.thread_listsUncheckedUpdateManyWithoutAccountNestedInput;
822
+ threads?: Prisma.threadsUncheckedUpdateManyWithoutAccountNestedInput;
823
+ labels?: Prisma.labelsUncheckedUpdateOneWithoutAccountNestedInput;
824
+ label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
825
+ profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
826
+ sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
827
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
828
+ };
829
+ export type accountsCreateWithoutCalendar_eventsInput = {
830
+ email: string;
831
+ account_status?: $Enums.AccountStatus;
832
+ tokens: string;
833
+ created_at?: Date | string;
834
+ updated_at?: Date | string;
835
+ thread_lists?: Prisma.thread_listsCreateNestedManyWithoutAccountInput;
836
+ threads?: Prisma.threadsCreateNestedManyWithoutAccountInput;
837
+ labels?: Prisma.labelsCreateNestedOneWithoutAccountInput;
838
+ label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
839
+ profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
840
+ sync_states?: Prisma.sync_statesCreateNestedManyWithoutAccountInput;
841
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
842
+ };
843
+ export type accountsUncheckedCreateWithoutCalendar_eventsInput = {
844
+ email: string;
845
+ account_status?: $Enums.AccountStatus;
846
+ tokens: string;
847
+ created_at?: Date | string;
848
+ updated_at?: Date | string;
849
+ thread_lists?: Prisma.thread_listsUncheckedCreateNestedManyWithoutAccountInput;
850
+ threads?: Prisma.threadsUncheckedCreateNestedManyWithoutAccountInput;
851
+ labels?: Prisma.labelsUncheckedCreateNestedOneWithoutAccountInput;
852
+ label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
853
+ profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
854
+ sync_states?: Prisma.sync_statesUncheckedCreateNestedManyWithoutAccountInput;
855
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
856
+ };
857
+ export type accountsCreateOrConnectWithoutCalendar_eventsInput = {
858
+ where: Prisma.accountsWhereUniqueInput;
859
+ create: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_eventsInput, Prisma.accountsUncheckedCreateWithoutCalendar_eventsInput>;
860
+ };
861
+ export type accountsUpsertWithoutCalendar_eventsInput = {
862
+ update: Prisma.XOR<Prisma.accountsUpdateWithoutCalendar_eventsInput, Prisma.accountsUncheckedUpdateWithoutCalendar_eventsInput>;
863
+ create: Prisma.XOR<Prisma.accountsCreateWithoutCalendar_eventsInput, Prisma.accountsUncheckedCreateWithoutCalendar_eventsInput>;
864
+ where?: Prisma.accountsWhereInput;
865
+ };
866
+ export type accountsUpdateToOneWithWhereWithoutCalendar_eventsInput = {
867
+ where?: Prisma.accountsWhereInput;
868
+ data: Prisma.XOR<Prisma.accountsUpdateWithoutCalendar_eventsInput, Prisma.accountsUncheckedUpdateWithoutCalendar_eventsInput>;
869
+ };
870
+ export type accountsUpdateWithoutCalendar_eventsInput = {
871
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
872
+ account_status?: Prisma.EnumAccountStatusFieldUpdateOperationsInput | $Enums.AccountStatus;
873
+ tokens?: Prisma.StringFieldUpdateOperationsInput | string;
874
+ created_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
875
+ updated_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
876
+ thread_lists?: Prisma.thread_listsUpdateManyWithoutAccountNestedInput;
877
+ threads?: Prisma.threadsUpdateManyWithoutAccountNestedInput;
878
+ labels?: Prisma.labelsUpdateOneWithoutAccountNestedInput;
879
+ label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
880
+ profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
881
+ sync_states?: Prisma.sync_statesUpdateManyWithoutAccountNestedInput;
882
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
883
+ };
884
+ export type accountsUncheckedUpdateWithoutCalendar_eventsInput = {
885
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
886
+ account_status?: Prisma.EnumAccountStatusFieldUpdateOperationsInput | $Enums.AccountStatus;
887
+ tokens?: Prisma.StringFieldUpdateOperationsInput | string;
888
+ created_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
889
+ updated_at?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
890
+ thread_lists?: Prisma.thread_listsUncheckedUpdateManyWithoutAccountNestedInput;
891
+ threads?: Prisma.threadsUncheckedUpdateManyWithoutAccountNestedInput;
892
+ labels?: Prisma.labelsUncheckedUpdateOneWithoutAccountNestedInput;
893
+ label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
894
+ profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
895
+ sync_states?: Prisma.sync_statesUncheckedUpdateManyWithoutAccountNestedInput;
896
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
681
897
  };
682
898
  export type accountsCreateWithoutSync_statesInput = {
683
899
  email: string;
@@ -690,6 +906,8 @@ export type accountsCreateWithoutSync_statesInput = {
690
906
  labels?: Prisma.labelsCreateNestedOneWithoutAccountInput;
691
907
  label_counts?: Prisma.label_countsCreateNestedOneWithoutAccountInput;
692
908
  profiles?: Prisma.profilesCreateNestedOneWithoutAccountInput;
909
+ calendar_lists?: Prisma.calendar_listsCreateNestedOneWithoutAccountInput;
910
+ calendar_events?: Prisma.calendar_eventsCreateNestedManyWithoutAccountInput;
693
911
  };
694
912
  export type accountsUncheckedCreateWithoutSync_statesInput = {
695
913
  email: string;
@@ -702,6 +920,8 @@ export type accountsUncheckedCreateWithoutSync_statesInput = {
702
920
  labels?: Prisma.labelsUncheckedCreateNestedOneWithoutAccountInput;
703
921
  label_counts?: Prisma.label_countsUncheckedCreateNestedOneWithoutAccountInput;
704
922
  profiles?: Prisma.profilesUncheckedCreateNestedOneWithoutAccountInput;
923
+ calendar_lists?: Prisma.calendar_listsUncheckedCreateNestedOneWithoutAccountInput;
924
+ calendar_events?: Prisma.calendar_eventsUncheckedCreateNestedManyWithoutAccountInput;
705
925
  };
706
926
  export type accountsCreateOrConnectWithoutSync_statesInput = {
707
927
  where: Prisma.accountsWhereUniqueInput;
@@ -727,6 +947,8 @@ export type accountsUpdateWithoutSync_statesInput = {
727
947
  labels?: Prisma.labelsUpdateOneWithoutAccountNestedInput;
728
948
  label_counts?: Prisma.label_countsUpdateOneWithoutAccountNestedInput;
729
949
  profiles?: Prisma.profilesUpdateOneWithoutAccountNestedInput;
950
+ calendar_lists?: Prisma.calendar_listsUpdateOneWithoutAccountNestedInput;
951
+ calendar_events?: Prisma.calendar_eventsUpdateManyWithoutAccountNestedInput;
730
952
  };
731
953
  export type accountsUncheckedUpdateWithoutSync_statesInput = {
732
954
  email?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -739,6 +961,8 @@ export type accountsUncheckedUpdateWithoutSync_statesInput = {
739
961
  labels?: Prisma.labelsUncheckedUpdateOneWithoutAccountNestedInput;
740
962
  label_counts?: Prisma.label_countsUncheckedUpdateOneWithoutAccountNestedInput;
741
963
  profiles?: Prisma.profilesUncheckedUpdateOneWithoutAccountNestedInput;
964
+ calendar_lists?: Prisma.calendar_listsUncheckedUpdateOneWithoutAccountNestedInput;
965
+ calendar_events?: Prisma.calendar_eventsUncheckedUpdateManyWithoutAccountNestedInput;
742
966
  };
743
967
  /**
744
968
  * Count Type AccountsCountOutputType
@@ -747,11 +971,13 @@ export type AccountsCountOutputType = {
747
971
  thread_lists: number;
748
972
  threads: number;
749
973
  sync_states: number;
974
+ calendar_events: number;
750
975
  };
751
976
  export type AccountsCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
752
977
  thread_lists?: boolean | AccountsCountOutputTypeCountThread_listsArgs;
753
978
  threads?: boolean | AccountsCountOutputTypeCountThreadsArgs;
754
979
  sync_states?: boolean | AccountsCountOutputTypeCountSync_statesArgs;
980
+ calendar_events?: boolean | AccountsCountOutputTypeCountCalendar_eventsArgs;
755
981
  };
756
982
  /**
757
983
  * AccountsCountOutputType without action
@@ -780,6 +1006,12 @@ export type AccountsCountOutputTypeCountThreadsArgs<ExtArgs extends runtime.Type
780
1006
  export type AccountsCountOutputTypeCountSync_statesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
781
1007
  where?: Prisma.sync_statesWhereInput;
782
1008
  };
1009
+ /**
1010
+ * AccountsCountOutputType without action
1011
+ */
1012
+ export type AccountsCountOutputTypeCountCalendar_eventsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1013
+ where?: Prisma.calendar_eventsWhereInput;
1014
+ };
783
1015
  export type accountsSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
784
1016
  email?: boolean;
785
1017
  account_status?: boolean;
@@ -792,6 +1024,8 @@ export type accountsSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
792
1024
  label_counts?: boolean | Prisma.accounts$label_countsArgs<ExtArgs>;
793
1025
  profiles?: boolean | Prisma.accounts$profilesArgs<ExtArgs>;
794
1026
  sync_states?: boolean | Prisma.accounts$sync_statesArgs<ExtArgs>;
1027
+ calendar_lists?: boolean | Prisma.accounts$calendar_listsArgs<ExtArgs>;
1028
+ calendar_events?: boolean | Prisma.accounts$calendar_eventsArgs<ExtArgs>;
795
1029
  _count?: boolean | Prisma.AccountsCountOutputTypeDefaultArgs<ExtArgs>;
796
1030
  }, ExtArgs["result"]["accounts"]>;
797
1031
  export type accountsSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
@@ -823,6 +1057,8 @@ export type accountsInclude<ExtArgs extends runtime.Types.Extensions.InternalArg
823
1057
  label_counts?: boolean | Prisma.accounts$label_countsArgs<ExtArgs>;
824
1058
  profiles?: boolean | Prisma.accounts$profilesArgs<ExtArgs>;
825
1059
  sync_states?: boolean | Prisma.accounts$sync_statesArgs<ExtArgs>;
1060
+ calendar_lists?: boolean | Prisma.accounts$calendar_listsArgs<ExtArgs>;
1061
+ calendar_events?: boolean | Prisma.accounts$calendar_eventsArgs<ExtArgs>;
826
1062
  _count?: boolean | Prisma.AccountsCountOutputTypeDefaultArgs<ExtArgs>;
827
1063
  };
828
1064
  export type accountsIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
@@ -836,6 +1072,8 @@ export type $accountsPayload<ExtArgs extends runtime.Types.Extensions.InternalAr
836
1072
  label_counts: Prisma.$label_countsPayload<ExtArgs> | null;
837
1073
  profiles: Prisma.$profilesPayload<ExtArgs> | null;
838
1074
  sync_states: Prisma.$sync_statesPayload<ExtArgs>[];
1075
+ calendar_lists: Prisma.$calendar_listsPayload<ExtArgs> | null;
1076
+ calendar_events: Prisma.$calendar_eventsPayload<ExtArgs>[];
839
1077
  };
840
1078
  scalars: runtime.Types.Extensions.GetPayloadResult<{
841
1079
  email: string;
@@ -1178,6 +1416,8 @@ export interface Prisma__accountsClient<T, Null = never, ExtArgs extends runtime
1178
1416
  label_counts<T extends Prisma.accounts$label_countsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.accounts$label_countsArgs<ExtArgs>>): Prisma.Prisma__label_countsClient<runtime.Types.Result.GetResult<Prisma.$label_countsPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
1179
1417
  profiles<T extends Prisma.accounts$profilesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.accounts$profilesArgs<ExtArgs>>): Prisma.Prisma__profilesClient<runtime.Types.Result.GetResult<Prisma.$profilesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
1180
1418
  sync_states<T extends Prisma.accounts$sync_statesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.accounts$sync_statesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$sync_statesPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1419
+ calendar_lists<T extends Prisma.accounts$calendar_listsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.accounts$calendar_listsArgs<ExtArgs>>): Prisma.Prisma__calendar_listsClient<runtime.Types.Result.GetResult<Prisma.$calendar_listsPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
1420
+ calendar_events<T extends Prisma.accounts$calendar_eventsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.accounts$calendar_eventsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$calendar_eventsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1181
1421
  /**
1182
1422
  * Attaches callbacks for the resolution and/or rejection of the Promise.
1183
1423
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -1699,6 +1939,47 @@ export type accounts$sync_statesArgs<ExtArgs extends runtime.Types.Extensions.In
1699
1939
  skip?: number;
1700
1940
  distinct?: Prisma.Sync_statesScalarFieldEnum | Prisma.Sync_statesScalarFieldEnum[];
1701
1941
  };
1942
+ /**
1943
+ * accounts.calendar_lists
1944
+ */
1945
+ export type accounts$calendar_listsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1946
+ /**
1947
+ * Select specific fields to fetch from the calendar_lists
1948
+ */
1949
+ select?: Prisma.calendar_listsSelect<ExtArgs> | null;
1950
+ /**
1951
+ * Omit specific fields from the calendar_lists
1952
+ */
1953
+ omit?: Prisma.calendar_listsOmit<ExtArgs> | null;
1954
+ /**
1955
+ * Choose, which related nodes to fetch as well
1956
+ */
1957
+ include?: Prisma.calendar_listsInclude<ExtArgs> | null;
1958
+ where?: Prisma.calendar_listsWhereInput;
1959
+ };
1960
+ /**
1961
+ * accounts.calendar_events
1962
+ */
1963
+ export type accounts$calendar_eventsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1964
+ /**
1965
+ * Select specific fields to fetch from the calendar_events
1966
+ */
1967
+ select?: Prisma.calendar_eventsSelect<ExtArgs> | null;
1968
+ /**
1969
+ * Omit specific fields from the calendar_events
1970
+ */
1971
+ omit?: Prisma.calendar_eventsOmit<ExtArgs> | null;
1972
+ /**
1973
+ * Choose, which related nodes to fetch as well
1974
+ */
1975
+ include?: Prisma.calendar_eventsInclude<ExtArgs> | null;
1976
+ where?: Prisma.calendar_eventsWhereInput;
1977
+ orderBy?: Prisma.calendar_eventsOrderByWithRelationInput | Prisma.calendar_eventsOrderByWithRelationInput[];
1978
+ cursor?: Prisma.calendar_eventsWhereUniqueInput;
1979
+ take?: number;
1980
+ skip?: number;
1981
+ distinct?: Prisma.Calendar_eventsScalarFieldEnum | Prisma.Calendar_eventsScalarFieldEnum[];
1982
+ };
1702
1983
  /**
1703
1984
  * accounts without action
1704
1985
  */