@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
|
@@ -462,7 +462,10 @@ export const ModelName = {
|
|
|
462
462
|
ComplianceExport: 'ComplianceExport',
|
|
463
463
|
UserAgent: 'UserAgent',
|
|
464
464
|
UserSkill: 'UserSkill',
|
|
465
|
-
DeveloperLog: 'DeveloperLog'
|
|
465
|
+
DeveloperLog: 'DeveloperLog',
|
|
466
|
+
Story: 'Story',
|
|
467
|
+
Iteration: 'Iteration',
|
|
468
|
+
IterationAutoSchedule: 'IterationAutoSchedule'
|
|
466
469
|
} as const
|
|
467
470
|
|
|
468
471
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
|
@@ -478,7 +481,7 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
478
481
|
omit: GlobalOmitOptions
|
|
479
482
|
}
|
|
480
483
|
meta: {
|
|
481
|
-
modelProps: "systemSetting" | "user" | "project" | "projectMember" | "workspace" | "teamMembership" | "teamInvitation" | "teamJoinRequest" | "projectActivity" | "chatThread" | "chatMessage" | "chatRun" | "chatInterrupt" | "generationRun" | "loginLog" | "invitationCode" | "invitationUse" | "passwordResetToken" | "knowledgeBase" | "projectKnowledgeBase" | "knowledgeDocument" | "pRD" | "agentConversation" | "agentMessage" | "component" | "block" | "blockComponent" | "template" | "templateBlock" | "pRDPage" | "componentInstance" | "blockInstance" | "pRDVersion" | "pageVersion" | "review" | "reviewComment" | "comment" | "commentIgnore" | "share" | "tag" | "pRDTag" | "componentTag" | "reference" | "shareVersion" | "anyHubApp" | "anyHubPermission" | "anyHubMarketApp" | "anyHubRecommendation" | "anyHubRecommender" | "designProject" | "artboard" | "artboardExport" | "aiProvider" | "aiProviderConfig" | "thirdPartyDependency" | "legalRegulation" | "industryCompliance" | "dictionaryTerm" | "websiteBookmark" | "bookmarkCategory" | "knowledgeShareRecord" | "articleFavorite" | "plan" | "subscription" | "usageRecord" | "aiUsageLog" | "invoice" | "providerEvent" | "licenseKey" | "licenseActivation" | "auditLog" | "ssoProvider" | "ssoMapping" | "customRole" | "roleAssignment" | "complianceExport" | "userAgent" | "userSkill" | "developerLog"
|
|
484
|
+
modelProps: "systemSetting" | "user" | "project" | "projectMember" | "workspace" | "teamMembership" | "teamInvitation" | "teamJoinRequest" | "projectActivity" | "chatThread" | "chatMessage" | "chatRun" | "chatInterrupt" | "generationRun" | "loginLog" | "invitationCode" | "invitationUse" | "passwordResetToken" | "knowledgeBase" | "projectKnowledgeBase" | "knowledgeDocument" | "pRD" | "agentConversation" | "agentMessage" | "component" | "block" | "blockComponent" | "template" | "templateBlock" | "pRDPage" | "componentInstance" | "blockInstance" | "pRDVersion" | "pageVersion" | "review" | "reviewComment" | "comment" | "commentIgnore" | "share" | "tag" | "pRDTag" | "componentTag" | "reference" | "shareVersion" | "anyHubApp" | "anyHubPermission" | "anyHubMarketApp" | "anyHubRecommendation" | "anyHubRecommender" | "designProject" | "artboard" | "artboardExport" | "aiProvider" | "aiProviderConfig" | "thirdPartyDependency" | "legalRegulation" | "industryCompliance" | "dictionaryTerm" | "websiteBookmark" | "bookmarkCategory" | "knowledgeShareRecord" | "articleFavorite" | "plan" | "subscription" | "usageRecord" | "aiUsageLog" | "invoice" | "providerEvent" | "licenseKey" | "licenseActivation" | "auditLog" | "ssoProvider" | "ssoMapping" | "customRole" | "roleAssignment" | "complianceExport" | "userAgent" | "userSkill" | "developerLog" | "story" | "iteration" | "iterationAutoSchedule"
|
|
482
485
|
txIsolationLevel: TransactionIsolationLevel
|
|
483
486
|
}
|
|
484
487
|
model: {
|
|
@@ -6328,6 +6331,228 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
6328
6331
|
}
|
|
6329
6332
|
}
|
|
6330
6333
|
}
|
|
6334
|
+
Story: {
|
|
6335
|
+
payload: Prisma.$StoryPayload<ExtArgs>
|
|
6336
|
+
fields: Prisma.StoryFieldRefs
|
|
6337
|
+
operations: {
|
|
6338
|
+
findUnique: {
|
|
6339
|
+
args: Prisma.StoryFindUniqueArgs<ExtArgs>
|
|
6340
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload> | null
|
|
6341
|
+
}
|
|
6342
|
+
findUniqueOrThrow: {
|
|
6343
|
+
args: Prisma.StoryFindUniqueOrThrowArgs<ExtArgs>
|
|
6344
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>
|
|
6345
|
+
}
|
|
6346
|
+
findFirst: {
|
|
6347
|
+
args: Prisma.StoryFindFirstArgs<ExtArgs>
|
|
6348
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload> | null
|
|
6349
|
+
}
|
|
6350
|
+
findFirstOrThrow: {
|
|
6351
|
+
args: Prisma.StoryFindFirstOrThrowArgs<ExtArgs>
|
|
6352
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>
|
|
6353
|
+
}
|
|
6354
|
+
findMany: {
|
|
6355
|
+
args: Prisma.StoryFindManyArgs<ExtArgs>
|
|
6356
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>[]
|
|
6357
|
+
}
|
|
6358
|
+
create: {
|
|
6359
|
+
args: Prisma.StoryCreateArgs<ExtArgs>
|
|
6360
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>
|
|
6361
|
+
}
|
|
6362
|
+
createMany: {
|
|
6363
|
+
args: Prisma.StoryCreateManyArgs<ExtArgs>
|
|
6364
|
+
result: BatchPayload
|
|
6365
|
+
}
|
|
6366
|
+
createManyAndReturn: {
|
|
6367
|
+
args: Prisma.StoryCreateManyAndReturnArgs<ExtArgs>
|
|
6368
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>[]
|
|
6369
|
+
}
|
|
6370
|
+
delete: {
|
|
6371
|
+
args: Prisma.StoryDeleteArgs<ExtArgs>
|
|
6372
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>
|
|
6373
|
+
}
|
|
6374
|
+
update: {
|
|
6375
|
+
args: Prisma.StoryUpdateArgs<ExtArgs>
|
|
6376
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>
|
|
6377
|
+
}
|
|
6378
|
+
deleteMany: {
|
|
6379
|
+
args: Prisma.StoryDeleteManyArgs<ExtArgs>
|
|
6380
|
+
result: BatchPayload
|
|
6381
|
+
}
|
|
6382
|
+
updateMany: {
|
|
6383
|
+
args: Prisma.StoryUpdateManyArgs<ExtArgs>
|
|
6384
|
+
result: BatchPayload
|
|
6385
|
+
}
|
|
6386
|
+
updateManyAndReturn: {
|
|
6387
|
+
args: Prisma.StoryUpdateManyAndReturnArgs<ExtArgs>
|
|
6388
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>[]
|
|
6389
|
+
}
|
|
6390
|
+
upsert: {
|
|
6391
|
+
args: Prisma.StoryUpsertArgs<ExtArgs>
|
|
6392
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StoryPayload>
|
|
6393
|
+
}
|
|
6394
|
+
aggregate: {
|
|
6395
|
+
args: Prisma.StoryAggregateArgs<ExtArgs>
|
|
6396
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateStory>
|
|
6397
|
+
}
|
|
6398
|
+
groupBy: {
|
|
6399
|
+
args: Prisma.StoryGroupByArgs<ExtArgs>
|
|
6400
|
+
result: runtime.Types.Utils.Optional<Prisma.StoryGroupByOutputType>[]
|
|
6401
|
+
}
|
|
6402
|
+
count: {
|
|
6403
|
+
args: Prisma.StoryCountArgs<ExtArgs>
|
|
6404
|
+
result: runtime.Types.Utils.Optional<Prisma.StoryCountAggregateOutputType> | number
|
|
6405
|
+
}
|
|
6406
|
+
}
|
|
6407
|
+
}
|
|
6408
|
+
Iteration: {
|
|
6409
|
+
payload: Prisma.$IterationPayload<ExtArgs>
|
|
6410
|
+
fields: Prisma.IterationFieldRefs
|
|
6411
|
+
operations: {
|
|
6412
|
+
findUnique: {
|
|
6413
|
+
args: Prisma.IterationFindUniqueArgs<ExtArgs>
|
|
6414
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload> | null
|
|
6415
|
+
}
|
|
6416
|
+
findUniqueOrThrow: {
|
|
6417
|
+
args: Prisma.IterationFindUniqueOrThrowArgs<ExtArgs>
|
|
6418
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>
|
|
6419
|
+
}
|
|
6420
|
+
findFirst: {
|
|
6421
|
+
args: Prisma.IterationFindFirstArgs<ExtArgs>
|
|
6422
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload> | null
|
|
6423
|
+
}
|
|
6424
|
+
findFirstOrThrow: {
|
|
6425
|
+
args: Prisma.IterationFindFirstOrThrowArgs<ExtArgs>
|
|
6426
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>
|
|
6427
|
+
}
|
|
6428
|
+
findMany: {
|
|
6429
|
+
args: Prisma.IterationFindManyArgs<ExtArgs>
|
|
6430
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>[]
|
|
6431
|
+
}
|
|
6432
|
+
create: {
|
|
6433
|
+
args: Prisma.IterationCreateArgs<ExtArgs>
|
|
6434
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>
|
|
6435
|
+
}
|
|
6436
|
+
createMany: {
|
|
6437
|
+
args: Prisma.IterationCreateManyArgs<ExtArgs>
|
|
6438
|
+
result: BatchPayload
|
|
6439
|
+
}
|
|
6440
|
+
createManyAndReturn: {
|
|
6441
|
+
args: Prisma.IterationCreateManyAndReturnArgs<ExtArgs>
|
|
6442
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>[]
|
|
6443
|
+
}
|
|
6444
|
+
delete: {
|
|
6445
|
+
args: Prisma.IterationDeleteArgs<ExtArgs>
|
|
6446
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>
|
|
6447
|
+
}
|
|
6448
|
+
update: {
|
|
6449
|
+
args: Prisma.IterationUpdateArgs<ExtArgs>
|
|
6450
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>
|
|
6451
|
+
}
|
|
6452
|
+
deleteMany: {
|
|
6453
|
+
args: Prisma.IterationDeleteManyArgs<ExtArgs>
|
|
6454
|
+
result: BatchPayload
|
|
6455
|
+
}
|
|
6456
|
+
updateMany: {
|
|
6457
|
+
args: Prisma.IterationUpdateManyArgs<ExtArgs>
|
|
6458
|
+
result: BatchPayload
|
|
6459
|
+
}
|
|
6460
|
+
updateManyAndReturn: {
|
|
6461
|
+
args: Prisma.IterationUpdateManyAndReturnArgs<ExtArgs>
|
|
6462
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>[]
|
|
6463
|
+
}
|
|
6464
|
+
upsert: {
|
|
6465
|
+
args: Prisma.IterationUpsertArgs<ExtArgs>
|
|
6466
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationPayload>
|
|
6467
|
+
}
|
|
6468
|
+
aggregate: {
|
|
6469
|
+
args: Prisma.IterationAggregateArgs<ExtArgs>
|
|
6470
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateIteration>
|
|
6471
|
+
}
|
|
6472
|
+
groupBy: {
|
|
6473
|
+
args: Prisma.IterationGroupByArgs<ExtArgs>
|
|
6474
|
+
result: runtime.Types.Utils.Optional<Prisma.IterationGroupByOutputType>[]
|
|
6475
|
+
}
|
|
6476
|
+
count: {
|
|
6477
|
+
args: Prisma.IterationCountArgs<ExtArgs>
|
|
6478
|
+
result: runtime.Types.Utils.Optional<Prisma.IterationCountAggregateOutputType> | number
|
|
6479
|
+
}
|
|
6480
|
+
}
|
|
6481
|
+
}
|
|
6482
|
+
IterationAutoSchedule: {
|
|
6483
|
+
payload: Prisma.$IterationAutoSchedulePayload<ExtArgs>
|
|
6484
|
+
fields: Prisma.IterationAutoScheduleFieldRefs
|
|
6485
|
+
operations: {
|
|
6486
|
+
findUnique: {
|
|
6487
|
+
args: Prisma.IterationAutoScheduleFindUniqueArgs<ExtArgs>
|
|
6488
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload> | null
|
|
6489
|
+
}
|
|
6490
|
+
findUniqueOrThrow: {
|
|
6491
|
+
args: Prisma.IterationAutoScheduleFindUniqueOrThrowArgs<ExtArgs>
|
|
6492
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>
|
|
6493
|
+
}
|
|
6494
|
+
findFirst: {
|
|
6495
|
+
args: Prisma.IterationAutoScheduleFindFirstArgs<ExtArgs>
|
|
6496
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload> | null
|
|
6497
|
+
}
|
|
6498
|
+
findFirstOrThrow: {
|
|
6499
|
+
args: Prisma.IterationAutoScheduleFindFirstOrThrowArgs<ExtArgs>
|
|
6500
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>
|
|
6501
|
+
}
|
|
6502
|
+
findMany: {
|
|
6503
|
+
args: Prisma.IterationAutoScheduleFindManyArgs<ExtArgs>
|
|
6504
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>[]
|
|
6505
|
+
}
|
|
6506
|
+
create: {
|
|
6507
|
+
args: Prisma.IterationAutoScheduleCreateArgs<ExtArgs>
|
|
6508
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>
|
|
6509
|
+
}
|
|
6510
|
+
createMany: {
|
|
6511
|
+
args: Prisma.IterationAutoScheduleCreateManyArgs<ExtArgs>
|
|
6512
|
+
result: BatchPayload
|
|
6513
|
+
}
|
|
6514
|
+
createManyAndReturn: {
|
|
6515
|
+
args: Prisma.IterationAutoScheduleCreateManyAndReturnArgs<ExtArgs>
|
|
6516
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>[]
|
|
6517
|
+
}
|
|
6518
|
+
delete: {
|
|
6519
|
+
args: Prisma.IterationAutoScheduleDeleteArgs<ExtArgs>
|
|
6520
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>
|
|
6521
|
+
}
|
|
6522
|
+
update: {
|
|
6523
|
+
args: Prisma.IterationAutoScheduleUpdateArgs<ExtArgs>
|
|
6524
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>
|
|
6525
|
+
}
|
|
6526
|
+
deleteMany: {
|
|
6527
|
+
args: Prisma.IterationAutoScheduleDeleteManyArgs<ExtArgs>
|
|
6528
|
+
result: BatchPayload
|
|
6529
|
+
}
|
|
6530
|
+
updateMany: {
|
|
6531
|
+
args: Prisma.IterationAutoScheduleUpdateManyArgs<ExtArgs>
|
|
6532
|
+
result: BatchPayload
|
|
6533
|
+
}
|
|
6534
|
+
updateManyAndReturn: {
|
|
6535
|
+
args: Prisma.IterationAutoScheduleUpdateManyAndReturnArgs<ExtArgs>
|
|
6536
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>[]
|
|
6537
|
+
}
|
|
6538
|
+
upsert: {
|
|
6539
|
+
args: Prisma.IterationAutoScheduleUpsertArgs<ExtArgs>
|
|
6540
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$IterationAutoSchedulePayload>
|
|
6541
|
+
}
|
|
6542
|
+
aggregate: {
|
|
6543
|
+
args: Prisma.IterationAutoScheduleAggregateArgs<ExtArgs>
|
|
6544
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateIterationAutoSchedule>
|
|
6545
|
+
}
|
|
6546
|
+
groupBy: {
|
|
6547
|
+
args: Prisma.IterationAutoScheduleGroupByArgs<ExtArgs>
|
|
6548
|
+
result: runtime.Types.Utils.Optional<Prisma.IterationAutoScheduleGroupByOutputType>[]
|
|
6549
|
+
}
|
|
6550
|
+
count: {
|
|
6551
|
+
args: Prisma.IterationAutoScheduleCountArgs<ExtArgs>
|
|
6552
|
+
result: runtime.Types.Utils.Optional<Prisma.IterationAutoScheduleCountAggregateOutputType> | number
|
|
6553
|
+
}
|
|
6554
|
+
}
|
|
6555
|
+
}
|
|
6331
6556
|
}
|
|
6332
6557
|
} & {
|
|
6333
6558
|
other: {
|
|
@@ -7631,6 +7856,64 @@ export const DeveloperLogScalarFieldEnum = {
|
|
|
7631
7856
|
export type DeveloperLogScalarFieldEnum = (typeof DeveloperLogScalarFieldEnum)[keyof typeof DeveloperLogScalarFieldEnum]
|
|
7632
7857
|
|
|
7633
7858
|
|
|
7859
|
+
export const StoryScalarFieldEnum = {
|
|
7860
|
+
id: 'id',
|
|
7861
|
+
sequenceId: 'sequenceId',
|
|
7862
|
+
boardOrder: 'boardOrder',
|
|
7863
|
+
identifier: 'identifier',
|
|
7864
|
+
projectId: 'projectId',
|
|
7865
|
+
name: 'name',
|
|
7866
|
+
description: 'description',
|
|
7867
|
+
state: 'state',
|
|
7868
|
+
priority: 'priority',
|
|
7869
|
+
archived: 'archived',
|
|
7870
|
+
archivedAt: 'archivedAt',
|
|
7871
|
+
assigneeId: 'assigneeId',
|
|
7872
|
+
startDate: 'startDate',
|
|
7873
|
+
targetDate: 'targetDate',
|
|
7874
|
+
createdById: 'createdById',
|
|
7875
|
+
updatedById: 'updatedById',
|
|
7876
|
+
parentId: 'parentId',
|
|
7877
|
+
iterationId: 'iterationId',
|
|
7878
|
+
createdAt: 'createdAt',
|
|
7879
|
+
updatedAt: 'updatedAt'
|
|
7880
|
+
} as const
|
|
7881
|
+
|
|
7882
|
+
export type StoryScalarFieldEnum = (typeof StoryScalarFieldEnum)[keyof typeof StoryScalarFieldEnum]
|
|
7883
|
+
|
|
7884
|
+
|
|
7885
|
+
export const IterationScalarFieldEnum = {
|
|
7886
|
+
id: 'id',
|
|
7887
|
+
projectId: 'projectId',
|
|
7888
|
+
name: 'name',
|
|
7889
|
+
description: 'description',
|
|
7890
|
+
startDate: 'startDate',
|
|
7891
|
+
endDate: 'endDate',
|
|
7892
|
+
archived: 'archived',
|
|
7893
|
+
archivedAt: 'archivedAt',
|
|
7894
|
+
createdById: 'createdById',
|
|
7895
|
+
createdAt: 'createdAt',
|
|
7896
|
+
updatedAt: 'updatedAt'
|
|
7897
|
+
} as const
|
|
7898
|
+
|
|
7899
|
+
export type IterationScalarFieldEnum = (typeof IterationScalarFieldEnum)[keyof typeof IterationScalarFieldEnum]
|
|
7900
|
+
|
|
7901
|
+
|
|
7902
|
+
export const IterationAutoScheduleScalarFieldEnum = {
|
|
7903
|
+
projectId: 'projectId',
|
|
7904
|
+
enabled: 'enabled',
|
|
7905
|
+
title: 'title',
|
|
7906
|
+
durationDays: 'durationDays',
|
|
7907
|
+
cooldownDays: 'cooldownDays',
|
|
7908
|
+
startsOn: 'startsOn',
|
|
7909
|
+
futureCount: 'futureCount',
|
|
7910
|
+
autoRollover: 'autoRollover',
|
|
7911
|
+
lastSeq: 'lastSeq'
|
|
7912
|
+
} as const
|
|
7913
|
+
|
|
7914
|
+
export type IterationAutoScheduleScalarFieldEnum = (typeof IterationAutoScheduleScalarFieldEnum)[keyof typeof IterationAutoScheduleScalarFieldEnum]
|
|
7915
|
+
|
|
7916
|
+
|
|
7634
7917
|
export const SortOrder = {
|
|
7635
7918
|
asc: 'asc',
|
|
7636
7919
|
desc: 'desc'
|
|
@@ -7922,6 +8205,9 @@ export type GlobalOmitConfig = {
|
|
|
7922
8205
|
userAgent?: Prisma.UserAgentOmit
|
|
7923
8206
|
userSkill?: Prisma.UserSkillOmit
|
|
7924
8207
|
developerLog?: Prisma.DeveloperLogOmit
|
|
8208
|
+
story?: Prisma.StoryOmit
|
|
8209
|
+
iteration?: Prisma.IterationOmit
|
|
8210
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleOmit
|
|
7925
8211
|
}
|
|
7926
8212
|
|
|
7927
8213
|
/* Types for Logging */
|
|
@@ -129,7 +129,10 @@ export const ModelName = {
|
|
|
129
129
|
ComplianceExport: 'ComplianceExport',
|
|
130
130
|
UserAgent: 'UserAgent',
|
|
131
131
|
UserSkill: 'UserSkill',
|
|
132
|
-
DeveloperLog: 'DeveloperLog'
|
|
132
|
+
DeveloperLog: 'DeveloperLog',
|
|
133
|
+
Story: 'Story',
|
|
134
|
+
Iteration: 'Iteration',
|
|
135
|
+
IterationAutoSchedule: 'IterationAutoSchedule'
|
|
133
136
|
} as const
|
|
134
137
|
|
|
135
138
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
|
@@ -1412,6 +1415,64 @@ export const DeveloperLogScalarFieldEnum = {
|
|
|
1412
1415
|
export type DeveloperLogScalarFieldEnum = (typeof DeveloperLogScalarFieldEnum)[keyof typeof DeveloperLogScalarFieldEnum]
|
|
1413
1416
|
|
|
1414
1417
|
|
|
1418
|
+
export const StoryScalarFieldEnum = {
|
|
1419
|
+
id: 'id',
|
|
1420
|
+
sequenceId: 'sequenceId',
|
|
1421
|
+
boardOrder: 'boardOrder',
|
|
1422
|
+
identifier: 'identifier',
|
|
1423
|
+
projectId: 'projectId',
|
|
1424
|
+
name: 'name',
|
|
1425
|
+
description: 'description',
|
|
1426
|
+
state: 'state',
|
|
1427
|
+
priority: 'priority',
|
|
1428
|
+
archived: 'archived',
|
|
1429
|
+
archivedAt: 'archivedAt',
|
|
1430
|
+
assigneeId: 'assigneeId',
|
|
1431
|
+
startDate: 'startDate',
|
|
1432
|
+
targetDate: 'targetDate',
|
|
1433
|
+
createdById: 'createdById',
|
|
1434
|
+
updatedById: 'updatedById',
|
|
1435
|
+
parentId: 'parentId',
|
|
1436
|
+
iterationId: 'iterationId',
|
|
1437
|
+
createdAt: 'createdAt',
|
|
1438
|
+
updatedAt: 'updatedAt'
|
|
1439
|
+
} as const
|
|
1440
|
+
|
|
1441
|
+
export type StoryScalarFieldEnum = (typeof StoryScalarFieldEnum)[keyof typeof StoryScalarFieldEnum]
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
export const IterationScalarFieldEnum = {
|
|
1445
|
+
id: 'id',
|
|
1446
|
+
projectId: 'projectId',
|
|
1447
|
+
name: 'name',
|
|
1448
|
+
description: 'description',
|
|
1449
|
+
startDate: 'startDate',
|
|
1450
|
+
endDate: 'endDate',
|
|
1451
|
+
archived: 'archived',
|
|
1452
|
+
archivedAt: 'archivedAt',
|
|
1453
|
+
createdById: 'createdById',
|
|
1454
|
+
createdAt: 'createdAt',
|
|
1455
|
+
updatedAt: 'updatedAt'
|
|
1456
|
+
} as const
|
|
1457
|
+
|
|
1458
|
+
export type IterationScalarFieldEnum = (typeof IterationScalarFieldEnum)[keyof typeof IterationScalarFieldEnum]
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
export const IterationAutoScheduleScalarFieldEnum = {
|
|
1462
|
+
projectId: 'projectId',
|
|
1463
|
+
enabled: 'enabled',
|
|
1464
|
+
title: 'title',
|
|
1465
|
+
durationDays: 'durationDays',
|
|
1466
|
+
cooldownDays: 'cooldownDays',
|
|
1467
|
+
startsOn: 'startsOn',
|
|
1468
|
+
futureCount: 'futureCount',
|
|
1469
|
+
autoRollover: 'autoRollover',
|
|
1470
|
+
lastSeq: 'lastSeq'
|
|
1471
|
+
} as const
|
|
1472
|
+
|
|
1473
|
+
export type IterationAutoScheduleScalarFieldEnum = (typeof IterationAutoScheduleScalarFieldEnum)[keyof typeof IterationAutoScheduleScalarFieldEnum]
|
|
1474
|
+
|
|
1475
|
+
|
|
1415
1476
|
export const SortOrder = {
|
|
1416
1477
|
asc: 'asc',
|
|
1417
1478
|
desc: 'desc'
|