@vforsh/argus-watcher 0.1.8 → 0.1.10

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 (249) hide show
  1. package/README.md +5 -1
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/buffer/NetBuffer.d.ts +35 -11
  4. package/dist/buffer/NetBuffer.d.ts.map +1 -1
  5. package/dist/buffer/NetBuffer.js +64 -55
  6. package/dist/buffer/NetBuffer.js.map +1 -1
  7. package/dist/cdp/accessibility.d.ts +12 -1
  8. package/dist/cdp/accessibility.d.ts.map +1 -1
  9. package/dist/cdp/accessibility.js +88 -45
  10. package/dist/cdp/accessibility.js.map +1 -1
  11. package/dist/cdp/auth.d.ts +31 -1
  12. package/dist/cdp/auth.d.ts.map +1 -1
  13. package/dist/cdp/auth.js +299 -10
  14. package/dist/cdp/auth.js.map +1 -1
  15. package/dist/cdp/authState.d.ts +9 -0
  16. package/dist/cdp/authState.d.ts.map +1 -0
  17. package/dist/cdp/authState.js +44 -0
  18. package/dist/cdp/authState.js.map +1 -0
  19. package/dist/cdp/browserCookies.d.ts +8 -0
  20. package/dist/cdp/browserCookies.d.ts.map +1 -0
  21. package/dist/cdp/browserCookies.js +160 -0
  22. package/dist/cdp/browserCookies.js.map +1 -0
  23. package/dist/cdp/dom/fill.d.ts +2 -1
  24. package/dist/cdp/dom/fill.d.ts.map +1 -1
  25. package/dist/cdp/dom/fill.js +7 -7
  26. package/dist/cdp/dom/fill.js.map +1 -1
  27. package/dist/cdp/dom/info.d.ts +4 -2
  28. package/dist/cdp/dom/info.d.ts.map +1 -1
  29. package/dist/cdp/dom/info.js +20 -11
  30. package/dist/cdp/dom/info.js.map +1 -1
  31. package/dist/cdp/dom/selector.d.ts +45 -0
  32. package/dist/cdp/dom/selector.d.ts.map +1 -1
  33. package/dist/cdp/dom/selector.js +130 -25
  34. package/dist/cdp/dom/selector.js.map +1 -1
  35. package/dist/cdp/dom/types.d.ts +1 -0
  36. package/dist/cdp/dom/types.d.ts.map +1 -1
  37. package/dist/cdp/editor.d.ts.map +1 -1
  38. package/dist/cdp/editor.js +55 -3
  39. package/dist/cdp/editor.js.map +1 -1
  40. package/dist/cdp/elementRefs.d.ts +15 -0
  41. package/dist/cdp/elementRefs.d.ts.map +1 -0
  42. package/dist/cdp/elementRefs.js +30 -0
  43. package/dist/cdp/elementRefs.js.map +1 -0
  44. package/dist/cdp/locate.d.ts +7 -0
  45. package/dist/cdp/locate.d.ts.map +1 -0
  46. package/dist/cdp/locate.js +68 -0
  47. package/dist/cdp/locate.js.map +1 -0
  48. package/dist/cdp/mouse.d.ts +8 -7
  49. package/dist/cdp/mouse.d.ts.map +1 -1
  50. package/dist/cdp/mouse.js +42 -49
  51. package/dist/cdp/mouse.js.map +1 -1
  52. package/dist/cdp/networkBody.d.ts +19 -0
  53. package/dist/cdp/networkBody.d.ts.map +1 -0
  54. package/dist/cdp/networkBody.js +70 -0
  55. package/dist/cdp/networkBody.js.map +1 -0
  56. package/dist/cdp/networkCapture.d.ts +4 -0
  57. package/dist/cdp/networkCapture.d.ts.map +1 -1
  58. package/dist/cdp/networkCapture.js +307 -35
  59. package/dist/cdp/networkCapture.js.map +1 -1
  60. package/dist/cdp/pageIndicator.d.ts +1 -1
  61. package/dist/cdp/pageIndicator.d.ts.map +1 -1
  62. package/dist/cdp/redaction.d.ts +4 -0
  63. package/dist/cdp/redaction.d.ts.map +1 -1
  64. package/dist/cdp/redaction.js +37 -1
  65. package/dist/cdp/redaction.js.map +1 -1
  66. package/dist/cdp/screenshot.d.ts +1 -0
  67. package/dist/cdp/screenshot.d.ts.map +1 -1
  68. package/dist/cdp/screenshot.js +66 -15
  69. package/dist/cdp/screenshot.js.map +1 -1
  70. package/dist/cdp/storage.d.ts +8 -0
  71. package/dist/cdp/storage.d.ts.map +1 -0
  72. package/dist/cdp/storage.js +70 -0
  73. package/dist/cdp/storage.js.map +1 -0
  74. package/dist/cdp/watcher.d.ts +4 -21
  75. package/dist/cdp/watcher.d.ts.map +1 -1
  76. package/dist/cdp/watcher.js +7 -279
  77. package/dist/cdp/watcher.js.map +1 -1
  78. package/dist/cdp/watcherEvents.d.ts +18 -0
  79. package/dist/cdp/watcherEvents.d.ts.map +1 -0
  80. package/dist/cdp/watcherEvents.js +169 -0
  81. package/dist/cdp/watcherEvents.js.map +1 -0
  82. package/dist/cdp/watcherTargets.d.ts +18 -0
  83. package/dist/cdp/watcherTargets.d.ts.map +1 -0
  84. package/dist/cdp/watcherTargets.js +95 -0
  85. package/dist/cdp/watcherTargets.js.map +1 -0
  86. package/dist/dialogs/DialogTracker.d.ts +13 -0
  87. package/dist/dialogs/DialogTracker.d.ts.map +1 -0
  88. package/dist/dialogs/DialogTracker.js +22 -0
  89. package/dist/dialogs/DialogTracker.js.map +1 -0
  90. package/dist/events.d.ts +7 -2
  91. package/dist/events.d.ts.map +1 -1
  92. package/dist/http/router.d.ts.map +1 -1
  93. package/dist/http/router.js +3 -77
  94. package/dist/http/router.js.map +1 -1
  95. package/dist/http/routes/authCookies.d.ts +11 -0
  96. package/dist/http/routes/authCookies.d.ts.map +1 -0
  97. package/dist/http/routes/authCookies.js +142 -0
  98. package/dist/http/routes/authCookies.js.map +1 -0
  99. package/dist/http/routes/domSelectorRoute.d.ts +8 -0
  100. package/dist/http/routes/domSelectorRoute.d.ts.map +1 -1
  101. package/dist/http/routes/domSelectorRoute.js +28 -3
  102. package/dist/http/routes/domSelectorRoute.js.map +1 -1
  103. package/dist/http/routes/getAuthState.d.ts +3 -0
  104. package/dist/http/routes/getAuthState.d.ts.map +1 -0
  105. package/dist/http/routes/getAuthState.js +24 -0
  106. package/dist/http/routes/getAuthState.js.map +1 -0
  107. package/dist/http/routes/getDialog.d.ts +3 -0
  108. package/dist/http/routes/getDialog.d.ts.map +1 -0
  109. package/dist/http/routes/getDialog.js +11 -0
  110. package/dist/http/routes/getDialog.js.map +1 -0
  111. package/dist/http/routes/getNet.d.ts.map +1 -1
  112. package/dist/http/routes/getNet.js +14 -8
  113. package/dist/http/routes/getNet.js.map +1 -1
  114. package/dist/http/routes/getNetRequest.d.ts +3 -0
  115. package/dist/http/routes/getNetRequest.d.ts.map +1 -0
  116. package/dist/http/routes/getNetRequest.js +23 -0
  117. package/dist/http/routes/getNetRequest.js.map +1 -0
  118. package/dist/http/routes/getNetRequestBody.d.ts +3 -0
  119. package/dist/http/routes/getNetRequestBody.d.ts.map +1 -0
  120. package/dist/http/routes/getNetRequestBody.js +80 -0
  121. package/dist/http/routes/getNetRequestBody.js.map +1 -0
  122. package/dist/http/routes/getNetRequests.d.ts +3 -0
  123. package/dist/http/routes/getNetRequests.d.ts.map +1 -0
  124. package/dist/http/routes/getNetRequests.js +23 -0
  125. package/dist/http/routes/getNetRequests.js.map +1 -0
  126. package/dist/http/routes/getNetTail.d.ts.map +1 -1
  127. package/dist/http/routes/getNetTail.js +44 -9
  128. package/dist/http/routes/getNetTail.js.map +1 -1
  129. package/dist/http/routes/getStatus.js +1 -0
  130. package/dist/http/routes/getStatus.js.map +1 -1
  131. package/dist/http/routes/index.d.ts +9 -0
  132. package/dist/http/routes/index.d.ts.map +1 -0
  133. package/dist/http/routes/index.js +105 -0
  134. package/dist/http/routes/index.js.map +1 -0
  135. package/dist/http/routes/netFilters.d.ts +29 -0
  136. package/dist/http/routes/netFilters.d.ts.map +1 -0
  137. package/dist/http/routes/netFilters.js +160 -0
  138. package/dist/http/routes/netFilters.js.map +1 -0
  139. package/dist/http/routes/netRequestLookup.d.ts +14 -0
  140. package/dist/http/routes/netRequestLookup.d.ts.map +1 -0
  141. package/dist/http/routes/netRequestLookup.js +39 -0
  142. package/dist/http/routes/netRequestLookup.js.map +1 -0
  143. package/dist/http/routes/postAuthStateLoad.d.ts +3 -0
  144. package/dist/http/routes/postAuthStateLoad.d.ts.map +1 -0
  145. package/dist/http/routes/postAuthStateLoad.js +37 -0
  146. package/dist/http/routes/postAuthStateLoad.js.map +1 -0
  147. package/dist/http/routes/postDialog.d.ts +3 -0
  148. package/dist/http/routes/postDialog.d.ts.map +1 -0
  149. package/dist/http/routes/postDialog.js +39 -0
  150. package/dist/http/routes/postDialog.js.map +1 -0
  151. package/dist/http/routes/postDomClick.d.ts.map +1 -1
  152. package/dist/http/routes/postDomClick.js +39 -27
  153. package/dist/http/routes/postDomClick.js.map +1 -1
  154. package/dist/http/routes/postDomFill.d.ts.map +1 -1
  155. package/dist/http/routes/postDomFill.js +23 -27
  156. package/dist/http/routes/postDomFill.js.map +1 -1
  157. package/dist/http/routes/postDomFocus.d.ts.map +1 -1
  158. package/dist/http/routes/postDomFocus.js +22 -9
  159. package/dist/http/routes/postDomFocus.js.map +1 -1
  160. package/dist/http/routes/postDomHover.d.ts.map +1 -1
  161. package/dist/http/routes/postDomHover.js +22 -9
  162. package/dist/http/routes/postDomHover.js.map +1 -1
  163. package/dist/http/routes/postDomInfo.d.ts.map +1 -1
  164. package/dist/http/routes/postDomInfo.js +7 -3
  165. package/dist/http/routes/postDomInfo.js.map +1 -1
  166. package/dist/http/routes/postDomScroll.d.ts.map +1 -1
  167. package/dist/http/routes/postDomScroll.js +3 -8
  168. package/dist/http/routes/postDomScroll.js.map +1 -1
  169. package/dist/http/routes/postDomScrollTo.d.ts.map +1 -1
  170. package/dist/http/routes/postDomScrollTo.js +3 -8
  171. package/dist/http/routes/postDomScrollTo.js.map +1 -1
  172. package/dist/http/routes/postDomSetFile.d.ts.map +1 -1
  173. package/dist/http/routes/postDomSetFile.js +9 -23
  174. package/dist/http/routes/postDomSetFile.js.map +1 -1
  175. package/dist/http/routes/postLocate.d.ts +5 -0
  176. package/dist/http/routes/postLocate.d.ts.map +1 -0
  177. package/dist/http/routes/postLocate.js +67 -0
  178. package/dist/http/routes/postLocate.js.map +1 -0
  179. package/dist/http/routes/postNetClear.d.ts +3 -0
  180. package/dist/http/routes/postNetClear.d.ts.map +1 -0
  181. package/dist/http/routes/postNetClear.js +14 -0
  182. package/dist/http/routes/postNetClear.js.map +1 -0
  183. package/dist/http/routes/postSnapshot.d.ts.map +1 -1
  184. package/dist/http/routes/postSnapshot.js +1 -1
  185. package/dist/http/routes/postSnapshot.js.map +1 -1
  186. package/dist/http/routes/postStorageLocal.d.ts +1 -2
  187. package/dist/http/routes/postStorageLocal.d.ts.map +1 -1
  188. package/dist/http/routes/postStorageLocal.js +2 -30
  189. package/dist/http/routes/postStorageLocal.js.map +1 -1
  190. package/dist/http/routes/postStorageSession.d.ts +2 -0
  191. package/dist/http/routes/postStorageSession.d.ts.map +1 -0
  192. package/dist/http/routes/postStorageSession.js +3 -0
  193. package/dist/http/routes/postStorageSession.js.map +1 -0
  194. package/dist/http/routes/storage.d.ts +5 -0
  195. package/dist/http/routes/storage.d.ts.map +1 -0
  196. package/dist/http/routes/storage.js +43 -0
  197. package/dist/http/routes/storage.js.map +1 -0
  198. package/dist/http/server.d.ts +27 -3
  199. package/dist/http/server.d.ts.map +1 -1
  200. package/dist/http/server.js.map +1 -1
  201. package/dist/native-messaging/session-manager.d.ts +14 -1
  202. package/dist/native-messaging/session-manager.d.ts.map +1 -1
  203. package/dist/native-messaging/session-manager.js +56 -23
  204. package/dist/native-messaging/session-manager.js.map +1 -1
  205. package/dist/native-messaging/types.d.ts +28 -2
  206. package/dist/native-messaging/types.d.ts.map +1 -1
  207. package/dist/net/filtering.d.ts +32 -0
  208. package/dist/net/filtering.d.ts.map +1 -0
  209. package/dist/net/filtering.js +144 -0
  210. package/dist/net/filtering.js.map +1 -0
  211. package/dist/runtime/watcherInject.d.ts +15 -0
  212. package/dist/runtime/watcherInject.d.ts.map +1 -0
  213. package/dist/runtime/watcherInject.js +21 -0
  214. package/dist/runtime/watcherInject.js.map +1 -0
  215. package/dist/runtime/watcherServices.d.ts +32 -0
  216. package/dist/runtime/watcherServices.d.ts.map +1 -0
  217. package/dist/runtime/watcherServices.js +68 -0
  218. package/dist/runtime/watcherServices.js.map +1 -0
  219. package/dist/runtime/watcherSetup.d.ts +35 -0
  220. package/dist/runtime/watcherSetup.d.ts.map +1 -0
  221. package/dist/runtime/watcherSetup.js +96 -0
  222. package/dist/runtime/watcherSetup.js.map +1 -0
  223. package/dist/sources/cdp-source.d.ts.map +1 -1
  224. package/dist/sources/cdp-source.js +13 -0
  225. package/dist/sources/cdp-source.js.map +1 -1
  226. package/dist/sources/extension-frame-runtime.d.ts +11 -0
  227. package/dist/sources/extension-frame-runtime.d.ts.map +1 -0
  228. package/dist/sources/extension-frame-runtime.js +150 -0
  229. package/dist/sources/extension-frame-runtime.js.map +1 -0
  230. package/dist/sources/extension-frame-state.d.ts +3 -2
  231. package/dist/sources/extension-frame-state.d.ts.map +1 -1
  232. package/dist/sources/extension-frame-state.js +29 -8
  233. package/dist/sources/extension-frame-state.js.map +1 -1
  234. package/dist/sources/extension-session-events.d.ts.map +1 -1
  235. package/dist/sources/extension-session-events.js +4 -2
  236. package/dist/sources/extension-session-events.js.map +1 -1
  237. package/dist/sources/extension-source.d.ts.map +1 -1
  238. package/dist/sources/extension-source.js +134 -140
  239. package/dist/sources/extension-source.js.map +1 -1
  240. package/dist/sources/types.d.ts +15 -1
  241. package/dist/sources/types.d.ts.map +1 -1
  242. package/dist/startWatcherRuntime.d.ts.map +1 -1
  243. package/dist/startWatcherRuntime.js +78 -177
  244. package/dist/startWatcherRuntime.js.map +1 -1
  245. package/package.json +1 -1
  246. package/dist/cdp/storageLocal.d.ts +0 -8
  247. package/dist/cdp/storageLocal.d.ts.map +0 -1
  248. package/dist/cdp/storageLocal.js +0 -70
  249. package/dist/cdp/storageLocal.js.map +0 -1
