We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83a392b + 6b66fce commit c11b0faCopy full SHA for c11b0fa
1 file changed
src/types/index.ts
@@ -63,9 +63,16 @@ export interface Entity {
63
data: any[] | any
64
}
65
66
+export interface ProviderError {
67
+ service: string
68
+ function: string
69
+ message: string
70
+}
71
+
72
export interface ProviderData {
73
entities: Entity[]
74
connections: { [key: string]: ServiceConnection[] }
75
+ errors?: ProviderError[]
76
77
78
export type LoggerInput = string | { [key: string]: any } | unknown
0 commit comments