We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83a392b commit 6b66fceCopy full SHA for 6b66fce
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