@@ -0,0 +1,142 @@
1
+ import { normalizeCookieDomainFilter, normalizeCookieSameSite, } from '@vforsh/argus-core';
2
+ import { emitRequest } from './types.js';
3
+ import { clearAuthCookies, deleteAuthCookie, inspectAuthCookie, setAuthCookie } from '../../cdp/auth.js';
4
+ import { readJsonBody, respondError, respondInvalidBody, respondJson } from '../httpUtils.js';
5
+ const CLEAR_SCOPES = new Set(['origin', 'site', 'domain', 'browserContext']);
6
+ export const validateCookieGetPayload = (payload) => {
7
+ const identityError = validateCookieIdentityPayload(payload);
8
+ if (identityError) {
9
+ return identityError;
10
+ }
11
+ if (payload.includeValue != null && typeof payload.includeValue !== 'boolean') {
12
+ return 'includeValue must be a boolean';
13
+ }
14
+ return null;
15
+ };
16
+ export const validateCookieDeletePayload = (payload) => validateCookieIdentityPayload(payload);
17
+ export const validateCookieSetPayload = (payload) => {
18
+ if (!payload.cookie || typeof payload.cookie !== 'object') {
19
+ return 'cookie is required';
20
+ }
21
+ const identityError = validateCookieIdentityPayload(payload.cookie);
22
+ if (identityError) {
23
+ return identityError;
24
+ }
25
+ if (typeof payload.cookie.value !== 'string') {
26
+ return 'cookie.value must be a string';
27
+ }
28
+ if (typeof payload.cookie.secure !== 'boolean') {
29
+ return 'cookie.secure must be a boolean';
30
+ }
31
+ if (typeof payload.cookie.httpOnly !== 'boolean') {
32
+ return 'cookie.httpOnly must be a boolean';
33
+ }
34
+ if (typeof payload.cookie.session !== 'boolean') {
35
+ return 'cookie.session must be a boolean';
36
+ }
37
+ if (payload.cookie.expires !== null && (typeof payload.cookie.expires !== 'number' || !Number.isFinite(payload.cookie.expires))) {
38
+ return 'cookie.expires must be a finite number or null';
39
+ }
40
+ if (payload.cookie.sameSite !== null && payload.cookie.sameSite !== undefined && typeof payload.cookie.sameSite !== 'string') {
41
+ return 'cookie.sameSite must be a string or null';
42
+ }
43
+ if (payload.cookie.sameSite && !normalizeCookieSameSite(payload.cookie.sameSite)) {
44
+ return 'cookie.sameSite must be one of: Strict, Lax, None';
45
+ }
46
+ if (payload.cookie.session && payload.cookie.expires != null) {
47
+ return 'cookie.expires must be null when cookie.session is true';
48
+ }
49
+ if (!payload.cookie.session && payload.cookie.expires == null) {
50
+ return 'cookie.expires is required when cookie.session is false';
51
+ }
52
+ if (normalizeCookieSameSite(payload.cookie.sameSite) === 'None' && !payload.cookie.secure) {
53
+ return 'cookie.secure must be true when cookie.sameSite is None';
54
+ }
55
+ return null;
56
+ };
57
+ export const validateCookieClearPayload = (payload) => {
58
+ if (!CLEAR_SCOPES.has(payload.scope)) {
59
+ return 'scope must be one of: origin, site, domain, browserContext';
60
+ }
61
+ if (payload.scope === 'domain' && !normalizeCookieDomainFilter(payload.domain)) {
62
+ return 'domain is required when scope is "domain"';
63
+ }
64
+ if (payload.scope !== 'domain' && payload.domain != null && typeof payload.domain !== 'string') {
65
+ return 'domain must be a string when provided';
66
+ }
67
+ if (payload.sessionOnly != null && typeof payload.sessionOnly !== 'boolean') {
68
+ return 'sessionOnly must be a boolean';
69
+ }
70
+ if (payload.authOnly != null && typeof payload.authOnly !== 'boolean') {
71
+ return 'authOnly must be a boolean';
72
+ }
73
+ return null;
74
+ };
75
+ const createAuthCookieRoute = (options) => {
76
+ return async (req, res, _url, ctx) => {
77
+ const payload = await readJsonBody(req, res);
78
+ if (!payload) {
79
+ return;
80
+ }
81
+ const validationError = options.validate(payload);
82
+ if (validationError) {
83
+ respondInvalidBody(res, validationError);
84
+ return;
85
+ }
86
+ emitRequest(ctx, res, options.endpoint);
87
+ try {
88
+ respondJson(res, await options.run(payload, ctx));
89
+ }
90
+ catch (error) {
91
+ respondError(res, error);
92
+ }
93
+ };
94
+ };
95
+ const validateCookieIdentityPayload = (payload) => {
96
+ if (typeof payload.name !== 'string' || payload.name.trim() === '') {
97
+ return 'name is required';
98
+ }
99
+ if (typeof payload.domain !== 'string' || payload.domain.trim() === '') {
100
+ return 'domain is required';
101
+ }
102
+ if (typeof payload.path !== 'string' || payload.path.trim() === '') {
103
+ return 'path is required';
104
+ }
105
+ if (!payload.path.startsWith('/')) {
106
+ return 'path must start with "/"';
107
+ }
108
+ return null;
109
+ };
110
+ export const handleCookieGet = createAuthCookieRoute({
111
+ endpoint: 'auth/cookies/get',
112
+ validate: validateCookieGetPayload,
113
+ run: (payload, ctx) => inspectAuthCookie(ctx.cdpSession, {
114
+ ...payload,
115
+ readBrowserCookies: ctx.readBrowserCookies,
116
+ }),
117
+ });
118
+ export const handleCookieSet = createAuthCookieRoute({
119
+ endpoint: 'auth/cookies/set',
120
+ validate: validateCookieSetPayload,
121
+ run: (payload, ctx) => setAuthCookie(ctx.cdpSession, {
122
+ ...payload,
123
+ readBrowserCookies: ctx.readBrowserCookies,
124
+ }),
125
+ });
126
+ export const handleCookieDelete = createAuthCookieRoute({
127
+ endpoint: 'auth/cookies/delete',
128
+ validate: validateCookieDeletePayload,
129
+ run: (payload, ctx) => deleteAuthCookie(ctx.cdpSession, {
130
+ ...payload,
131
+ readBrowserCookies: ctx.readBrowserCookies,
132
+ }),
133
+ });
134
+ export const handleCookieClear = createAuthCookieRoute({
135
+ endpoint: 'auth/cookies/clear',
136
+ validate: validateCookieClearPayload,
137
+ run: (payload, ctx) => clearAuthCookies(ctx.cdpSession, {
138
+ ...payload,
139
+ readBrowserCookies: ctx.readBrowserCookies,
140
+ }),
141
+ });
142
+ //# sourceMappingURL=authCookies.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authCookies.js","sourceRoot":"","sources":["../../../src/http/routes/authCookies.ts"],"names":[],"mappings":"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"}
@@ -1,16 +1,24 @@
1
1
  import type http from 'node:http';
