@allbluecn/database 0.4.16 → 0.4.17

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 (31) hide show
  1. package/generated/browser.ts +10 -0
  2. package/generated/client.ts +10 -0
  3. package/generated/internal/class.ts +24 -4
  4. package/generated/internal/prismaNamespace.ts +188 -3
  5. package/generated/internal/prismaNamespaceBrowser.ts +37 -2
  6. package/generated/models/Iteration.ts +1878 -0
  7. package/generated/models/IterationAutoSchedule.ts +1485 -0
  8. package/generated/models/Project.ts +326 -0
  9. package/generated/models/Story.ts +393 -3
  10. package/generated/models/User.ts +618 -0
  11. package/generated/models.ts +2 -0
  12. package/generated-sqlite/browser.ts +15 -0
  13. package/generated-sqlite/client.ts +15 -0
  14. package/generated-sqlite/internal/class.ts +34 -4
  15. package/generated-sqlite/internal/prismaNamespace.ts +288 -2
  16. package/generated-sqlite/internal/prismaNamespaceBrowser.ts +62 -1
  17. package/generated-sqlite/models/Iteration.ts +1874 -0
  18. package/generated-sqlite/models/IterationAutoSchedule.ts +1483 -0
  19. package/generated-sqlite/models/Project.ts +484 -0
  20. package/generated-sqlite/models/Story.ts +3263 -0
  21. package/generated-sqlite/models/User.ts +2103 -107
  22. package/generated-sqlite/models.ts +3 -0
  23. package/index.ts +2 -2
  24. package/migrations/20260831203925_story_attachment_file_hash/migration.sql +2 -0
  25. package/migrations/20260901020000_story_attachment_file_hash/migration.sql +2 -0
  26. package/migrations/20260901134601_iterations/migration.sql +52 -0
  27. package/migrations/20260902000000_story_identifier_per_project/migration.sql +37 -0
  28. package/migrations/20260902000100_story_identifier_counter_init/migration.sql +11 -0
  29. package/package.json +12 -5
  30. package/schema.prisma +47 -4
  31. package/schema.sqlite.prisma +89 -4
@@ -522,3 +522,13 @@ export type Notification = Prisma.NotificationModel
522
522
  *
523
523
  */
524
524
  export type NotificationPreference = Prisma.NotificationPreferenceModel
525
+ /**
526
+ * Model Iteration
527
+ *
528
+ */
529
+ export type Iteration = Prisma.IterationModel
530
+ /**
531
+ * Model IterationAutoSchedule
532
+ *
533
+ */
534
+ export type IterationAutoSchedule = Prisma.IterationAutoScheduleModel
@@ -546,3 +546,13 @@ export type Notification = Prisma.NotificationModel
546
546
  *
547
547
  */
548
548
  export type NotificationPreference = Prisma.NotificationPreferenceModel
549
+ /**
550
+ * Model Iteration
551
+ *
552
+ */
553
+ export type Iteration = Prisma.IterationModel
554
+ /**
555
+ * Model IterationAutoSchedule
556
+ *
557
+ */
558
+ export type IterationAutoSchedule = Prisma.IterationAutoScheduleModel