@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
|
@@ -5450,6 +5450,7 @@ export namespace Prisma {
|
|
|
5450
5450
|
failedItemCount: number | null
|
|
5451
5451
|
inputBytes: number | null
|
|
5452
5452
|
outputBytes: number | null
|
|
5453
|
+
itemIndex: number | null
|
|
5453
5454
|
}
|
|
5454
5455
|
|
|
5455
5456
|
export type ExecutionInstanceSumAggregateOutputType = {
|
|
@@ -5460,6 +5461,7 @@ export namespace Prisma {
|
|
|
5460
5461
|
failedItemCount: number | null
|
|
5461
5462
|
inputBytes: number | null
|
|
5462
5463
|
outputBytes: number | null
|
|
5464
|
+
itemIndex: number | null
|
|
5463
5465
|
}
|
|
5464
5466
|
|
|
5465
5467
|
export type ExecutionInstanceMinAggregateOutputType = {
|
|
@@ -5500,6 +5502,9 @@ export namespace Prisma {
|
|
|
5500
5502
|
inputTruncated: boolean | null
|
|
5501
5503
|
outputTruncated: boolean | null
|
|
5502
5504
|
usedPinnedOutput: boolean | null
|
|
5505
|
+
iterationId: string | null
|
|
5506
|
+
itemIndex: number | null
|
|
5507
|
+
parentInvocationId: string | null
|
|
5503
5508
|
}
|
|
5504
5509
|
|
|
5505
5510
|
export type ExecutionInstanceMaxAggregateOutputType = {
|
|
@@ -5540,6 +5545,9 @@ export namespace Prisma {
|
|
|
5540
5545
|
inputTruncated: boolean | null
|
|
5541
5546
|
outputTruncated: boolean | null
|
|
5542
5547
|
usedPinnedOutput: boolean | null
|
|
5548
|
+
iterationId: string | null
|
|
5549
|
+
itemIndex: number | null
|
|
5550
|
+
parentInvocationId: string | null
|
|
5543
5551
|
}
|
|
5544
5552
|
|
|
5545
5553
|
export type ExecutionInstanceCountAggregateOutputType = {
|
|
@@ -5580,6 +5588,9 @@ export namespace Prisma {
|
|
|
5580
5588
|
inputTruncated: number
|
|
5581
5589
|
outputTruncated: number
|
|
5582
5590
|
usedPinnedOutput: number
|
|
5591
|
+
iterationId: number
|
|
5592
|
+
itemIndex: number
|
|
5593
|
+
parentInvocationId: number
|
|
5583
5594
|
_all: number
|
|
5584
5595
|
}
|
|
5585
5596
|
|
|
@@ -5592,6 +5603,7 @@ export namespace Prisma {
|
|
|
5592
5603
|
failedItemCount?: true
|
|
5593
5604
|
inputBytes?: true
|
|
5594
5605
|
outputBytes?: true
|
|
5606
|
+
itemIndex?: true
|
|
5595
5607
|
}
|
|
5596
5608
|
|
|
5597
5609
|
export type ExecutionInstanceSumAggregateInputType = {
|
|
@@ -5602,6 +5614,7 @@ export namespace Prisma {
|
|
|
5602
5614
|
failedItemCount?: true
|
|
5603
5615
|
inputBytes?: true
|
|
5604
5616
|
outputBytes?: true
|
|
5617
|
+
itemIndex?: true
|
|
5605
5618
|
}
|
|
5606
5619
|
|
|
5607
5620
|
export type ExecutionInstanceMinAggregateInputType = {
|
|
@@ -5642,6 +5655,9 @@ export namespace Prisma {
|
|
|
5642
5655
|
inputTruncated?: true
|
|
5643
5656
|
outputTruncated?: true
|
|
5644
5657
|
usedPinnedOutput?: true
|
|
5658
|
+
iterationId?: true
|
|
5659
|
+
itemIndex?: true
|
|
5660
|
+
parentInvocationId?: true
|
|
5645
5661
|
}
|
|
5646
5662
|
|
|
5647
5663
|
export type ExecutionInstanceMaxAggregateInputType = {
|
|
@@ -5682,6 +5698,9 @@ export namespace Prisma {
|
|
|
5682
5698
|
inputTruncated?: true
|
|
5683
5699
|
outputTruncated?: true
|
|
5684
5700
|
usedPinnedOutput?: true
|
|
5701
|
+
iterationId?: true
|
|
5702
|
+
itemIndex?: true
|
|
5703
|
+
parentInvocationId?: true
|
|
5685
5704
|
}
|
|
5686
5705
|
|
|
5687
5706
|
export type ExecutionInstanceCountAggregateInputType = {
|
|
@@ -5722,6 +5741,9 @@ export namespace Prisma {
|
|
|
5722
5741
|
inputTruncated?: true
|
|
5723
5742
|
outputTruncated?: true
|
|
5724
5743
|
usedPinnedOutput?: true
|
|
5744
|
+
iterationId?: true
|
|
5745
|
+
itemIndex?: true
|
|
5746
|
+
parentInvocationId?: true
|
|
5725
5747
|
_all?: true
|
|
5726
5748
|
}
|
|
5727
5749
|
|
|
@@ -5849,6 +5871,9 @@ export namespace Prisma {
|
|
|
5849
5871
|
inputTruncated: boolean | null
|
|
5850
5872
|
outputTruncated: boolean | null
|
|
5851
5873
|
usedPinnedOutput: boolean | null
|
|
5874
|
+
iterationId: string | null
|
|
5875
|
+
itemIndex: number | null
|
|
5876
|
+
parentInvocationId: string | null
|
|
5852
5877
|
_count: ExecutionInstanceCountAggregateOutputType | null
|
|
5853
5878
|
_avg: ExecutionInstanceAvgAggregateOutputType | null
|
|
5854
5879
|
_sum: ExecutionInstanceSumAggregateOutputType | null
|
|
@@ -5908,6 +5933,9 @@ export namespace Prisma {
|
|
|
5908
5933
|
inputTruncated?: boolean
|
|
5909
5934
|
outputTruncated?: boolean
|
|
5910
5935
|
usedPinnedOutput?: boolean
|
|
5936
|
+
iterationId?: boolean
|
|
5937
|
+
itemIndex?: boolean
|
|
5938
|
+
parentInvocationId?: boolean
|
|
5911
5939
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
5912
5940
|
}, ExtArgs["result"]["executionInstance"]>
|
|
5913
5941
|
|
|
@@ -5949,6 +5977,9 @@ export namespace Prisma {
|
|
|
5949
5977
|
inputTruncated?: boolean
|
|
5950
5978
|
outputTruncated?: boolean
|
|
5951
5979
|
usedPinnedOutput?: boolean
|
|
5980
|
+
iterationId?: boolean
|
|
5981
|
+
itemIndex?: boolean
|
|
5982
|
+
parentInvocationId?: boolean
|
|
5952
5983
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
5953
5984
|
}, ExtArgs["result"]["executionInstance"]>
|
|
5954
5985
|
|
|
@@ -5990,6 +6021,9 @@ export namespace Prisma {
|
|
|
5990
6021
|
inputTruncated?: boolean
|
|
5991
6022
|
outputTruncated?: boolean
|
|
5992
6023
|
usedPinnedOutput?: boolean
|
|
6024
|
+
iterationId?: boolean
|
|
6025
|
+
itemIndex?: boolean
|
|
6026
|
+
parentInvocationId?: boolean
|
|
5993
6027
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
5994
6028
|
}, ExtArgs["result"]["executionInstance"]>
|
|
5995
6029
|
|
|
@@ -6031,9 +6065,12 @@ export namespace Prisma {
|
|
|
6031
6065
|
inputTruncated?: boolean
|
|
6032
6066
|
outputTruncated?: boolean
|
|
6033
6067
|
usedPinnedOutput?: boolean
|
|
6068
|
+
iterationId?: boolean
|
|
6069
|
+
itemIndex?: boolean
|
|
6070
|
+
parentInvocationId?: boolean
|
|
6034
6071
|
}
|
|
6035
6072
|
|
|
6036
|
-
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"]>
|
|
6073
|
+
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"]>
|
|
6037
6074
|
export type ExecutionInstanceInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6038
6075
|
run?: boolean | RunDefaultArgs<ExtArgs>
|
|
6039
6076
|
}
|
|
@@ -6087,6 +6124,9 @@ export namespace Prisma {
|
|
|
6087
6124
|
inputTruncated: boolean | null
|
|
6088
6125
|
outputTruncated: boolean | null
|
|
6089
6126
|
usedPinnedOutput: boolean | null
|
|
6127
|
+
iterationId: string | null
|
|
6128
|
+
itemIndex: number | null
|
|
6129
|
+
parentInvocationId: string | null
|
|
6090
6130
|
}, ExtArgs["result"]["executionInstance"]>
|
|
6091
6131
|
composites: {}
|
|
6092
6132
|
}
|
|
@@ -6548,6 +6588,9 @@ export namespace Prisma {
|
|
|
6548
6588
|
readonly inputTruncated: FieldRef<"ExecutionInstance", 'Boolean'>
|
|
6549
6589
|
readonly outputTruncated: FieldRef<"ExecutionInstance", 'Boolean'>
|
|
6550
6590
|
readonly usedPinnedOutput: FieldRef<"ExecutionInstance", 'Boolean'>
|
|
6591
|
+
readonly iterationId: FieldRef<"ExecutionInstance", 'String'>
|
|
6592
|
+
readonly itemIndex: FieldRef<"ExecutionInstance", 'Int'>
|
|
6593
|
+
readonly parentInvocationId: FieldRef<"ExecutionInstance", 'String'>
|
|
6551
6594
|
}
|
|
6552
6595
|
|
|
6553
6596
|
|
|
@@ -12032,10 +12075,20 @@ export namespace Prisma {
|
|
|
12032
12075
|
|
|
12033
12076
|
export type AggregateTelemetrySpan = {
|
|
12034
12077
|
_count: TelemetrySpanCountAggregateOutputType | null
|
|
12078
|
+
_avg: TelemetrySpanAvgAggregateOutputType | null
|
|
12079
|
+
_sum: TelemetrySpanSumAggregateOutputType | null
|
|
12035
12080
|
_min: TelemetrySpanMinAggregateOutputType | null
|
|
12036
12081
|
_max: TelemetrySpanMaxAggregateOutputType | null
|
|
12037
12082
|
}
|
|
12038
12083
|
|
|
12084
|
+
export type TelemetrySpanAvgAggregateOutputType = {
|
|
12085
|
+
itemIndex: number | null
|
|
12086
|
+
}
|
|
12087
|
+
|
|
12088
|
+
export type TelemetrySpanSumAggregateOutputType = {
|
|
12089
|
+
itemIndex: number | null
|
|
12090
|
+
}
|
|
12091
|
+
|
|
12039
12092
|
export type TelemetrySpanMinAggregateOutputType = {
|
|
12040
12093
|
telemetrySpanId: string | null
|
|
12041
12094
|
traceId: string | null
|
|
@@ -12059,6 +12112,9 @@ export namespace Prisma {
|
|
|
12059
12112
|
attributesJson: string | null
|
|
12060
12113
|
eventsJson: string | null
|
|
12061
12114
|
retentionExpiresAt: string | null
|
|
12115
|
+
iterationId: string | null
|
|
12116
|
+
itemIndex: number | null
|
|
12117
|
+
parentInvocationId: string | null
|
|
12062
12118
|
updatedAt: string | null
|
|
12063
12119
|
}
|
|
12064
12120
|
|
|
@@ -12085,6 +12141,9 @@ export namespace Prisma {
|
|
|
12085
12141
|
attributesJson: string | null
|
|
12086
12142
|
eventsJson: string | null
|
|
12087
12143
|
retentionExpiresAt: string | null
|
|
12144
|
+
iterationId: string | null
|
|
12145
|
+
itemIndex: number | null
|
|
12146
|
+
parentInvocationId: string | null
|
|
12088
12147
|
updatedAt: string | null
|
|
12089
12148
|
}
|
|
12090
12149
|
|
|
@@ -12111,11 +12170,22 @@ export namespace Prisma {
|
|
|
12111
12170
|
attributesJson: number
|
|
12112
12171
|
eventsJson: number
|
|
12113
12172
|
retentionExpiresAt: number
|
|
12173
|
+
iterationId: number
|
|
12174
|
+
itemIndex: number
|
|
12175
|
+
parentInvocationId: number
|
|
12114
12176
|
updatedAt: number
|
|
12115
12177
|
_all: number
|
|
12116
12178
|
}
|
|
12117
12179
|
|
|
12118
12180
|
|
|
12181
|
+
export type TelemetrySpanAvgAggregateInputType = {
|
|
12182
|
+
itemIndex?: true
|
|
12183
|
+
}
|
|
12184
|
+
|
|
12185
|
+
export type TelemetrySpanSumAggregateInputType = {
|
|
12186
|
+
itemIndex?: true
|
|
12187
|
+
}
|
|
12188
|
+
|
|
12119
12189
|
export type TelemetrySpanMinAggregateInputType = {
|
|
12120
12190
|
telemetrySpanId?: true
|
|
12121
12191
|
traceId?: true
|
|
@@ -12139,6 +12209,9 @@ export namespace Prisma {
|
|
|
12139
12209
|
attributesJson?: true
|
|
12140
12210
|
eventsJson?: true
|
|
12141
12211
|
retentionExpiresAt?: true
|
|
12212
|
+
iterationId?: true
|
|
12213
|
+
itemIndex?: true
|
|
12214
|
+
parentInvocationId?: true
|
|
12142
12215
|
updatedAt?: true
|
|
12143
12216
|
}
|
|
12144
12217
|
|
|
@@ -12165,6 +12238,9 @@ export namespace Prisma {
|
|
|
12165
12238
|
attributesJson?: true
|
|
12166
12239
|
eventsJson?: true
|
|
12167
12240
|
retentionExpiresAt?: true
|
|
12241
|
+
iterationId?: true
|
|
12242
|
+
itemIndex?: true
|
|
12243
|
+
parentInvocationId?: true
|
|
12168
12244
|
updatedAt?: true
|
|
12169
12245
|
}
|
|
12170
12246
|
|
|
@@ -12191,6 +12267,9 @@ export namespace Prisma {
|
|
|
12191
12267
|
attributesJson?: true
|
|
12192
12268
|
eventsJson?: true
|
|
12193
12269
|
retentionExpiresAt?: true
|
|
12270
|
+
iterationId?: true
|
|
12271
|
+
itemIndex?: true
|
|
12272
|
+
parentInvocationId?: true
|
|
12194
12273
|
updatedAt?: true
|
|
12195
12274
|
_all?: true
|
|
12196
12275
|
}
|
|
@@ -12230,6 +12309,18 @@ export namespace Prisma {
|
|
|
12230
12309
|
* Count returned TelemetrySpans
|
|
12231
12310
|
**/
|
|
12232
12311
|
_count?: true | TelemetrySpanCountAggregateInputType
|
|
12312
|
+
/**
|
|
12313
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
12314
|
+
*
|
|
12315
|
+
* Select which fields to average
|
|
12316
|
+
**/
|
|
12317
|
+
_avg?: TelemetrySpanAvgAggregateInputType
|
|
12318
|
+
/**
|
|
12319
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
12320
|
+
*
|
|
12321
|
+
* Select which fields to sum
|
|
12322
|
+
**/
|
|
12323
|
+
_sum?: TelemetrySpanSumAggregateInputType
|
|
12233
12324
|
/**
|
|
12234
12325
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
12235
12326
|
*
|
|
@@ -12263,6 +12354,8 @@ export namespace Prisma {
|
|
|
12263
12354
|
take?: number
|
|
12264
12355
|
skip?: number
|
|
12265
12356
|
_count?: TelemetrySpanCountAggregateInputType | true
|
|
12357
|
+
_avg?: TelemetrySpanAvgAggregateInputType
|
|
12358
|
+
_sum?: TelemetrySpanSumAggregateInputType
|
|
12266
12359
|
_min?: TelemetrySpanMinAggregateInputType
|
|
12267
12360
|
_max?: TelemetrySpanMaxAggregateInputType
|
|
12268
12361
|
}
|
|
@@ -12290,8 +12383,13 @@ export namespace Prisma {
|
|
|
12290
12383
|
attributesJson: string | null
|
|
12291
12384
|
eventsJson: string | null
|
|
12292
12385
|
retentionExpiresAt: string | null
|
|
12386
|
+
iterationId: string | null
|
|
12387
|
+
itemIndex: number | null
|
|
12388
|
+
parentInvocationId: string | null
|
|
12293
12389
|
updatedAt: string
|
|
12294
12390
|
_count: TelemetrySpanCountAggregateOutputType | null
|
|
12391
|
+
_avg: TelemetrySpanAvgAggregateOutputType | null
|
|
12392
|
+
_sum: TelemetrySpanSumAggregateOutputType | null
|
|
12295
12393
|
_min: TelemetrySpanMinAggregateOutputType | null
|
|
12296
12394
|
_max: TelemetrySpanMaxAggregateOutputType | null
|
|
12297
12395
|
}
|
|
@@ -12333,6 +12431,9 @@ export namespace Prisma {
|
|
|
12333
12431
|
attributesJson?: boolean
|
|
12334
12432
|
eventsJson?: boolean
|
|
12335
12433
|
retentionExpiresAt?: boolean
|
|
12434
|
+
iterationId?: boolean
|
|
12435
|
+
itemIndex?: boolean
|
|
12436
|
+
parentInvocationId?: boolean
|
|
12336
12437
|
updatedAt?: boolean
|
|
12337
12438
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12338
12439
|
|
|
@@ -12359,6 +12460,9 @@ export namespace Prisma {
|
|
|
12359
12460
|
attributesJson?: boolean
|
|
12360
12461
|
eventsJson?: boolean
|
|
12361
12462
|
retentionExpiresAt?: boolean
|
|
12463
|
+
iterationId?: boolean
|
|
12464
|
+
itemIndex?: boolean
|
|
12465
|
+
parentInvocationId?: boolean
|
|
12362
12466
|
updatedAt?: boolean
|
|
12363
12467
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12364
12468
|
|
|
@@ -12385,6 +12489,9 @@ export namespace Prisma {
|
|
|
12385
12489
|
attributesJson?: boolean
|
|
12386
12490
|
eventsJson?: boolean
|
|
12387
12491
|
retentionExpiresAt?: boolean
|
|
12492
|
+
iterationId?: boolean
|
|
12493
|
+
itemIndex?: boolean
|
|
12494
|
+
parentInvocationId?: boolean
|
|
12388
12495
|
updatedAt?: boolean
|
|
12389
12496
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12390
12497
|
|
|
@@ -12411,10 +12518,13 @@ export namespace Prisma {
|
|
|
12411
12518
|
attributesJson?: boolean
|
|
12412
12519
|
eventsJson?: boolean
|
|
12413
12520
|
retentionExpiresAt?: boolean
|
|
12521
|
+
iterationId?: boolean
|
|
12522
|
+
itemIndex?: boolean
|
|
12523
|
+
parentInvocationId?: boolean
|
|
12414
12524
|
updatedAt?: boolean
|
|
12415
12525
|
}
|
|
12416
12526
|
|
|
12417
|
-
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"]>
|
|
12527
|
+
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"]>
|
|
12418
12528
|
|
|
12419
12529
|
export type $TelemetrySpanPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12420
12530
|
name: "TelemetrySpan"
|
|
@@ -12442,6 +12552,9 @@ export namespace Prisma {
|
|
|
12442
12552
|
attributesJson: string | null
|
|
12443
12553
|
eventsJson: string | null
|
|
12444
12554
|
retentionExpiresAt: string | null
|
|
12555
|
+
iterationId: string | null
|
|
12556
|
+
itemIndex: number | null
|
|
12557
|
+
parentInvocationId: string | null
|
|
12445
12558
|
updatedAt: string
|
|
12446
12559
|
}, ExtArgs["result"]["telemetrySpan"]>
|
|
12447
12560
|
composites: {}
|
|
@@ -12888,6 +13001,9 @@ export namespace Prisma {
|
|
|
12888
13001
|
readonly attributesJson: FieldRef<"TelemetrySpan", 'String'>
|
|
12889
13002
|
readonly eventsJson: FieldRef<"TelemetrySpan", 'String'>
|
|
12890
13003
|
readonly retentionExpiresAt: FieldRef<"TelemetrySpan", 'String'>
|
|
13004
|
+
readonly iterationId: FieldRef<"TelemetrySpan", 'String'>
|
|
13005
|
+
readonly itemIndex: FieldRef<"TelemetrySpan", 'Int'>
|
|
13006
|
+
readonly parentInvocationId: FieldRef<"TelemetrySpan", 'String'>
|
|
12891
13007
|
readonly updatedAt: FieldRef<"TelemetrySpan", 'String'>
|
|
12892
13008
|
}
|
|
12893
13009
|
|
|
@@ -14473,10 +14589,12 @@ export namespace Prisma {
|
|
|
14473
14589
|
|
|
14474
14590
|
export type TelemetryMetricPointAvgAggregateOutputType = {
|
|
14475
14591
|
value: number | null
|
|
14592
|
+
itemIndex: number | null
|
|
14476
14593
|
}
|
|
14477
14594
|
|
|
14478
14595
|
export type TelemetryMetricPointSumAggregateOutputType = {
|
|
14479
14596
|
value: number | null
|
|
14597
|
+
itemIndex: number | null
|
|
14480
14598
|
}
|
|
14481
14599
|
|
|
14482
14600
|
export type TelemetryMetricPointMinAggregateOutputType = {
|
|
@@ -14497,6 +14615,9 @@ export namespace Prisma {
|
|
|
14497
14615
|
modelName: string | null
|
|
14498
14616
|
dimensionsJson: string | null
|
|
14499
14617
|
retentionExpiresAt: string | null
|
|
14618
|
+
iterationId: string | null
|
|
14619
|
+
itemIndex: number | null
|
|
14620
|
+
parentInvocationId: string | null
|
|
14500
14621
|
}
|
|
14501
14622
|
|
|
14502
14623
|
export type TelemetryMetricPointMaxAggregateOutputType = {
|
|
@@ -14517,6 +14638,9 @@ export namespace Prisma {
|
|
|
14517
14638
|
modelName: string | null
|
|
14518
14639
|
dimensionsJson: string | null
|
|
14519
14640
|
retentionExpiresAt: string | null
|
|
14641
|
+
iterationId: string | null
|
|
14642
|
+
itemIndex: number | null
|
|
14643
|
+
parentInvocationId: string | null
|
|
14520
14644
|
}
|
|
14521
14645
|
|
|
14522
14646
|
export type TelemetryMetricPointCountAggregateOutputType = {
|
|
@@ -14537,16 +14661,21 @@ export namespace Prisma {
|
|
|
14537
14661
|
modelName: number
|
|
14538
14662
|
dimensionsJson: number
|
|
14539
14663
|
retentionExpiresAt: number
|
|
14664
|
+
iterationId: number
|
|
14665
|
+
itemIndex: number
|
|
14666
|
+
parentInvocationId: number
|
|
14540
14667
|
_all: number
|
|
14541
14668
|
}
|
|
14542
14669
|
|
|
14543
14670
|
|
|
14544
14671
|
export type TelemetryMetricPointAvgAggregateInputType = {
|
|
14545
14672
|
value?: true
|
|
14673
|
+
itemIndex?: true
|
|
14546
14674
|
}
|
|
14547
14675
|
|
|
14548
14676
|
export type TelemetryMetricPointSumAggregateInputType = {
|
|
14549
14677
|
value?: true
|
|
14678
|
+
itemIndex?: true
|
|
14550
14679
|
}
|
|
14551
14680
|
|
|
14552
14681
|
export type TelemetryMetricPointMinAggregateInputType = {
|
|
@@ -14567,6 +14696,9 @@ export namespace Prisma {
|
|
|
14567
14696
|
modelName?: true
|
|
14568
14697
|
dimensionsJson?: true
|
|
14569
14698
|
retentionExpiresAt?: true
|
|
14699
|
+
iterationId?: true
|
|
14700
|
+
itemIndex?: true
|
|
14701
|
+
parentInvocationId?: true
|
|
14570
14702
|
}
|
|
14571
14703
|
|
|
14572
14704
|
export type TelemetryMetricPointMaxAggregateInputType = {
|
|
@@ -14587,6 +14719,9 @@ export namespace Prisma {
|
|
|
14587
14719
|
modelName?: true
|
|
14588
14720
|
dimensionsJson?: true
|
|
14589
14721
|
retentionExpiresAt?: true
|
|
14722
|
+
iterationId?: true
|
|
14723
|
+
itemIndex?: true
|
|
14724
|
+
parentInvocationId?: true
|
|
14590
14725
|
}
|
|
14591
14726
|
|
|
14592
14727
|
export type TelemetryMetricPointCountAggregateInputType = {
|
|
@@ -14607,6 +14742,9 @@ export namespace Prisma {
|
|
|
14607
14742
|
modelName?: true
|
|
14608
14743
|
dimensionsJson?: true
|
|
14609
14744
|
retentionExpiresAt?: true
|
|
14745
|
+
iterationId?: true
|
|
14746
|
+
itemIndex?: true
|
|
14747
|
+
parentInvocationId?: true
|
|
14610
14748
|
_all?: true
|
|
14611
14749
|
}
|
|
14612
14750
|
|
|
@@ -14714,6 +14852,9 @@ export namespace Prisma {
|
|
|
14714
14852
|
modelName: string | null
|
|
14715
14853
|
dimensionsJson: string | null
|
|
14716
14854
|
retentionExpiresAt: string | null
|
|
14855
|
+
iterationId: string | null
|
|
14856
|
+
itemIndex: number | null
|
|
14857
|
+
parentInvocationId: string | null
|
|
14717
14858
|
_count: TelemetryMetricPointCountAggregateOutputType | null
|
|
14718
14859
|
_avg: TelemetryMetricPointAvgAggregateOutputType | null
|
|
14719
14860
|
_sum: TelemetryMetricPointSumAggregateOutputType | null
|
|
@@ -14753,6 +14894,9 @@ export namespace Prisma {
|
|
|
14753
14894
|
modelName?: boolean
|
|
14754
14895
|
dimensionsJson?: boolean
|
|
14755
14896
|
retentionExpiresAt?: boolean
|
|
14897
|
+
iterationId?: boolean
|
|
14898
|
+
itemIndex?: boolean
|
|
14899
|
+
parentInvocationId?: boolean
|
|
14756
14900
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14757
14901
|
|
|
14758
14902
|
export type TelemetryMetricPointSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -14773,6 +14917,9 @@ export namespace Prisma {
|
|
|
14773
14917
|
modelName?: boolean
|
|
14774
14918
|
dimensionsJson?: boolean
|
|
14775
14919
|
retentionExpiresAt?: boolean
|
|
14920
|
+
iterationId?: boolean
|
|
14921
|
+
itemIndex?: boolean
|
|
14922
|
+
parentInvocationId?: boolean
|
|
14776
14923
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14777
14924
|
|
|
14778
14925
|
export type TelemetryMetricPointSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -14793,6 +14940,9 @@ export namespace Prisma {
|
|
|
14793
14940
|
modelName?: boolean
|
|
14794
14941
|
dimensionsJson?: boolean
|
|
14795
14942
|
retentionExpiresAt?: boolean
|
|
14943
|
+
iterationId?: boolean
|
|
14944
|
+
itemIndex?: boolean
|
|
14945
|
+
parentInvocationId?: boolean
|
|
14796
14946
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14797
14947
|
|
|
14798
14948
|
export type TelemetryMetricPointSelectScalar = {
|
|
@@ -14813,9 +14963,12 @@ export namespace Prisma {
|
|
|
14813
14963
|
modelName?: boolean
|
|
14814
14964
|
dimensionsJson?: boolean
|
|
14815
14965
|
retentionExpiresAt?: boolean
|
|
14966
|
+
iterationId?: boolean
|
|
14967
|
+
itemIndex?: boolean
|
|
14968
|
+
parentInvocationId?: boolean
|
|
14816
14969
|
}
|
|
14817
14970
|
|
|
14818
|
-
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"]>
|
|
14971
|
+
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"]>
|
|
14819
14972
|
|
|
14820
14973
|
export type $TelemetryMetricPointPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14821
14974
|
name: "TelemetryMetricPoint"
|
|
@@ -14838,6 +14991,9 @@ export namespace Prisma {
|
|
|
14838
14991
|
modelName: string | null
|
|
14839
14992
|
dimensionsJson: string | null
|
|
14840
14993
|
retentionExpiresAt: string | null
|
|
14994
|
+
iterationId: string | null
|
|
14995
|
+
itemIndex: number | null
|
|
14996
|
+
parentInvocationId: string | null
|
|
14841
14997
|
}, ExtArgs["result"]["telemetryMetricPoint"]>
|
|
14842
14998
|
composites: {}
|
|
14843
14999
|
}
|
|
@@ -15278,6 +15434,9 @@ export namespace Prisma {
|
|
|
15278
15434
|
readonly modelName: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15279
15435
|
readonly dimensionsJson: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15280
15436
|
readonly retentionExpiresAt: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15437
|
+
readonly iterationId: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15438
|
+
readonly itemIndex: FieldRef<"TelemetryMetricPoint", 'Int'>
|
|
15439
|
+
readonly parentInvocationId: FieldRef<"TelemetryMetricPoint", 'String'>
|
|
15281
15440
|
}
|
|
15282
15441
|
|
|
15283
15442
|
|
|
@@ -27592,7 +27751,10 @@ export namespace Prisma {
|
|
|
27592
27751
|
outputPayloadRef: 'outputPayloadRef',
|
|
27593
27752
|
inputTruncated: 'inputTruncated',
|
|
27594
27753
|
outputTruncated: 'outputTruncated',
|
|
27595
|
-
usedPinnedOutput: 'usedPinnedOutput'
|
|
27754
|
+
usedPinnedOutput: 'usedPinnedOutput',
|
|
27755
|
+
iterationId: 'iterationId',
|
|
27756
|
+
itemIndex: 'itemIndex',
|
|
27757
|
+
parentInvocationId: 'parentInvocationId'
|
|
27596
27758
|
};
|
|
27597
27759
|
|
|
27598
27760
|
export type ExecutionInstanceScalarFieldEnum = (typeof ExecutionInstanceScalarFieldEnum)[keyof typeof ExecutionInstanceScalarFieldEnum]
|
|
@@ -27674,6 +27836,9 @@ export namespace Prisma {
|
|
|
27674
27836
|
attributesJson: 'attributesJson',
|
|
27675
27837
|
eventsJson: 'eventsJson',
|
|
27676
27838
|
retentionExpiresAt: 'retentionExpiresAt',
|
|
27839
|
+
iterationId: 'iterationId',
|
|
27840
|
+
itemIndex: 'itemIndex',
|
|
27841
|
+
parentInvocationId: 'parentInvocationId',
|
|
27677
27842
|
updatedAt: 'updatedAt'
|
|
27678
27843
|
};
|
|
27679
27844
|
|
|
@@ -27721,7 +27886,10 @@ export namespace Prisma {
|
|
|
27721
27886
|
nodeRole: 'nodeRole',
|
|
27722
27887
|
modelName: 'modelName',
|
|
27723
27888
|
dimensionsJson: 'dimensionsJson',
|
|
27724
|
-
retentionExpiresAt: 'retentionExpiresAt'
|
|
27889
|
+
retentionExpiresAt: 'retentionExpiresAt',
|
|
27890
|
+
iterationId: 'iterationId',
|
|
27891
|
+
itemIndex: 'itemIndex',
|
|
27892
|
+
parentInvocationId: 'parentInvocationId'
|
|
27725
27893
|
};
|
|
27726
27894
|
|
|
27727
27895
|
export type TelemetryMetricPointScalarFieldEnum = (typeof TelemetryMetricPointScalarFieldEnum)[keyof typeof TelemetryMetricPointScalarFieldEnum]
|
|
@@ -28222,6 +28390,9 @@ export namespace Prisma {
|
|
|
28222
28390
|
inputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28223
28391
|
outputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28224
28392
|
usedPinnedOutput?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28393
|
+
iterationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28394
|
+
itemIndex?: IntNullableFilter<"ExecutionInstance"> | number | null
|
|
28395
|
+
parentInvocationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28225
28396
|
run?: XOR<RunScalarRelationFilter, RunWhereInput>
|
|
28226
28397
|
}
|
|
28227
28398
|
|
|
@@ -28263,6 +28434,9 @@ export namespace Prisma {
|
|
|
28263
28434
|
inputTruncated?: SortOrderInput | SortOrder
|
|
28264
28435
|
outputTruncated?: SortOrderInput | SortOrder
|
|
28265
28436
|
usedPinnedOutput?: SortOrderInput | SortOrder
|
|
28437
|
+
iterationId?: SortOrderInput | SortOrder
|
|
28438
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
28439
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28266
28440
|
run?: RunOrderByWithRelationInput
|
|
28267
28441
|
}
|
|
28268
28442
|
|
|
@@ -28308,6 +28482,9 @@ export namespace Prisma {
|
|
|
28308
28482
|
inputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28309
28483
|
outputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28310
28484
|
usedPinnedOutput?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
28485
|
+
iterationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28486
|
+
itemIndex?: IntNullableFilter<"ExecutionInstance"> | number | null
|
|
28487
|
+
parentInvocationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
28311
28488
|
run?: XOR<RunScalarRelationFilter, RunWhereInput>
|
|
28312
28489
|
}, "instanceId" | "runId_slotNodeId_runIndex">
|
|
28313
28490
|
|
|
@@ -28349,6 +28526,9 @@ export namespace Prisma {
|
|
|
28349
28526
|
inputTruncated?: SortOrderInput | SortOrder
|
|
28350
28527
|
outputTruncated?: SortOrderInput | SortOrder
|
|
28351
28528
|
usedPinnedOutput?: SortOrderInput | SortOrder
|
|
28529
|
+
iterationId?: SortOrderInput | SortOrder
|
|
28530
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
28531
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28352
28532
|
_count?: ExecutionInstanceCountOrderByAggregateInput
|
|
28353
28533
|
_avg?: ExecutionInstanceAvgOrderByAggregateInput
|
|
28354
28534
|
_max?: ExecutionInstanceMaxOrderByAggregateInput
|
|
@@ -28397,6 +28577,9 @@ export namespace Prisma {
|
|
|
28397
28577
|
inputTruncated?: BoolNullableWithAggregatesFilter<"ExecutionInstance"> | boolean | null
|
|
28398
28578
|
outputTruncated?: BoolNullableWithAggregatesFilter<"ExecutionInstance"> | boolean | null
|
|
28399
28579
|
usedPinnedOutput?: BoolNullableWithAggregatesFilter<"ExecutionInstance"> | boolean | null
|
|
28580
|
+
iterationId?: StringNullableWithAggregatesFilter<"ExecutionInstance"> | string | null
|
|
28581
|
+
itemIndex?: IntNullableWithAggregatesFilter<"ExecutionInstance"> | number | null
|
|
28582
|
+
parentInvocationId?: StringNullableWithAggregatesFilter<"ExecutionInstance"> | string | null
|
|
28400
28583
|
}
|
|
28401
28584
|
|
|
28402
28585
|
export type RunSlotProjectionWhereInput = {
|
|
@@ -28681,6 +28864,9 @@ export namespace Prisma {
|
|
|
28681
28864
|
attributesJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28682
28865
|
eventsJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28683
28866
|
retentionExpiresAt?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28867
|
+
iterationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28868
|
+
itemIndex?: IntNullableFilter<"TelemetrySpan"> | number | null
|
|
28869
|
+
parentInvocationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28684
28870
|
updatedAt?: StringFilter<"TelemetrySpan"> | string
|
|
28685
28871
|
}
|
|
28686
28872
|
|
|
@@ -28707,6 +28893,9 @@ export namespace Prisma {
|
|
|
28707
28893
|
attributesJson?: SortOrderInput | SortOrder
|
|
28708
28894
|
eventsJson?: SortOrderInput | SortOrder
|
|
28709
28895
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
28896
|
+
iterationId?: SortOrderInput | SortOrder
|
|
28897
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
28898
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28710
28899
|
updatedAt?: SortOrder
|
|
28711
28900
|
}
|
|
28712
28901
|
|
|
@@ -28737,6 +28926,9 @@ export namespace Prisma {
|
|
|
28737
28926
|
attributesJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28738
28927
|
eventsJson?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28739
28928
|
retentionExpiresAt?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28929
|
+
iterationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28930
|
+
itemIndex?: IntNullableFilter<"TelemetrySpan"> | number | null
|
|
28931
|
+
parentInvocationId?: StringNullableFilter<"TelemetrySpan"> | string | null
|
|
28740
28932
|
updatedAt?: StringFilter<"TelemetrySpan"> | string
|
|
28741
28933
|
}, "telemetrySpanId" | "traceId_spanId">
|
|
28742
28934
|
|
|
@@ -28763,10 +28955,15 @@ export namespace Prisma {
|
|
|
28763
28955
|
attributesJson?: SortOrderInput | SortOrder
|
|
28764
28956
|
eventsJson?: SortOrderInput | SortOrder
|
|
28765
28957
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
28958
|
+
iterationId?: SortOrderInput | SortOrder
|
|
28959
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
28960
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28766
28961
|
updatedAt?: SortOrder
|
|
28767
28962
|
_count?: TelemetrySpanCountOrderByAggregateInput
|
|
28963
|
+
_avg?: TelemetrySpanAvgOrderByAggregateInput
|
|
28768
28964
|
_max?: TelemetrySpanMaxOrderByAggregateInput
|
|
28769
28965
|
_min?: TelemetrySpanMinOrderByAggregateInput
|
|
28966
|
+
_sum?: TelemetrySpanSumOrderByAggregateInput
|
|
28770
28967
|
}
|
|
28771
28968
|
|
|
28772
28969
|
export type TelemetrySpanScalarWhereWithAggregatesInput = {
|
|
@@ -28795,6 +28992,9 @@ export namespace Prisma {
|
|
|
28795
28992
|
attributesJson?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28796
28993
|
eventsJson?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28797
28994
|
retentionExpiresAt?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28995
|
+
iterationId?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28996
|
+
itemIndex?: IntNullableWithAggregatesFilter<"TelemetrySpan"> | number | null
|
|
28997
|
+
parentInvocationId?: StringNullableWithAggregatesFilter<"TelemetrySpan"> | string | null
|
|
28798
28998
|
updatedAt?: StringWithAggregatesFilter<"TelemetrySpan"> | string
|
|
28799
28999
|
}
|
|
28800
29000
|
|
|
@@ -28938,6 +29138,9 @@ export namespace Prisma {
|
|
|
28938
29138
|
modelName?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
28939
29139
|
dimensionsJson?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
28940
29140
|
retentionExpiresAt?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29141
|
+
iterationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29142
|
+
itemIndex?: IntNullableFilter<"TelemetryMetricPoint"> | number | null
|
|
29143
|
+
parentInvocationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
28941
29144
|
}
|
|
28942
29145
|
|
|
28943
29146
|
export type TelemetryMetricPointOrderByWithRelationInput = {
|
|
@@ -28958,6 +29161,9 @@ export namespace Prisma {
|
|
|
28958
29161
|
modelName?: SortOrderInput | SortOrder
|
|
28959
29162
|
dimensionsJson?: SortOrderInput | SortOrder
|
|
28960
29163
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
29164
|
+
iterationId?: SortOrderInput | SortOrder
|
|
29165
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
29166
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
28961
29167
|
}
|
|
28962
29168
|
|
|
28963
29169
|
export type TelemetryMetricPointWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -28981,6 +29187,9 @@ export namespace Prisma {
|
|
|
28981
29187
|
modelName?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
28982
29188
|
dimensionsJson?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
28983
29189
|
retentionExpiresAt?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29190
|
+
iterationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
29191
|
+
itemIndex?: IntNullableFilter<"TelemetryMetricPoint"> | number | null
|
|
29192
|
+
parentInvocationId?: StringNullableFilter<"TelemetryMetricPoint"> | string | null
|
|
28984
29193
|
}, "metricPointId">
|
|
28985
29194
|
|
|
28986
29195
|
export type TelemetryMetricPointOrderByWithAggregationInput = {
|
|
@@ -29001,6 +29210,9 @@ export namespace Prisma {
|
|
|
29001
29210
|
modelName?: SortOrderInput | SortOrder
|
|
29002
29211
|
dimensionsJson?: SortOrderInput | SortOrder
|
|
29003
29212
|
retentionExpiresAt?: SortOrderInput | SortOrder
|
|
29213
|
+
iterationId?: SortOrderInput | SortOrder
|
|
29214
|
+
itemIndex?: SortOrderInput | SortOrder
|
|
29215
|
+
parentInvocationId?: SortOrderInput | SortOrder
|
|
29004
29216
|
_count?: TelemetryMetricPointCountOrderByAggregateInput
|
|
29005
29217
|
_avg?: TelemetryMetricPointAvgOrderByAggregateInput
|
|
29006
29218
|
_max?: TelemetryMetricPointMaxOrderByAggregateInput
|
|
@@ -29029,6 +29241,9 @@ export namespace Prisma {
|
|
|
29029
29241
|
modelName?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29030
29242
|
dimensionsJson?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29031
29243
|
retentionExpiresAt?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29244
|
+
iterationId?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29245
|
+
itemIndex?: IntNullableWithAggregatesFilter<"TelemetryMetricPoint"> | number | null
|
|
29246
|
+
parentInvocationId?: StringNullableWithAggregatesFilter<"TelemetryMetricPoint"> | string | null
|
|
29032
29247
|
}
|
|
29033
29248
|
|
|
29034
29249
|
export type CredentialInstanceWhereInput = {
|
|
@@ -30128,6 +30343,9 @@ export namespace Prisma {
|
|
|
30128
30343
|
inputTruncated?: boolean | null
|
|
30129
30344
|
outputTruncated?: boolean | null
|
|
30130
30345
|
usedPinnedOutput?: boolean | null
|
|
30346
|
+
iterationId?: string | null
|
|
30347
|
+
itemIndex?: number | null
|
|
30348
|
+
parentInvocationId?: string | null
|
|
30131
30349
|
run: RunCreateNestedOneWithoutExecutionInstancesInput
|
|
30132
30350
|
}
|
|
30133
30351
|
|
|
@@ -30169,6 +30387,9 @@ export namespace Prisma {
|
|
|
30169
30387
|
inputTruncated?: boolean | null
|
|
30170
30388
|
outputTruncated?: boolean | null
|
|
30171
30389
|
usedPinnedOutput?: boolean | null
|
|
30390
|
+
iterationId?: string | null
|
|
30391
|
+
itemIndex?: number | null
|
|
30392
|
+
parentInvocationId?: string | null
|
|
30172
30393
|
}
|
|
30173
30394
|
|
|
30174
30395
|
export type ExecutionInstanceUpdateInput = {
|
|
@@ -30208,6 +30429,9 @@ export namespace Prisma {
|
|
|
30208
30429
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30209
30430
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30210
30431
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30432
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30433
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30434
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30211
30435
|
run?: RunUpdateOneRequiredWithoutExecutionInstancesNestedInput
|
|
30212
30436
|
}
|
|
30213
30437
|
|
|
@@ -30249,6 +30473,9 @@ export namespace Prisma {
|
|
|
30249
30473
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30250
30474
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30251
30475
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30476
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30477
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30478
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30252
30479
|
}
|
|
30253
30480
|
|
|
30254
30481
|
export type ExecutionInstanceCreateManyInput = {
|
|
@@ -30289,6 +30516,9 @@ export namespace Prisma {
|
|
|
30289
30516
|
inputTruncated?: boolean | null
|
|
30290
30517
|
outputTruncated?: boolean | null
|
|
30291
30518
|
usedPinnedOutput?: boolean | null
|
|
30519
|
+
iterationId?: string | null
|
|
30520
|
+
itemIndex?: number | null
|
|
30521
|
+
parentInvocationId?: string | null
|
|
30292
30522
|
}
|
|
30293
30523
|
|
|
30294
30524
|
export type ExecutionInstanceUpdateManyMutationInput = {
|
|
@@ -30328,6 +30558,9 @@ export namespace Prisma {
|
|
|
30328
30558
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30329
30559
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30330
30560
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30561
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30562
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30563
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30331
30564
|
}
|
|
30332
30565
|
|
|
30333
30566
|
export type ExecutionInstanceUncheckedUpdateManyInput = {
|
|
@@ -30368,6 +30601,9 @@ export namespace Prisma {
|
|
|
30368
30601
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30369
30602
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30370
30603
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30604
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30605
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30606
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30371
30607
|
}
|
|
30372
30608
|
|
|
30373
30609
|
export type RunSlotProjectionCreateInput = {
|
|
@@ -30658,6 +30894,9 @@ export namespace Prisma {
|
|
|
30658
30894
|
attributesJson?: string | null
|
|
30659
30895
|
eventsJson?: string | null
|
|
30660
30896
|
retentionExpiresAt?: string | null
|
|
30897
|
+
iterationId?: string | null
|
|
30898
|
+
itemIndex?: number | null
|
|
30899
|
+
parentInvocationId?: string | null
|
|
30661
30900
|
updatedAt: string
|
|
30662
30901
|
}
|
|
30663
30902
|
|
|
@@ -30684,6 +30923,9 @@ export namespace Prisma {
|
|
|
30684
30923
|
attributesJson?: string | null
|
|
30685
30924
|
eventsJson?: string | null
|
|
30686
30925
|
retentionExpiresAt?: string | null
|
|
30926
|
+
iterationId?: string | null
|
|
30927
|
+
itemIndex?: number | null
|
|
30928
|
+
parentInvocationId?: string | null
|
|
30687
30929
|
updatedAt: string
|
|
30688
30930
|
}
|
|
30689
30931
|
|
|
@@ -30710,6 +30952,9 @@ export namespace Prisma {
|
|
|
30710
30952
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30711
30953
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30712
30954
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30955
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30956
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30957
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30713
30958
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30714
30959
|
}
|
|
30715
30960
|
|
|
@@ -30736,6 +30981,9 @@ export namespace Prisma {
|
|
|
30736
30981
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30737
30982
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30738
30983
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30984
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30985
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
30986
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30739
30987
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30740
30988
|
}
|
|
30741
30989
|
|
|
@@ -30762,6 +31010,9 @@ export namespace Prisma {
|
|
|
30762
31010
|
attributesJson?: string | null
|
|
30763
31011
|
eventsJson?: string | null
|
|
30764
31012
|
retentionExpiresAt?: string | null
|
|
31013
|
+
iterationId?: string | null
|
|
31014
|
+
itemIndex?: number | null
|
|
31015
|
+
parentInvocationId?: string | null
|
|
30765
31016
|
updatedAt: string
|
|
30766
31017
|
}
|
|
30767
31018
|
|
|
@@ -30788,6 +31039,9 @@ export namespace Prisma {
|
|
|
30788
31039
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30789
31040
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30790
31041
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31042
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31043
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31044
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30791
31045
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30792
31046
|
}
|
|
30793
31047
|
|
|
@@ -30814,6 +31068,9 @@ export namespace Prisma {
|
|
|
30814
31068
|
attributesJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30815
31069
|
eventsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30816
31070
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31071
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31072
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31073
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30817
31074
|
updatedAt?: StringFieldUpdateOperationsInput | string
|
|
30818
31075
|
}
|
|
30819
31076
|
|
|
@@ -30982,6 +31239,9 @@ export namespace Prisma {
|
|
|
30982
31239
|
modelName?: string | null
|
|
30983
31240
|
dimensionsJson?: string | null
|
|
30984
31241
|
retentionExpiresAt?: string | null
|
|
31242
|
+
iterationId?: string | null
|
|
31243
|
+
itemIndex?: number | null
|
|
31244
|
+
parentInvocationId?: string | null
|
|
30985
31245
|
}
|
|
30986
31246
|
|
|
30987
31247
|
export type TelemetryMetricPointUncheckedCreateInput = {
|
|
@@ -31002,6 +31262,9 @@ export namespace Prisma {
|
|
|
31002
31262
|
modelName?: string | null
|
|
31003
31263
|
dimensionsJson?: string | null
|
|
31004
31264
|
retentionExpiresAt?: string | null
|
|
31265
|
+
iterationId?: string | null
|
|
31266
|
+
itemIndex?: number | null
|
|
31267
|
+
parentInvocationId?: string | null
|
|
31005
31268
|
}
|
|
31006
31269
|
|
|
31007
31270
|
export type TelemetryMetricPointUpdateInput = {
|
|
@@ -31022,6 +31285,9 @@ export namespace Prisma {
|
|
|
31022
31285
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31023
31286
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31024
31287
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31288
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31289
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31290
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31025
31291
|
}
|
|
31026
31292
|
|
|
31027
31293
|
export type TelemetryMetricPointUncheckedUpdateInput = {
|
|
@@ -31042,6 +31308,9 @@ export namespace Prisma {
|
|
|
31042
31308
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31043
31309
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31044
31310
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31311
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31312
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31313
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31045
31314
|
}
|
|
31046
31315
|
|
|
31047
31316
|
export type TelemetryMetricPointCreateManyInput = {
|
|
@@ -31062,6 +31331,9 @@ export namespace Prisma {
|
|
|
31062
31331
|
modelName?: string | null
|
|
31063
31332
|
dimensionsJson?: string | null
|
|
31064
31333
|
retentionExpiresAt?: string | null
|
|
31334
|
+
iterationId?: string | null
|
|
31335
|
+
itemIndex?: number | null
|
|
31336
|
+
parentInvocationId?: string | null
|
|
31065
31337
|
}
|
|
31066
31338
|
|
|
31067
31339
|
export type TelemetryMetricPointUpdateManyMutationInput = {
|
|
@@ -31082,6 +31354,9 @@ export namespace Prisma {
|
|
|
31082
31354
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31083
31355
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31084
31356
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31357
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31358
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31359
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31085
31360
|
}
|
|
31086
31361
|
|
|
31087
31362
|
export type TelemetryMetricPointUncheckedUpdateManyInput = {
|
|
@@ -31102,6 +31377,9 @@ export namespace Prisma {
|
|
|
31102
31377
|
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31103
31378
|
dimensionsJson?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31104
31379
|
retentionExpiresAt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31380
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31381
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31382
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31105
31383
|
}
|
|
31106
31384
|
|
|
31107
31385
|
export type CredentialInstanceCreateInput = {
|
|
@@ -32287,6 +32565,9 @@ export namespace Prisma {
|
|
|
32287
32565
|
inputTruncated?: SortOrder
|
|
32288
32566
|
outputTruncated?: SortOrder
|
|
32289
32567
|
usedPinnedOutput?: SortOrder
|
|
32568
|
+
iterationId?: SortOrder
|
|
32569
|
+
itemIndex?: SortOrder
|
|
32570
|
+
parentInvocationId?: SortOrder
|
|
32290
32571
|
}
|
|
32291
32572
|
|
|
32292
32573
|
export type ExecutionInstanceAvgOrderByAggregateInput = {
|
|
@@ -32297,6 +32578,7 @@ export namespace Prisma {
|
|
|
32297
32578
|
failedItemCount?: SortOrder
|
|
32298
32579
|
inputBytes?: SortOrder
|
|
32299
32580
|
outputBytes?: SortOrder
|
|
32581
|
+
itemIndex?: SortOrder
|
|
32300
32582
|
}
|
|
32301
32583
|
|
|
32302
32584
|
export type ExecutionInstanceMaxOrderByAggregateInput = {
|
|
@@ -32337,6 +32619,9 @@ export namespace Prisma {
|
|
|
32337
32619
|
inputTruncated?: SortOrder
|
|
32338
32620
|
outputTruncated?: SortOrder
|
|
32339
32621
|
usedPinnedOutput?: SortOrder
|
|
32622
|
+
iterationId?: SortOrder
|
|
32623
|
+
itemIndex?: SortOrder
|
|
32624
|
+
parentInvocationId?: SortOrder
|
|
32340
32625
|
}
|
|
32341
32626
|
|
|
32342
32627
|
export type ExecutionInstanceMinOrderByAggregateInput = {
|
|
@@ -32377,6 +32662,9 @@ export namespace Prisma {
|
|
|
32377
32662
|
inputTruncated?: SortOrder
|
|
32378
32663
|
outputTruncated?: SortOrder
|
|
32379
32664
|
usedPinnedOutput?: SortOrder
|
|
32665
|
+
iterationId?: SortOrder
|
|
32666
|
+
itemIndex?: SortOrder
|
|
32667
|
+
parentInvocationId?: SortOrder
|
|
32380
32668
|
}
|
|
32381
32669
|
|
|
32382
32670
|
export type ExecutionInstanceSumOrderByAggregateInput = {
|
|
@@ -32387,6 +32675,7 @@ export namespace Prisma {
|
|
|
32387
32675
|
failedItemCount?: SortOrder
|
|
32388
32676
|
inputBytes?: SortOrder
|
|
32389
32677
|
outputBytes?: SortOrder
|
|
32678
|
+
itemIndex?: SortOrder
|
|
32390
32679
|
}
|
|
32391
32680
|
|
|
32392
32681
|
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -32581,9 +32870,16 @@ export namespace Prisma {
|
|
|
32581
32870
|
attributesJson?: SortOrder
|
|
32582
32871
|
eventsJson?: SortOrder
|
|
32583
32872
|
retentionExpiresAt?: SortOrder
|
|
32873
|
+
iterationId?: SortOrder
|
|
32874
|
+
itemIndex?: SortOrder
|
|
32875
|
+
parentInvocationId?: SortOrder
|
|
32584
32876
|
updatedAt?: SortOrder
|
|
32585
32877
|
}
|
|
32586
32878
|
|
|
32879
|
+
export type TelemetrySpanAvgOrderByAggregateInput = {
|
|
32880
|
+
itemIndex?: SortOrder
|
|
32881
|
+
}
|
|
32882
|
+
|
|
32587
32883
|
export type TelemetrySpanMaxOrderByAggregateInput = {
|
|
32588
32884
|
telemetrySpanId?: SortOrder
|
|
32589
32885
|
traceId?: SortOrder
|
|
@@ -32607,6 +32903,9 @@ export namespace Prisma {
|
|
|
32607
32903
|
attributesJson?: SortOrder
|
|
32608
32904
|
eventsJson?: SortOrder
|
|
32609
32905
|
retentionExpiresAt?: SortOrder
|
|
32906
|
+
iterationId?: SortOrder
|
|
32907
|
+
itemIndex?: SortOrder
|
|
32908
|
+
parentInvocationId?: SortOrder
|
|
32610
32909
|
updatedAt?: SortOrder
|
|
32611
32910
|
}
|
|
32612
32911
|
|
|
@@ -32633,9 +32932,16 @@ export namespace Prisma {
|
|
|
32633
32932
|
attributesJson?: SortOrder
|
|
32634
32933
|
eventsJson?: SortOrder
|
|
32635
32934
|
retentionExpiresAt?: SortOrder
|
|
32935
|
+
iterationId?: SortOrder
|
|
32936
|
+
itemIndex?: SortOrder
|
|
32937
|
+
parentInvocationId?: SortOrder
|
|
32636
32938
|
updatedAt?: SortOrder
|
|
32637
32939
|
}
|
|
32638
32940
|
|
|
32941
|
+
export type TelemetrySpanSumOrderByAggregateInput = {
|
|
32942
|
+
itemIndex?: SortOrder
|
|
32943
|
+
}
|
|
32944
|
+
|
|
32639
32945
|
export type TelemetryArtifactCountOrderByAggregateInput = {
|
|
32640
32946
|
artifactId?: SortOrder
|
|
32641
32947
|
traceId?: SortOrder
|
|
@@ -32736,10 +33042,14 @@ export namespace Prisma {
|
|
|
32736
33042
|
modelName?: SortOrder
|
|
32737
33043
|
dimensionsJson?: SortOrder
|
|
32738
33044
|
retentionExpiresAt?: SortOrder
|
|
33045
|
+
iterationId?: SortOrder
|
|
33046
|
+
itemIndex?: SortOrder
|
|
33047
|
+
parentInvocationId?: SortOrder
|
|
32739
33048
|
}
|
|
32740
33049
|
|
|
32741
33050
|
export type TelemetryMetricPointAvgOrderByAggregateInput = {
|
|
32742
33051
|
value?: SortOrder
|
|
33052
|
+
itemIndex?: SortOrder
|
|
32743
33053
|
}
|
|
32744
33054
|
|
|
32745
33055
|
export type TelemetryMetricPointMaxOrderByAggregateInput = {
|
|
@@ -32760,6 +33070,9 @@ export namespace Prisma {
|
|
|
32760
33070
|
modelName?: SortOrder
|
|
32761
33071
|
dimensionsJson?: SortOrder
|
|
32762
33072
|
retentionExpiresAt?: SortOrder
|
|
33073
|
+
iterationId?: SortOrder
|
|
33074
|
+
itemIndex?: SortOrder
|
|
33075
|
+
parentInvocationId?: SortOrder
|
|
32763
33076
|
}
|
|
32764
33077
|
|
|
32765
33078
|
export type TelemetryMetricPointMinOrderByAggregateInput = {
|
|
@@ -32780,10 +33093,14 @@ export namespace Prisma {
|
|
|
32780
33093
|
modelName?: SortOrder
|
|
32781
33094
|
dimensionsJson?: SortOrder
|
|
32782
33095
|
retentionExpiresAt?: SortOrder
|
|
33096
|
+
iterationId?: SortOrder
|
|
33097
|
+
itemIndex?: SortOrder
|
|
33098
|
+
parentInvocationId?: SortOrder
|
|
32783
33099
|
}
|
|
32784
33100
|
|
|
32785
33101
|
export type TelemetryMetricPointSumOrderByAggregateInput = {
|
|
32786
33102
|
value?: SortOrder
|
|
33103
|
+
itemIndex?: SortOrder
|
|
32787
33104
|
}
|
|
32788
33105
|
|
|
32789
33106
|
export type FloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -33985,6 +34302,9 @@ export namespace Prisma {
|
|
|
33985
34302
|
inputTruncated?: boolean | null
|
|
33986
34303
|
outputTruncated?: boolean | null
|
|
33987
34304
|
usedPinnedOutput?: boolean | null
|
|
34305
|
+
iterationId?: string | null
|
|
34306
|
+
itemIndex?: number | null
|
|
34307
|
+
parentInvocationId?: string | null
|
|
33988
34308
|
}
|
|
33989
34309
|
|
|
33990
34310
|
export type ExecutionInstanceUncheckedCreateWithoutRunInput = {
|
|
@@ -34024,6 +34344,9 @@ export namespace Prisma {
|
|
|
34024
34344
|
inputTruncated?: boolean | null
|
|
34025
34345
|
outputTruncated?: boolean | null
|
|
34026
34346
|
usedPinnedOutput?: boolean | null
|
|
34347
|
+
iterationId?: string | null
|
|
34348
|
+
itemIndex?: number | null
|
|
34349
|
+
parentInvocationId?: string | null
|
|
34027
34350
|
}
|
|
34028
34351
|
|
|
34029
34352
|
export type ExecutionInstanceCreateOrConnectWithoutRunInput = {
|
|
@@ -34152,6 +34475,9 @@ export namespace Prisma {
|
|
|
34152
34475
|
inputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
34153
34476
|
outputTruncated?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
34154
34477
|
usedPinnedOutput?: BoolNullableFilter<"ExecutionInstance"> | boolean | null
|
|
34478
|
+
iterationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
34479
|
+
itemIndex?: IntNullableFilter<"ExecutionInstance"> | number | null
|
|
34480
|
+
parentInvocationId?: StringNullableFilter<"ExecutionInstance"> | string | null
|
|
34155
34481
|
}
|
|
34156
34482
|
|
|
34157
34483
|
export type RunSlotProjectionUpsertWithoutRunInput = {
|
|
@@ -34939,6 +35265,9 @@ export namespace Prisma {
|
|
|
34939
35265
|
inputTruncated?: boolean | null
|
|
34940
35266
|
outputTruncated?: boolean | null
|
|
34941
35267
|
usedPinnedOutput?: boolean | null
|
|
35268
|
+
iterationId?: string | null
|
|
35269
|
+
itemIndex?: number | null
|
|
35270
|
+
parentInvocationId?: string | null
|
|
34942
35271
|
}
|
|
34943
35272
|
|
|
34944
35273
|
export type RunWorkItemUpdateWithoutRunInput = {
|
|
@@ -35041,6 +35370,9 @@ export namespace Prisma {
|
|
|
35041
35370
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35042
35371
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35043
35372
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35373
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35374
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
35375
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35044
35376
|
}
|
|
35045
35377
|
|
|
35046
35378
|
export type ExecutionInstanceUncheckedUpdateWithoutRunInput = {
|
|
@@ -35080,6 +35412,9 @@ export namespace Prisma {
|
|
|
35080
35412
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35081
35413
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35082
35414
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35415
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35416
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
35417
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35083
35418
|
}
|
|
35084
35419
|
|
|
35085
35420
|
export type ExecutionInstanceUncheckedUpdateManyWithoutRunInput = {
|
|
@@ -35119,6 +35454,9 @@ export namespace Prisma {
|
|
|
35119
35454
|
inputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35120
35455
|
outputTruncated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35121
35456
|
usedPinnedOutput?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35457
|
+
iterationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35458
|
+
itemIndex?: NullableIntFieldUpdateOperationsInput | number | null
|
|
35459
|
+
parentInvocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35122
35460
|
}
|
|
35123
35461
|
|
|
35124
35462
|
export type AccountCreateManyUserInput = {
|