2
2
  type SelectorPayload = {
3
3
  selector?: unknown;
4
+ ref?: unknown;
4
5
  all?: unknown;
5
6
  };
6
7
  /**
7
8
  * Shared parser for DOM routes that require a selector and optional `all` toggle.
8
9
  * Keeps route modules focused on the actual DOM operation.
9
10
  */
11
+ export declare const readDomTargetPayload: <T extends SelectorPayload>(req: http.IncomingMessage, res: http.ServerResponse) => Promise<{
12
+ payload: T;
13
+ all: boolean;
14
+ } | null>;
15
+ /** Backwards-compatible alias used by selector-only routes while they migrate to ref support. */
10
16
  export declare const readDomSelectorPayload: <T extends SelectorPayload>(req: http.IncomingMessage, res: http.ServerResponse) => Promise<{
11
17
  payload: T;
12
18
  all: boolean;
13
19
  } | null>;
14
20
  export declare const respondMultipleMatches: (res: http.ServerResponse, matches: number, action: string) => void;
21
+ export declare const respondMissingElementRef: (res: http.ServerResponse, ref: string) => void;
22
+ export declare const respondTargetResolutionError: (res: http.ServerResponse, error: unknown) => boolean;
15
23
  export {};
16
24
  //# sourceMappingURL=domSelectorRoute.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"domSelectorRoute.d.ts","sourceRoot":"","sources":["../../../src/http/routes/domSelectorRoute.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAA;AAGjC,KAAK,eAAe,GAAG;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,GAAG,CAAC,EAAE,OAAO,CAAA;CACb,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,sBAAsB,GAAU,CAAC,SAAS,eAAe,EACrE,KAAK,IAAI,CAAC,eAAe,EACzB,KAAK,IAAI,CAAC,cAAc,KACtB,OAAO,CAAC;IAAE,OAAO,EAAE,CAAC,CAAC;IAAC,GAAG,EAAE,OAAO,CAAA;CAAE,GAAG,IAAI,CAkB7C,CAAA;AAED,eAAO,MAAM,sBAAsB,GAAI,KAAK,IAAI,CAAC,cAAc,EAAE,SAAS,MAAM,EAAE,QAAQ,MAAM,KAAG,IAYlG,CAAA"}
