@merittdev/horus-lens 0.0.1

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.
Files changed (42) hide show
  1. package/dist/browser.cjs +31594 -0
  2. package/dist/browser.cjs.map +1 -0
  3. package/dist/browser.d.cts +125 -0
  4. package/dist/browser.d.ts +125 -0
  5. package/dist/browser.js +24 -0
  6. package/dist/browser.js.map +1 -0
  7. package/dist/chunk-DU7HNRF4.js +1644 -0
  8. package/dist/chunk-DU7HNRF4.js.map +1 -0
  9. package/dist/chunk-DWOH2ENF.js +17613 -0
  10. package/dist/chunk-DWOH2ENF.js.map +1 -0
  11. package/dist/chunk-PZ5AY32C.js +10 -0
  12. package/dist/chunk-PZ5AY32C.js.map +1 -0
  13. package/dist/chunk-S6S3ZZQA.js +17225 -0
  14. package/dist/chunk-S6S3ZZQA.js.map +1 -0
  15. package/dist/dashboard.cjs +19774 -0
  16. package/dist/dashboard.cjs.map +1 -0
  17. package/dist/dashboard.css +2233 -0
  18. package/dist/dashboard.d.cts +707 -0
  19. package/dist/dashboard.d.ts +707 -0
  20. package/dist/dashboard.js +2237 -0
  21. package/dist/dashboard.js.map +1 -0
  22. package/dist/index.cjs +30040 -0
  23. package/dist/index.cjs.map +1 -0
  24. package/dist/index.d-BA540Fae.d.ts +80 -0
  25. package/dist/index.d-Bzgtl7-B.d.cts +161 -0
  26. package/dist/index.d-Bzgtl7-B.d.ts +161 -0
  27. package/dist/index.d-DOCLVJGS.d.cts +80 -0
  28. package/dist/index.d.cts +906 -0
  29. package/dist/index.d.ts +906 -0
  30. package/dist/index.js +89 -0
  31. package/dist/index.js.map +1 -0
  32. package/dist/lens.min.js +770 -0
  33. package/dist/lens.min.js.map +1 -0
  34. package/dist/react.cjs +31683 -0
  35. package/dist/react.cjs.map +1 -0
  36. package/dist/react.d.cts +100 -0
  37. package/dist/react.d.ts +100 -0
  38. package/dist/react.js +108 -0
  39. package/dist/react.js.map +1 -0
  40. package/dist/rrweb-EYUUZIYR.js +30 -0
  41. package/dist/rrweb-EYUUZIYR.js.map +1 -0
  42. package/package.json +68 -0
