@allbluecn/database 0.4.14 → 0.4.16
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/generated/browser.ts +10 -0
- package/generated/client.ts +10 -0
- package/generated/commonInputTypes.ts +34 -0
- package/generated/enums.ts +2 -2
- package/generated/internal/class.ts +24 -4
- package/generated/internal/prismaNamespace.ts +191 -1
- package/generated/internal/prismaNamespaceBrowser.ts +26 -0
- package/generated/models/KnowledgeBase.ts +138 -0
- package/generated/models/Project.ts +158 -0
- package/generated/models/ProjectKnowledgeBase.ts +1430 -0
- package/generated/models/Story.ts +270 -0
- package/generated/models/StoryAttachment.ts +110 -1
- package/generated/models/StoryExternalLink.ts +1352 -0
- package/generated/models.ts +2 -0
- package/generated-sqlite/browser.ts +5 -10
- package/generated-sqlite/client.ts +5 -10
- package/generated-sqlite/internal/class.ts +14 -24
- package/generated-sqlite/internal/prismaNamespace.ts +88 -180
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +12 -29
- package/generated-sqlite/models/KnowledgeBase.ts +138 -0
- package/generated-sqlite/models/Project.ts +150 -0
- package/generated-sqlite/models/ProjectKnowledgeBase.ts +1426 -0
- package/generated-sqlite/models/User.ts +101 -1067
- package/generated-sqlite/models.ts +1 -2
- package/migrations/20260830000000_story_dependency_plane_align/migration.sql +37 -0
- package/migrations/20260831063744_project_knowledge_base/migration.sql +24 -0
- package/migrations/20260831123150_story_external_link/migration.sql +19 -0
- package/migrations/20260831151740_story_attachment_bytes/migration.sql +2 -0
- package/migrations/20260901010000_story_attachment_description/migration.sql +2 -0
- package/package.json +2 -2
- package/schema.prisma +53 -15
- package/schema.sqlite.prisma +25 -7
- package/generated-sqlite/models/Notification.ts +0 -1482
- package/generated-sqlite/models/NotificationPreference.ts +0 -1287
package/generated/models.ts
CHANGED
|
@@ -79,10 +79,12 @@ export type * from './models/StoryComment'
|
|
|
79
79
|
export type * from './models/StoryReaction'
|
|
80
80
|
export type * from './models/CommentReaction'
|
|
81
81
|
export type * from './models/StoryDependency'
|
|
82
|
+
export type * from './models/ProjectKnowledgeBase'
|
|
82
83
|
export type * from './models/StoryLink'
|
|
83
84
|
export type * from './models/StoryAttachment'
|
|
84
85
|
export type * from './models/StoryPrdLink'
|
|
85
86
|
export type * from './models/StoryDocLink'
|
|
87
|
+
export type * from './models/StoryExternalLink'
|
|
86
88
|
export type * from './models/StoryFilterView'
|
|
87
89
|
export type * from './models/MonitoringRequestLog'
|
|
88
90
|
export type * from './models/MonitoringErrorReport'
|
|
@@ -112,6 +112,11 @@ export type PasswordResetToken = Prisma.PasswordResetTokenModel
|
|
|
112
112
|
*
|
|
113
113
|
*/
|
|
114
114
|
export type KnowledgeBase = Prisma.KnowledgeBaseModel
|
|
115
|
+
/**
|
|
116
|
+
* Model ProjectKnowledgeBase
|
|
117
|
+
*
|
|
118
|
+
*/
|
|
119
|
+
export type ProjectKnowledgeBase = Prisma.ProjectKnowledgeBaseModel
|
|
115
120
|
/**
|
|
116
121
|
* Model KnowledgeDocument
|
|
117
122
|
*
|
|
@@ -407,13 +412,3 @@ export type UserSkill = Prisma.UserSkillModel
|
|
|
407
412
|
*
|
|
408
413
|
*/
|
|
409
414
|
export type DeveloperLog = Prisma.DeveloperLogModel
|
|
410
|
-
/**
|
|
411
|
-
* Model Notification
|
|
412
|
-
*
|
|
413
|
-
*/
|
|
414
|
-
export type Notification = Prisma.NotificationModel
|
|
415
|
-
/**
|
|
416
|
-
* Model NotificationPreference
|
|
417
|
-
*
|
|
418
|
-
*/
|
|
419
|
-
export type NotificationPreference = Prisma.NotificationPreferenceModel
|
|
@@ -136,6 +136,11 @@ export type PasswordResetToken = Prisma.PasswordResetTokenModel
|
|
|
136
136
|
*
|
|
137
137
|
*/
|
|
138
138
|
export type KnowledgeBase = Prisma.KnowledgeBaseModel
|
|
139
|
+
/**
|
|
140
|
+
* Model ProjectKnowledgeBase
|
|
141
|
+
*
|
|
142
|
+
*/
|
|
143
|
+
export type ProjectKnowledgeBase = Prisma.ProjectKnowledgeBaseModel
|
|
139
144
|
/**
|
|
140
145
|
* Model KnowledgeDocument
|
|
141
146
|
*
|
|
@@ -431,13 +436,3 @@ export type UserSkill = Prisma.UserSkillModel
|
|
|
431
436
|
*
|
|
432
437
|
*/
|
|
433
438
|
export type DeveloperLog = Prisma.DeveloperLogModel
|
|
434
|
-
/**
|
|
435
|
-
* Model Notification
|
|
436
|
-
*
|
|
437
|
-
*/
|
|
438
|
-
export type Notification = Prisma.NotificationModel
|
|
439
|
-
/**
|
|
440
|
-
* Model NotificationPreference
|
|
441
|
-
*
|
|
442
|
-
*/
|
|
443
|
-
export type NotificationPreference = Prisma.NotificationPreferenceModel
|