@massa-ai/core 1.57.0 → 1.59.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.
- package/dist/data/symbol/symbol-repo-workspace.d.ts +17 -0
- package/dist/data/symbol/symbol-repo-workspace.d.ts.map +1 -1
- package/dist/data/symbol/symbol-repo-workspace.js +29 -0
- package/dist/data/symbol/symbol-repo-workspace.js.map +1 -1
- package/dist/data/vector/postgres-vector-store.d.ts +20 -0
- package/dist/data/vector/postgres-vector-store.d.ts.map +1 -1
- package/dist/data/vector/postgres-vector-store.js +26 -2
- package/dist/data/vector/postgres-vector-store.js.map +1 -1
- package/dist/generated/prisma/edge.js +5 -4
- package/dist/generated/prisma/index-browser.js +1 -0
- package/dist/generated/prisma/index.d.ts +71 -1
- package/dist/generated/prisma/index.js +5 -4
- package/dist/generated/prisma/package.json +1 -1
- package/dist/generated/prisma/schema.prisma +3 -0
- package/dist/kernel/inference-probe.d.ts +18 -0
- package/dist/kernel/inference-probe.d.ts.map +1 -0
- package/dist/kernel/inference-probe.js +34 -0
- package/dist/kernel/inference-probe.js.map +1 -0
- package/dist/services/embeddings/config.d.ts +11 -0
- package/dist/services/embeddings/config.d.ts.map +1 -1
- package/dist/services/embeddings/config.js +64 -11
- package/dist/services/embeddings/config.js.map +1 -1
- package/dist/services/embeddings/index.d.ts +10 -2
- package/dist/services/embeddings/index.d.ts.map +1 -1
- package/dist/services/embeddings/index.js.map +1 -1
- package/dist/services/embeddings/provider.d.ts +15 -0
- package/dist/services/embeddings/provider.d.ts.map +1 -1
- package/dist/services/embeddings/provider.js +12 -6
- package/dist/services/embeddings/provider.js.map +1 -1
- package/dist/services/etl/pipeline.d.ts.map +1 -1
- package/dist/services/etl/pipeline.js +37 -0
- package/dist/services/etl/pipeline.js.map +1 -1
- package/dist/services/health/local-health-checker.d.ts +32 -1
- package/dist/services/health/local-health-checker.d.ts.map +1 -1
- package/dist/services/health/local-health-checker.js +88 -16
- package/dist/services/health/local-health-checker.js.map +1 -1
- package/dist/services/memory/llm-client.d.ts +61 -0
- package/dist/services/memory/llm-client.d.ts.map +1 -1
- package/dist/services/memory/llm-client.js +147 -15
- package/dist/services/memory/llm-client.js.map +1 -1
- package/dist/services/search/embedding-freshness.d.ts +94 -0
- package/dist/services/search/embedding-freshness.d.ts.map +1 -0
- package/dist/services/search/embedding-freshness.js +114 -0
- package/dist/services/search/embedding-freshness.js.map +1 -0
- package/dist/services/search/ignore-patterns.d.ts +7 -0
- package/dist/services/search/ignore-patterns.d.ts.map +1 -1
- package/dist/services/search/ignore-patterns.js +9 -0
- package/dist/services/search/ignore-patterns.js.map +1 -1
- package/dist/services/search/project-indexer.d.ts +15 -1
- package/dist/services/search/project-indexer.d.ts.map +1 -1
- package/dist/services/search/project-indexer.js +40 -6
- package/dist/services/search/project-indexer.js.map +1 -1
- package/dist/services/search/search-controller.d.ts.map +1 -1
- package/dist/services/search/search-controller.js +31 -1
- package/dist/services/search/search-controller.js.map +1 -1
- package/package.json +2 -2
- package/prisma/migrations/20260919120000_add_embedding_fingerprint/migration.sql +11 -0
- package/prisma/schema.prisma +3 -0
|
@@ -190,6 +190,7 @@ exports.Prisma.WorkspaceScalarFieldEnum = {
|
|
|
190
190
|
filesCount: 'filesCount',
|
|
191
191
|
chunksCount: 'chunksCount',
|
|
192
192
|
symbolsCount: 'symbolsCount',
|
|
193
|
+
embeddingFingerprint: 'embeddingFingerprint',
|
|
193
194
|
activeGraphGenerationId: 'activeGraphGenerationId',
|
|
194
195
|
pendingGraphGenerationId: 'pendingGraphGenerationId',
|
|
195
196
|
graphLeaseToken: 'graphLeaseToken',
|
|
@@ -9598,6 +9598,7 @@ export namespace Prisma {
|
|
|
9598
9598
|
filesCount: number | null
|
|
9599
9599
|
chunksCount: number | null
|
|
9600
9600
|
symbolsCount: number | null
|
|
9601
|
+
embeddingFingerprint: string | null
|
|
9601
9602
|
activeGraphGenerationId: string | null
|
|
9602
9603
|
pendingGraphGenerationId: string | null
|
|
9603
9604
|
graphLeaseToken: string | null
|
|
@@ -9626,6 +9627,7 @@ export namespace Prisma {
|
|
|
9626
9627
|
filesCount: number | null
|
|
9627
9628
|
chunksCount: number | null
|
|
9628
9629
|
symbolsCount: number | null
|
|
9630
|
+
embeddingFingerprint: string | null
|
|
9629
9631
|
activeGraphGenerationId: string | null
|
|
9630
9632
|
pendingGraphGenerationId: string | null
|
|
9631
9633
|
graphLeaseToken: string | null
|
|
@@ -9654,6 +9656,7 @@ export namespace Prisma {
|
|
|
9654
9656
|
filesCount: number
|
|
9655
9657
|
chunksCount: number
|
|
9656
9658
|
symbolsCount: number
|
|
9659
|
+
embeddingFingerprint: number
|
|
9657
9660
|
activeGraphGenerationId: number
|
|
9658
9661
|
pendingGraphGenerationId: number
|
|
9659
9662
|
graphLeaseToken: number
|
|
@@ -9714,6 +9717,7 @@ export namespace Prisma {
|
|
|
9714
9717
|
filesCount?: true
|
|
9715
9718
|
chunksCount?: true
|
|
9716
9719
|
symbolsCount?: true
|
|
9720
|
+
embeddingFingerprint?: true
|
|
9717
9721
|
activeGraphGenerationId?: true
|
|
9718
9722
|
pendingGraphGenerationId?: true
|
|
9719
9723
|
graphLeaseToken?: true
|
|
@@ -9742,6 +9746,7 @@ export namespace Prisma {
|
|
|
9742
9746
|
filesCount?: true
|
|
9743
9747
|
chunksCount?: true
|
|
9744
9748
|
symbolsCount?: true
|
|
9749
|
+
embeddingFingerprint?: true
|
|
9745
9750
|
activeGraphGenerationId?: true
|
|
9746
9751
|
pendingGraphGenerationId?: true
|
|
9747
9752
|
graphLeaseToken?: true
|
|
@@ -9770,6 +9775,7 @@ export namespace Prisma {
|
|
|
9770
9775
|
filesCount?: true
|
|
9771
9776
|
chunksCount?: true
|
|
9772
9777
|
symbolsCount?: true
|
|
9778
|
+
embeddingFingerprint?: true
|
|
9773
9779
|
activeGraphGenerationId?: true
|
|
9774
9780
|
pendingGraphGenerationId?: true
|
|
9775
9781
|
graphLeaseToken?: true
|
|
@@ -9885,6 +9891,7 @@ export namespace Prisma {
|
|
|
9885
9891
|
filesCount: number
|
|
9886
9892
|
chunksCount: number
|
|
9887
9893
|
symbolsCount: number
|
|
9894
|
+
embeddingFingerprint: string | null
|
|
9888
9895
|
activeGraphGenerationId: string | null
|
|
9889
9896
|
pendingGraphGenerationId: string | null
|
|
9890
9897
|
graphLeaseToken: string | null
|
|
@@ -9932,6 +9939,7 @@ export namespace Prisma {
|
|
|
9932
9939
|
filesCount?: boolean
|
|
9933
9940
|
chunksCount?: boolean
|
|
9934
9941
|
symbolsCount?: boolean
|
|
9942
|
+
embeddingFingerprint?: boolean
|
|
9935
9943
|
activeGraphGenerationId?: boolean
|
|
9936
9944
|
pendingGraphGenerationId?: boolean
|
|
9937
9945
|
graphLeaseToken?: boolean
|
|
@@ -9970,6 +9978,7 @@ export namespace Prisma {
|
|
|
9970
9978
|
filesCount?: boolean
|
|
9971
9979
|
chunksCount?: boolean
|
|
9972
9980
|
symbolsCount?: boolean
|
|
9981
|
+
embeddingFingerprint?: boolean
|
|
9973
9982
|
activeGraphGenerationId?: boolean
|
|
9974
9983
|
pendingGraphGenerationId?: boolean
|
|
9975
9984
|
graphLeaseToken?: boolean
|
|
@@ -10000,6 +10009,7 @@ export namespace Prisma {
|
|
|
10000
10009
|
filesCount?: boolean
|
|
10001
10010
|
chunksCount?: boolean
|
|
10002
10011
|
symbolsCount?: boolean
|
|
10012
|
+
embeddingFingerprint?: boolean
|
|
10003
10013
|
activeGraphGenerationId?: boolean
|
|
10004
10014
|
pendingGraphGenerationId?: boolean
|
|
10005
10015
|
graphLeaseToken?: boolean
|
|
@@ -10030,6 +10040,7 @@ export namespace Prisma {
|
|
|
10030
10040
|
filesCount?: boolean
|
|
10031
10041
|
chunksCount?: boolean
|
|
10032
10042
|
symbolsCount?: boolean
|
|
10043
|
+
embeddingFingerprint?: boolean
|
|
10033
10044
|
activeGraphGenerationId?: boolean
|
|
10034
10045
|
pendingGraphGenerationId?: boolean
|
|
10035
10046
|
graphLeaseToken?: boolean
|
|
@@ -10048,7 +10059,7 @@ export namespace Prisma {
|
|
|
10048
10059
|
updatedAt?: boolean
|
|
10049
10060
|
}
|
|
10050
10061
|
|
|
10051
|
-
export type WorkspaceOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"projectId" | "projectPath" | "displayName" | "status" | "lastIndexedAt" | "lastError" | "filesCount" | "chunksCount" | "symbolsCount" | "activeGraphGenerationId" | "pendingGraphGenerationId" | "graphLeaseToken" | "graphLeaseExpiresAt" | "graphLeaseHeartbeatAt" | "activeFilesCount" | "activeDefinitionsCount" | "activeReferencesCount" | "activeImportsCount" | "activeCentralityCount" | "activeDiagnosticsCount" | "activeRecoveredCount" | "activeHardFailuresCount" | "activeStaleFilesCount" | "createdAt" | "updatedAt", ExtArgs["result"]["workspace"]>
|
|
10062
|
+
export type WorkspaceOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"projectId" | "projectPath" | "displayName" | "status" | "lastIndexedAt" | "lastError" | "filesCount" | "chunksCount" | "symbolsCount" | "embeddingFingerprint" | "activeGraphGenerationId" | "pendingGraphGenerationId" | "graphLeaseToken" | "graphLeaseExpiresAt" | "graphLeaseHeartbeatAt" | "activeFilesCount" | "activeDefinitionsCount" | "activeReferencesCount" | "activeImportsCount" | "activeCentralityCount" | "activeDiagnosticsCount" | "activeRecoveredCount" | "activeHardFailuresCount" | "activeStaleFilesCount" | "createdAt" | "updatedAt", ExtArgs["result"]["workspace"]>
|
|
10052
10063
|
export type WorkspaceInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10053
10064
|
files?: boolean | Workspace$filesArgs<ExtArgs>
|
|
10054
10065
|
definitions?: boolean | Workspace$definitionsArgs<ExtArgs>
|
|
@@ -10093,6 +10104,7 @@ export namespace Prisma {
|
|
|
10093
10104
|
filesCount: number
|
|
10094
10105
|
chunksCount: number
|
|
10095
10106
|
symbolsCount: number
|
|
10107
|
+
embeddingFingerprint: string | null
|
|
10096
10108
|
activeGraphGenerationId: string | null
|
|
10097
10109
|
pendingGraphGenerationId: string | null
|
|
10098
10110
|
graphLeaseToken: string | null
|
|
@@ -10550,6 +10562,7 @@ export namespace Prisma {
|
|
|
10550
10562
|
readonly filesCount: FieldRef<"Workspace", 'Int'>
|
|
10551
10563
|
readonly chunksCount: FieldRef<"Workspace", 'Int'>
|
|
10552
10564
|
readonly symbolsCount: FieldRef<"Workspace", 'Int'>
|
|
10565
|
+
readonly embeddingFingerprint: FieldRef<"Workspace", 'String'>
|
|
10553
10566
|
readonly activeGraphGenerationId: FieldRef<"Workspace", 'String'>
|
|
10554
10567
|
readonly pendingGraphGenerationId: FieldRef<"Workspace", 'String'>
|
|
10555
10568
|
readonly graphLeaseToken: FieldRef<"Workspace", 'String'>
|
|
@@ -39473,6 +39486,7 @@ export namespace Prisma {
|
|
|
39473
39486
|
filesCount: 'filesCount',
|
|
39474
39487
|
chunksCount: 'chunksCount',
|
|
39475
39488
|
symbolsCount: 'symbolsCount',
|
|
39489
|
+
embeddingFingerprint: 'embeddingFingerprint',
|
|
39476
39490
|
activeGraphGenerationId: 'activeGraphGenerationId',
|
|
39477
39491
|
pendingGraphGenerationId: 'pendingGraphGenerationId',
|
|
39478
39492
|
graphLeaseToken: 'graphLeaseToken',
|
|
@@ -40458,6 +40472,7 @@ export namespace Prisma {
|
|
|
40458
40472
|
filesCount?: IntFilter<"Workspace"> | number
|
|
40459
40473
|
chunksCount?: IntFilter<"Workspace"> | number
|
|
40460
40474
|
symbolsCount?: IntFilter<"Workspace"> | number
|
|
40475
|
+
embeddingFingerprint?: StringNullableFilter<"Workspace"> | string | null
|
|
40461
40476
|
activeGraphGenerationId?: StringNullableFilter<"Workspace"> | string | null
|
|
40462
40477
|
pendingGraphGenerationId?: StringNullableFilter<"Workspace"> | string | null
|
|
40463
40478
|
graphLeaseToken?: StringNullableFilter<"Workspace"> | string | null
|
|
@@ -40495,6 +40510,7 @@ export namespace Prisma {
|
|
|
40495
40510
|
filesCount?: SortOrder
|
|
40496
40511
|
chunksCount?: SortOrder
|
|
40497
40512
|
symbolsCount?: SortOrder
|
|
40513
|
+
embeddingFingerprint?: SortOrderInput | SortOrder
|
|
40498
40514
|
activeGraphGenerationId?: SortOrderInput | SortOrder
|
|
40499
40515
|
pendingGraphGenerationId?: SortOrderInput | SortOrder
|
|
40500
40516
|
graphLeaseToken?: SortOrderInput | SortOrder
|
|
@@ -40535,6 +40551,7 @@ export namespace Prisma {
|
|
|
40535
40551
|
filesCount?: IntFilter<"Workspace"> | number
|
|
40536
40552
|
chunksCount?: IntFilter<"Workspace"> | number
|
|
40537
40553
|
symbolsCount?: IntFilter<"Workspace"> | number
|
|
40554
|
+
embeddingFingerprint?: StringNullableFilter<"Workspace"> | string | null
|
|
40538
40555
|
activeGraphGenerationId?: StringNullableFilter<"Workspace"> | string | null
|
|
40539
40556
|
pendingGraphGenerationId?: StringNullableFilter<"Workspace"> | string | null
|
|
40540
40557
|
graphLeaseToken?: StringNullableFilter<"Workspace"> | string | null
|
|
@@ -40572,6 +40589,7 @@ export namespace Prisma {
|
|
|
40572
40589
|
filesCount?: SortOrder
|
|
40573
40590
|
chunksCount?: SortOrder
|
|
40574
40591
|
symbolsCount?: SortOrder
|
|
40592
|
+
embeddingFingerprint?: SortOrderInput | SortOrder
|
|
40575
40593
|
activeGraphGenerationId?: SortOrderInput | SortOrder
|
|
40576
40594
|
pendingGraphGenerationId?: SortOrderInput | SortOrder
|
|
40577
40595
|
graphLeaseToken?: SortOrderInput | SortOrder
|
|
@@ -40608,6 +40626,7 @@ export namespace Prisma {
|
|
|
40608
40626
|
filesCount?: IntWithAggregatesFilter<"Workspace"> | number
|
|
40609
40627
|
chunksCount?: IntWithAggregatesFilter<"Workspace"> | number
|
|
40610
40628
|
symbolsCount?: IntWithAggregatesFilter<"Workspace"> | number
|
|
40629
|
+
embeddingFingerprint?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
40611
40630
|
activeGraphGenerationId?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
40612
40631
|
pendingGraphGenerationId?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
40613
40632
|
graphLeaseToken?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
@@ -43132,6 +43151,7 @@ export namespace Prisma {
|
|
|
43132
43151
|
filesCount?: number
|
|
43133
43152
|
chunksCount?: number
|
|
43134
43153
|
symbolsCount?: number
|
|
43154
|
+
embeddingFingerprint?: string | null
|
|
43135
43155
|
graphLeaseToken?: string | null
|
|
43136
43156
|
graphLeaseExpiresAt?: Date | string | null
|
|
43137
43157
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -43167,6 +43187,7 @@ export namespace Prisma {
|
|
|
43167
43187
|
filesCount?: number
|
|
43168
43188
|
chunksCount?: number
|
|
43169
43189
|
symbolsCount?: number
|
|
43190
|
+
embeddingFingerprint?: string | null
|
|
43170
43191
|
activeGraphGenerationId?: string | null
|
|
43171
43192
|
pendingGraphGenerationId?: string | null
|
|
43172
43193
|
graphLeaseToken?: string | null
|
|
@@ -43201,6 +43222,7 @@ export namespace Prisma {
|
|
|
43201
43222
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
43202
43223
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
43203
43224
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
43225
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43204
43226
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43205
43227
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43206
43228
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -43236,6 +43258,7 @@ export namespace Prisma {
|
|
|
43236
43258
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
43237
43259
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
43238
43260
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
43261
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43239
43262
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43240
43263
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43241
43264
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -43271,6 +43294,7 @@ export namespace Prisma {
|
|
|
43271
43294
|
filesCount?: number
|
|
43272
43295
|
chunksCount?: number
|
|
43273
43296
|
symbolsCount?: number
|
|
43297
|
+
embeddingFingerprint?: string | null
|
|
43274
43298
|
activeGraphGenerationId?: string | null
|
|
43275
43299
|
pendingGraphGenerationId?: string | null
|
|
43276
43300
|
graphLeaseToken?: string | null
|
|
@@ -43298,6 +43322,7 @@ export namespace Prisma {
|
|
|
43298
43322
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
43299
43323
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
43300
43324
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
43325
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43301
43326
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43302
43327
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43303
43328
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -43324,6 +43349,7 @@ export namespace Prisma {
|
|
|
43324
43349
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
43325
43350
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
43326
43351
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
43352
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43327
43353
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43328
43354
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43329
43355
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -46275,6 +46301,7 @@ export namespace Prisma {
|
|
|
46275
46301
|
filesCount?: SortOrder
|
|
46276
46302
|
chunksCount?: SortOrder
|
|
46277
46303
|
symbolsCount?: SortOrder
|
|
46304
|
+
embeddingFingerprint?: SortOrder
|
|
46278
46305
|
activeGraphGenerationId?: SortOrder
|
|
46279
46306
|
pendingGraphGenerationId?: SortOrder
|
|
46280
46307
|
graphLeaseToken?: SortOrder
|
|
@@ -46318,6 +46345,7 @@ export namespace Prisma {
|
|
|
46318
46345
|
filesCount?: SortOrder
|
|
46319
46346
|
chunksCount?: SortOrder
|
|
46320
46347
|
symbolsCount?: SortOrder
|
|
46348
|
+
embeddingFingerprint?: SortOrder
|
|
46321
46349
|
activeGraphGenerationId?: SortOrder
|
|
46322
46350
|
pendingGraphGenerationId?: SortOrder
|
|
46323
46351
|
graphLeaseToken?: SortOrder
|
|
@@ -46346,6 +46374,7 @@ export namespace Prisma {
|
|
|
46346
46374
|
filesCount?: SortOrder
|
|
46347
46375
|
chunksCount?: SortOrder
|
|
46348
46376
|
symbolsCount?: SortOrder
|
|
46377
|
+
embeddingFingerprint?: SortOrder
|
|
46349
46378
|
activeGraphGenerationId?: SortOrder
|
|
46350
46379
|
pendingGraphGenerationId?: SortOrder
|
|
46351
46380
|
graphLeaseToken?: SortOrder
|
|
@@ -50276,6 +50305,7 @@ export namespace Prisma {
|
|
|
50276
50305
|
filesCount?: number
|
|
50277
50306
|
chunksCount?: number
|
|
50278
50307
|
symbolsCount?: number
|
|
50308
|
+
embeddingFingerprint?: string | null
|
|
50279
50309
|
graphLeaseToken?: string | null
|
|
50280
50310
|
graphLeaseExpiresAt?: Date | string | null
|
|
50281
50311
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -50310,6 +50340,7 @@ export namespace Prisma {
|
|
|
50310
50340
|
filesCount?: number
|
|
50311
50341
|
chunksCount?: number
|
|
50312
50342
|
symbolsCount?: number
|
|
50343
|
+
embeddingFingerprint?: string | null
|
|
50313
50344
|
activeGraphGenerationId?: string | null
|
|
50314
50345
|
pendingGraphGenerationId?: string | null
|
|
50315
50346
|
graphLeaseToken?: string | null
|
|
@@ -50531,6 +50562,7 @@ export namespace Prisma {
|
|
|
50531
50562
|
filesCount?: number
|
|
50532
50563
|
chunksCount?: number
|
|
50533
50564
|
symbolsCount?: number
|
|
50565
|
+
embeddingFingerprint?: string | null
|
|
50534
50566
|
graphLeaseToken?: string | null
|
|
50535
50567
|
graphLeaseExpiresAt?: Date | string | null
|
|
50536
50568
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -50564,6 +50596,7 @@ export namespace Prisma {
|
|
|
50564
50596
|
filesCount?: number
|
|
50565
50597
|
chunksCount?: number
|
|
50566
50598
|
symbolsCount?: number
|
|
50599
|
+
embeddingFingerprint?: string | null
|
|
50567
50600
|
pendingGraphGenerationId?: string | null
|
|
50568
50601
|
graphLeaseToken?: string | null
|
|
50569
50602
|
graphLeaseExpiresAt?: Date | string | null
|
|
@@ -50607,6 +50640,7 @@ export namespace Prisma {
|
|
|
50607
50640
|
filesCount?: number
|
|
50608
50641
|
chunksCount?: number
|
|
50609
50642
|
symbolsCount?: number
|
|
50643
|
+
embeddingFingerprint?: string | null
|
|
50610
50644
|
graphLeaseToken?: string | null
|
|
50611
50645
|
graphLeaseExpiresAt?: Date | string | null
|
|
50612
50646
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -50640,6 +50674,7 @@ export namespace Prisma {
|
|
|
50640
50674
|
filesCount?: number
|
|
50641
50675
|
chunksCount?: number
|
|
50642
50676
|
symbolsCount?: number
|
|
50677
|
+
embeddingFingerprint?: string | null
|
|
50643
50678
|
activeGraphGenerationId?: string | null
|
|
50644
50679
|
graphLeaseToken?: string | null
|
|
50645
50680
|
graphLeaseExpiresAt?: Date | string | null
|
|
@@ -50694,6 +50729,7 @@ export namespace Prisma {
|
|
|
50694
50729
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
50695
50730
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
50696
50731
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
50732
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50697
50733
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50698
50734
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50699
50735
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -50728,6 +50764,7 @@ export namespace Prisma {
|
|
|
50728
50764
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
50729
50765
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
50730
50766
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
50767
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50731
50768
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50732
50769
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50733
50770
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -50861,6 +50898,7 @@ export namespace Prisma {
|
|
|
50861
50898
|
filesCount?: IntFilter<"Workspace"> | number
|
|
50862
50899
|
chunksCount?: IntFilter<"Workspace"> | number
|
|
50863
50900
|
symbolsCount?: IntFilter<"Workspace"> | number
|
|
50901
|
+
embeddingFingerprint?: StringNullableFilter<"Workspace"> | string | null
|
|
50864
50902
|
activeGraphGenerationId?: StringNullableFilter<"Workspace"> | string | null
|
|
50865
50903
|
pendingGraphGenerationId?: StringNullableFilter<"Workspace"> | string | null
|
|
50866
50904
|
graphLeaseToken?: StringNullableFilter<"Workspace"> | string | null
|
|
@@ -50904,6 +50942,7 @@ export namespace Prisma {
|
|
|
50904
50942
|
filesCount?: number
|
|
50905
50943
|
chunksCount?: number
|
|
50906
50944
|
symbolsCount?: number
|
|
50945
|
+
embeddingFingerprint?: string | null
|
|
50907
50946
|
graphLeaseToken?: string | null
|
|
50908
50947
|
graphLeaseExpiresAt?: Date | string | null
|
|
50909
50948
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -50938,6 +50977,7 @@ export namespace Prisma {
|
|
|
50938
50977
|
filesCount?: number
|
|
50939
50978
|
chunksCount?: number
|
|
50940
50979
|
symbolsCount?: number
|
|
50980
|
+
embeddingFingerprint?: string | null
|
|
50941
50981
|
activeGraphGenerationId?: string | null
|
|
50942
50982
|
pendingGraphGenerationId?: string | null
|
|
50943
50983
|
graphLeaseToken?: string | null
|
|
@@ -51058,6 +51098,7 @@ export namespace Prisma {
|
|
|
51058
51098
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51059
51099
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51060
51100
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
51101
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51061
51102
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51062
51103
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51063
51104
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -51092,6 +51133,7 @@ export namespace Prisma {
|
|
|
51092
51133
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51093
51134
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51094
51135
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
51136
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51095
51137
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51096
51138
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51097
51139
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -51202,6 +51244,7 @@ export namespace Prisma {
|
|
|
51202
51244
|
filesCount?: number
|
|
51203
51245
|
chunksCount?: number
|
|
51204
51246
|
symbolsCount?: number
|
|
51247
|
+
embeddingFingerprint?: string | null
|
|
51205
51248
|
graphLeaseToken?: string | null
|
|
51206
51249
|
graphLeaseExpiresAt?: Date | string | null
|
|
51207
51250
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -51236,6 +51279,7 @@ export namespace Prisma {
|
|
|
51236
51279
|
filesCount?: number
|
|
51237
51280
|
chunksCount?: number
|
|
51238
51281
|
symbolsCount?: number
|
|
51282
|
+
embeddingFingerprint?: string | null
|
|
51239
51283
|
activeGraphGenerationId?: string | null
|
|
51240
51284
|
pendingGraphGenerationId?: string | null
|
|
51241
51285
|
graphLeaseToken?: string | null
|
|
@@ -51356,6 +51400,7 @@ export namespace Prisma {
|
|
|
51356
51400
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51357
51401
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51358
51402
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
51403
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51359
51404
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51360
51405
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51361
51406
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -51390,6 +51435,7 @@ export namespace Prisma {
|
|
|
51390
51435
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51391
51436
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51392
51437
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
51438
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51393
51439
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51394
51440
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51395
51441
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -51500,6 +51546,7 @@ export namespace Prisma {
|
|
|
51500
51546
|
filesCount?: number
|
|
51501
51547
|
chunksCount?: number
|
|
51502
51548
|
symbolsCount?: number
|
|
51549
|
+
embeddingFingerprint?: string | null
|
|
51503
51550
|
graphLeaseToken?: string | null
|
|
51504
51551
|
graphLeaseExpiresAt?: Date | string | null
|
|
51505
51552
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -51534,6 +51581,7 @@ export namespace Prisma {
|
|
|
51534
51581
|
filesCount?: number
|
|
51535
51582
|
chunksCount?: number
|
|
51536
51583
|
symbolsCount?: number
|
|
51584
|
+
embeddingFingerprint?: string | null
|
|
51537
51585
|
activeGraphGenerationId?: string | null
|
|
51538
51586
|
pendingGraphGenerationId?: string | null
|
|
51539
51587
|
graphLeaseToken?: string | null
|
|
@@ -51654,6 +51702,7 @@ export namespace Prisma {
|
|
|
51654
51702
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51655
51703
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51656
51704
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
51705
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51657
51706
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51658
51707
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51659
51708
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -51688,6 +51737,7 @@ export namespace Prisma {
|
|
|
51688
51737
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51689
51738
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51690
51739
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
51740
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51691
51741
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51692
51742
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51693
51743
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -51798,6 +51848,7 @@ export namespace Prisma {
|
|
|
51798
51848
|
filesCount?: number
|
|
51799
51849
|
chunksCount?: number
|
|
51800
51850
|
symbolsCount?: number
|
|
51851
|
+
embeddingFingerprint?: string | null
|
|
51801
51852
|
graphLeaseToken?: string | null
|
|
51802
51853
|
graphLeaseExpiresAt?: Date | string | null
|
|
51803
51854
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -51832,6 +51883,7 @@ export namespace Prisma {
|
|
|
51832
51883
|
filesCount?: number
|
|
51833
51884
|
chunksCount?: number
|
|
51834
51885
|
symbolsCount?: number
|
|
51886
|
+
embeddingFingerprint?: string | null
|
|
51835
51887
|
activeGraphGenerationId?: string | null
|
|
51836
51888
|
pendingGraphGenerationId?: string | null
|
|
51837
51889
|
graphLeaseToken?: string | null
|
|
@@ -51952,6 +52004,7 @@ export namespace Prisma {
|
|
|
51952
52004
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51953
52005
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51954
52006
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
52007
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51955
52008
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51956
52009
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51957
52010
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -51986,6 +52039,7 @@ export namespace Prisma {
|
|
|
51986
52039
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
51987
52040
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
51988
52041
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
52042
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51989
52043
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51990
52044
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51991
52045
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -52096,6 +52150,7 @@ export namespace Prisma {
|
|
|
52096
52150
|
filesCount?: number
|
|
52097
52151
|
chunksCount?: number
|
|
52098
52152
|
symbolsCount?: number
|
|
52153
|
+
embeddingFingerprint?: string | null
|
|
52099
52154
|
graphLeaseToken?: string | null
|
|
52100
52155
|
graphLeaseExpiresAt?: Date | string | null
|
|
52101
52156
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -52130,6 +52185,7 @@ export namespace Prisma {
|
|
|
52130
52185
|
filesCount?: number
|
|
52131
52186
|
chunksCount?: number
|
|
52132
52187
|
symbolsCount?: number
|
|
52188
|
+
embeddingFingerprint?: string | null
|
|
52133
52189
|
activeGraphGenerationId?: string | null
|
|
52134
52190
|
pendingGraphGenerationId?: string | null
|
|
52135
52191
|
graphLeaseToken?: string | null
|
|
@@ -52250,6 +52306,7 @@ export namespace Prisma {
|
|
|
52250
52306
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
52251
52307
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
52252
52308
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
52309
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52253
52310
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52254
52311
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
52255
52312
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -52284,6 +52341,7 @@ export namespace Prisma {
|
|
|
52284
52341
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
52285
52342
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
52286
52343
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
52344
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52287
52345
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52288
52346
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52289
52347
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -52602,6 +52660,7 @@ export namespace Prisma {
|
|
|
52602
52660
|
filesCount?: number
|
|
52603
52661
|
chunksCount?: number
|
|
52604
52662
|
symbolsCount?: number
|
|
52663
|
+
embeddingFingerprint?: string | null
|
|
52605
52664
|
graphLeaseToken?: string | null
|
|
52606
52665
|
graphLeaseExpiresAt?: Date | string | null
|
|
52607
52666
|
graphLeaseHeartbeatAt?: Date | string | null
|
|
@@ -52636,6 +52695,7 @@ export namespace Prisma {
|
|
|
52636
52695
|
filesCount?: number
|
|
52637
52696
|
chunksCount?: number
|
|
52638
52697
|
symbolsCount?: number
|
|
52698
|
+
embeddingFingerprint?: string | null
|
|
52639
52699
|
activeGraphGenerationId?: string | null
|
|
52640
52700
|
pendingGraphGenerationId?: string | null
|
|
52641
52701
|
graphLeaseToken?: string | null
|
|
@@ -52716,6 +52776,7 @@ export namespace Prisma {
|
|
|
52716
52776
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
52717
52777
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
52718
52778
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
52779
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52719
52780
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52720
52781
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
52721
52782
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -52750,6 +52811,7 @@ export namespace Prisma {
|
|
|
52750
52811
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
52751
52812
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
52752
52813
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
52814
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52753
52815
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52754
52816
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
52755
52817
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -53459,6 +53521,7 @@ export namespace Prisma {
|
|
|
53459
53521
|
filesCount?: number
|
|
53460
53522
|
chunksCount?: number
|
|
53461
53523
|
symbolsCount?: number
|
|
53524
|
+
embeddingFingerprint?: string | null
|
|
53462
53525
|
pendingGraphGenerationId?: string | null
|
|
53463
53526
|
graphLeaseToken?: string | null
|
|
53464
53527
|
graphLeaseExpiresAt?: Date | string | null
|
|
@@ -53485,6 +53548,7 @@ export namespace Prisma {
|
|
|
53485
53548
|
filesCount?: number
|
|
53486
53549
|
chunksCount?: number
|
|
53487
53550
|
symbolsCount?: number
|
|
53551
|
+
embeddingFingerprint?: string | null
|
|
53488
53552
|
activeGraphGenerationId?: string | null
|
|
53489
53553
|
graphLeaseToken?: string | null
|
|
53490
53554
|
graphLeaseExpiresAt?: Date | string | null
|
|
@@ -53709,6 +53773,7 @@ export namespace Prisma {
|
|
|
53709
53773
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
53710
53774
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
53711
53775
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
53776
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53712
53777
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53713
53778
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53714
53779
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -53742,6 +53807,7 @@ export namespace Prisma {
|
|
|
53742
53807
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
53743
53808
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
53744
53809
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
53810
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53745
53811
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53746
53812
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53747
53813
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -53775,6 +53841,7 @@ export namespace Prisma {
|
|
|
53775
53841
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
53776
53842
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
53777
53843
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
53844
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53778
53845
|
pendingGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53779
53846
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53780
53847
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -53801,6 +53868,7 @@ export namespace Prisma {
|
|
|
53801
53868
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
53802
53869
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
53803
53870
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
53871
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53804
53872
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53805
53873
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53806
53874
|
graphLeaseHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -53834,6 +53902,7 @@ export namespace Prisma {
|
|
|
53834
53902
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
53835
53903
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
53836
53904
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
53905
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53837
53906
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53838
53907
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53839
53908
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -53867,6 +53936,7 @@ export namespace Prisma {
|
|
|
53867
53936
|
filesCount?: IntFieldUpdateOperationsInput | number
|
|
53868
53937
|
chunksCount?: IntFieldUpdateOperationsInput | number
|
|
53869
53938
|
symbolsCount?: IntFieldUpdateOperationsInput | number
|
|
53939
|
+
embeddingFingerprint?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53870
53940
|
activeGraphGenerationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53871
53941
|
graphLeaseToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53872
53942
|
graphLeaseExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|