@codemation/host 1.0.1 → 1.0.2
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/CHANGELOG.md +24 -0
- package/dist/{AppConfigFactory-BPp02HMv.js → AppConfigFactory-C4OXGOs2.js} +16 -7
- package/dist/{AppConfigFactory-BPp02HMv.js.map → AppConfigFactory-C4OXGOs2.js.map} +1 -1
- package/dist/{AppConfigFactory-PFmDg5Sg.d.ts → AppConfigFactory-D3k-R3Ch.d.ts} +338 -6
- package/dist/{AppContainerFactory-Cr3JeVmg.js → AppContainerFactory-CKRDz8kQ.js} +409 -92
- package/dist/AppContainerFactory-CKRDz8kQ.js.map +1 -0
- package/dist/{CodemationAppContext-DP_-56c6.d.ts → CodemationAppContext-YgJRUHWF.d.ts} +2 -2
- package/dist/{CodemationAuthoring.types-Cr2QZsUX.d.ts → CodemationAuthoring.types-lUdxXYq-.d.ts} +3 -3
- package/dist/{CodemationConfigNormalizer-B8RGUwAe.d.ts → CodemationConfigNormalizer-BWBp7mFB.d.ts} +2 -2
- package/dist/{CodemationConsumerConfigLoader-C_QVwcI3.d.ts → CodemationConsumerConfigLoader-Bka3v6lh.d.ts} +2 -2
- package/dist/{CodemationPluginListMerger-Bgn1CIX9.d.ts → CodemationPluginListMerger-Oz-GAkxz.d.ts} +17 -5
- package/dist/{CredentialServices-95DPogx-.d.ts → CredentialServices-CKXPg5xu.d.ts} +3 -3
- package/dist/{PublicFrontendBootstrapFactory-C_iLgPV-.d.ts → PublicFrontendBootstrapFactory-DkQoSYDo.d.ts} +2 -2
- package/dist/authoring.d.ts +3 -3
- package/dist/consumer.d.ts +4 -4
- package/dist/credentials.d.ts +3 -3
- package/dist/devServerSidecar.d.ts +1 -1
- package/dist/{index-W4eSjdCM.d.ts → index-BxIc_L4D.d.ts} +233 -151
- package/dist/index.d.ts +11 -11
- package/dist/index.js +4 -4
- package/dist/nextServer.d.ts +7 -7
- package/dist/nextServer.js +2 -2
- package/dist/{persistenceServer-_pqP_0nw.d.ts → persistenceServer-BLG7_6B5.d.ts} +2 -2
- package/dist/{persistenceServer-CA0_q0D7.js → persistenceServer-KyHL0u01.js} +2 -2
- package/dist/{persistenceServer-CA0_q0D7.js.map → persistenceServer-KyHL0u01.js.map} +1 -1
- package/dist/persistenceServer.d.ts +5 -5
- package/dist/persistenceServer.js +2 -2
- package/dist/{server-Q5uwa6iR.d.ts → server-B0SD6Nvk.d.ts} +5 -5
- package/dist/{server-BE4PLhcb.js → server-CMUVhYIc.js} +3 -3
- package/dist/{server-BE4PLhcb.js.map → server-CMUVhYIc.js.map} +1 -1
- package/dist/server.d.ts +8 -8
- package/dist/server.js +4 -4
- package/package.json +5 -5
- package/prisma/migrations/20260430120000_telemetry_iteration_identity/migration.sql +17 -0
- package/prisma/migrations/20260430130000_execution_instance_iteration_identity/migration.sql +11 -0
- package/prisma/migrations.sqlite/20260430120000_telemetry_iteration_identity/migration.sql +14 -0
- package/prisma/migrations.sqlite/20260430130000_execution_instance_iteration_identity/migration.sql +10 -0
- package/prisma/schema.postgresql.prisma +12 -0
- package/prisma/schema.sqlite.prisma +12 -0
- package/src/application/contracts/IterationCostContracts.ts +11 -0
- package/src/application/queries/GetIterationCostQuery.ts +14 -0
- package/src/application/queries/GetIterationCostQueryHandler.ts +92 -0
- package/src/application/queries/GetWorkflowRunDetailQueryHandler.ts +44 -2
- package/src/application/queries/RunIterationProjectionFactory.ts +123 -0
- package/src/application/queries/WorkflowQueryHandlers.ts +1 -0
- package/src/application/telemetry/OtelExecutionTelemetry.types.ts +3 -0
- package/src/application/telemetry/RunEventBusTelemetryReporter.ts +7 -0
- package/src/application/telemetry/StoredNodeExecutionTelemetry.ts +14 -0
- package/src/application/telemetry/StoredTelemetrySpanScope.ts +90 -1
- package/src/bootstrap/AppContainerFactory.ts +5 -0
- package/src/domain/telemetry/TelemetryContracts.ts +12 -0
- package/src/infrastructure/persistence/InMemoryTelemetryMetricPointStore.ts +3 -0
- package/src/infrastructure/persistence/InMemoryTelemetrySpanStore.ts +3 -0
- package/src/infrastructure/persistence/InMemoryWorkflowRunRepository.ts +23 -0
- package/src/infrastructure/persistence/PrismaTelemetryMetricPointStore.ts +9 -0
- package/src/infrastructure/persistence/PrismaTelemetrySpanStore.ts +6 -0
- package/src/infrastructure/persistence/PrismaWorkflowRunRepository.ts +12 -0
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/edge.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/index-browser.js +11 -2
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/index.d.ts +343 -5
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/index.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/package.json +1 -1
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/schema.prisma +12 -0
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/edge.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/index-browser.js +11 -2
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/index.d.ts +343 -5
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/index.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/package.json +1 -1
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/schema.prisma +12 -0
- package/dist/AppContainerFactory-Cr3JeVmg.js.map +0 -1
|
@@ -5454,6 +5454,7 @@ export namespace Prisma {
|
|
|
5454
5454
|
failedItemCount: number | null
|
|
5455
5455
|
inputBytes: number | null
|
|
5456
5456
|
outputBytes: number | null
|
|
5457
|
+
itemIndex: number | null
|
|
5457
5458
|
}
|
|
5458
5459
|
|
|
5459
5460
|
export type ExecutionInstanceSumAggregateOutputType = {
|
|
@@ -5464,6 +5465,7 @@ export namespace Prisma {
|
|
|
5464
5465
|
failedItemCount: number | null
|
|
5465
5466
|
inputBytes: number | null
|
|
5466
5467
|
outputBytes: number | null
|
|
5468
|
+
itemIndex: number | null
|
|
5467
5469
|
}
|
|
5468
5470
|
|
|
5469
5471
|
export type ExecutionInstanceMinAggregateOutputType = {
|
|
@@ -5504,6 +5506,9 @@ export namespace Prisma {
|
|
|
5504
5506
|
inputTruncated: boolean | null
|
|
5505
5507
|
outputTruncated: boolean | null
|
|
5506
5508
|
usedPinnedOutput: boolean | null
|
|
5509
|
+
iterationId: string | null
|
|
5510
|
+
itemIndex: number | null
|
|
5511
|
+
parentInvocationId: string | null
|
|
5507
5512
|
}
|
|
5508
5513
|
|
|
5509
5514
|
export type ExecutionInstanceMaxAggregateOutputType = {
|
|
@@ -5544,6 +5549,9 @@ export namespace Prisma {
|
|
|
5544
5549
|
inputTruncated: boolean | null
|
|
5545
5550
|
outputTruncated: boolean | null
|
|
5546
5551
|
usedPinnedOutput: boolean | null
|
|
5552
|
+
iterationId: string | null
|
|
5553
|
+
itemIndex: number | null
|
|
5554
|
+
parentInvocationId: string | null
|
|
5547
5555
|
}
|
|
5548
5556
|
|
|
5549
5557
|
export type ExecutionInstanceCountAggregateOutputType = {
|
|
@@ -5584,6 +5592,9 @@ export namespace Prisma {
|
|
|
5584
5592
|
inputTruncated: number
|
|
5585
5593
|
outputTruncated: number
|
|
5586
5594
|
usedPinnedOutput: number
|
|
5595
|
+
iterationId: number
|
|
5596
|
+
itemIndex: number
|
|
5597
|
+
parentInvocationId: number
|
|
5587
5598
|
_all: number
|
|
5588
5599
|
}
|
|
5589
5600
|
|
|
@@ -5596,6 +5607,7 @@ export namespace Prisma {
|
|
|
5596
5607
|
failedItemCount?: true
|
|
5597
5608
|
inputBytes?: true
|
|
5598
5609
|
outputBytes?: true
|
|
5610
|
+
itemIndex?: true
|
|
5599
5611
|
}
|
|
5600
5612
|
|
|
5601
5613
|
export type ExecutionInstanceSumAggregateInputType = {
|
|
@@ -5606,6 +5618,7 @@ export namespace Prisma {
|
|
|
5606
5618
|
failedItemCount?: true
|
|
5607
5619
|
inputBytes?: true
|
|
5608
5620
|
outputBytes?: true
|
|
5621
|
+
itemIndex?: true
|
|
5609
5622
|
}
|
|
5610
5623
|
|
|
5611
5624
|
export type ExecutionInstanceMinAggregateInputType = {
|
|
@@ -5646,6 +5659,9 @@ export namespace Prisma {
|
|
|
5646
5659
|
inputTruncated?: true
|
|
5647
5660
|
outputTruncated?: true
|
|
5648
5661
|
usedPinnedOutput?: true
|
|
5662
|
+
iterationId?: true
|
|
5663
|
+
itemIndex?: true
|
|
5664
|
+
parentInvocationId?: true
|
|
5649
5665
|
}
|
|
5650
5666
|
|
|
5651
5667
|
export type ExecutionInstanceMaxAggregateInputType = {
|
|
@@ -5686,6 +5702,9 @@ export namespace Prisma {
|
|
|
5686
5702
|
inputTruncated?: true
|
|
5687
5703
|
outputTruncated?: true
|
|
5688
5704
|
usedPinnedOutput?: true
|
|
5705
|
+
iterationId?: true
|
|
5706
|
+
itemIndex?: true
|
|
5707
|
+
parentInvocationId?: true
|
|
5689
5708
|
}
|
|
5690
5709
|
|
|
5691
5710
|
export type ExecutionInstanceCountAggregateInputType = {
|
|
@@ -5726,6 +5745,9 @@ export namespace Prisma {
|
|
|
5726
5745
|
inputTruncated?: true
|
|
5727
5746
|
outputTruncated?: true
|
|
5728
5747
|
usedPinnedOutput?: true
|
|
5748
|
+
iterationId?: true
|
|
5749
|
+
itemIndex?: true
|
|
5750
|
+
parentInvocationId?: true
|
|
5729
5751
|
_all?: true
|
|
5730
5752
|
}
|
|
5731
5753
|
|
|
@@ -5853,6 +5875,9 @@ export namespace Prisma {
|
|
|
5853
5875
|
inputTruncated: boolean | null
|
|
5854
5876
|
outputTruncated: boolean | null
|
|
5855
5877
|
usedPinnedOutput: boolean | null
|
|
5878
|
+
iterationId: string | null
|
|
5879
|
+
itemIndex: number | null
|
|
5880
|
+
parentInvocationId: string | null
|
|
5856
5881
|
_count: ExecutionInstanceCountAggregateOutputType | null
|
|
5857
5882
|
_avg: ExecutionInstanceAvgAggregateOutputType | null
|
|
5858
5883
|
_sum: ExecutionInstanceSumAggregateOutputType | null
|
|
@@ -5912,6 +5937,9 @@ export namespace Prisma {
|
|
|
5912
5937
|
inputTruncated?: boolean
|
|
5913
5938
|
outputTruncated?: boolean
|
|
5914
5939
|
usedPinnedOutput?: boolean
|
|
5940
|
+
iterationId?: boolean
|
|
5941
|
+
itemIndex?: boolean
|
|
5942
|
+
parentInvocationId?: boolean
|
|
5915
5943
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
5916
5944
|
}, ExtArgs["result"]["executionInstance"]>
|
|
5917
5945
|
|
|
@@ -5953,6 +5981,9 @@ export namespace Prisma {
|
|
|
5953
5981
|
inputTruncated?: boolean
|
|
5954
5982
|
outputTruncated?: boolean
|
|
5955
5983
|
usedPinnedOutput?: boolean
|
|
5984
|
+
iterationId?: boolean
|
|
5985
|
+
itemIndex?: boolean
|
|
5986
|
+
parentInvocationId?: boolean
|
|
5956
5987
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
5957
5988
|
}, ExtArgs["result"]["executionInstance"]>
|
|
5958
5989
|
|
|
@@ -5994,6 +6025,9 @@ export namespace Prisma {
|
|
|
5994
6025
|
inputTruncated?: boolean
|
|
5995
6026
|
outputTruncated?: boolean
|
|
5996
6027
|
usedPinnedOutput?: boolean
|
|
6028
|
+
iterationId?: boolean
|
|
6029
|
+
itemIndex?: boolean
|
|
6030
|
+
parentInvocationId?: boolean
|
|
5997
6031
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
5998
6032
|
}, ExtArgs["result"]["executionInstance"]>
|
|
5999
6033
|
|
|
@@ -6035,9 +6069,12 @@ export namespace Prisma {
|
|
|
6035
6069
|
inputTruncated?: boolean
|
|
6036
6070
|
outputTruncated?: boolean
|
|
6037
6071
|
usedPinnedOutput?: boolean
|
|
6072
|
+
iterationId?: boolean
|
|
6073
|
+
itemIndex?: boolean
|
|
6074
|
+
parentInvocationId?: boolean
|
|
6038
6075
|
}
|
|
6039
6076
|
|
|
6040
|
-
export type ExecutionInstanceOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"instanceId" | "runId" | "workflowId" | "slotNodeId" | "workflowNodeId" | "kind" | "connectionKind" | "activationId" | "batchId" | "runIndex" | "parentInstanceId" | "parentRunId" | "workerClaimToken" | "status" | "queuedAt" | "startedAt" | "finishedAt" | "updatedAt" | "itemCount" | "inputJson" | "outputJson" | "errorJson" | "inputItemIndicesJson" | "outputItemCount" | "successfulItemCount" | "failedItemCount" | "inputStorageKind" | "outputStorageKind" | "inputBytes" | "outputBytes" | "inputPreviewJson" | "outputPreviewJson" | "inputPayloadRef" | "outputPayloadRef" | "inputTruncated" | "outputTruncated" | "usedPinnedOutput", ExtArgs["result"]["executionInstance"]>
|
|
6077
|
+
export type ExecutionInstanceOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"instanceId" | "runId" | "workflowId" | "slotNodeId" | "workflowNodeId" | "kind" | "connectionKind" | "activationId" | "batchId" | "runIndex" | "parentInstanceId" | "parentRunId" | "workerClaimToken" | "status" | "queuedAt" | "startedAt" | "finishedAt" | "updatedAt" | "itemCount" | "inputJson" | "outputJson" | "errorJson" | "inputItemIndicesJson" | "outputItemCount" | "successfulItemCount" | "failedItemCount" | "inputStorageKind" | "outputStorageKind" | "inputBytes" | "outputBytes" | "inputPreviewJson" | "outputPreviewJson" | "inputPayloadRef" | "outputPayloadRef" | "inputTruncated" | "outputTruncated" | "usedPinnedOutput" | "iterationId" | "itemIndex" | "parentInvocationId", ExtArgs["result"]["executionInstance"]>
|
|
6041
6078
|
export type ExecutionInstanceInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6042
6079
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
6043
6080
|
}
|
|
@@ -6091,6 +6128,9 @@ export namespace Prisma {
|
|
|
6091
6128
|
inputTruncated: boolean | null
|
|
6092
6129
|
outputTruncated: boolean | null
|
|
6093
6130
|
usedPinnedOutput: boolean | null
|
|
6131
|
+
iterationId: string | null
|
|
6132
|
+
itemIndex: number | null
|
|
6133
|
+
parentInvocationId: string | null
|
|
6094
6134
|
}, ExtArgs["result"]["executionInstance"]>
|
|
6095
6135
|
composites: {}
|
|
6096
6136
|
}
|
|
@@ -6552,6 +6592,9 @@ export namespace Prisma {
|
|
|
6552
6592
|
readonly inputTruncated: FieldRef<"ExecutionInstance", 'Boolean'>
|
|
6553
6593
|
readonly outputTruncated: FieldRef<"ExecutionInstance", 'Boolean'>
|
|
6554
6594
|
readonly usedPinnedOutput: FieldRef<"ExecutionInstance", 'Boolean'>
|
|
6595
|
+
readonly iterationId: FieldRef<"ExecutionInstance", 'String'>
|
|
6596
|
+
readonly itemIndex: FieldRef<"ExecutionInstance", 'Int'>
|
|
6597
|
+
readonly parentInvocationId: FieldRef<"ExecutionInstance", 'String'>
|
|
6555
6598
|
}
|
|
6556
6599
|
|
|
6557
6600
|
|
|
@@ -12048,10 +12091,20 @@ export namespace Prisma {
|
|
|
12048
12091
|
|
|
12049
12092
|
export type AggregateTelemetrySpan = {
|
|
12050
12093
|
_count: TelemetrySpanCountAggregateOutputType | null
|
|
12094
|
+
_avg: TelemetrySpanAvgAggregateOutputType | null
|
|
12095
|
+
_sum: TelemetrySpanSumAggregateOutputType | null
|
|
12051
12096
|
_min: TelemetrySpanMinAggregateOutputType | null
|
|
12052
12097
|
_max: TelemetrySpanMaxAggregateOutputType | null
|
|
12053
12098
|
}
|
|
12054
12099
|
|
|
12100
|
+
export type TelemetrySpanAvgAggregateOutputType = {
|
|
12101
|
+
itemIndex: number | null
|
|
12102
|
+
}
|
|
12103
|
+
|
|
12104
|
+
export type TelemetrySpanSumAggregateOutputType = {
|
|
12105
|
+
itemIndex: number | null
|
|
12106
|
+
}
|
|
12107
|
+
|
|
12055
12108
|
export type TelemetrySpanMinAggregateOutputType = {
|
|
12056
12109
|
telemetrySpanId: string | null
|
|
12057
12110
|
traceId: string | null
|
|
@@ -12075,6 +12128,9 @@ export namespace Prisma {
|
|
|
12075
12128
|
attributesJson: string | null
|
|
12076
12129
|
eventsJson: string | null
|
|
12077
12130
|
retentionExpiresAt: string | null
|
|
12131
|
+
iterationId: string | null
|
|
12132
|
+
itemIndex: number | null
|
|
12133
|
+
parentInvocationId: string | null
|
|
12078
12134
|
updatedAt: string | null
|
|
12079
12135
|
}
|
|
12080
12136
|
|
|
@@ -12101,6 +12157,9 @@ export namespace Prisma {
|
|
|
12101
12157
|
attributesJson: string | null
|
|
12102
12158
|
eventsJson: string | null
|
|
12103
12159
|
retentionExpiresAt: string | null
|
|
12160
|
+
iterationId: string | null
|
|
12161
|
+
itemIndex: number | null
|
|
12162
|
+
parentInvocationId: string | null
|
|
12104
12163
|
updatedAt: string | null
|
|
12105
12164
|
}
|
|
12106
12165
|
|
|
@@ -12127,11 +12186,22 @@ export namespace Prisma {
|
|
|
12127
12186
|
attributesJson: number
|
|
12128
12187
|
eventsJson: number
|
|
12129
12188
|
retentionExpiresAt: number
|
|
12189
|
+
iterationId: number
|
|
12190
|
+
itemIndex: number
|
|
12191
|
+
parentInvocationId: number
|
|
12130
12192
|
updatedAt: number
|
|
12131
12193
|
_all: number
|
|
12132
12194
|
}
|
|
12133
12195
|
|
|
12134
12196
|
|
|
12197
|
+
export type TelemetrySpanAvgAggregateInputType = {
|
|
12198
|
+
itemIndex?: true
|
|
12199
|
+
}
|
|
12200
|
+
|
|
12201
|
+
export type TelemetrySpanSumAggregateInputType = {
|
|
12202
|
+
itemIndex?: true
|
|
12203
|
+
}
|
|
12204
|
+
|
|
12135
12205
|
export type TelemetrySpanMinAggregateInputType = {
|
|
12136
12206
|
telemetrySpanId?: true
|
|
12137
12207
|
traceId?: true
|
|
@@ -12155,6 +12225,9 @@ export namespace Prisma {
|
|
|
12155
12225
|
attributesJson?: true
|
|
12156
12226
|
eventsJson?: true
|
|
12157
12227
|
retentionExpiresAt?: true
|
|
12228
|
+
iterationId?: true
|
|
12229
|
+
itemIndex?: true
|
|
12230
|
+
parentInvocationId?: true
|
|
12158
12231
|
updatedAt?: true
|
|
12159
12232
|
}
|
|
12160
12233
|
|
|
@@ -12181,6 +12254,9 @@ export namespace Prisma {
|
|
|
12181
12254
|
attributesJson?: true
|
|
12182
12255
|
eventsJson?: true
|
|
12183
12256
|
retentionExpiresAt?: true
|
|
12257
|
+
iterationId?: true
|
|
12258
|
+
itemIndex?: true
|
|
12259
|
+
parentInvocationId?: true
|
|
12184
12260
|
updatedAt?: true
|
|
12185
12261
|
}
|
|
12186
12262
|
|
|
@@ -12207,6 +12283,9 @@ export namespace Prisma {
|
|
|
12207
12283
|
attributesJson?: true
|
|
12208
12284
|
eventsJson?: true
|
|
12209
12285
|
retentionExpiresAt?: true
|
|
12286
|
+
iterationId?: true
|
|
12287
|
+
itemIndex?: true
|
|
12288
|
+
parentInvocationId?: true
|
|
12210
12289
|
updatedAt?: true
|
|
12211
12290
|
_all?: true
|
|
12212
12291
|
}
|
|
@@ -12246,6 +12325,18 @@ export namespace Prisma {
|
|
|
12246
12325
|
* Count returned TelemetrySpans
|
|
12247
12326
|
**/
|
|
12248
12327
|
_count?: true | TelemetrySpanCountAggregateInputType
|
|
12328
|
+
/**
|
|
12329
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
12330
|
+
*
|
|
12331
|
+
* Select which fields to average
|
|
12332
|
+
**/
|
|
12333
|
+
_avg?: TelemetrySpanAvgAggregateInputType
|
|
12334
|
+
/**
|
|
12335
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
12336
|
+
*
|
|
12337
|
+
* Select which fields to sum
|
|
12338
|
+
**/
|
|
12339
|
+
_sum?: TelemetrySpanSumAggregateInputType
|
|
12249
12340
|
/**
|
|
12250
12341
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
12251
12342
|
*
|
|
@@ -12279,6 +12370,8 @@ export namespace Prisma {
|
|
|
12279
12370
|
take?: number
|
|
12280
12371
|
skip?: number
|
|
12281
12372
|
_count?: TelemetrySpanCountAggregateInputType | true
|
|
12373
|
+
_avg?: TelemetrySpanAvgAggregateInputType
|
|
12374
|
+
_sum?: TelemetrySpanSumAggregateInputType
|
|
12282
12375
|
_min?: TelemetrySpanMinAggregateInputType
|
|
12283
12376
|
_max?: TelemetrySpanMaxAggregateInputType
|
|
12284
12377
|
}
|
|
@@ -12306,8 +12399,13 @@ export namespace Prisma {
|
|
|
12306
12399
|
attributesJson: string | null
|
|
12307
12400
|
eventsJson: string | null
|
|
12308
12401
|
retentionExpiresAt: string | null
|
|
12402
|
+
iterationId: string | null
|
|
12403
|
+
itemIndex: number | null
|
|
12404
|
+
parentInvocationId: string | null
|
|
12309
12405
|
updatedAt: string
|
|
12310
12406
|
_count: TelemetrySpanCountAggregateOutputType | null
|
|
12407
|
+
_avg: TelemetrySpanAvgAggregateOutputType | null
|
|
12408
|
+
_sum: TelemetrySpanSumAggregateOutputType | null
|
|
12311
12409
|
_min: TelemetrySpanMinAggregateOutputType | null
|
|
12312
12410
|
_max: TelemetrySpanMaxAggregateOutputType | null
|
|
12313
12411
|
}
|
|
@@ -12349,6 +12447,9 @@ export namespace Prisma {
|
|
|
12349
12447
|
attributesJson?: boolean
|
|
12350
12448
|
eventsJson?: boolean
|
|
12351
12449
|
retentionExpiresAt?: boolean
|
|
12450
|
+
iterationId?: boolean
|
|
12451
|
+
itemIndex?: boolean
|
|
12452
|
+
parentInvocationId?: boolean
|
|
12352
12453
|
updatedAt?: boolean
|
|
12353
12454
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12354
12455
|
|
|
@@ -12375,6 +12476,9 @@ export namespace Prisma {
|
|
|
12375
12476
|
attributesJson?: boolean
|
|
12376
12477
|
eventsJson?: boolean
|
|
12377
12478
|
retentionExpiresAt?: boolean
|
|
12479
|
+
iterationId?: boolean
|
|
12480
|
+
itemIndex?: boolean
|
|
12481
|
+
parentInvocationId?: boolean
|
|
12378
12482
|
updatedAt?: boolean
|
|
12379
12483
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12380
12484
|
|
|
@@ -12401,6 +12505,9 @@ export namespace Prisma {
|
|
|
12401
12505
|
attributesJson?: boolean
|
|
12402
12506
|
eventsJson?: boolean
|
|
12403
12507
|
retentionExpiresAt?: boolean
|
|
12508
|
+
iterationId?: boolean
|
|
12509
|
+
itemIndex?: boolean
|
|
12510
|
+
parentInvocationId?: boolean
|
|
12404
12511
|
updatedAt?: boolean
|
|
12405
12512
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12406
12513
|
|
|
@@ -12427,10 +12534,13 @@ export namespace Prisma {
|
|
|
12427
12534
|
attributesJson?: boolean
|
|
12428
12535
|
eventsJson?: boolean
|
|
12429
12536
|
retentionExpiresAt?: boolean
|
|
12537
|
+
iterationId?: boolean
|
|
12538
|
+
itemIndex?: boolean
|
|
12539
|
+
parentInvocationId?: boolean
|
|
12430
12540
|
updatedAt?: boolean
|
|
12431
12541
|
}
|
|
12432
12542
|
|
|
12433
|
-
export type TelemetrySpanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"telemetrySpanId" | "traceId" | "spanId" | "parentSpanId" | "runId" | "workflowId" | "nodeId" | "activationId" | "connectionInvocationId" | "name" | "kind" | "status" | "statusMessage" | "startTime" | "endTime" | "workflowFolder" | "nodeType" | "nodeRole" | "modelName" | "attributesJson" | "eventsJson" | "retentionExpiresAt" | "updatedAt", ExtArgs["result"]["telemetrySpan"]>
|
|
12543
|
+
export type TelemetrySpanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"telemetrySpanId" | "traceId" | "spanId" | "parentSpanId" | "runId" | "workflowId" | "nodeId" | "activationId" | "connectionInvocationId" | "name" | "kind" | "status" | "statusMessage" | "startTime" | "endTime" | "workflowFolder" | "nodeType" | "nodeRole" | "modelName" | "attributesJson" | "eventsJson" | "retentionExpiresAt" | "iterationId" | "itemIndex" | "parentInvocationId" | "updatedAt", ExtArgs["result"]["telemetrySpan"]>
|
|
12434
12544
|
|
|
12435
12545
|
export type $TelemetrySpanPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12436
12546
|
name: "TelemetrySpan"
|
|
@@ -12458,6 +12568,9 @@ export namespace Prisma {
|
|
|
12458
12568
|
attributesJson: string | null
|
|
12459
12569
|
eventsJson: string | null
|
|
12460
12570
|
retentionExpiresAt: string | null
|
|
12571
|
+
iterationId: string | null
|
|
12572
|
+
itemIndex: number | null
|
|
12573
|
+
parentInvocationId: string | null
|
|
12461
12574
|
updatedAt: string
|
|
12462
12575
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12463
12576
|
composites: {}
|
|
@@ -12904,6 +13017,9 @@ export namespace Prisma {
|
|
|
12904
13017
|
readonly attributesJson: FieldRef<"TelemetrySpan", 'String'>
|
|
12905
13018
|
readonly eventsJson: FieldRef<"TelemetrySpan", 'String'>
|
|
12906
13019
|
readonly retentionExpiresAt: FieldRef<"TelemetrySpan", 'String'>
|
|
13020
|
+
readonly iterationId: FieldRef<"TelemetrySpan", 'String'>
|
|
13021
|
+
readonly itemIndex: FieldRef<"TelemetrySpan", 'Int'>
|
|
13022
|
+
readonly parentInvocationId: FieldRef<"TelemetrySpan", 'String'>
|
|
12907
13023
|
readonly updatedAt: FieldRef<"TelemetrySpan", 'String'>
|
|
12908
13024
|
}
|
|
12909
13025
|
|
|
@@ -14493,10 +14609,12 @@ export namespace Prisma {
|
|
|
14493
14609
|
|
|
14494
14610
|
export type TelemetryMetricPointAvgAggregateOutputType = {
|
|
14495
14611
|
value: number | null
|
|
14612
|
+
itemIndex: number | null
|
|
14496
14613
|
}
|
|
14497
14614
|
|
|
14498
14615
|
export type TelemetryMetricPointSumAggregateOutputType = {
|
|
14499
14616
|
value: number | null
|
|
14617
|
+
itemIndex: number | null
|
|
14500
14618
|
}
|
|
14501
14619
|
|
|
14502
14620
|
export type TelemetryMetricPointMinAggregateOutputType = {
|
|
@@ -14517,6 +14635,9 @@ export namespace Prisma {
|
|
|
14517
14635
|
modelName: string | null
|
|
14518
14636
|
dimensionsJson: string | null
|
|
14519
14637
|
retentionExpiresAt: string | null
|
|
14638
|
+
iterationId: string | null
|
|
14639
|
+
itemIndex: number | null
|
|
14640
|
+
parentInvocationId: string | null
|
|
14520
14641
|
}
|
|
14521
14642
|
|
|
14522
14643
|
export type TelemetryMetricPointMaxAggregateOutputType = {
|
|
@@ -14537,6 +14658,9 @@ export namespace Prisma {
|
|
|
14537
14658
|
modelName: string | null
|
|
14538
14659
|
dimensionsJson: string | null
|
|
14539
14660
|
retentionExpiresAt: string | null
|
|
14661
|
+
iterationId: string | null
|
|
14662
|
+
itemIndex: number | null
|
|
14663
|
+
parentInvocationId: string | null
|
|
14540
14664
|
}
|
|
14541
14665
|
|
|
14542
14666
|
export type TelemetryMetricPointCountAggregateOutputType = {
|
|
@@ -14557,16 +14681,21 @@ export namespace Prisma {
|
|
|
14557
14681
|
modelName: number
|
|
14558
14682
|
dimensionsJson: number
|
|
14559
14683
|
retentionExpiresAt: number
|
|
14684
|
+
iterationId: number
|
|
14685
|
+
itemIndex: number
|
|
14686
|
+
parentInvocationId: number
|
|
14560
14687
|
_all: number
|
|
14561
14688
|
}
|
|
14562
14689
|
|
|
14563
14690
|
|
|
14564
14691
|
export type TelemetryMetricPointAvgAggregateInputType = {
|
|
14565
14692
|
value?: true
|
|
14693
|
+
itemIndex?: true
|
|
14566
14694
|
}
|
|
14567
14695
|
|
|
14568
14696
|
export type TelemetryMetricPointSumAggregateInputType = {
|
|
14569
14697
|
value?: true
|
|
14698
|
+
itemIndex?: true
|
|
14570
14699
|
}
|
|
14571
14700
|
|
|
14572
14701
|
export type TelemetryMetricPointMinAggregateInputType = {
|
|
@@ -14587,6 +14716,9 @@ export namespace Prisma {
|
|
|
14587
14716
|
modelName?: true
|
|
14588
14717
|
dimensionsJson?: true
|
|
14589
14718
|
retentionExpiresAt?: true
|
|
14719
|
+
iterationId?: true
|
|
14720
|
+
itemIndex?: true
|
|
14721
|
+
parentInvocationId?: true
|
|
14590
14722
|
}
|
|
14591
14723
|
|
|
14592
14724
|
export type TelemetryMetricPointMaxAggregateInputType = {
|
|
@@ -14607,6 +14739,9 @@ export namespace Prisma {
|
|
|
14607
14739
|
modelName?: true
|
|
14608
14740
|
dimensionsJson?: true
|
|
14609
14741
|
retentionExpiresAt?: true
|
|
14742
|
+
iterationId?: true
|
|
14743
|
+
itemIndex?: true
|
|
14744
|
+
parentInvocationId?: true
|
|
14610
14745
|
}
|
|
14611
14746
|
|
|
14612
14747
|
export type TelemetryMetricPointCountAggregateInputType = {
|
|
@@ -14627,6 +14762,9 @@ export namespace Prisma {
|
|
|
14627
14762
|
modelName?: true
|
|
14628
14763
|
dimensionsJson?: true
|
|
14629
14764
|
retentionExpiresAt?: true
|
|
14765
|
+
iterationId?: true
|
|
14766
|
+
itemIndex?: true
|
|
14767
|
+
parentInvocationId?: true
|
|
14630
14768
|
_all?: true
|
|
14631
14769
|
}
|
|
14632
14770
|
|
|
@@ -14734,6 +14872,9 @@ export namespace Prisma {
|
|
|
14734
14872
|
modelName: string | null
|
|
14735
14873
|
dimensionsJson: string | null
|
|
14736
14874
|
retentionExpiresAt: string | null
|
|
14875
|
+
iterationId: string | null
|
|
14876
|
+
itemIndex: number | null
|
|
14877
|
+
parentInvocationId: string | null
|
|
14737
14878
|
_count: TelemetryMetricPointCountAggregateOutputType | null
|
|
14738
14879
|
_avg: TelemetryMetricPointAvgAggregateOutputType | null
|
|
14739
14880
|
_sum: TelemetryMetricPointSumAggregateOutputType | null
|
|
@@ -14773,6 +14914,9 @@ export namespace Prisma {
|
|
|
14773
14914
|
modelName?: boolean
|
|
14774
14915
|
dimensionsJson?: boolean
|
|
14775
14916
|
retentionExpiresAt?: boolean
|
|
14917
|
+
iterationId?: boolean
|
|
14918
|
+
itemIndex?: boolean
|
|
14919
|
+
parentInvocationId?: boolean
|
|
14776
14920
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14777
14921
|
|
|
14778
14922
|
export type TelemetryMetricPointSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -14793,6 +14937,9 @@ export namespace Prisma {
|
|
|
14793
14937
|
modelName?: boolean
|
|
14794
14938
|
dimensionsJson?: boolean
|
|
14795
14939
|
retentionExpiresAt?: boolean
|
|
14940
|
+
iterationId?: boolean
|
|
14941
|
+
itemIndex?: boolean
|
|
14942
|
+
parentInvocationId?: boolean
|
|
14796
14943
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14797
14944
|
|
|
14798
14945
|
export type TelemetryMetricPointSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -14813,6 +14960,9 @@ export namespace Prisma {
|
|
|
14813
14960
|
modelName?: boolean
|
|
14814
14961
|
dimensionsJson?: boolean
|
|
14815
14962
|
retentionExpiresAt?: boolean
|
|
14963
|
+
iterationId?: boolean
|
|
14964
|
+
itemIndex?: boolean
|
|
14965
|
+
parentInvocationId?: boolean
|
|
14816
14966
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14817
14967
|
|
|
14818
14968
|
export type TelemetryMetricPointSelectScalar = {
|
|
@@ -14833,9 +14983,12 @@ export namespace Prisma {
|
|
|
14833
14983
|
modelName?: boolean
|
|
14834
14984
|
dimensionsJson?: boolean
|
|
14835
14985
|
retentionExpiresAt?: boolean
|
|
14986
|
+
iterationId?: boolean
|
|
14987
|
+
itemIndex?: boolean
|
|
14988
|
+
parentInvocationId?: boolean
|
|
14836
14989
|
}
|
|
14837
14990
|
|
|
14838
|
-
export type TelemetryMetricPointOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"metricPointId" | "traceId" | "spanId" | "runId" | "workflowId" | "nodeId" | "activationId" | "metricName" | "value" | "unit" | "observedAt" | "workflowFolder" | "nodeType" | "nodeRole" | "modelName" | "dimensionsJson" | "retentionExpiresAt", ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14991
|
+
export type TelemetryMetricPointOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"metricPointId" | "traceId" | "spanId" | "runId" | "workflowId" | "nodeId" | "activationId" | "metricName" | "value" | "unit" | "observedAt" | "workflowFolder" | "nodeType" | "nodeRole" | "modelName" | "dimensionsJson" | "retentionExpiresAt" | "iterationId" | "itemIndex" | "parentInvocationId", ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14839
14992
|
|
|
14840
14993
|
export type $TelemetryMetricPointPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14841
14994
|
name: "TelemetryMetricPoint"
|
|
@@ -14858,6 +15011,9 @@ export namespace Prisma {
|
|
|
14858
15011
|
modelName: string | null
|
|
14859
15012
|
dimensionsJson: string | null
|
|
14860
15013
|
retentionExpiresAt: string | null
|
|
15014
|
+
iterationId: string | null
|
|
15015
|
+
itemIndex: number | null
|
|
15016
|
+
parentInvocationId: string | null
|
|
14861
15017
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14862
15018
|
composites: {}
|
|
14863
15019
|
}
|
|
@@ -15298,6 +15454,9 @@ export namespace Prisma {
|
|
|
15298
15454
|
readonly modelName: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15299
15455
|
readonly dimensionsJson: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15300
15456
|
readonly retentionExpiresAt: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15457
|
+
readonly iterationId: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15458
|
+
readonly itemIndex: FieldRef<"TelemetryMetricPoint", 'Int'>
|
|
15459
|
+
readonly parentInvocationId: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15301
15460
|
}
|
|
15302
15461
|
|
|
15303
15462
|
|
|
@@ -27642,7 +27801,10 @@ export namespace Prisma {
|
|
|
27642
27801
|
outputPayloadRef: 'outputPayloadRef',
|
|
27643
27802
|
inputTruncated: 'inputTruncated',
|
|
27644
27803
|
outputTruncated: 'outputTruncated',
|
|
27645
|
-
usedPinnedOutput: 'usedPinnedOutput'
|
|
27804
|
+
usedPinnedOutput: 'usedPinnedOutput',
|
|
27805
|
+
iterationId: 'iterationId',
|
|
27806
|
+
itemIndex: 'itemIndex',
|
|
27807
|
+
parentInvocationId: 'parentInvocationId'
|
|
27646
27808
|
};
|
|
27647
27809
|
|
|
27648
27810
|
export type ExecutionInstanceScalarFieldEnum = (typeof ExecutionInstanceScalarFieldEnum)[keyof typeof ExecutionInstanceScalarFieldEnum]
|
|
@@ -27724,6 +27886,9 @@ export namespace Prisma {
|
|
|
27724
27886
|
attributesJson: 'attributesJson',
|
|
27725
27887
|
eventsJson: 'eventsJson',
|
|
27726
27888
|
retentionExpiresAt: 'retentionExpiresAt',
|
|
27889
|
+
iterationId: 'iterationId',
|
|
27890
|
+
itemIndex: 'itemIndex',
|
|
27891
|
+
parentInvocationId: 'parentInvocationId',
|
|
27727
27892
|
updatedAt: 'updatedAt'
|
|
27728
27893
|
};
|
|
27729
27894
|
|
|
@@ -27771,7 +27936,10 @@ export namespace Prisma {
|
|
|
27771
27936
|
nodeRole: 'nodeRole',
|
|
27772
27937
|
modelName: 'modelName',
|
|
27773
27938
|
dimensionsJson: 'dimensionsJson',
|
|
27774
|
-
retentionExpiresAt: 'retentionExpiresAt'
|
|
27939
|
+
retentionExpiresAt: 'retentionExpiresAt',
|
|
27940
|
+
iterationId: 'iterationId',
|
|
27941
|
+
itemIndex: 'itemIndex',
|
|
27942
|
+
parentInvocationId: 'parentInvocationId'
|
|
27775
27943
|
};
|
|
27776
27944
|
|
|
27777
27945
|
export type TelemetryMetricPointScalarFieldEnum = (typeof TelemetryMetricPointScalarFieldEnum)[keyof typeof TelemetryMetricPointScalarFieldEnum]
|
|
@@ -28308,6 +28476,9 @@ export namespace Prisma {
|
|
|
28308
28476
|
inputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28309
28477
|
outputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28310
28478
|
usedPinnedOutput?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28479
|
+
iterationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28480
|
+
itemIndex?: IntNullableFilter<"ExecutionInstance"> | number | null
|
|
28481
|
+
parentInvocationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28311
28482
|
run?: XOR<RunScalarRelationFilter, RunWhereInput>
|
|
28312
28483
|
}
|
|
28313
28484
|
|
|
@@ -28349,6 +28520,9 @@ export namespace Prisma {
|
|
|
28349
28520
|
inputTruncated?: SortOrderInput | SortOrder
|
|
28350
28521
|
outputTruncated?: SortOrderInput | SortOrder
|
|
28351
28522
|
usedPinnedOutput?: SortOrderInput | SortOrder
|
|
28523
|
+
iterationId?: SortOrderInput | SortOrder
|
|
28524
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
28525
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28352
28526
|
run?: RunOrderByWithRelationInput
|
|
28353
28527
|
}
|
|
28354
28528
|
|
|
@@ -28394,6 +28568,9 @@ export namespace Prisma {
|
|
|
28394
28568
|
inputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28395
28569
|
outputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28396
28570
|
usedPinnedOutput?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28571
|
+
iterationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28572
|
+
itemIndex?: IntNullableFilter<"ExecutionInstance"> | number | null
|
|
28573
|
+
parentInvocationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28397
28574
|
run?: XOR<RunScalarRelationFilter, RunWhereInput>
|
|
28398
28575
|
}, "instanceId" | "runId_slotNodeId_runIndex">
|
|
28399
28576
|
|
|
@@ -28435,6 +28612,9 @@ export namespace Prisma {
|
|
|
28435
28612
|
inputTruncated?: SortOrderInput | SortOrder
|
|
28436
28613
|
outputTruncated?: SortOrderInput | SortOrder
|
|
28437
28614
|
usedPinnedOutput?: SortOrderInput | SortOrder
|
|
28615
|
+
iterationId?: SortOrderInput | SortOrder
|
|
28616
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
28617
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28438
28618
|
_count?: ExecutionInstanceCountOrderByAggregateInput
|
|
28439
28619
|
_avg?: ExecutionInstanceAvgOrderByAggregateInput
|
|
28440
28620
|
_max?: ExecutionInstanceMaxOrderByAggregateInput
|
|
@@ -28483,6 +28663,9 @@ export namespace Prisma {
|
|
|
28483
28663
|
inputTruncated?: BoolNullableWithAggregatesFilter<"ExecutionInstance"> | boolean | null
|
|
28484
28664
|
outputTruncated?: BoolNullableWithAggregatesFilter<"ExecutionInstance"> | boolean | null
|
|
28485
28665
|
usedPinnedOutput?: BoolNullableWithAggregatesFilter<"ExecutionInstance"> | boolean | null
|
|
28666
|
+
iterationId?: StringNullableWithAggregatesFilter<"ExecutionInstance"> | string | null
|
|
28667
|
+
itemIndex?: IntNullableWithAggregatesFilter<"ExecutionInstance"> | number | null
|
|
28668
|
+
parentInvocationId?: StringNullableWithAggregatesFilter<"ExecutionInstance"> | string | null
|
|
28486
28669
|
}
|
|
28487
28670
|
|
|
28488
28671
|
export type RunSlotProjectionWhereInput = {
|
|
@@ -28767,6 +28950,9 @@ export namespace Prisma {
|
|
|
28767
28950
|
attributesJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28768
28951
|
eventsJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28769
28952
|
retentionExpiresAt?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28953
|
+
iterationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28954
|
+
itemIndex?: IntNullableFilter<"TelemetrySpan"> | number | null
|
|
28955
|
+
parentInvocationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28770
28956
|
updatedAt?: StringFilter<"TelemetrySpan"> | string
|
|
28771
28957
|
}
|
|
28772
28958
|
|
|
@@ -28793,6 +28979,9 @@ export namespace Prisma {
|
|
|
28793
28979
|
attributesJson?: SortOrderInput | SortOrder
|
|
28794
28980
|
eventsJson?: SortOrderInput | SortOrder
|
|
28795
28981
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
28982
|
+
iterationId?: SortOrderInput | SortOrder
|
|
28983
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
28984
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28796
28985
|
updatedAt?: SortOrder
|
|
28797
28986
|
}
|
|
28798
28987
|
|
|
@@ -28823,6 +29012,9 @@ export namespace Prisma {
|
|
|
28823
29012
|
attributesJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28824
29013
|
eventsJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28825
29014
|
retentionExpiresAt?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
29015
|
+
iterationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
29016
|
+
itemIndex?: IntNullableFilter<"TelemetrySpan"> | number | null
|
|
29017
|
+
parentInvocationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28826
29018
|
updatedAt?: StringFilter<"TelemetrySpan"> | string
|
|
28827
29019
|
}, "telemetrySpanId" | "traceId_spanId">
|
|
28828
29020
|
|
|
@@ -28849,10 +29041,15 @@ export namespace Prisma {
|
|
|
28849
29041
|
attributesJson?: SortOrderInput | SortOrder
|
|
28850
29042
|
eventsJson?: SortOrderInput | SortOrder
|
|
28851
29043
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
29044
|
+
iterationId?: SortOrderInput | SortOrder
|
|
29045
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
29046
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28852
29047
|
updatedAt?: SortOrder
|
|
28853
29048
|
_count?: TelemetrySpanCountOrderByAggregateInput
|
|
29049
|
+
_avg?: TelemetrySpanAvgOrderByAggregateInput
|
|
28854
29050
|
_max?: TelemetrySpanMaxOrderByAggregateInput
|
|
28855
29051
|
_min?: TelemetrySpanMinOrderByAggregateInput
|
|
29052
|
+
_sum?: TelemetrySpanSumOrderByAggregateInput
|
|
28856
29053
|
}
|
|
28857
29054
|
|
|
28858
29055
|
export type TelemetrySpanScalarWhereWithAggregatesInput = {
|
|
@@ -28881,6 +29078,9 @@ export namespace Prisma {
|
|
|
28881
29078
|
attributesJson?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28882
29079
|
eventsJson?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28883
29080
|
retentionExpiresAt?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
29081
|
+
iterationId?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
29082
|
+
itemIndex?: IntNullableWithAggregatesFilter<"TelemetrySpan"> | number | null
|
|
29083
|
+
parentInvocationId?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28884
29084
|
updatedAt?: StringWithAggregatesFilter<"TelemetrySpan"> | string
|
|
28885
29085
|
}
|
|
28886
29086
|
|
|
@@ -29024,6 +29224,9 @@ export namespace Prisma {
|
|
|
29024
29224
|
modelName?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29025
29225
|
dimensionsJson?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29026
29226
|
retentionExpiresAt?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29227
|
+
iterationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29228
|
+
itemIndex?: IntNullableFilter<"TelemetryMetricPoint"> | number | null
|
|
29229
|
+
parentInvocationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29027
29230
|
}
|
|
29028
29231
|
|
|
29029
29232
|
export type TelemetryMetricPointOrderByWithRelationInput = {
|
|
@@ -29044,6 +29247,9 @@ export namespace Prisma {
|
|
|
29044
29247
|
modelName?: SortOrderInput | SortOrder
|
|
29045
29248
|
dimensionsJson?: SortOrderInput | SortOrder
|
|
29046
29249
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
29250
|
+
iterationId?: SortOrderInput | SortOrder
|
|
29251
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
29252
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
29047
29253
|
}
|
|
29048
29254
|
|
|
29049
29255
|
export type TelemetryMetricPointWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -29067,6 +29273,9 @@ export namespace Prisma {
|
|
|
29067
29273
|
modelName?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29068
29274
|
dimensionsJson?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29069
29275
|
retentionExpiresAt?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29276
|
+
iterationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29277
|
+
itemIndex?: IntNullableFilter<"TelemetryMetricPoint"> | number | null
|
|
29278
|
+
parentInvocationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29070
29279
|
}, "metricPointId">
|
|
29071
29280
|
|
|
29072
29281
|
export type TelemetryMetricPointOrderByWithAggregationInput = {
|
|
@@ -29087,6 +29296,9 @@ export namespace Prisma {
|
|
|
29087
29296
|
modelName?: SortOrderInput | SortOrder
|
|
29088
29297
|
dimensionsJson?: SortOrderInput | SortOrder
|
|
29089
29298
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
29299
|
+
iterationId?: SortOrderInput | SortOrder
|
|
29300
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
29301
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
29090
29302
|
_count?: TelemetryMetricPointCountOrderByAggregateInput
|
|
29091
29303
|
_avg?: TelemetryMetricPointAvgOrderByAggregateInput
|
|
29092
29304
|
_max?: TelemetryMetricPointMaxOrderByAggregateInput
|
|
@@ -29115,6 +29327,9 @@ export namespace Prisma {
|
|
|
29115
29327
|
modelName?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29116
29328
|
dimensionsJson?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29117
29329
|
retentionExpiresAt?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29330
|
+
iterationId?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29331
|
+
itemIndex?: IntNullableWithAggregatesFilter<"TelemetryMetricPoint"> | number | null
|
|
29332
|
+
parentInvocationId?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29118
29333
|
}
|
|
29119
29334
|
|
|
29120
29335
|
export type CredentialInstanceWhereInput = {
|
|
@@ -30214,6 +30429,9 @@ export namespace Prisma {
|
|
|
30214
30429
|
inputTruncated?: boolean | null
|
|
30215
30430
|
outputTruncated?: boolean | null
|
|
30216
30431
|
usedPinnedOutput?: boolean | null
|
|
30432
|
+
iterationId?: string | null
|
|
30433
|
+
itemIndex?: number | null
|
|
30434
|
+
parentInvocationId?: string | null
|
|
30217
30435
|
run: RunCreateNestedOneWithoutExecutionInstancesInput
|
|
30218
30436
|
}
|
|
30219
30437
|
|
|
@@ -30255,6 +30473,9 @@ export namespace Prisma {
|
|
|
30255
30473
|
inputTruncated?: boolean | null
|
|
30256
30474
|
outputTruncated?: boolean | null
|
|
30257
30475
|
usedPinnedOutput?: boolean | null
|
|
30476
|
+
iterationId?: string | null
|
|
30477
|
+
itemIndex?: number | null
|
|
30478
|
+
parentInvocationId?: string | null
|
|
30258
30479
|
}
|
|
30259
30480
|
|
|
30260
30481
|
export type ExecutionInstanceUpdateInput = {
|
|
@@ -30294,6 +30515,9 @@ export namespace Prisma {
|
|
|
30294
30515
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30295
30516
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30296
30517
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30518
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30519
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30520
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30297
30521
|
run?: RunUpdateOneRequiredWithoutExecutionInstancesNestedInput
|
|
30298
30522
|
}
|
|
30299
30523
|
|
|
@@ -30335,6 +30559,9 @@ export namespace Prisma {
|
|
|
30335
30559
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30336
30560
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30337
30561
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30562
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30563
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30564
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30338
30565
|
}
|
|
30339
30566
|
|
|
30340
30567
|
export type ExecutionInstanceCreateManyInput = {
|
|
@@ -30375,6 +30602,9 @@ export namespace Prisma {
|
|
|
30375
30602
|
inputTruncated?: boolean | null
|
|
30376
30603
|
outputTruncated?: boolean | null
|
|
30377
30604
|
usedPinnedOutput?: boolean | null
|
|
30605
|
+
iterationId?: string | null
|
|
30606
|
+
itemIndex?: number | null
|
|
30607
|
+
parentInvocationId?: string | null
|
|
30378
30608
|
}
|
|
30379
30609
|
|
|
30380
30610
|
export type ExecutionInstanceUpdateManyMutationInput = {
|
|
@@ -30414,6 +30644,9 @@ export namespace Prisma {
|
|
|
30414
30644
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30415
30645
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30416
30646
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30647
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30648
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30649
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30417
30650
|
}
|
|
30418
30651
|
|
|
30419
30652
|
export type ExecutionInstanceUncheckedUpdateManyInput = {
|
|
@@ -30454,6 +30687,9 @@ export namespace Prisma {
|
|
|
30454
30687
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30455
30688
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30456
30689
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30690
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30691
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30692
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30457
30693
|
}
|
|
30458
30694
|
|
|
30459
30695
|
export type RunSlotProjectionCreateInput = {
|
|
@@ -30744,6 +30980,9 @@ export namespace Prisma {
|
|
|
30744
30980
|
attributesJson?: string | null
|
|
30745
30981
|
eventsJson?: string | null
|
|
30746
30982
|
retentionExpiresAt?: string | null
|
|
30983
|
+
iterationId?: string | null
|
|
30984
|
+
itemIndex?: number | null
|
|
30985
|
+
parentInvocationId?: string | null
|
|
30747
30986
|
updatedAt: string
|
|
30748
30987
|
}
|
|
30749
30988
|
|
|
@@ -30770,6 +31009,9 @@ export namespace Prisma {
|
|
|
30770
31009
|
attributesJson?: string | null
|
|
30771
31010
|
eventsJson?: string | null
|
|
30772
31011
|
retentionExpiresAt?: string | null
|
|
31012
|
+
iterationId?: string | null
|
|
31013
|
+
itemIndex?: number | null
|
|
31014
|
+
parentInvocationId?: string | null
|
|
30773
31015
|
updatedAt: string
|
|
30774
31016
|
}
|
|
30775
31017
|
|
|
@@ -30796,6 +31038,9 @@ export namespace Prisma {
|
|
|
30796
31038
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30797
31039
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30798
31040
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31041
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31042
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31043
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30799
31044
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30800
31045
|
}
|
|
30801
31046
|
|
|
@@ -30822,6 +31067,9 @@ export namespace Prisma {
|
|
|
30822
31067
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30823
31068
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30824
31069
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31070
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31071
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31072
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30825
31073
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30826
31074
|
}
|
|
30827
31075
|
|
|
@@ -30848,6 +31096,9 @@ export namespace Prisma {
|
|
|
30848
31096
|
attributesJson?: string | null
|
|
30849
31097
|
eventsJson?: string | null
|
|
30850
31098
|
retentionExpiresAt?: string | null
|
|
31099
|
+
iterationId?: string | null
|
|
31100
|
+
itemIndex?: number | null
|
|
31101
|
+
parentInvocationId?: string | null
|
|
30851
31102
|
updatedAt: string
|
|
30852
31103
|
}
|
|
30853
31104
|
|
|
@@ -30874,6 +31125,9 @@ export namespace Prisma {
|
|
|
30874
31125
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30875
31126
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30876
31127
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31128
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31129
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31130
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30877
31131
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30878
31132
|
}
|
|
30879
31133
|
|
|
@@ -30900,6 +31154,9 @@ export namespace Prisma {
|
|
|
30900
31154
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30901
31155
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30902
31156
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31157
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31158
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31159
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30903
31160
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30904
31161
|
}
|
|
30905
31162
|
|
|
@@ -31068,6 +31325,9 @@ export namespace Prisma {
|
|
|
31068
31325
|
modelName?: string | null
|
|
31069
31326
|
dimensionsJson?: string | null
|
|
31070
31327
|
retentionExpiresAt?: string | null
|
|
31328
|
+
iterationId?: string | null
|
|
31329
|
+
itemIndex?: number | null
|
|
31330
|
+
parentInvocationId?: string | null
|
|
31071
31331
|
}
|
|
31072
31332
|
|
|
31073
31333
|
export type TelemetryMetricPointUncheckedCreateInput = {
|
|
@@ -31088,6 +31348,9 @@ export namespace Prisma {
|
|
|
31088
31348
|
modelName?: string | null
|
|
31089
31349
|
dimensionsJson?: string | null
|
|
31090
31350
|
retentionExpiresAt?: string | null
|
|
31351
|
+
iterationId?: string | null
|
|
31352
|
+
itemIndex?: number | null
|
|
31353
|
+
parentInvocationId?: string | null
|
|
31091
31354
|
}
|
|
31092
31355
|
|
|
31093
31356
|
export type TelemetryMetricPointUpdateInput = {
|
|
@@ -31108,6 +31371,9 @@ export namespace Prisma {
|
|
|
31108
31371
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31109
31372
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31110
31373
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31374
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31375
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31376
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31111
31377
|
}
|
|
31112
31378
|
|
|
31113
31379
|
export type TelemetryMetricPointUncheckedUpdateInput = {
|
|
@@ -31128,6 +31394,9 @@ export namespace Prisma {
|
|
|
31128
31394
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31129
31395
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31130
31396
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31397
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31398
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31399
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31131
31400
|
}
|
|
31132
31401
|
|
|
31133
31402
|
export type TelemetryMetricPointCreateManyInput = {
|
|
@@ -31148,6 +31417,9 @@ export namespace Prisma {
|
|
|
31148
31417
|
modelName?: string | null
|
|
31149
31418
|
dimensionsJson?: string | null
|
|
31150
31419
|
retentionExpiresAt?: string | null
|
|
31420
|
+
iterationId?: string | null
|
|
31421
|
+
itemIndex?: number | null
|
|
31422
|
+
parentInvocationId?: string | null
|
|
31151
31423
|
}
|
|
31152
31424
|
|
|
31153
31425
|
export type TelemetryMetricPointUpdateManyMutationInput = {
|
|
@@ -31168,6 +31440,9 @@ export namespace Prisma {
|
|
|
31168
31440
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31169
31441
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31170
31442
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31443
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31444
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31445
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31171
31446
|
}
|
|
31172
31447
|
|
|
31173
31448
|
export type TelemetryMetricPointUncheckedUpdateManyInput = {
|
|
@@ -31188,6 +31463,9 @@ export namespace Prisma {
|
|
|
31188
31463
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31189
31464
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31190
31465
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31466
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31467
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31468
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31191
31469
|
}
|
|
31192
31470
|
|
|
31193
31471
|
export type CredentialInstanceCreateInput = {
|
|
@@ -32377,6 +32655,9 @@ export namespace Prisma {
|
|
|
32377
32655
|
inputTruncated?: SortOrder
|
|
32378
32656
|
outputTruncated?: SortOrder
|
|
32379
32657
|
usedPinnedOutput?: SortOrder
|
|
32658
|
+
iterationId?: SortOrder
|
|
32659
|
+
itemIndex?: SortOrder
|
|
32660
|
+
parentInvocationId?: SortOrder
|
|
32380
32661
|
}
|
|
32381
32662
|
|
|
32382
32663
|
export type ExecutionInstanceAvgOrderByAggregateInput = {
|
|
@@ -32387,6 +32668,7 @@ export namespace Prisma {
|
|
|
32387
32668
|
failedItemCount?: SortOrder
|
|
32388
32669
|
inputBytes?: SortOrder
|
|
32389
32670
|
outputBytes?: SortOrder
|
|
32671
|
+
itemIndex?: SortOrder
|
|
32390
32672
|
}
|
|
32391
32673
|
|
|
32392
32674
|
export type ExecutionInstanceMaxOrderByAggregateInput = {
|
|
@@ -32427,6 +32709,9 @@ export namespace Prisma {
|
|
|
32427
32709
|
inputTruncated?: SortOrder
|
|
32428
32710
|
outputTruncated?: SortOrder
|
|
32429
32711
|
usedPinnedOutput?: SortOrder
|
|
32712
|
+
iterationId?: SortOrder
|
|
32713
|
+
itemIndex?: SortOrder
|
|
32714
|
+
parentInvocationId?: SortOrder
|
|
32430
32715
|
}
|
|
32431
32716
|
|
|
32432
32717
|
export type ExecutionInstanceMinOrderByAggregateInput = {
|
|
@@ -32467,6 +32752,9 @@ export namespace Prisma {
|
|
|
32467
32752
|
inputTruncated?: SortOrder
|
|
32468
32753
|
outputTruncated?: SortOrder
|
|
32469
32754
|
usedPinnedOutput?: SortOrder
|
|
32755
|
+
iterationId?: SortOrder
|
|
32756
|
+
itemIndex?: SortOrder
|
|
32757
|
+
parentInvocationId?: SortOrder
|
|
32470
32758
|
}
|
|
32471
32759
|
|
|
32472
32760
|
export type ExecutionInstanceSumOrderByAggregateInput = {
|
|
@@ -32477,6 +32765,7 @@ export namespace Prisma {
|
|
|
32477
32765
|
failedItemCount?: SortOrder
|
|
32478
32766
|
inputBytes?: SortOrder
|
|
32479
32767
|
outputBytes?: SortOrder
|
|
32768
|
+
itemIndex?: SortOrder
|
|
32480
32769
|
}
|
|
32481
32770
|
|
|
32482
32771
|
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -32671,9 +32960,16 @@ export namespace Prisma {
|
|
|
32671
32960
|
attributesJson?: SortOrder
|
|
32672
32961
|
eventsJson?: SortOrder
|
|
32673
32962
|
retentionExpiresAt?: SortOrder
|
|
32963
|
+
iterationId?: SortOrder
|
|
32964
|
+
itemIndex?: SortOrder
|
|
32965
|
+
parentInvocationId?: SortOrder
|
|
32674
32966
|
updatedAt?: SortOrder
|
|
32675
32967
|
}
|
|
32676
32968
|
|
|
32969
|
+
export type TelemetrySpanAvgOrderByAggregateInput = {
|
|
32970
|
+
itemIndex?: SortOrder
|
|
32971
|
+
}
|
|
32972
|
+
|
|
32677
32973
|
export type TelemetrySpanMaxOrderByAggregateInput = {
|
|
32678
32974
|
telemetrySpanId?: SortOrder
|
|
32679
32975
|
traceId?: SortOrder
|
|
@@ -32697,6 +32993,9 @@ export namespace Prisma {
|
|
|
32697
32993
|
attributesJson?: SortOrder
|
|
32698
32994
|
eventsJson?: SortOrder
|
|
32699
32995
|
retentionExpiresAt?: SortOrder
|
|
32996
|
+
iterationId?: SortOrder
|
|
32997
|
+
itemIndex?: SortOrder
|
|
32998
|
+
parentInvocationId?: SortOrder
|
|
32700
32999
|
updatedAt?: SortOrder
|
|
32701
33000
|
}
|
|
32702
33001
|
|
|
@@ -32723,9 +33022,16 @@ export namespace Prisma {
|
|
|
32723
33022
|
attributesJson?: SortOrder
|
|
32724
33023
|
eventsJson?: SortOrder
|
|
32725
33024
|
retentionExpiresAt?: SortOrder
|
|
33025
|
+
iterationId?: SortOrder
|
|
33026
|
+
itemIndex?: SortOrder
|
|
33027
|
+
parentInvocationId?: SortOrder
|
|
32726
33028
|
updatedAt?: SortOrder
|
|
32727
33029
|
}
|
|
32728
33030
|
|
|
33031
|
+
export type TelemetrySpanSumOrderByAggregateInput = {
|
|
33032
|
+
itemIndex?: SortOrder
|
|
33033
|
+
}
|
|
33034
|
+
|
|
32729
33035
|
export type TelemetryArtifactCountOrderByAggregateInput = {
|
|
32730
33036
|
artifactId?: SortOrder
|
|
32731
33037
|
traceId?: SortOrder
|
|
@@ -32826,10 +33132,14 @@ export namespace Prisma {
|
|
|
32826
33132
|
modelName?: SortOrder
|
|
32827
33133
|
dimensionsJson?: SortOrder
|
|
32828
33134
|
retentionExpiresAt?: SortOrder
|
|
33135
|
+
iterationId?: SortOrder
|
|
33136
|
+
itemIndex?: SortOrder
|
|
33137
|
+
parentInvocationId?: SortOrder
|
|
32829
33138
|
}
|
|
32830
33139
|
|
|
32831
33140
|
export type TelemetryMetricPointAvgOrderByAggregateInput = {
|
|
32832
33141
|
value?: SortOrder
|
|
33142
|
+
itemIndex?: SortOrder
|
|
32833
33143
|
}
|
|
32834
33144
|
|
|
32835
33145
|
export type TelemetryMetricPointMaxOrderByAggregateInput = {
|
|
@@ -32850,6 +33160,9 @@ export namespace Prisma {
|
|
|
32850
33160
|
modelName?: SortOrder
|
|
32851
33161
|
dimensionsJson?: SortOrder
|
|
32852
33162
|
retentionExpiresAt?: SortOrder
|
|
33163
|
+
iterationId?: SortOrder
|
|
33164
|
+
itemIndex?: SortOrder
|
|
33165
|
+
parentInvocationId?: SortOrder
|
|
32853
33166
|
}
|
|
32854
33167
|
|
|
32855
33168
|
export type TelemetryMetricPointMinOrderByAggregateInput = {
|
|
@@ -32870,10 +33183,14 @@ export namespace Prisma {
|
|
|
32870
33183
|
modelName?: SortOrder
|
|
32871
33184
|
dimensionsJson?: SortOrder
|
|
32872
33185
|
retentionExpiresAt?: SortOrder
|
|
33186
|
+
iterationId?: SortOrder
|
|
33187
|
+
itemIndex?: SortOrder
|
|
33188
|
+
parentInvocationId?: SortOrder
|
|
32873
33189
|
}
|
|
32874
33190
|
|
|
32875
33191
|
export type TelemetryMetricPointSumOrderByAggregateInput = {
|
|
32876
33192
|
value?: SortOrder
|
|
33193
|
+
itemIndex?: SortOrder
|
|
32877
33194
|
}
|
|
32878
33195
|
|
|
32879
33196
|
export type FloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -34076,6 +34393,9 @@ export namespace Prisma {
|
|
|
34076
34393
|
inputTruncated?: boolean | null
|
|
34077
34394
|
outputTruncated?: boolean | null
|
|
34078
34395
|
usedPinnedOutput?: boolean | null
|
|
34396
|
+
iterationId?: string | null
|
|
34397
|
+
itemIndex?: number | null
|
|
34398
|
+
parentInvocationId?: string | null
|
|
34079
34399
|
}
|
|
34080
34400
|
|
|
34081
34401
|
export type ExecutionInstanceUncheckedCreateWithoutRunInput = {
|
|
@@ -34115,6 +34435,9 @@ export namespace Prisma {
|
|
|
34115
34435
|
inputTruncated?: boolean | null
|
|
34116
34436
|
outputTruncated?: boolean | null
|
|
34117
34437
|
usedPinnedOutput?: boolean | null
|
|
34438
|
+
iterationId?: string | null
|
|
34439
|
+
itemIndex?: number | null
|
|
34440
|
+
parentInvocationId?: string | null
|
|
34118
34441
|
}
|
|
34119
34442
|
|
|
34120
34443
|
export type ExecutionInstanceCreateOrConnectWithoutRunInput = {
|
|
@@ -34244,6 +34567,9 @@ export namespace Prisma {
|
|
|
34244
34567
|
inputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
34245
34568
|
outputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
34246
34569
|
usedPinnedOutput?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
34570
|
+
iterationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
34571
|
+
itemIndex?: IntNullableFilter<"ExecutionInstance"> | number | null
|
|
34572
|
+
parentInvocationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
34247
34573
|
}
|
|
34248
34574
|
|
|
34249
34575
|
export type RunSlotProjectionUpsertWithoutRunInput = {
|
|
@@ -35034,6 +35360,9 @@ export namespace Prisma {
|
|
|
35034
35360
|
inputTruncated?: boolean | null
|
|
35035
35361
|
outputTruncated?: boolean | null
|
|
35036
35362
|
usedPinnedOutput?: boolean | null
|
|
35363
|
+
iterationId?: string | null
|
|
35364
|
+
itemIndex?: number | null
|
|
35365
|
+
parentInvocationId?: string | null
|
|
35037
35366
|
}
|
|
35038
35367
|
|
|
35039
35368
|
export type RunWorkItemUpdateWithoutRunInput = {
|
|
@@ -35136,6 +35465,9 @@ export namespace Prisma {
|
|
|
35136
35465
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35137
35466
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35138
35467
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35468
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35469
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
35470
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35139
35471
|
}
|
|
35140
35472
|
|
|
35141
35473
|
export type ExecutionInstanceUncheckedUpdateWithoutRunInput = {
|
|
@@ -35175,6 +35507,9 @@ export namespace Prisma {
|
|
|
35175
35507
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35176
35508
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35177
35509
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35510
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35511
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
35512
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35178
35513
|
}
|
|
35179
35514
|
|
|
35180
35515
|
export type ExecutionInstanceUncheckedUpdateManyWithoutRunInput = {
|
|
@@ -35214,6 +35549,9 @@ export namespace Prisma {
|
|
|
35214
35549
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35215
35550
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35216
35551
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35552
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35553
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
35554
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35217
35555
|
}
|
|
35218
35556
|
|
|
35219
35557
|
export type AccountCreateManyUserInput = {
|