We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2edee6 commit 4b610eeCopy full SHA for 4b610ee
src/core/types.ts
@@ -136,7 +136,7 @@ export type DatabaseCapture = {
136
outputs: string // encrypted
137
138
calls: CapturedCall<CaptureInvocationWithLinks>[]
139
- functions: CapturedCall<CaptureInvocationWithLinks>[]
+ functions: CapturedFunction<CaptureInvocationWithLinks>[]
140
141
error?: string // encrypted
142
capturedUserId?: string
@@ -154,7 +154,7 @@ export type CaptureDecryptedAndRevived = Omit<
154
'args' | 'outputs' | 'calls' | 'functions' | 'error'
155
> & {
156
calls: CapturedCall[]
157
- functions: CapturedCall[]
+ functions: CapturedFunction[]
158
error?: ErrorType
159
}
160
0 commit comments