@@ -0,0 +1,80 @@
1
+ import { A as AppContext, R as ReportMetadata, T as TargetElement, a as Annotation } from './index.d-Bzgtl7-B.js';
2
+
3
+ interface LensConfig {
4
+ accessId: string;
5
+ endpoint?: string;
6
+ replay?: {
7
+ windowMs?: number;
8
+ } | false;
9
+ app?: AppContext;
10
+ maxConsoleEntries?: number;
11
+ maxNetworkEntries?: number;
12
+ beforeSend?: (metadata: ReportMetadata) => ReportMetadata | null;
13
+ /** Capture a page screenshot on submit (best-effort). Default `true`. */
14
+ screenshot?: boolean;
15
+ debug?: boolean;
16
+ }
17
+ /**
18
+ * Per-report opt-outs for the captured data. Every flag defaults to `true`;
19
+ * setting one to `false` skips both the corresponding asset upload and its
20
+ * metadata mirror. Config-level `screenshot: false` still wins over
21
+ * `include.screenshot: true`.
22
+ */
23
+ interface SubmitReportIncludes {
24
+ replay?: boolean;
25
+ console?: boolean;
26
+ network?: boolean;
27
+ errors?: boolean;
28
+ screenshot?: boolean;
29
+ dom?: boolean;
30
+ }
31
+ interface SubmitReportInput {
32
+ comment?: string;
33
+ annotations?: Annotation[];
34
+ target?: TargetElement;
35
+ attachments?: {
36
+ blob: Blob;
37
+ contentType: string;
38
+ }[];
39
+ /** Element hidden from the screenshot capture (e.g. the overlay host). */
40
+ excludeFromScreenshot?: HTMLElement;
41
+ /** Selective data opt-outs; each flag defaults to `true`. */
42
+ include?: SubmitReportIncludes;
43
+ }
44
+ declare class LensClient {
45
+ private readonly accessId;
46
+ private readonly endpoint;
47
+ private readonly replayWindowMs;
48
+ private readonly debug;
49
+ private readonly screenshotEnabled;
50
+ private readonly beforeSend?;
51
+ private app;
52
+ private readonly consoleBuffer;
53
+ private readonly networkBuffer;
54
+ private readonly errorBuffer;
55
+ private readonly transport;
56
+ private readonly replay;
57
+ private teardowns;
58
+ private started;
59
+ constructor(config: LensConfig);
60
+ start(): void;
61
+ stop(): void;
62
+ setApp(app: Partial<AppContext>): void;
63
+ captureTarget(el: Element): TargetElement;
64
+ /** Begin an explicit "record steps" session (no-op if replay is disabled). */
65
+ startRecording(): void;
66
+ /** Stop the active recording; returns its duration, or `null` if none / disabled. */
67
+ stopRecording(): {
68
+ durationMs: number;
69
+ } | null;
70
+ /** Discard a retained manual recording and fall back to the rolling window. */
71
+ discardRecording(): void;
72
+ /** True while an explicit recording is in progress. */
73
+ isRecording(): boolean;
74
+ submitReport(input: SubmitReportInput): Promise<{
75
+ reportId: string;
76
+ }>;
77
+ private warn;
78
+ }
79
+
80
+ export { type LensConfig as L, LensClient as a };
@@ -0,0 +1,161 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const AppContextSchema: z.ZodObject<{
4
+ release: z.ZodOptional<z.ZodString>;
5
+ gitSha: z.ZodOptional<z.ZodString>;
6
+ environment: z.ZodOptional<z.ZodString>;
7
+ featureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
8
+ user: z.ZodOptional<z.ZodObject<{
9
+ id: z.ZodOptional<z.ZodString>;
10
+ email: z.ZodOptional<z.ZodString>;
11
+ name: z.ZodOptional<z.ZodString>;
12
+ organization: z.ZodOptional<z.ZodString>;
13
+ }, z.core.$strip>>;
14
+ extra: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
15
+ }, z.core.$strip>;
16
+ type AppContext = z.infer<typeof AppContextSchema>;
17
+ /** DOM path + React fiber path of the element the reporter targeted. */
18
+ declare const TargetElementSchema: z.ZodObject<{
19
+ domPath: z.ZodOptional<z.ZodString>;
20
+ tagName: z.ZodOptional<z.ZodString>;
21
+ text: z.ZodOptional<z.ZodString>;
22
+ boundingRect: z.ZodOptional<z.ZodObject<{
23
+ x: z.ZodNumber;
24
+ y: z.ZodNumber;
25
+ width: z.ZodNumber;
26
+ height: z.ZodNumber;
27
+ }, z.core.$strip>>;
28
+ reactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
29
+ }, z.core.$strip>;
30
+ type TargetElement = z.infer<typeof TargetElementSchema>;
31
+ declare const AnnotationSchema: z.ZodObject<{
32
+ kind: z.ZodEnum<{
33
+ rect: "rect";
34
+ ellipse: "ellipse";
35
+ arrow: "arrow";
36
+ }>;
37
+ x: z.ZodNumber;
38
+ y: z.ZodNumber;
39
+ width: z.ZodNumber;
40
+ height: z.ZodNumber;
41
+ viewport: z.ZodObject<{
42
+ width: z.ZodNumber;
43
+ height: z.ZodNumber;
44
+ }, z.core.$strip>;
45
+ }, z.core.$strip>;
46
+ type Annotation = z.infer<typeof AnnotationSchema>;
47
+ declare const ReportMetadataSchema: z.ZodObject<{
48
+ comment: z.ZodOptional<z.ZodString>;
49
+ annotations: z.ZodDefault<z.ZodArray<z.ZodObject<{
50
+ kind: z.ZodEnum<{
51
+ rect: "rect";
52
+ ellipse: "ellipse";
53
+ arrow: "arrow";
54
+ }>;
55
+ x: z.ZodNumber;
56
+ y: z.ZodNumber;
57
+ width: z.ZodNumber;
58
+ height: z.ZodNumber;
59
+ viewport: z.ZodObject<{
60
+ width: z.ZodNumber;
61
+ height: z.ZodNumber;
62
+ }, z.core.$strip>;
63
+ }, z.core.$strip>>>;
64
+ target: z.ZodOptional<z.ZodObject<{
65
+ domPath: z.ZodOptional<z.ZodString>;
66
+ tagName: z.ZodOptional<z.ZodString>;
67
+ text: z.ZodOptional<z.ZodString>;
68
+ boundingRect: z.ZodOptional<z.ZodObject<{
69
+ x: z.ZodNumber;
70
+ y: z.ZodNumber;
71
+ width: z.ZodNumber;
72
+ height: z.ZodNumber;
73
+ }, z.core.$strip>>;
74
+ reactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
75
+ }, z.core.$strip>>;
76
+ env: z.ZodObject<{
77
+ url: z.ZodString;
78
+ route: z.ZodOptional<z.ZodString>;
79
+ referrer: z.ZodOptional<z.ZodString>;
80
+ userAgent: z.ZodString;
81
+ browser: z.ZodOptional<z.ZodString>;
82
+ os: z.ZodOptional<z.ZodString>;
83
+ device: z.ZodOptional<z.ZodEnum<{
84
+ desktop: "desktop";
85
+ tablet: "tablet";
86
+ mobile: "mobile";
87
+ }>>;
88
+ viewport: z.ZodObject<{
89
+ width: z.ZodNumber;
90
+ height: z.ZodNumber;
91
+ }, z.core.$strip>;
92
+ screen: z.ZodObject<{
93
+ width: z.ZodNumber;
94
+ height: z.ZodNumber;
95
+ }, z.core.$strip>;
96
+ devicePixelRatio: z.ZodNumber;
97
+ language: z.ZodString;
98
+ timezone: z.ZodString;
99
+ theme: z.ZodOptional<z.ZodEnum<{
100
+ light: "light";
101
+ dark: "dark";
102
+ }>>;
103
+ online: z.ZodOptional<z.ZodBoolean>;
104
+ capturedAt: z.ZodNumber;
105
+ }, z.core.$strip>;
106
+ app: z.ZodOptional<z.ZodObject<{
107
+ release: z.ZodOptional<z.ZodString>;
108
+ gitSha: z.ZodOptional<z.ZodString>;
109
+ environment: z.ZodOptional<z.ZodString>;
110
+ featureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
111
+ user: z.ZodOptional<z.ZodObject<{
112
+ id: z.ZodOptional<z.ZodString>;
113
+ email: z.ZodOptional<z.ZodString>;
114
+ name: z.ZodOptional<z.ZodString>;
115
+ organization: z.ZodOptional<z.ZodString>;
116
+ }, z.core.$strip>>;
117
+ extra: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
118
+ }, z.core.$strip>>;
119
+ errors: z.ZodDefault<z.ZodArray<z.ZodObject<{
120
+ message: z.ZodString;
121
+ stack: z.ZodOptional<z.ZodString>;
122
+ source: z.ZodEnum<{
123
+ "window.onerror": "window.onerror";
124
+ unhandledrejection: "unhandledrejection";
125
+ "console.error": "console.error";
126
+ "react-boundary": "react-boundary";
127
+ }>;
128
+ timestamp: z.ZodNumber;
129
+ }, z.core.$strip>>>;
130
+ consoleTail: z.ZodDefault<z.ZodArray<z.ZodObject<{
131
+ level: z.ZodEnum<{
132
+ log: "log";
133
+ info: "info";
134
+ warn: "warn";
135
+ error: "error";
136
+ debug: "debug";
137
+ }>;
138
+ args: z.ZodArray<z.ZodString>;
139
+ timestamp: z.ZodNumber;
140
+ }, z.core.$strip>>>;
141
+ networkTail: z.ZodDefault<z.ZodArray<z.ZodObject<{
142
+ method: z.ZodString;
143
+ url: z.ZodString;
144
+ status: z.ZodNullable<z.ZodNumber>;
145
+ ok: z.ZodNullable<z.ZodBoolean>;
146
+ durationMs: z.ZodNullable<z.ZodNumber>;
147
+ requestType: z.ZodEnum<{
148
+ fetch: "fetch";
149
+ xhr: "xhr";
150
+ }>;
151
+ startedAt: z.ZodNumber;
152
+ error: z.ZodOptional<z.ZodString>;
153
+ }, z.core.$strip>>>;
154
+ sdk: z.ZodObject<{
155
+ name: z.ZodString;
156
+ version: z.ZodString;
157
+ }, z.core.$strip>;
158
+ }, z.core.$strip>;
159
+ type ReportMetadata = z.infer<typeof ReportMetadataSchema>;
160
+
161
+ export type { AppContext as A, ReportMetadata as R, TargetElement as T, Annotation as a };
@@ -0,0 +1,161 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const AppContextSchema: z.ZodObject<{
4
+ release: z.ZodOptional<z.ZodString>;
5
+ gitSha: z.ZodOptional<z.ZodString>;
6
+ environment: z.ZodOptional<z.ZodString>;
7
+ featureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
8
+ user: z.ZodOptional<z.ZodObject<{
9
+ id: z.ZodOptional<z.ZodString>;
10
+ email: z.ZodOptional<z.ZodString>;
11
+ name: z.ZodOptional<z.ZodString>;
12
+ organization: z.ZodOptional<z.ZodString>;
13
+ }, z.core.$strip>>;
14
+ extra: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
15
+ }, z.core.$strip>;
16
+ type AppContext = z.infer<typeof AppContextSchema>;
17
+ /** DOM path + React fiber path of the element the reporter targeted. */
18
+ declare const TargetElementSchema: z.ZodObject<{
19
+ domPath: z.ZodOptional<z.ZodString>;
20
+ tagName: z.ZodOptional<z.ZodString>;
21
+ text: z.ZodOptional<z.ZodString>;
22
+ boundingRect: z.ZodOptional<z.ZodObject<{
23
+ x: z.ZodNumber;
24
+ y: z.ZodNumber;
25
+ width: z.ZodNumber;
26
+ height: z.ZodNumber;
27
+ }, z.core.$strip>>;
28
+ reactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
29
+ }, z.core.$strip>;
30
+ type TargetElement = z.infer<typeof TargetElementSchema>;
31
+ declare const AnnotationSchema: z.ZodObject<{
32
+ kind: z.ZodEnum<{
33
+ rect: "rect";
34
+ ellipse: "ellipse";
35
+ arrow: "arrow";
36
+ }>;
37
+ x: z.ZodNumber;
38
+ y: z.ZodNumber;
39
+ width: z.ZodNumber;
40
+ height: z.ZodNumber;
41
+ viewport: z.ZodObject<{
42
+ width: z.ZodNumber;
43
+ height: z.ZodNumber;
44
+ }, z.core.$strip>;
45
+ }, z.core.$strip>;
46
+ type Annotation = z.infer<typeof AnnotationSchema>;
47
+ declare const ReportMetadataSchema: z.ZodObject<{
48
+ comment: z.ZodOptional<z.ZodString>;
49
+ annotations: z.ZodDefault<z.ZodArray<z.ZodObject<{
50
+ kind: z.ZodEnum<{
51
+ rect: "rect";
52
+ ellipse: "ellipse";
53
+ arrow: "arrow";
54
+ }>;
55
+ x: z.ZodNumber;
56
+ y: z.ZodNumber;
57
+ width: z.ZodNumber;
58
+ height: z.ZodNumber;
59
+ viewport: z.ZodObject<{
60
+ width: z.ZodNumber;
61
+ height: z.ZodNumber;
62
+ }, z.core.$strip>;
63
+ }, z.core.$strip>>>;
64
+ target: z.ZodOptional<z.ZodObject<{
65
+ domPath: z.ZodOptional<z.ZodString>;
66
+ tagName: z.ZodOptional<z.ZodString>;
67
+ text: z.ZodOptional<z.ZodString>;
68
+ boundingRect: z.ZodOptional<z.ZodObject<{
69
+ x: z.ZodNumber;
70
+ y: z.ZodNumber;
71
+ width: z.ZodNumber;
72
+ height: z.ZodNumber;
73
+ }, z.core.$strip>>;
74
+ reactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
75
+ }, z.core.$strip>>;
76
+ env: z.ZodObject<{
77
+ url: z.ZodString;
78
+ route: z.ZodOptional<z.ZodString>;
79
+ referrer: z.ZodOptional<z.ZodString>;
80
+ userAgent: z.ZodString;
81
+ browser: z.ZodOptional<z.ZodString>;
82
+ os: z.ZodOptional<z.ZodString>;
83
+ device: z.ZodOptional<z.ZodEnum<{
84
+ desktop: "desktop";
85
+ tablet: "tablet";
86
+ mobile: "mobile";
87
+ }>>;
88
+ viewport: z.ZodObject<{
89
+ width: z.ZodNumber;
90
+ height: z.ZodNumber;
91
+ }, z.core.$strip>;
92
+ screen: z.ZodObject<{
93
+ width: z.ZodNumber;
94
+ height: z.ZodNumber;
95
+ }, z.core.$strip>;
96
+ devicePixelRatio: z.ZodNumber;
97
+ language: z.ZodString;
98
+ timezone: z.ZodString;
99
+ theme: z.ZodOptional<z.ZodEnum<{
100
+ light: "light";
101
+ dark: "dark";
102
+ }>>;
103
+ online: z.ZodOptional<z.ZodBoolean>;
104
+ capturedAt: z.ZodNumber;
105
+ }, z.core.$strip>;
106
+ app: z.ZodOptional<z.ZodObject<{
107
+ release: z.ZodOptional<z.ZodString>;
108
+ gitSha: z.ZodOptional<z.ZodString>;
109
+ environment: z.ZodOptional<z.ZodString>;
110
+ featureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
111
+ user: z.ZodOptional<z.ZodObject<{
112
+ id: z.ZodOptional<z.ZodString>;
113
+ email: z.ZodOptional<z.ZodString>;
114
+ name: z.ZodOptional<z.ZodString>;
115
+ organization: z.ZodOptional<z.ZodString>;
116
+ }, z.core.$strip>>;
117
+ extra: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
118
+ }, z.core.$strip>>;
119
+ errors: z.ZodDefault<z.ZodArray<z.ZodObject<{
120
+ message: z.ZodString;
121
+ stack: z.ZodOptional<z.ZodString>;
122
+ source: z.ZodEnum<{
123
+ "window.onerror": "window.onerror";
124
+ unhandledrejection: "unhandledrejection";
125
+ "console.error": "console.error";
126
+ "react-boundary": "react-boundary";
127
+ }>;
128
+ timestamp: z.ZodNumber;
129
+ }, z.core.$strip>>>;
130
+ consoleTail: z.ZodDefault<z.ZodArray<z.ZodObject<{
131
+ level: z.ZodEnum<{
132
+ log: "log";
133
+ info: "info";
134
+ warn: "warn";
135
+ error: "error";
136
+ debug: "debug";
137
+ }>;
138
+ args: z.ZodArray<z.ZodString>;
139
+ timestamp: z.ZodNumber;
140
+ }, z.core.$strip>>>;
141
+ networkTail: z.ZodDefault<z.ZodArray<z.ZodObject<{
142
+ method: z.ZodString;
143
+ url: z.ZodString;
144
+ status: z.ZodNullable<z.ZodNumber>;
145
+ ok: z.ZodNullable<z.ZodBoolean>;
146
+ durationMs: z.ZodNullable<z.ZodNumber>;
147
+ requestType: z.ZodEnum<{
148
+ fetch: "fetch";
149
+ xhr: "xhr";
150
+ }>;
151
+ startedAt: z.ZodNumber;
152
+ error: z.ZodOptional<z.ZodString>;
153
+ }, z.core.$strip>>>;
154
+ sdk: z.ZodObject<{
155
+ name: z.ZodString;
156
+ version: z.ZodString;
157
+ }, z.core.$strip>;
158
+ }, z.core.$strip>;
159
+ type ReportMetadata = z.infer<typeof ReportMetadataSchema>;
160
+
161
+ export type { AppContext as A, ReportMetadata as R, TargetElement as T, Annotation as a };
@@ -0,0 +1,80 @@
1
+ import { A as AppContext, R as ReportMetadata, T as TargetElement, a as Annotation } from './index.d-Bzgtl7-B.cjs';
2
+
3
+ interface LensConfig {
4
+ accessId: string;
5
+ endpoint?: string;
6
+ replay?: {
7
+ windowMs?: number;
8
+ } | false;
9
+ app?: AppContext;
10
+ maxConsoleEntries?: number;
11
+ maxNetworkEntries?: number;
12
+ beforeSend?: (metadata: ReportMetadata) => ReportMetadata | null;
13
+ /** Capture a page screenshot on submit (best-effort). Default `true`. */
14
+ screenshot?: boolean;
15
+ debug?: boolean;
16
+ }
17
+ /**
18
+ * Per-report opt-outs for the captured data. Every flag defaults to `true`;
19
+ * setting one to `false` skips both the corresponding asset upload and its
20
+ * metadata mirror. Config-level `screenshot: false` still wins over
21
+ * `include.screenshot: true`.
22
+ */
23
+ interface SubmitReportIncludes {
24
+ replay?: boolean;
25
+ console?: boolean;
26
+ network?: boolean;
27
+ errors?: boolean;
28
+ screenshot?: boolean;
29
+ dom?: boolean;
30
+ }
31
+ interface SubmitReportInput {
32
+ comment?: string;
33
+ annotations?: Annotation[];
34
+ target?: TargetElement;
35
+ attachments?: {
36
+ blob: Blob;
37
+ contentType: string;
38
+ }[];
39
+ /** Element hidden from the screenshot capture (e.g. the overlay host). */
40
+ excludeFromScreenshot?: HTMLElement;
41
+ /** Selective data opt-outs; each flag defaults to `true`. */
42
+ include?: SubmitReportIncludes;
43
+ }
44
+ declare class LensClient {
45
+ private readonly accessId;
46
+ private readonly endpoint;
47
+ private readonly replayWindowMs;
48
+ private readonly debug;
49
+ private readonly screenshotEnabled;
50
+ private readonly beforeSend?;
51
+ private app;
52
+ private readonly consoleBuffer;
53
+ private readonly networkBuffer;
54
+ private readonly errorBuffer;
55
+ private readonly transport;
56
+ private readonly replay;
57
+ private teardowns;
58
+ private started;
59
+ constructor(config: LensConfig);
60
+ start(): void;
61
+ stop(): void;
62
+ setApp(app: Partial<AppContext>): void;
63
+ captureTarget(el: Element): TargetElement;
64
+ /** Begin an explicit "record steps" session (no-op if replay is disabled). */
65
+ startRecording(): void;
66
+ /** Stop the active recording; returns its duration, or `null` if none / disabled. */
67
+ stopRecording(): {
68
+ durationMs: number;
69
+ } | null;
70
+ /** Discard a retained manual recording and fall back to the rolling window. */
71
+ discardRecording(): void;
72
+ /** True while an explicit recording is in progress. */
73
+ isRecording(): boolean;
74
+ submitReport(input: SubmitReportInput): Promise<{
75
+ reportId: string;
76
+ }>;
77
+ private warn;
78
+ }
79
+
80
+ export { type LensConfig as L, LensClient as a };