1
+ {"version":3,"file":"domSelectorRoute.d.ts","sourceRoot":"","sources":["../../../src/http/routes/domSelectorRoute.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAA;AAGjC,KAAK,eAAe,GAAG;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,GAAG,CAAC,EAAE,OAAO,CAAA;CACb,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,oBAAoB,GAAU,CAAC,SAAS,eAAe,EACnE,KAAK,IAAI,CAAC,eAAe,EACzB,KAAK,IAAI,CAAC,cAAc,KACtB,OAAO,CAAC;IAAE,OAAO,EAAE,CAAC,CAAC;IAAC,GAAG,EAAE,OAAO,CAAA;CAAE,GAAG,IAAI,CAoB7C,CAAA;AAED,iGAAiG;AACjG,eAAO,MAAM,sBAAsB,GA1BQ,CAAC,SAAS,eAAe,OAC9D,IAAI,CAAC,eAAe,OACpB,IAAI,CAAC,cAAc,KACtB,OAAO,CAAC;IAAE,OAAO,EAAE,CAAC,CAAC;IAAC,GAAG,EAAE,OAAO,CAAA;CAAE,GAAG,IAAI,CAuBY,CAAA;AAE1D,eAAO,MAAM,sBAAsB,GAAI,KAAK,IAAI,CAAC,cAAc,EAAE,SAAS,MAAM,EAAE,QAAQ,MAAM,KAAG,IAYlG,CAAA;AAED,eAAO,MAAM,wBAAwB,GAAI,KAAK,IAAI,CAAC,cAAc,EAAE,KAAK,MAAM,KAAG,IAYhF,CAAA;AAED,eAAO,MAAM,4BAA4B,GAAI,KAAK,IAAI,CAAC,cAAc,EAAE,OAAO,OAAO,KAAG,OAavF,CAAA"}
@@ -3,13 +3,15 @@ import { respondInvalidBody, respondJson, readJsonBody } from '../httpUtils.js';
3
3
  * Shared parser for DOM routes that require a selector and optional `all` toggle.
4
4
  * Keeps route modules focused on the actual DOM operation.
5
5
  */
6
- export const readDomSelectorPayload = async (req, res) => {
6
+ export const readDomTargetPayload = async (req, res) => {
7
7
  const payload = await readJsonBody(req, res);
8
8
  if (!payload) {
9
9
  return null;
10
10
  }
11
- if (!payload.selector || typeof payload.selector !== 'string') {
12
- respondInvalidBody(res, 'selector is required');
11
+ const hasSelector = typeof payload.selector === 'string' && payload.selector.trim() !== '';
12
+ const hasRef = typeof payload.ref === 'string' && payload.ref.trim() !== '';
13
+ if (hasSelector === hasRef) {
14
+ respondInvalidBody(res, 'Exactly one of selector or ref is required');
13
15
  return null;
14
16
  }
15
17
  const all = payload.all ?? false;
@@ -19,6 +21,8 @@ export const readDomSelectorPayload = async (req, res) => {
19
21
  }
20
22
  return { payload, all };
21
23
  };
24
+ /** Backwards-compatible alias used by selector-only routes while they migrate to ref support. */
25
+ export const readDomSelectorPayload = readDomTargetPayload;
22
26
  export const respondMultipleMatches = (res, matches, action) => {
23
27
  respondJson(res, {
24
28
  ok: false,
@@ -28,4 +32,25 @@ export const respondMultipleMatches = (res, matches, action) => {
28
32
  },
29
33
  }, 400);
30
34
  };
35
+ export const respondMissingElementRef = (res, ref) => {
36
+ respondJson(res, {
37
+ ok: false,
38
+ error: {
39
+ message: `Unknown or stale element ref: ${ref}. Run argus snapshot or locate again.`,
40
+ code: 'invalid_ref',
41
+ },
42
+ }, 400);
43
+ };
44
+ export const respondTargetResolutionError = (res, error) => {
45
+ if (!error || typeof error !== 'object') {
46
+ return false;
47
+ }
48
+ const code = 'code' in error ? error.code : undefined;
49
+ if (code !== 'invalid_ref') {
50
+ return false;
51
+ }
52
+ const message = error instanceof Error && error.message ? error.message : 'Unknown or stale element ref. Run argus snapshot or locate again.';
53
+ respondJson(res, { ok: false, error: { message, code: 'invalid_ref' } }, 400);
54
+ return true;
55
+ };
31
56
  //# sourceMappingURL=domSelectorRoute.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"domSelectorRoute.js","sourceRoot":"","sources":["../../../src/http/routes/domSelectorRoute.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAO/E;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,KAAK,EAC1C,GAAyB,EACzB,GAAwB,EACuB,EAAE;IACjD,MAAM,OAAO,GAAG,MAAM,YAAY,CAAI,GAAG,EAAE,GAAG,CAAC,CAAA;IAC/C,IAAI,CAAC,OAAO,EAAE,CAAC;QACd,OAAO,IAAI,CAAA;IACZ,CAAC;IAED,IAAI,CAAC,OAAO,CAAC,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE,CAAC;QAC/D,kBAAkB,CAAC,GAAG,EAAE,sBAAsB,CAAC,CAAA;QAC/C,OAAO,IAAI,CAAA;IACZ,CAAC;IAED,MAAM,GAAG,GAAG,OAAO,CAAC,GAAG,IAAI,KAAK,CAAA;IAChC,IAAI,OAAO,GAAG,KAAK,SAAS,EAAE,CAAC;QAC9B,kBAAkB,CAAC,GAAG,EAAE,uBAAuB,CAAC,CAAA;QAChD,OAAO,IAAI,CAAA;IACZ,CAAC;IAED,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,CAAA;AACxB,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,GAAwB,EAAE,OAAe,EAAE,MAAc,EAAQ,EAAE;IACzG,WAAW,CACV,GAAG,EACH;QACC,EAAE,EAAE,KAAK;QACT,KAAK,EAAE;YACN,OAAO,EAAE,oBAAoB,OAAO,+BAA+B,MAAM,cAAc;YACvF,IAAI,EAAE,kBAAkB;SACxB;KACD,EACD,GAAG,CACH,CAAA;AACF,CAAC,CAAA"}
1
+ {"version":3,"file":"domSelectorRoute.js","sourceRoot":"","sources":["../../../src/http/routes/domSelectorRoute.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAQ/E;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,KAAK,EACxC,GAAyB,EACzB,GAAwB,EACuB,EAAE;IACjD,MAAM,OAAO,GAAG,MAAM,YAAY,CAAI,GAAG,EAAE,GAAG,CAAC,CAAA;IAC/C,IAAI,CAAC,OAAO,EAAE,CAAC;QACd,OAAO,IAAI,CAAA;IACZ,CAAC;IAED,MAAM,WAAW,GAAG,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,CAAA;IAC1F,MAAM,MAAM,GAAG,OAAO,OAAO,CAAC,GAAG,KAAK,QAAQ,IAAI,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,CAAA;IAC3E,IAAI,WAAW,KAAK,MAAM,EAAE,CAAC;QAC5B,kBAAkB,CAAC,GAAG,EAAE,4CAA4C,CAAC,CAAA;QACrE,OAAO,IAAI,CAAA;IACZ,CAAC;IAED,MAAM,GAAG,GAAG,OAAO,CAAC,GAAG,IAAI,KAAK,CAAA;IAChC,IAAI,OAAO,GAAG,KAAK,SAAS,EAAE,CAAC;QAC9B,kBAAkB,CAAC,GAAG,EAAE,uBAAuB,CAAC,CAAA;QAChD,OAAO,IAAI,CAAA;IACZ,CAAC;IAED,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,CAAA;AACxB,CAAC,CAAA;AAED,iGAAiG;AACjG,MAAM,CAAC,MAAM,sBAAsB,GAAG,oBAAoB,CAAA;AAE1D,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,GAAwB,EAAE,OAAe,EAAE,MAAc,EAAQ,EAAE;IACzG,WAAW,CACV,GAAG,EACH;QACC,EAAE,EAAE,KAAK;QACT,KAAK,EAAE;YACN,OAAO,EAAE,oBAAoB,OAAO,+BAA+B,MAAM,cAAc;YACvF,IAAI,EAAE,kBAAkB;SACxB;KACD,EACD,GAAG,CACH,CAAA;AACF,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,GAAwB,EAAE,GAAW,EAAQ,EAAE;IACvF,WAAW,CACV,GAAG,EACH;QACC,EAAE,EAAE,KAAK;QACT,KAAK,EAAE;YACN,OAAO,EAAE,iCAAiC,GAAG,uCAAuC;YACpF,IAAI,EAAE,aAAa;SACnB;KACD,EACD,GAAG,CACH,CAAA;AACF,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,GAAwB,EAAE,KAAc,EAAW,EAAE;IACjG,IAAI,CAAC,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QACzC,OAAO,KAAK,CAAA;IACb,CAAC;IAED,MAAM,IAAI,GAAG,MAAM,IAAI,KAAK,CAAC,CAAC,CAAE,KAA4B,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAA;IAC7E,IAAI,IAAI,KAAK,aAAa,EAAE,CAAC;QAC5B,OAAO,KAAK,CAAA;IACb,CAAC;IAED,MAAM,OAAO,GAAG,KAAK,YAAY,KAAK,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,mEAAmE,CAAA;IAC7I,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IAC7E,OAAO,IAAI,CAAA;AACZ,CAAC,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { RouteHandler } from './types.js';
2
+ export declare const handle: RouteHandler;
3
+ //# sourceMappingURL=getAuthState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAuthState.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getAuthState.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAK9C,eAAO,MAAM,MAAM,EAAE,YAoBpB,CAAA"}
@@ -0,0 +1,24 @@
1
+ import { emitRequest } from './types.js';
2
+ import { inspectAuthState } from '../../cdp/auth.js';
3
+ import { normalizeQueryValue, respondError, respondJson } from '../httpUtils.js';
4
+ export const handle = async (_req, res, url, ctx) => {
5
+ const domain = normalizeQueryValue(url.searchParams.get('domain'));
6
+ emitRequest(ctx, res, 'auth/state', { domain });
7
+ try {
8
+ const watcher = ctx.getWatcher();
9
+ const response = await inspectAuthState(ctx.cdpSession, {
10
+ domain: domain ?? undefined,
11
+ readBrowserCookies: ctx.readBrowserCookies,
12
+ metadata: {
13
+ exportedAt: new Date().toISOString(),
14
+ watcherId: watcher.id,
15
+ watcherSource: watcher.source ?? null,
16
+ },
17
+ });
18
+ respondJson(res, response);
19
+ }
20
+ catch (error) {
21
+ respondError(res, error);
22
+ }
23
+ };
24
+ //# sourceMappingURL=getAuthState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAuthState.js","sourceRoot":"","sources":["../../../src/http/routes/getAuthState.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACpD,OAAO,EAAE,mBAAmB,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAEhF,MAAM,CAAC,MAAM,MAAM,GAAiB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE;IACjE,MAAM,MAAM,GAAG,mBAAmB,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAA;IAElE,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,YAAY,EAAE,EAAE,MAAM,EAAE,CAAC,CAAA;IAE/C,IAAI,CAAC;QACJ,MAAM,OAAO,GAAG,GAAG,CAAC,UAAU,EAAE,CAAA;QAChC,MAAM,QAAQ,GAAsB,MAAM,gBAAgB,CAAC,GAAG,CAAC,UAAU,EAAE;YAC1E,MAAM,EAAE,MAAM,IAAI,SAAS;YAC3B,kBAAkB,EAAE,GAAG,CAAC,kBAAkB;YAC1C,QAAQ,EAAE;gBACT,UAAU,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;gBACpC,SAAS,EAAE,OAAO,CAAC,EAAE;gBACrB,aAAa,EAAE,OAAO,CAAC,MAAM,IAAI,IAAI;aACrC;SACD,CAAC,CAAA;QACF,WAAW,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;IAC3B,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QAChB,YAAY,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;IACzB,CAAC;AACF,CAAC,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { RouteHandler } from './types.js';
2
+ export declare const handle: RouteHandler;
3
+ //# sourceMappingURL=getDialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getDialog.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getDialog.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAI9C,eAAO,MAAM,MAAM,EAAE,YASpB,CAAA"}
@@ -0,0 +1,11 @@
1
+ import { emitRequest } from './types.js';
2
+ import { respondJson } from '../httpUtils.js';
3
+ export const handle = (_req, res, _url, ctx) => {
4
+ emitRequest(ctx, res, 'dialog/status');
5
+ const response = {
6
+ ok: true,
7
+ dialog: ctx.getDialog(),
8
+ };
9
+ respondJson(res, response);
10
+ };
11
+ //# sourceMappingURL=getDialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getDialog.js","sourceRoot":"","sources":["../../../src/http/routes/getDialog.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAE7C,MAAM,CAAC,MAAM,MAAM,GAAiB,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE;IAC5D,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,eAAe,CAAC,CAAA;IAEtC,MAAM,QAAQ,GAAyB;QACtC,EAAE,EAAE,IAAI;QACR,MAAM,EAAE,GAAG,CAAC,SAAS,EAAE;KACvB,CAAA;IAED,WAAW,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;AAC3B,CAAC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"getNet.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getNet.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAI9C,eAAO,MAAM,MAAM,EAAE,YAgBpB,CAAA"}
1
+ {"version":3,"file":"getNet.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getNet.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAK9C,eAAO,MAAM,MAAM,EAAE,YAqBpB,CAAA"}
@@ -1,16 +1,22 @@
1
1
  import { emitRequest } from './types.js';
2
- import { respondJson, clampNumber, normalizeQueryValue } from '../httpUtils.js';
2
+ import { parseNetRequestFilters, toNetRequestEventQuery } from './netFilters.js';
3
+ import { respondJson, clampNumber } from '../httpUtils.js';
3
4
  export const handle = (_req, res, url, ctx) => {
4
5
  if (!ctx.netBuffer) {
5
6
  return respondJson(res, { ok: false, error: { code: 'net_disabled', message: 'Network capture is disabled for this watcher' } }, 400);
6
7
  }
7
- const after = clampNumber(url.searchParams.get('after'), 0);
8
- const limit = clampNumber(url.searchParams.get('limit'), 500, 1, 5000);
9
- const sinceTs = clampNumber(url.searchParams.get('sinceTs'), undefined);
10
- const grep = normalizeQueryValue(url.searchParams.get('grep'));
11
- emitRequest(ctx, res, 'net', { after, limit, sinceTs, grep });
12
- const requests = ctx.netBuffer.listAfter(after, { sinceTs, grep }, limit);
13
- const nextAfter = requests.length > 0 ? (requests[requests.length - 1]?.id ?? after) : after;
8
+ const filters = parseNetRequestFilters(url.searchParams, {
9
+ after: clampNumber(url.searchParams.get('after'), 0),
10
+ limit: clampNumber(url.searchParams.get('limit'), 500, 1, 5000),
11
+ sinceTs: clampNumber(url.searchParams.get('sinceTs'), undefined),
12
+ context: ctx.getNetFilterContext?.() ?? null,
13
+ });
14
+ if (filters.error || !filters.value) {
15
+ return respondJson(res, { ok: false, error: { code: 'invalid_net_filter', message: filters.error ?? 'Invalid network filter' } }, 400);
16
+ }
17
+ emitRequest(ctx, res, 'net', toNetRequestEventQuery(filters.value));
18
+ const requests = ctx.netBuffer.listAfter(filters.value.after, filters.value, filters.value.limit);
19
+ const nextAfter = requests.length > 0 ? (requests[requests.length - 1]?.id ?? filters.value.after) : filters.value.after;
14
20
  const response = { ok: true, requests, nextAfter };
15
21
  respondJson(res, response);
16
22
  };
@@ -1 +1 @@
1
- {"version":3,"file":"getNet.js","sourceRoot":"","sources":["../../../src/http/routes/getNet.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAE/E,MAAM,CAAC,MAAM,MAAM,GAAiB,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE;IAC3D,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC;QACpB,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,OAAO,EAAE,8CAA8C,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IACtI,CAAC;IAED,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAA;IAC3D,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC,CAAA;IACtE,MAAM,OAAO,GAAG,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC,CAAA;IACvE,MAAM,IAAI,GAAG,mBAAmB,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAA;IAE9D,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAA;IAE7D,MAAM,QAAQ,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE,KAAK,CAAC,CAAA;IACzE,MAAM,SAAS,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,EAAE,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;IAC5F,MAAM,QAAQ,GAAgB,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAA;IAC/D,WAAW,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;AAC3B,CAAC,CAAA"}
1
+ {"version":3,"file":"getNet.js","sourceRoot":"","sources":["../../../src/http/routes/getNet.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAChF,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAE1D,MAAM,CAAC,MAAM,MAAM,GAAiB,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE;IAC3D,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC;QACpB,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,OAAO,EAAE,8CAA8C,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IACtI,CAAC;IAED,MAAM,OAAO,GAAG,sBAAsB,CAAC,GAAG,CAAC,YAAY,EAAE;QACxD,KAAK,EAAE,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QACpD,KAAK,EAAE,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QAC/D,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC;QAChE,OAAO,EAAE,GAAG,CAAC,mBAAmB,EAAE,EAAE,IAAI,IAAI;KAC5C,CAAC,CAAA;IACF,IAAI,OAAO,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;QACrC,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,oBAAoB,EAAE,OAAO,EAAE,OAAO,CAAC,KAAK,IAAI,wBAAwB,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IACvI,CAAC;IAED,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,sBAAsB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAA;IAEnE,MAAM,QAAQ,GAAG,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;IACjG,MAAM,SAAS,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,EAAE,IAAI,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAA;IACxH,MAAM,QAAQ,GAAgB,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAA;IAC/D,WAAW,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;AAC3B,CAAC,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { RouteHandler } from './types.js';
2
+ export declare const handle: RouteHandler;
3
+ //# sourceMappingURL=getNetRequest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNetRequest.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getNetRequest.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAK9C,eAAO,MAAM,MAAM,EAAE,YAsBpB,CAAA"}
@@ -0,0 +1,23 @@
1
+ import { emitRequest } from './types.js';
2
+ import { respondJson } from '../httpUtils.js';
3
+ import { parseNetRequestLookup, resolveNetRequestLookup } from './netRequestLookup.js';
4
+ export const handle = (_req, res, url, ctx) => {
5
+ if (!ctx.netBuffer) {
6
+ return respondJson(res, { ok: false, error: { code: 'net_disabled', message: 'Network capture is disabled for this watcher' } }, 400);
7
+ }
8
+ const lookup = parseNetRequestLookup(url.searchParams);
9
+ if (!lookup) {
10
+ return respondJson(res, { ok: false, error: { code: 'invalid_request', message: 'Either id or requestId is required' } }, 400);
11
+ }
12
+ emitRequest(ctx, res, 'net/request', {
13
+ id: lookup.id,
14
+ requestId: lookup.requestId,
15
+ });
16
+ const request = resolveNetRequestLookup(ctx.netBuffer, lookup);
17
+ if (!request) {
18
+ return respondJson(res, { ok: false, error: { code: 'not_found', message: 'Network request not found' } }, 404);
19
+ }
20
+ const response = { ok: true, request };
21
+ respondJson(res, response);
22
+ };
23
+ //# sourceMappingURL=getNetRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNetRequest.js","sourceRoot":"","sources":["../../../src/http/routes/getNetRequest.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAC7C,OAAO,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAA;AAEtF,MAAM,CAAC,MAAM,MAAM,GAAiB,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE;IAC3D,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC;QACpB,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,OAAO,EAAE,8CAA8C,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IACtI,CAAC;IAED,MAAM,MAAM,GAAG,qBAAqB,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;IACtD,IAAI,CAAC,MAAM,EAAE,CAAC;QACb,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,EAAE,oCAAoC,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IAC/H,CAAC;IAED,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,aAAa,EAAE;QACpC,EAAE,EAAE,MAAM,CAAC,EAAE;QACb,SAAS,EAAE,MAAM,CAAC,SAAS;KAC3B,CAAC,CAAA;IAEF,MAAM,OAAO,GAAG,uBAAuB,CAAC,GAAG,CAAC,SAAS,EAAE,MAAM,CAAC,CAAA;IAC9D,IAAI,CAAC,OAAO,EAAE,CAAC;QACd,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,OAAO,EAAE,2BAA2B,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IAChH,CAAC;IAED,MAAM,QAAQ,GAAuB,EAAE,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,CAAA;IAC1D,WAAW,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;AAC3B,CAAC,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { RouteHandler } from './types.js';
2
+ export declare const handle: RouteHandler;
3
+ //# sourceMappingURL=getNetRequestBody.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNetRequestBody.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getNetRequestBody.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAgB,YAAY,EAAE,MAAM,YAAY,CAAA;AAM5D,eAAO,MAAM,MAAM,EAAE,YA4DpB,CAAA"}
@@ -0,0 +1,80 @@
1
+ import { emitRequest } from './types.js';
2
+ import { respondError, respondJson } from '../httpUtils.js';
3
+ import { normalizeNetBodyError, readNetworkBody } from '../../cdp/networkBody.js';
4
+ import { parseNetRequestLookup, resolveNetRequestLookupRecord } from './netRequestLookup.js';
5
+ export const handle = async (_req, res, url, ctx) => {
6
+ if (!ctx.netBuffer) {
7
+ return respondJson(res, { ok: false, error: { code: 'net_disabled', message: 'Network capture is disabled for this watcher' } }, 400);
8
+ }
9
+ const lookup = parseNetRequestLookup(url.searchParams);
10
+ if (!lookup) {
11
+ return respondJson(res, { ok: false, error: { code: 'invalid_request', message: 'Either id or requestId is required' } }, 400);
12
+ }
13
+ const part = parseBodyPart(url.searchParams.get('part'));
14
+ if (!part) {
15
+ return respondJson(res, { ok: false, error: { code: 'invalid_request', message: 'part must be "request" or "response"' } }, 400);
16
+ }
17
+ emitRequest(ctx, res, 'net/request/body', {
18
+ id: lookup.id,
19
+ requestId: lookup.requestId,
20
+ part,
21
+ });
22
+ const record = resolveNetRequestLookupRecord(ctx.netBuffer, lookup);
23
+ if (!record) {
24
+ return respondJson(res, { ok: false, error: { code: 'not_found', message: 'Network request not found' } }, 404);
25
+ }
26
+ const { detail: request, bodySessionId } = record;
27
+ if (!request.body[part]) {
28
+ return respondJson(res, { ok: false, error: { code: 'body_not_available', message: `${capitalizePart(part)} body not available for this request` } }, 404);
29
+ }
30
+ try {
31
+ const body = await readNetworkBody({
32
+ session: ctx.pageCdpSession,
33
+ request,
34
+ sessionId: resolveBodySessionId(ctx, request.frameId, bodySessionId),
35
+ part,
36
+ });
37
+ const response = {
38
+ ok: true,
39
+ id: request.id,
40
+ requestId: request.requestId,
41
+ part,
42
+ mimeType: body.mimeType,
43
+ body: body.body,
44
+ base64Encoded: body.base64Encoded,
45
+ };
46
+ respondJson(res, response);
47
+ }
48
+ catch (error) {
49
+ const normalizedError = normalizeNetBodyError(error, part);
50
+ if (normalizedError.code === 'body_not_available') {
51
+ return respondJson(res, { ok: false, error: { code: 'body_not_available', message: normalizedError.message } }, 404);
52
+ }
53
+ respondError(res, normalizedError);
54
+ }
55
+ };
56
+ const parseBodyPart = (value) => {
57
+ if (!value || value === 'response') {
58
+ return 'response';
59
+ }
60
+ if (value === 'request') {
61
+ return 'request';
62
+ }
63
+ return null;
64
+ };
65
+ const capitalizePart = (part) => `${part.slice(0, 1).toUpperCase()}${part.slice(1)}`;
66
+ /**
67
+ * Network events in extension mode should carry the child-session id that owns the request,
68
+ * but older buffered records or transient bridge gaps can miss it. Fall back to the extension
69
+ * source's frame map before giving up so iframe body reads stay stable after reloads.
70
+ */
71
+ const resolveBodySessionId = (ctx, frameId, storedSessionId) => {
72
+ if (storedSessionId) {
73
+ return storedSessionId;
74
+ }
75
+ if (!frameId) {
76
+ return null;
77
+ }
78
+ return ctx.sourceHandle?.getFrameSessionId?.(frameId) ?? null;
79
+ };
80
+ //# sourceMappingURL=getNetRequestBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNetRequestBody.js","sourceRoot":"","sources":["../../../src/http/routes/getNetRequestBody.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import type { RouteHandler } from './types.js';
2
+ export declare const handle: RouteHandler;
3
+ //# sourceMappingURL=getNetRequests.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNetRequests.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getNetRequests.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAK9C,eAAO,MAAM,MAAM,EAAE,YAqBpB,CAAA"}
@@ -0,0 +1,23 @@
1
+ import { emitRequest } from './types.js';
2
+ import { parseNetRequestFilters, toNetRequestEventQuery } from './netFilters.js';
3
+ import { respondJson, clampNumber } from '../httpUtils.js';
4
+ export const handle = (_req, res, url, ctx) => {
5
+ if (!ctx.netBuffer) {
6
+ return respondJson(res, { ok: false, error: { code: 'net_disabled', message: 'Network capture is disabled for this watcher' } }, 400);
7
+ }
8
+ const filters = parseNetRequestFilters(url.searchParams, {
9
+ after: clampNumber(url.searchParams.get('after'), 0),
10
+ limit: clampNumber(url.searchParams.get('limit'), 500, 1, 5000),
11
+ sinceTs: clampNumber(url.searchParams.get('sinceTs'), undefined),
12
+ context: ctx.getNetFilterContext?.() ?? null,
13
+ });
14
+ if (filters.error || !filters.value) {
15
+ return respondJson(res, { ok: false, error: { code: 'invalid_net_filter', message: filters.error ?? 'Invalid network filter' } }, 400);
16
+ }
17
+ emitRequest(ctx, res, 'net/requests', toNetRequestEventQuery(filters.value));
18
+ const requests = ctx.netBuffer.listDetailsAfter(filters.value.after, filters.value, filters.value.limit);
19
+ const nextAfter = requests.length > 0 ? (requests[requests.length - 1]?.id ?? filters.value.after) : filters.value.after;
20
+ const response = { ok: true, requests, nextAfter };
21
+ respondJson(res, response);
22
+ };
23
+ //# sourceMappingURL=getNetRequests.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNetRequests.js","sourceRoot":"","sources":["../../../src/http/routes/getNetRequests.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AACxC,OAAO,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAChF,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAE1D,MAAM,CAAC,MAAM,MAAM,GAAiB,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE;IAC3D,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC;QACpB,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,OAAO,EAAE,8CAA8C,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IACtI,CAAC;IAED,MAAM,OAAO,GAAG,sBAAsB,CAAC,GAAG,CAAC,YAAY,EAAE;QACxD,KAAK,EAAE,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QACpD,KAAK,EAAE,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC;QAC/D,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC;QAChE,OAAO,EAAE,GAAG,CAAC,mBAAmB,EAAE,EAAE,IAAI,IAAI;KAC5C,CAAC,CAAA;IACF,IAAI,OAAO,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;QACrC,OAAO,WAAW,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,oBAAoB,EAAE,OAAO,EAAE,OAAO,CAAC,KAAK,IAAI,wBAAwB,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IACvI,CAAC;IAED,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,cAAc,EAAE,sBAAsB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAA;IAE5E,MAAM,QAAQ,GAAG,GAAG,CAAC,SAAS,CAAC,gBAAgB,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;IACxG,MAAM,SAAS,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,EAAE,IAAI,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAA;IACxH,MAAM,QAAQ,GAAwB,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAA;IACvE,WAAW,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;AAC3B,CAAC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"getNetTail.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getNetTail.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAI9C,eAAO,MAAM,MAAM,EAAE,YAiBpB,CAAA"}
1
+ {"version":3,"file":"getNetTail.d.ts","sourceRoot":"","sources":["../../../src/http/routes/getNetTail.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAM9C,eAAO,MAAM,MAAM,EAAE,YAiBpB,CAAA"}
@@ -1,18 +1,53 @@
1
1
  import { emitRequest } from './types.js';
2
- import { respondJson, clampNumber, normalizeQueryValue } from '../httpUtils.js';
2
+ import { parseNetRequestFilters, toNetRequestEventQuery } from './netFilters.js';
3
+ import { respondJson, clampNumber } from '../httpUtils.js';
3
4
  export const handle = async (_req, res, url, ctx) => {
4
5
  if (!ctx.netBuffer) {
5
6
  return respondJson(res, { ok: false, error: { code: 'net_disabled', message: 'Network capture is disabled for this watcher' } }, 400);
6
7
  }
7
- const after = clampNumber(url.searchParams.get('after'), 0);
8
- const limit = clampNumber(url.searchParams.get('limit'), 500, 1, 5000);
9
- const timeoutMs = clampNumber(url.searchParams.get('timeoutMs'), 25_000, 1000, 120_000);
10
- const sinceTs = clampNumber(url.searchParams.get('sinceTs'), undefined);
11
- const grep = normalizeQueryValue(url.searchParams.get('grep'));
12
- emitRequest(ctx, res, 'net/tail', { after, limit, sinceTs, timeoutMs, grep });
13
- const requests = await ctx.netBuffer.waitForAfter(after, { sinceTs, grep }, limit, timeoutMs);
14
- const nextAfter = requests.length > 0 ? (requests[requests.length - 1]?.id ?? after) : after;
8
+ const parsed = parseTailRequest(url, ctx);
9
+ if (parsed.error || !parsed.value) {
10
+ return respondJson(res, { ok: false, error: { code: 'invalid_net_filter', message: parsed.error ?? 'Invalid network filter' } }, 400);
11
+ }
12
+ const { filters, timeoutMs } = parsed.value;
13
+ emitRequest(ctx, res, 'net/tail', toNetRequestEventQuery(filters, { timeoutMs }));
14
+ const requests = await pollNetBuffer(ctx.netBuffer, filters.after, filters, filters.limit, timeoutMs);
15
+ const nextAfter = requests.length > 0 ? (requests[requests.length - 1]?.id ?? filters.after) : filters.after;
15
16
  const response = { ok: true, requests, nextAfter, timedOut: requests.length === 0 };
16
17
  respondJson(res, response);
17
18
  };
19
+ const parseTailRequest = (url, ctx) => {
20
+ const filters = parseNetRequestFilters(url.searchParams, {
21
+ after: clampNumber(url.searchParams.get('after'), 0),
22
+ limit: clampNumber(url.searchParams.get('limit'), 500, 1, 5000),
23
+ sinceTs: clampNumber(url.searchParams.get('sinceTs'), undefined),
24
+ context: ctx.getNetFilterContext?.() ?? null,
25
+ });
26
+ if (filters.error || !filters.value) {
27
+ return { error: filters.error ?? 'Invalid network filter' };
28
+ }
29
+ const timeoutMs = clampNumber(url.searchParams.get('timeoutMs'), 25_000, 1000, 120_000);
30
+ return { value: { filters: filters.value, timeoutMs } };
31
+ };
32
+ const NET_TAIL_POLL_INTERVAL_MS = 100;
33
+ /**
34
+ * Poll the in-memory buffer until matching requests appear or the timeout expires.
35
+ * This is intentionally boring: network tail has one caller and simple polling proved
36
+ * more reliable than waiter bookkeeping during extension-driven reloads.
37
+ */
38
+ const pollNetBuffer = async (buffer, after, filters, limit, timeoutMs) => {
39
+ const deadline = Date.now() + timeoutMs;
40
+ while (true) {
41
+ const requests = buffer.listAfter(after, filters, limit);
42
+ if (requests.length > 0) {
43
+ return requests;
44
+ }
45
+ const remainingMs = deadline - Date.now();
46
+ if (remainingMs <= 0) {
47
+ return [];
48
+ }
49
+ await delay(Math.min(NET_TAIL_POLL_INTERVAL_MS, remainingMs));
50
+ }
51
+ };
52
+ const delay = (timeoutMs) => new Promise((resolve) => setTimeout(resolve, timeoutMs));
18
53
  //# sourceMappingURL=getNetTail.js.map