@veryfront/ext-observability-opentelemetry 0.1.1032 → 0.1.1035

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 (227) hide show
  1. package/esm/_dnt.polyfills.d.ts +7 -0
  2. package/esm/_dnt.polyfills.d.ts.map +1 -0
  3. package/esm/_dnt.polyfills.js +1 -0
  4. package/esm/deno.d.ts +440 -0
  5. package/esm/deno.d.ts.map +1 -0
  6. package/esm/deno.js +526 -0
  7. package/esm/{index.d.ts → extensions/ext-observability-opentelemetry/src/index.d.ts} +21 -0
  8. package/esm/extensions/ext-observability-opentelemetry/src/index.d.ts.map +1 -0
  9. package/esm/{index.js → extensions/ext-observability-opentelemetry/src/index.js} +255 -28
  10. package/esm/src/config/defaults.d.ts +39 -0
  11. package/esm/src/config/defaults.d.ts.map +1 -0
  12. package/esm/src/config/defaults.js +65 -0
  13. package/esm/src/errors/error-registry/agent.d.ts +18 -0
  14. package/esm/src/errors/error-registry/agent.d.ts.map +1 -0
  15. package/esm/src/errors/error-registry/agent.js +60 -0
  16. package/esm/src/errors/error-registry/boundary.d.ts +16 -0
  17. package/esm/src/errors/error-registry/boundary.d.ts.map +1 -0
  18. package/esm/src/errors/error-registry/boundary.js +52 -0
  19. package/esm/src/errors/error-registry/build.d.ts +20 -0
  20. package/esm/src/errors/error-registry/build.d.ts.map +1 -0
  21. package/esm/src/errors/error-registry/build.js +68 -0
  22. package/esm/src/errors/error-registry/config.d.ts +22 -0
  23. package/esm/src/errors/error-registry/config.d.ts.map +1 -0
  24. package/esm/src/errors/error-registry/config.js +70 -0
  25. package/esm/src/errors/error-registry/deploy.d.ts +12 -0
  26. package/esm/src/errors/error-registry/deploy.d.ts.map +1 -0
  27. package/esm/src/errors/error-registry/deploy.js +36 -0
  28. package/esm/src/errors/error-registry/dev.d.ts +14 -0
  29. package/esm/src/errors/error-registry/dev.d.ts.map +1 -0
  30. package/esm/src/errors/error-registry/dev.js +44 -0
  31. package/esm/src/errors/error-registry/general.d.ts +29 -0
  32. package/esm/src/errors/error-registry/general.d.ts.map +1 -0
  33. package/esm/src/errors/error-registry/general.js +92 -0
  34. package/esm/src/errors/error-registry/module.d.ts +16 -0
  35. package/esm/src/errors/error-registry/module.d.ts.map +1 -0
  36. package/esm/src/errors/error-registry/module.js +52 -0
  37. package/esm/src/errors/error-registry/route.d.ts +16 -0
  38. package/esm/src/errors/error-registry/route.d.ts.map +1 -0
  39. package/esm/src/errors/error-registry/route.js +52 -0
  40. package/esm/src/errors/error-registry/runtime.d.ts +18 -0
  41. package/esm/src/errors/error-registry/runtime.d.ts.map +1 -0
  42. package/esm/src/errors/error-registry/runtime.js +60 -0
  43. package/esm/src/errors/error-registry/server.d.ts +39 -0
  44. package/esm/src/errors/error-registry/server.d.ts.map +1 -0
  45. package/esm/src/errors/error-registry/server.js +129 -0
  46. package/esm/src/errors/error-registry-helpers.d.ts +6 -0
  47. package/esm/src/errors/error-registry-helpers.d.ts.map +1 -0
  48. package/esm/src/errors/error-registry-helpers.js +9 -0
  49. package/esm/src/errors/error-registry.d.ts +114 -0
  50. package/esm/src/errors/error-registry.d.ts.map +1 -0
  51. package/esm/src/errors/error-registry.js +60 -0
  52. package/esm/src/errors/types.d.ts +84 -0
  53. package/esm/src/errors/types.d.ts.map +1 -0
  54. package/esm/src/errors/types.js +69 -0
  55. package/esm/src/errors/veryfront-error.d.ts +149 -0
  56. package/esm/src/errors/veryfront-error.d.ts.map +1 -0
  57. package/esm/src/errors/veryfront-error.js +61 -0
  58. package/esm/src/modules/react-loader/ssr-module-loader/concurrency/semaphore.d.ts +13 -0
  59. package/esm/src/modules/react-loader/ssr-module-loader/concurrency/semaphore.d.ts.map +1 -0
  60. package/esm/src/modules/react-loader/ssr-module-loader/concurrency/semaphore.js +55 -0
  61. package/esm/src/observability/tracing/api-shim.d.ts +191 -0
  62. package/esm/src/observability/tracing/api-shim.d.ts.map +1 -0
  63. package/esm/src/observability/tracing/api-shim.js +281 -0
  64. package/esm/src/observability/tracing/otlp-setup.d.ts +61 -0
  65. package/esm/src/observability/tracing/otlp-setup.d.ts.map +1 -0
  66. package/esm/src/observability/tracing/otlp-setup.js +213 -0
  67. package/esm/src/observability/tracing/telemetry-env.d.ts +3 -0
  68. package/esm/src/observability/tracing/telemetry-env.d.ts.map +1 -0
  69. package/esm/src/observability/tracing/telemetry-env.js +10 -0
  70. package/esm/src/platform/adapters/base.d.ts +193 -0
  71. package/esm/src/platform/adapters/base.d.ts.map +1 -0
  72. package/esm/src/platform/adapters/base.js +15 -0
  73. package/esm/src/platform/compat/constants.d.ts +13 -0
  74. package/esm/src/platform/compat/constants.d.ts.map +1 -0
  75. package/esm/src/platform/compat/constants.js +12 -0
  76. package/esm/src/platform/compat/dynamic-import.d.ts +11 -0
  77. package/esm/src/platform/compat/dynamic-import.d.ts.map +1 -0
  78. package/esm/src/platform/compat/dynamic-import.js +10 -0
  79. package/esm/src/platform/compat/fs.d.ts +71 -0
  80. package/esm/src/platform/compat/fs.d.ts.map +1 -0
  81. package/esm/src/platform/compat/fs.js +277 -0
  82. package/esm/src/platform/compat/path/resolution.d.ts +6 -0
  83. package/esm/src/platform/compat/path/resolution.d.ts.map +1 -0
  84. package/esm/src/platform/compat/path/resolution.js +121 -0
  85. package/esm/src/platform/compat/path/runtime.d.ts +8 -0
  86. package/esm/src/platform/compat/path/runtime.d.ts.map +1 -0
  87. package/esm/src/platform/compat/path/runtime.js +20 -0
  88. package/esm/src/platform/compat/path/types.d.ts +22 -0
  89. package/esm/src/platform/compat/path/types.d.ts.map +1 -0
  90. package/esm/src/platform/compat/path/types.js +1 -0
  91. package/esm/src/platform/compat/process/command.d.ts +31 -0
  92. package/esm/src/platform/compat/process/command.d.ts.map +1 -0
  93. package/esm/src/platform/compat/process/command.js +194 -0
  94. package/esm/src/platform/compat/process/env.d.ts +35 -0
  95. package/esm/src/platform/compat/process/env.d.ts.map +1 -0
  96. package/esm/src/platform/compat/process/env.js +194 -0
  97. package/esm/src/platform/compat/process/lifecycle.d.ts +99 -0
  98. package/esm/src/platform/compat/process/lifecycle.d.ts.map +1 -0
  99. package/esm/src/platform/compat/process/lifecycle.js +327 -0
  100. package/esm/src/platform/compat/process/runtime-process.d.ts +10 -0
  101. package/esm/src/platform/compat/process/runtime-process.d.ts.map +1 -0
  102. package/esm/src/platform/compat/process/runtime-process.js +25 -0
  103. package/esm/src/platform/compat/process.d.ts +5 -0
  104. package/esm/src/platform/compat/process.d.ts.map +1 -0
  105. package/esm/src/platform/compat/process.js +4 -0
  106. package/esm/src/platform/compat/runtime.d.ts +51 -0
  107. package/esm/src/platform/compat/runtime.d.ts.map +1 -0
  108. package/esm/src/platform/compat/runtime.js +101 -0
  109. package/esm/src/transforms/import-rewriter/url-builder.d.ts +70 -0
  110. package/esm/src/transforms/import-rewriter/url-builder.d.ts.map +1 -0
  111. package/esm/src/transforms/import-rewriter/url-builder.js +152 -0
  112. package/esm/src/utils/base64url.d.ts +6 -0
  113. package/esm/src/utils/base64url.d.ts.map +1 -0
  114. package/esm/src/utils/base64url.js +12 -0
  115. package/esm/src/utils/bundle-manifest.d.ts +63 -0
  116. package/esm/src/utils/bundle-manifest.d.ts.map +1 -0
  117. package/esm/src/utils/bundle-manifest.js +96 -0
  118. package/esm/src/utils/constants/buffers.d.ts +24 -0
  119. package/esm/src/utils/constants/buffers.d.ts.map +1 -0
  120. package/esm/src/utils/constants/buffers.js +23 -0
  121. package/esm/src/utils/constants/build.d.ts +8 -0
  122. package/esm/src/utils/constants/build.d.ts.map +1 -0
  123. package/esm/src/utils/constants/build.js +7 -0
  124. package/esm/src/utils/constants/cache.d.ts +74 -0
  125. package/esm/src/utils/constants/cache.d.ts.map +1 -0
  126. package/esm/src/utils/constants/cache.js +133 -0
  127. package/esm/src/utils/constants/cdn.d.ts +29 -0
  128. package/esm/src/utils/constants/cdn.d.ts.map +1 -0
  129. package/esm/src/utils/constants/cdn.js +58 -0
  130. package/esm/src/utils/constants/crypto.d.ts +10 -0
  131. package/esm/src/utils/constants/crypto.d.ts.map +1 -0
  132. package/esm/src/utils/constants/crypto.js +9 -0
  133. package/esm/src/utils/constants/env.d.ts +16 -0
  134. package/esm/src/utils/constants/env.d.ts.map +1 -0
  135. package/esm/src/utils/constants/env.js +20 -0
  136. package/esm/src/utils/constants/hash.d.ts +5 -0
  137. package/esm/src/utils/constants/hash.d.ts.map +1 -0
  138. package/esm/src/utils/constants/hash.js +4 -0
  139. package/esm/src/utils/constants/hmr.d.ts +24 -0
  140. package/esm/src/utils/constants/hmr.d.ts.map +1 -0
  141. package/esm/src/utils/constants/hmr.js +26 -0
  142. package/esm/src/utils/constants/html.d.ts +13 -0
  143. package/esm/src/utils/constants/html.d.ts.map +1 -0
  144. package/esm/src/utils/constants/html.js +12 -0
  145. package/esm/src/utils/constants/http.d.ts +77 -0
  146. package/esm/src/utils/constants/http.d.ts.map +1 -0
  147. package/esm/src/utils/constants/http.js +76 -0
  148. package/esm/src/utils/constants/index.d.ts +23 -0
  149. package/esm/src/utils/constants/index.d.ts.map +1 -0
  150. package/esm/src/utils/constants/index.js +22 -0
  151. package/esm/src/utils/constants/limits.d.ts +27 -0
  152. package/esm/src/utils/constants/limits.d.ts.map +1 -0
  153. package/esm/src/utils/constants/limits.js +26 -0
  154. package/esm/src/utils/constants/metrics.d.ts +10 -0
  155. package/esm/src/utils/constants/metrics.d.ts.map +1 -0
  156. package/esm/src/utils/constants/metrics.js +34 -0
  157. package/esm/src/utils/constants/network.d.ts +23 -0
  158. package/esm/src/utils/constants/network.d.ts.map +1 -0
  159. package/esm/src/utils/constants/network.js +27 -0
  160. package/esm/src/utils/constants/priorities.d.ts +31 -0
  161. package/esm/src/utils/constants/priorities.d.ts.map +1 -0
  162. package/esm/src/utils/constants/priorities.js +30 -0
  163. package/esm/src/utils/constants/retry.d.ts +14 -0
  164. package/esm/src/utils/constants/retry.d.ts.map +1 -0
  165. package/esm/src/utils/constants/retry.js +13 -0
  166. package/esm/src/utils/constants/security.d.ts +16 -0
  167. package/esm/src/utils/constants/security.d.ts.map +1 -0
  168. package/esm/src/utils/constants/security.js +15 -0
  169. package/esm/src/utils/constants/server.d.ts +107 -0
  170. package/esm/src/utils/constants/server.d.ts.map +1 -0
  171. package/esm/src/utils/constants/server.js +120 -0
  172. package/esm/src/utils/feature-flags.d.ts +7 -0
  173. package/esm/src/utils/feature-flags.d.ts.map +1 -0
  174. package/esm/src/utils/feature-flags.js +8 -0
  175. package/esm/src/utils/hash-utils.d.ts +19 -0
  176. package/esm/src/utils/hash-utils.d.ts.map +1 -0
  177. package/esm/src/utils/hash-utils.js +42 -0
  178. package/esm/src/utils/import-lockfile.d.ts +52 -0
  179. package/esm/src/utils/import-lockfile.d.ts.map +1 -0
  180. package/esm/src/utils/import-lockfile.js +187 -0
  181. package/esm/src/utils/index.d.ts +27 -0
  182. package/esm/src/utils/index.d.ts.map +1 -0
  183. package/esm/src/utils/index.js +25 -0
  184. package/esm/src/utils/logger/components.d.ts +73 -0
  185. package/esm/src/utils/logger/components.d.ts.map +1 -0
  186. package/esm/src/utils/logger/components.js +81 -0
  187. package/esm/src/utils/logger/core.d.ts +73 -0
  188. package/esm/src/utils/logger/core.d.ts.map +1 -0
  189. package/esm/src/utils/logger/core.js +143 -0
  190. package/esm/src/utils/logger/index.d.ts +10 -0
  191. package/esm/src/utils/logger/index.d.ts.map +1 -0
  192. package/esm/src/utils/logger/index.js +9 -0
  193. package/esm/src/utils/logger/logger.d.ts +179 -0
  194. package/esm/src/utils/logger/logger.d.ts.map +1 -0
  195. package/esm/src/utils/logger/logger.js +490 -0
  196. package/esm/src/utils/logger/redact.d.ts +74 -0
  197. package/esm/src/utils/logger/redact.d.ts.map +1 -0
  198. package/esm/src/utils/logger/redact.js +294 -0
  199. package/esm/src/utils/logger/request-context.d.ts +27 -0
  200. package/esm/src/utils/logger/request-context.d.ts.map +1 -0
  201. package/esm/src/utils/logger/request-context.js +28 -0
  202. package/esm/src/utils/memoize.d.ts +19 -0
  203. package/esm/src/utils/memoize.d.ts.map +1 -0
  204. package/esm/src/utils/memoize.js +72 -0
  205. package/esm/src/utils/parallel.d.ts +25 -0
  206. package/esm/src/utils/parallel.d.ts.map +1 -0
  207. package/esm/src/utils/parallel.js +91 -0
  208. package/esm/src/utils/path-utils.d.ts +34 -0
  209. package/esm/src/utils/path-utils.d.ts.map +1 -0
  210. package/esm/src/utils/path-utils.js +138 -0
  211. package/esm/src/utils/perf-timer.d.ts +11 -0
  212. package/esm/src/utils/perf-timer.d.ts.map +1 -0
  213. package/esm/src/utils/perf-timer.js +114 -0
  214. package/esm/src/utils/platform.d.ts +9 -0
  215. package/esm/src/utils/platform.d.ts.map +1 -0
  216. package/esm/src/utils/platform.js +20 -0
  217. package/esm/src/utils/runtime-guards.d.ts +29 -0
  218. package/esm/src/utils/runtime-guards.d.ts.map +1 -0
  219. package/esm/src/utils/runtime-guards.js +23 -0
  220. package/esm/src/utils/version-constant.d.ts +3 -0
  221. package/esm/src/utils/version-constant.d.ts.map +1 -0
  222. package/esm/src/utils/version-constant.js +4 -0
  223. package/esm/src/utils/version.d.ts +17 -0
  224. package/esm/src/utils/version.d.ts.map +1 -0
  225. package/esm/src/utils/version.js +36 -0
  226. package/package.json +25 -7
  227. package/esm/index.d.ts.map +0 -1
