@allbluecn/database 0.4.16 → 0.4.18
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.
- package/dist/lib/share-utils.d.ts +2 -0
- package/dist/lib/share-utils.js +17 -0
- package/generated/browser.ts +10 -0
- package/generated/client.ts +10 -0
- package/generated/internal/class.ts +24 -4
- package/generated/internal/prismaNamespace.ts +188 -3
- package/generated/internal/prismaNamespaceBrowser.ts +37 -2
- package/generated/models/Iteration.ts +1878 -0
- package/generated/models/IterationAutoSchedule.ts +1485 -0
- package/generated/models/Project.ts +326 -0
- package/generated/models/Story.ts +393 -3
- package/generated/models/User.ts +618 -0
- package/generated/models.ts +2 -0
- package/generated-sqlite/browser.ts +15 -0
- package/generated-sqlite/client.ts +15 -0
- package/generated-sqlite/internal/class.ts +34 -4
- package/generated-sqlite/internal/prismaNamespace.ts +288 -2
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +62 -1
- package/generated-sqlite/models/Iteration.ts +1874 -0
- package/generated-sqlite/models/IterationAutoSchedule.ts +1483 -0
- package/generated-sqlite/models/Project.ts +484 -0
- package/generated-sqlite/models/Story.ts +3263 -0
- package/generated-sqlite/models/User.ts +2103 -107
- package/generated-sqlite/models.ts +3 -0
- package/index.ts +2 -2
- package/migrations/20260831203925_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901020000_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901134601_iterations/migration.sql +52 -0
- package/migrations/20260902000000_story_identifier_per_project/migration.sql +37 -0
- package/migrations/20260902000100_story_identifier_counter_init/migration.sql +11 -0
- package/package.json +14 -5
- package/schema.prisma +47 -4
- package/schema.sqlite.prisma +89 -4
package/generated/models.ts
CHANGED
|
@@ -109,4 +109,6 @@ export type * from './models/UserSkill'
|
|
|
109
109
|
export type * from './models/DeveloperLog'
|
|
110
110
|
export type * from './models/Notification'
|
|
111
111
|
export type * from './models/NotificationPreference'
|
|
112
|
+
export type * from './models/Iteration'
|
|
113
|
+
export type * from './models/IterationAutoSchedule'
|
|
112
114
|
export type * from './commonInputTypes'
|
|
@@ -412,3 +412,18 @@ export type UserSkill = Prisma.UserSkillModel
|
|
|
412
412
|
*
|
|
413
413
|
*/
|
|
414
414
|
export type DeveloperLog = Prisma.DeveloperLogModel
|
|
415
|
+
/**
|
|
416
|
+
* Model Story
|
|
417
|
+
*
|
|
418
|
+
*/
|
|
419
|
+
export type Story = Prisma.StoryModel
|
|
420
|
+
/**
|
|
421
|
+
* Model Iteration
|
|
422
|
+
*
|
|
423
|
+
*/
|
|
424
|
+
export type Iteration = Prisma.IterationModel
|
|
425
|
+
/**
|
|
426
|
+
* Model IterationAutoSchedule
|
|
427
|
+
*
|
|
428
|
+
*/
|
|
429
|
+
export type IterationAutoSchedule = Prisma.IterationAutoScheduleModel
|
|
@@ -436,3 +436,18 @@ export type UserSkill = Prisma.UserSkillModel
|
|
|
436
436
|
*
|
|
437
437
|
*/
|
|
438
438
|
export type DeveloperLog = Prisma.DeveloperLogModel
|
|
439
|
+
/**
|
|
440
|
+
* Model Story
|
|
441
|
+
*
|
|
442
|
+
*/
|
|
443
|
+
export type Story = Prisma.StoryModel
|
|
444
|
+
/**
|
|
445
|
+
* Model Iteration
|
|
446
|
+
*
|
|
447
|
+
*/
|
|
448
|
+
export type Iteration = Prisma.IterationModel
|
|
449
|
+
/**
|
|
450
|
+
* Model IterationAutoSchedule
|
|
451
|
+
*
|
|
452
|
+
*/
|
|
453
|
+
export type IterationAutoSchedule = Prisma.IterationAutoScheduleModel
|