@@ -0,0 +1,7 @@
1
+ declare global {
2
+ interface Error {
3
+ cause?: unknown;
4
+ }
5
+ }
6
+ export {};
7
+ //# sourceMappingURL=_dnt.polyfills.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_dnt.polyfills.d.ts","sourceRoot":"","sources":["../src/_dnt.polyfills.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,KAAK;QACb,KAAK,CAAC,EAAE,OAAO,CAAC;KACjB;CACF;AAED,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
package/esm/deno.d.ts ADDED
@@ -0,0 +1,440 @@
1
+ declare namespace _default {
2
+ export let name: string;
3
+ export let version: string;
4
+ export let license: string;
5
+ export let nodeModulesDir: string;
6
+ export namespace minimumDependencyAge {
7
+ let age: string;
8
+ let exclude: string[];
9
+ }
10
+ export let workspace: string[];
11
+ let exclude_1: string[];
12
+ export { exclude_1 as exclude };
13
+ export let exports: {
14
+ ".": string;
15
+ "./head": string;
16
+ "./router": string;
17
+ "./context": string;
18
+ "./fonts": string;
19
+ "./ui": string;
20
+ "./ui/icons": string;
21
+ "./chat": string;
22
+ "./chat/ag-ui": string;
23
+ "./chat/protocol": string;
24
+ "./chat/types": string;
25
+ "./chat/uploads": string;
26
+ "./markdown": string;
27
+ "./mdx": string;
28
+ "./agent": string;
29
+ "./agent/identity": string;
30
+ "./eval": string;
31
+ "./metrics": string;
32
+ "./eval/agent-service": string;
33
+ "./channels/control-plane": string;
34
+ "./channels/invoke": string;
35
+ "./tool": string;
36
+ "./workflow": string;
37
+ "./workflow/worker": string;
38
+ "./workflow/claude-code": string;
39
+ "./workflow/claude-code/react": string;
40
+ "./workflow/discovery": string;
41
+ "./schemas": string;
42
+ "./prompt": string;
43
+ "./resource": string;
44
+ "./runs": string;
45
+ "./skill": string;
46
+ "./trigger": string;
47
+ "./task": string;
48
+ "./schedule": string;
49
+ "./webhook": string;
50
+ "./mcp": string;
51
+ "./middleware": string;
52
+ "./observability": string;
53
+ "./observability/otlp-setup": string;
54
+ "./utils": string;
55
+ "./oauth": string;
56
+ "./provider": string;
57
+ "./provider/shared": string;
58
+ "./provider/types": string;
59
+ "./fs": string;
60
+ "./integrations": string;
61
+ "./sandbox": string;
62
+ "./embedding": string;
63
+ "./knowledge": string;
64
+ "./extensions": string;
65
+ "./extensions/llm": string;
66
+ "./extensions/auth": string;
67
+ "./extensions/bundler": string;
68
+ "./extensions/cache": string;
69
+ "./extensions/content": string;
70
+ "./extensions/contracts": string;
71
+ "./extensions/compat": string;
72
+ "./extensions/first-party-import": string;
73
+ "./extensions/css": string;
74
+ "./extensions/database": string;
75
+ "./extensions/eval": string;
76
+ "./extensions/parser": string;
77
+ "./extensions/sandbox": string;
78
+ "./extensions/schema": string;
79
+ "./extensions/observability": string;
80
+ "./testing": string;
81
+ "./testing/assert": string;
82
+ "./testing/bdd": string;
83
+ "./cli": string;
84
+ "./chat/message-prep": string;
85
+ "./server": string;
86
+ };
87
+ export let imports: {
88
+ "veryfront/head": string;
89
+ "veryfront/router": string;
90
+ "veryfront/context": string;
91
+ "veryfront/fonts": string;
92
+ "veryfront/chat": string;
93
+ "veryfront/chat/types": string;
94
+ "veryfront/chat/uploads": string;
95
+ "veryfront/markdown": string;
96
+ "veryfront/mdx": string;
97
+ "veryfront/fs": string;
98
+ "veryfront/platform": string;
99
+ "veryfront/react/head": string;
100
+ "veryfront/react/router": string;
101
+ "veryfront/react/context": string;
102
+ "veryfront/react/fonts": string;
103
+ "veryfront/react/components/chat": string;
104
+ "veryfront/components/chat": string;
105
+ "veryfront/ui": string;
106
+ "veryfront/ui/icons": string;
107
+ "veryfront/react/components/ui": string;
108
+ "veryfront/components/ui": string;
109
+ "veryfront/sandbox": string;
110
+ "veryfront/embedding": string;
111
+ "veryfront/knowledge": string;
112
+ "veryfront/runs": string;
113
+ "veryfront/eval": string;
114
+ "veryfront/metrics": string;
115
+ "veryfront/eval/agent-service": string;
116
+ "veryfront/agent/identity": string;
117
+ "veryfront/agent/react": string;
118
+ "veryfront/agent/middleware": string;
119
+ "veryfront/workflow/react": string;
120
+ "veryfront/workflow/executor": string;
121
+ "veryfront/workflow/blob": string;
122
+ "veryfront/workflow/runtime": string;
123
+ "veryfront/workflow/worker": string;
124
+ "veryfront/workflow/claude-code": string;
125
+ "veryfront/workflow/claude-code/react": string;
126
+ "veryfront/workflow/discovery": string;
127
+ "veryfront/utils": string;
128
+ "veryfront/utils/box": string;
129
+ "veryfront/utils/case-utils": string;
130
+ "veryfront/utils/constants/server": string;
131
+ "veryfront/utils/html-escape": string;
132
+ "veryfront/utils/import-lockfile": string;
133
+ "veryfront/utils/env-loader": string;
134
+ "veryfront/proxy/main": string;
135
+ "veryfront/proxy/handler": string;
136
+ "veryfront/proxy/cache": string;
137
+ "veryfront/transforms/mdx-cache": string;
138
+ "veryfront/observability/otlp-setup": string;
139
+ "veryfront/platform/esbuild-init": string;
140
+ "veryfront/platform/path": string;
141
+ "veryfront/platform/http": string;
142
+ "veryfront/cli": string;
143
+ "veryfront/server": string;
144
+ "veryfront/routing": string;
145
+ "veryfront/react": string;
146
+ "veryfront/data": string;
147
+ "veryfront/config": string;
148
+ "veryfront/build": string;
149
+ "veryfront/release-assets": string;
150
+ "veryfront/skill": string;
151
+ "veryfront/trigger": string;
152
+ "veryfront/schedule": string;
153
+ "veryfront/webhook": string;
154
+ "veryfront/rendering": string;
155
+ "veryfront/rendering/styles": string;
156
+ "veryfront/cache": string;
157
+ "veryfront/security": string;
158
+ "veryfront/errors": string;
159
+ "veryfront/trigger/target": string;
160
+ "veryfront/trigger/validation": string;
161
+ "veryfront/issues": string;
162
+ "veryfront/discovery": string;
163
+ "veryfront/observability": string;
164
+ "veryfront/provider/shared": string;
165
+ "veryfront/provider/types": string;
166
+ "veryfront/tool/schema": string;
167
+ "veryfront/agent/composition": string;
168
+ "veryfront/extensions": string;
169
+ "veryfront/testing": string;
170
+ "veryfront/testing/assert": string;
171
+ "veryfront/testing/bdd": string;
172
+ "veryfront/extensions/llm": string;
173
+ "veryfront/extensions/auth": string;
174
+ "veryfront/extensions/bundler": string;
175
+ "veryfront/extensions/cache": string;
176
+ "veryfront/extensions/content": string;
177
+ "veryfront/extensions/compat": string;
178
+ "veryfront/extensions/contracts": string;
179
+ "veryfront/extensions/first-party-import": string;
180
+ "veryfront/extensions/css": string;
181
+ "veryfront/extensions/database": string;
182
+ "veryfront/extensions/eval": string;
183
+ "veryfront/extensions/parser": string;
184
+ "veryfront/extensions/sandbox": string;
185
+ "veryfront/extensions/schema": string;
186
+ "veryfront/extensions/observability": string;
187
+ "#veryfront": string;
188
+ "#veryfront/agent": string;
189
+ "#veryfront/agent/identity": string;
190
+ "#veryfront/agent/react": string;
191
+ "#veryfront/chat/ag-ui": string;
192
+ "#veryfront/chat/compat": string;
193
+ "#veryfront/chat/conversation": string;
194
+ "#veryfront/chat/protocol": string;
195
+ "#veryfront/chat/provider-errors": string;
196
+ "#veryfront/chat/stream-watchdog": string;
197
+ "#veryfront/chat/uploads": string;
198
+ "#veryfront/build": string;
199
+ "#veryfront/cache": string;
200
+ "#veryfront/config": string;
201
+ "#veryfront/discovery": string;
202
+ "#veryfront/data": string;
203
+ "#veryfront/errors": string;
204
+ "#veryfront/knowledge": string;
205
+ "#veryfront/eval": string;
206
+ "#veryfront/eval/agent-service": string;
207
+ "#veryfront/metrics": string;
208
+ "#veryfront/extensions/eval": string;
209
+ "#veryfront/extensions/first-party-import.ts": string;
210
+ "#veryfront/html": string;
211
+ "#veryfront/mcp": string;
212
+ "#veryfront/middleware": string;
213
+ "#veryfront/modules": string;
214
+ "#veryfront/observability": string;
215
+ "#veryfront/platform": string;
216
+ "#veryfront/prompt": string;
217
+ "#veryfront/provider": string;
218
+ "#veryfront/react": string;
219
+ "#veryfront/rendering": string;
220
+ "#veryfront/resource": string;
221
+ "#veryfront/runs": string;
222
+ "#veryfront/runs/": string;
223
+ "#veryfront/routing": string;
224
+ "#veryfront/security": string;
225
+ "#veryfront/skill": string;
226
+ "#veryfront/skill/": string;
227
+ "#veryfront/trigger": string;
228
+ "#veryfront/schedule": string;
229
+ "#veryfront/schedule/": string;
230
+ "#veryfront/webhook": string;
231
+ "#veryfront/webhook/": string;
232
+ "#veryfront/trigger/": string;
233
+ "#veryfront/server": string;
234
+ "#veryfront/server/project-env": string;
235
+ "#veryfront/testing": string;
236
+ "#veryfront/testing/assert": string;
237
+ "#veryfront/testing/bdd": string;
238
+ "#veryfront/testing/bdd.ts": string;
239
+ "#veryfront/testing/deno-compat": string;
240
+ "#veryfront/testing/utils": string;
241
+ "#veryfront/sandbox": string;
242
+ "#veryfront/tool": string;
243
+ "#veryfront/tool/schema": string;
244
+ "#veryfront/transforms": string;
245
+ "#veryfront/types": string;
246
+ "#veryfront/utils": string;
247
+ "#veryfront/workflow": string;
248
+ "#veryfront/workflow/react": string;
249
+ "#veryfront/workflow/worker": string;
250
+ "#veryfront/workflow/claude-code": string;
251
+ "#veryfront/workflow/claude-code/react": string;
252
+ "#veryfront/workflow/discovery": string;
253
+ "#veryfront/schemas": string;
254
+ "#veryfront/http/responses": string;
255
+ "#veryfront/compat/console": string;
256
+ "#veryfront/compat/http": string;
257
+ "#veryfront/compat/kv": string;
258
+ "#veryfront/compat/path": string;
259
+ "#veryfront/compat/": string;
260
+ "#veryfront/http/": string;
261
+ "#veryfront/platform/": string;
262
+ "#veryfront/components": string;
263
+ "#veryfront/": string;
264
+ "#cli/commands/files/command": string;
265
+ "#cli/commands/knowledge/command": string;
266
+ "#cli/commands/knowledge/result": string;
267
+ "#cli/commands/uploads/command": string;
268
+ "#deno-config": string;
269
+ "#std/path": string;
270
+ "#std/path.ts": string;
271
+ "#std/path/posix": string;
272
+ "#std/path/posix.ts": string;
273
+ "#std/assert": string;
274
+ "#std/assert.ts": string;
275
+ "#std/dotenv": string;
276
+ "#std/dotenv.ts": string;
277
+ "#std/flags": string;
278
+ "#std/flags.ts": string;
279
+ "#std/fmt/colors": string;
280
+ "#std/fmt/colors.ts": string;
281
+ "#std/testing": string;
282
+ "#std/testing.ts": string;
283
+ "#std/testing/bdd": string;
284
+ "#std/testing/bdd.ts": string;
285
+ "#std/testing/time": string;
286
+ "#std/testing/time.ts": string;
287
+ "#std/expect": string;
288
+ "#std/expect.ts": string;
289
+ "#std/fs": string;
290
+ "#std/fs.ts": string;
291
+ "#std/fs/walk": string;
292
+ "#std/fs/ensure-dir": string;
293
+ "#std/async": string;
294
+ "#std/async.ts": string;
295
+ "#std/front-matter/yaml": string;
296
+ "#std/front-matter/yaml.ts": string;
297
+ "@std/path": string;
298
+ "@std/assert": string;
299
+ "@std/dotenv": string;
300
+ "@std/flags": string;
301
+ "@std/fmt/colors": string;
302
+ "@std/testing": string;
303
+ "@std/testing/bdd": string;
304
+ "@std/yaml/parse": string;
305
+ "@std/expect": string;
306
+ "@std/fs": string;
307
+ "@std/async": string;
308
+ "@std/front-matter/yaml": string;
309
+ react: string;
310
+ "react-dom": string;
311
+ "react-dom/server": string;
312
+ "react-dom/client": string;
313
+ "react/jsx-runtime": string;
314
+ "react/jsx-dev-runtime": string;
315
+ "veryfront/schemas": string;
316
+ "veryfront/chat/message-prep": string;
317
+ "#dnt": string;
318
+ };
319
+ export namespace compilerOptions {
320
+ let jsx: string;
321
+ let jsxImportSource: string;
322
+ let strict: boolean;
323
+ let noImplicitAny: boolean;
324
+ let noUncheckedIndexedAccess: boolean;
325
+ let lib: string[];
326
+ }
327
+ export let tasks: {
328
+ setup: string;
329
+ generate: string;
330
+ "generate:manifests:check": string;
331
+ start: string;
332
+ "start:headless": string;
333
+ proxy: string;
334
+ dev: string;
335
+ production: string;
336
+ "build:prepare": string;
337
+ build: string;
338
+ "build:npm": string;
339
+ release: string;
340
+ test: string;
341
+ "test:unit": string;
342
+ "test:integration": string;
343
+ "test:integration:cli": string;
344
+ "test:record": string;
345
+ "test:coverage": string;
346
+ "test:coverage:unit": string;
347
+ "test:coverage:integration": string;
348
+ "coverage:report": string;
349
+ "coverage:gate": string;
350
+ "coverage:ci:shard": string;
351
+ "coverage:ci:merge": string;
352
+ "coverage:ci": string;
353
+ "coverage:html": string;
354
+ bench: string;
355
+ clean: string;
356
+ storybook: string;
357
+ "build:storybook": string;
358
+ "storybook:check": string;
359
+ lint: string;
360
+ fmt: string;
361
+ "fmt:check": string;
362
+ typecheck: string;
363
+ verify: string;
364
+ "verify:quick": string;
365
+ docs: string;
366
+ "docs:coverage": string;
367
+ "docs:copy": string;
368
+ "docs:validate": string;
369
+ "docs:verify-npm": string;
370
+ "docs:check-links": string;
371
+ "lint:ban-zod": string;
372
+ "lint:core-deps": string;
373
+ "lint:dependency-boundaries": string;
374
+ "lint:extension-contracts": string;
375
+ "lint:extension-capabilities": string;
376
+ "lint:ban-console": string;
377
+ "lint:ban-deep-imports": string;
378
+ "lint:imports": string;
379
+ "lint:ban-internal-root-imports": string;
380
+ "lint:chat-composability": string;
381
+ "lint:style": string;
382
+ "lint:cli-boundary": string;
383
+ "validate:architecture": string;
384
+ "lint:check-awaits": string;
385
+ dupes: string;
386
+ "lint:platform": string;
387
+ "lint:wildcard-exports": string;
388
+ "lint:deps": string;
389
+ "lint:barrel-jsdoc": string;
390
+ "lint:ban-test-only": string;
391
+ "lint:sanitizer-baseline": string;
392
+ "lint:skipped-tests": string;
393
+ "test:scripts": string;
394
+ "test:cross-runtime": string;
395
+ "test:node": string;
396
+ "test:bun": string;
397
+ "test:all-runtimes": string;
398
+ "test:e2e": string;
399
+ "test:e2e:playwright": string;
400
+ "test:e2e:rsc-browser": string;
401
+ "test:e2e:binary": string;
402
+ "test:e2e:binary:fresh": string;
403
+ "test:e2e:templates": string;
404
+ "check:circular": string;
405
+ cli: string;
406
+ mcp: string;
407
+ "start-split": string;
408
+ "start-split:binary": string;
409
+ sbom: string;
410
+ "sbom:all": string;
411
+ "submit-deps": string;
412
+ audit: string;
413
+ };
414
+ export namespace lint {
415
+ export let include: string[];
416
+ let exclude_2: string[];
417
+ export { exclude_2 as exclude };
418
+ export namespace rules {
419
+ export let tags: string[];
420
+ let include_1: string[];
421
+ export { include_1 as include };
422
+ let exclude_3: string[];
423
+ export { exclude_3 as exclude };
424
+ }
425
+ }
426
+ export namespace fmt {
427
+ let include_2: string[];
428
+ export { include_2 as include };
429
+ let exclude_4: string[];
430
+ export { exclude_4 as exclude };
431
+ export let useTabs: boolean;
432
+ export let lineWidth: number;
433
+ export let indentWidth: number;
434
+ export let semiColons: boolean;
435
+ export let singleQuote: boolean;
436
+ export let proseWrap: string;
437
+ }
438
+ }
439
+ export default _default;
440
+ //# sourceMappingURL=deno.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deno.d.ts","sourceRoot":"","sources":["../src/deno.js"],"names":[],"mappings":""}