pyric 0.0.1 → 0.1.0-alpha.11

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 (1280) hide show
  1. package/LICENSE +216 -0
  2. package/README.md +179 -2
  3. package/README.md.orig +54 -0
  4. package/dist/ai/backend.d.ts +35 -0
  5. package/dist/ai/backend.d.ts.map +1 -0
  6. package/dist/ai/backend.js +42 -0
  7. package/dist/ai/backend.js.map +1 -0
  8. package/dist/ai/broker/broker.d.ts +72 -0
  9. package/dist/ai/broker/broker.d.ts.map +1 -0
  10. package/dist/ai/broker/broker.js +212 -0
  11. package/dist/ai/broker/broker.js.map +1 -0
  12. package/dist/ai/broker/index.d.ts +12 -0
  13. package/dist/ai/broker/index.d.ts.map +1 -0
  14. package/dist/ai/broker/index.js +11 -0
  15. package/dist/ai/broker/index.js.map +1 -0
  16. package/dist/ai/broker/openai-engine.d.ts +185 -0
  17. package/dist/ai/broker/openai-engine.d.ts.map +1 -0
  18. package/dist/ai/broker/openai-engine.js +528 -0
  19. package/dist/ai/broker/openai-engine.js.map +1 -0
  20. package/dist/ai/broker/scripted-engine.d.ts +54 -0
  21. package/dist/ai/broker/scripted-engine.d.ts.map +1 -0
  22. package/dist/ai/broker/scripted-engine.js +240 -0
  23. package/dist/ai/broker/scripted-engine.js.map +1 -0
  24. package/dist/ai/broker/synthesizer.d.ts +100 -0
  25. package/dist/ai/broker/synthesizer.d.ts.map +1 -0
  26. package/dist/ai/broker/synthesizer.js +278 -0
  27. package/dist/ai/broker/synthesizer.js.map +1 -0
  28. package/dist/ai/broker/types.d.ts +216 -0
  29. package/dist/ai/broker/types.d.ts.map +1 -0
  30. package/dist/ai/broker/types.js +20 -0
  31. package/dist/ai/broker/types.js.map +1 -0
  32. package/dist/ai/enums.d.ts +174 -0
  33. package/dist/ai/enums.d.ts.map +1 -0
  34. package/dist/ai/enums.js +155 -0
  35. package/dist/ai/enums.js.map +1 -0
  36. package/dist/ai/errors.d.ts +66 -0
  37. package/dist/ai/errors.d.ts.map +1 -0
  38. package/dist/ai/errors.js +100 -0
  39. package/dist/ai/errors.js.map +1 -0
  40. package/dist/ai/index.d.ts +31 -0
  41. package/dist/ai/index.d.ts.map +1 -0
  42. package/dist/ai/index.js +27 -0
  43. package/dist/ai/index.js.map +1 -0
  44. package/dist/ai/instances.d.ts +17 -0
  45. package/dist/ai/instances.d.ts.map +1 -0
  46. package/dist/ai/instances.js +106 -0
  47. package/dist/ai/instances.js.map +1 -0
  48. package/dist/ai/internal.d.ts +13 -0
  49. package/dist/ai/internal.d.ts.map +1 -0
  50. package/dist/ai/internal.js +45 -0
  51. package/dist/ai/internal.js.map +1 -0
  52. package/dist/ai/models.d.ts +116 -0
  53. package/dist/ai/models.d.ts.map +1 -0
  54. package/dist/ai/models.js +213 -0
  55. package/dist/ai/models.js.map +1 -0
  56. package/dist/ai/request-helpers.d.ts +59 -0
  57. package/dist/ai/request-helpers.d.ts.map +1 -0
  58. package/dist/ai/request-helpers.js +157 -0
  59. package/dist/ai/request-helpers.js.map +1 -0
  60. package/dist/ai/response-helpers.d.ts +41 -0
  61. package/dist/ai/response-helpers.d.ts.map +1 -0
  62. package/dist/ai/response-helpers.js +204 -0
  63. package/dist/ai/response-helpers.js.map +1 -0
  64. package/dist/ai/sandbox-plane.d.ts +41 -0
  65. package/dist/ai/sandbox-plane.d.ts.map +1 -0
  66. package/dist/ai/sandbox-plane.js +159 -0
  67. package/dist/ai/sandbox-plane.js.map +1 -0
  68. package/dist/ai/schema.d.ts +105 -0
  69. package/dist/ai/schema.d.ts.map +1 -0
  70. package/dist/ai/schema.js +174 -0
  71. package/dist/ai/schema.js.map +1 -0
  72. package/dist/ai/scripting.d.ts +53 -0
  73. package/dist/ai/scripting.d.ts.map +1 -0
  74. package/dist/ai/scripting.js +73 -0
  75. package/dist/ai/scripting.js.map +1 -0
  76. package/dist/ai/target.d.ts +20 -0
  77. package/dist/ai/target.d.ts.map +1 -0
  78. package/dist/ai/target.js +29 -0
  79. package/dist/ai/target.js.map +1 -0
  80. package/dist/ai/types.d.ts +400 -0
  81. package/dist/ai/types.d.ts.map +1 -0
  82. package/dist/ai/types.js +10 -0
  83. package/dist/ai/types.js.map +1 -0
  84. package/dist/app/diagnostics.d.ts +29 -0
  85. package/dist/app/diagnostics.d.ts.map +1 -0
  86. package/dist/app/diagnostics.js +88 -0
  87. package/dist/app/diagnostics.js.map +1 -0
  88. package/dist/app/index.d.ts +7 -0
  89. package/dist/app/index.d.ts.map +1 -0
  90. package/dist/app/index.js +5 -0
  91. package/dist/app/index.js.map +1 -0
  92. package/dist/app/internal.d.ts +11 -0
  93. package/dist/app/internal.d.ts.map +1 -0
  94. package/dist/app/internal.js +18 -0
  95. package/dist/app/internal.js.map +1 -0
  96. package/dist/app/options.d.ts +3 -0
  97. package/dist/app/options.d.ts.map +1 -0
  98. package/dist/app/options.js +19 -0
  99. package/dist/app/options.js.map +1 -0
  100. package/dist/app/register.d.ts +4 -0
  101. package/dist/app/register.d.ts.map +1 -0
  102. package/dist/app/register.js +35 -0
  103. package/dist/app/register.js.map +1 -0
  104. package/dist/app/registry.d.ts +12 -0
  105. package/dist/app/registry.d.ts.map +1 -0
  106. package/dist/app/registry.js +147 -0
  107. package/dist/app/registry.js.map +1 -0
  108. package/dist/app/runtime.d.ts +18 -0
  109. package/dist/app/runtime.d.ts.map +1 -0
  110. package/dist/app/runtime.js +119 -0
  111. package/dist/app/runtime.js.map +1 -0
  112. package/dist/app/types.d.ts +21 -0
  113. package/dist/app/types.d.ts.map +1 -0
  114. package/dist/app/types.js +2 -0
  115. package/dist/app/types.js.map +1 -0
  116. package/dist/auth/action-code-url.d.ts +70 -0
  117. package/dist/auth/action-code-url.d.ts.map +1 -0
  118. package/dist/auth/action-code-url.js +124 -0
  119. package/dist/auth/action-code-url.js.map +1 -0
  120. package/dist/auth/action-codes.d.ts +201 -0
  121. package/dist/auth/action-codes.d.ts.map +1 -0
  122. package/dist/auth/action-codes.js +355 -0
  123. package/dist/auth/action-codes.js.map +1 -0
  124. package/dist/auth/auth-errors.d.ts +21 -0
  125. package/dist/auth/auth-errors.d.ts.map +1 -0
  126. package/dist/auth/auth-errors.js +23 -0
  127. package/dist/auth/auth-errors.js.map +1 -0
  128. package/dist/auth/config-tokens.d.ts +90 -0
  129. package/dist/auth/config-tokens.d.ts.map +1 -0
  130. package/dist/auth/config-tokens.js +86 -0
  131. package/dist/auth/config-tokens.js.map +1 -0
  132. package/dist/auth/credentials.d.ts +140 -0
  133. package/dist/auth/credentials.d.ts.map +1 -0
  134. package/dist/auth/credentials.js +194 -0
  135. package/dist/auth/credentials.js.map +1 -0
  136. package/dist/auth/email-link.d.ts +91 -0
  137. package/dist/auth/email-link.d.ts.map +1 -0
  138. package/dist/auth/email-link.js +172 -0
  139. package/dist/auth/email-link.js.map +1 -0
  140. package/dist/auth/enums.d.ts +210 -0
  141. package/dist/auth/enums.d.ts.map +1 -0
  142. package/dist/auth/enums.js +206 -0
  143. package/dist/auth/enums.js.map +1 -0
  144. package/dist/auth/index.d.ts +3 -0
  145. package/dist/auth/index.d.ts.map +1 -0
  146. package/dist/auth/index.js +3 -0
  147. package/dist/auth/index.js.map +1 -0
  148. package/dist/auth/instances.d.ts +14 -0
  149. package/dist/auth/instances.d.ts.map +1 -0
  150. package/dist/auth/instances.js +95 -0
  151. package/dist/auth/instances.js.map +1 -0
  152. package/dist/auth/linking.d.ts +93 -0
  153. package/dist/auth/linking.d.ts.map +1 -0
  154. package/dist/auth/linking.js +189 -0
  155. package/dist/auth/linking.js.map +1 -0
  156. package/dist/auth/modular.d.ts +22 -0
  157. package/dist/auth/modular.d.ts.map +1 -0
  158. package/dist/auth/modular.js +18 -0
  159. package/dist/auth/modular.js.map +1 -0
  160. package/dist/auth/password-policy.d.ts +60 -0
  161. package/dist/auth/password-policy.d.ts.map +1 -0
  162. package/dist/auth/password-policy.js +68 -0
  163. package/dist/auth/password-policy.js.map +1 -0
  164. package/dist/auth/providers.d.ts +153 -0
  165. package/dist/auth/providers.d.ts.map +1 -0
  166. package/dist/auth/providers.js +207 -0
  167. package/dist/auth/providers.js.map +1 -0
  168. package/dist/auth/reauth.d.ts +73 -0
  169. package/dist/auth/reauth.d.ts.map +1 -0
  170. package/dist/auth/reauth.js +148 -0
  171. package/dist/auth/reauth.js.map +1 -0
  172. package/dist/auth/sandbox/driver.d.ts +51 -0
  173. package/dist/auth/sandbox/driver.d.ts.map +1 -0
  174. package/dist/auth/sandbox/driver.js +88 -0
  175. package/dist/auth/sandbox/driver.js.map +1 -0
  176. package/dist/auth/sandbox/persistence.d.ts +7 -0
  177. package/dist/auth/sandbox/persistence.d.ts.map +1 -0
  178. package/dist/auth/sandbox/persistence.js +128 -0
  179. package/dist/auth/sandbox/persistence.js.map +1 -0
  180. package/dist/auth/sandbox/project-store.d.ts +15 -0
  181. package/dist/auth/sandbox/project-store.d.ts.map +1 -0
  182. package/dist/auth/sandbox/project-store.js +17 -0
  183. package/dist/auth/sandbox/project-store.js.map +1 -0
  184. package/dist/auth/sandbox-auth-flow.d.ts +173 -0
  185. package/dist/auth/sandbox-auth-flow.d.ts.map +1 -0
  186. package/dist/auth/sandbox-auth-flow.js +165 -0
  187. package/dist/auth/sandbox-auth-flow.js.map +1 -0
  188. package/dist/auth/sandbox-backend-types.d.ts +197 -0
  189. package/dist/auth/sandbox-backend-types.d.ts.map +1 -0
  190. package/dist/auth/sandbox-backend-types.js +18 -0
  191. package/dist/auth/sandbox-backend-types.js.map +1 -0
  192. package/dist/auth/sandbox-backend.d.ts +811 -0
  193. package/dist/auth/sandbox-backend.d.ts.map +1 -0
  194. package/dist/auth/sandbox-backend.js +2007 -0
  195. package/dist/auth/sandbox-backend.js.map +1 -0
  196. package/dist/auth/sandbox-credential-validators.d.ts +30 -0
  197. package/dist/auth/sandbox-credential-validators.d.ts.map +1 -0
  198. package/dist/auth/sandbox-credential-validators.js +47 -0
  199. package/dist/auth/sandbox-credential-validators.js.map +1 -0
  200. package/dist/auth/sandbox-token.d.ts +24 -0
  201. package/dist/auth/sandbox-token.d.ts.map +1 -0
  202. package/dist/auth/sandbox-token.js +32 -0
  203. package/dist/auth/sandbox-token.js.map +1 -0
  204. package/dist/auth/sign-in.d.ts +14 -0
  205. package/dist/auth/sign-in.d.ts.map +1 -0
  206. package/dist/auth/sign-in.js +140 -0
  207. package/dist/auth/sign-in.js.map +1 -0
  208. package/dist/auth/target.d.ts +29 -0
  209. package/dist/auth/target.d.ts.map +1 -0
  210. package/dist/auth/target.js +23 -0
  211. package/dist/auth/target.js.map +1 -0
  212. package/dist/auth/tokens.d.ts +54 -0
  213. package/dist/auth/tokens.d.ts.map +1 -0
  214. package/dist/auth/tokens.js +142 -0
  215. package/dist/auth/tokens.js.map +1 -0
  216. package/dist/auth/types.d.ts +283 -0
  217. package/dist/auth/types.d.ts.map +1 -0
  218. package/dist/auth/types.js +24 -0
  219. package/dist/auth/types.js.map +1 -0
  220. package/dist/auth/user-lifecycle.d.ts +17 -0
  221. package/dist/auth/user-lifecycle.d.ts.map +1 -0
  222. package/dist/auth/user-lifecycle.js +60 -0
  223. package/dist/auth/user-lifecycle.js.map +1 -0
  224. package/dist/database/index.d.ts +9 -0
  225. package/dist/database/index.d.ts.map +1 -0
  226. package/dist/database/index.js +9 -0
  227. package/dist/database/index.js.map +1 -0
  228. package/dist/database/listener-registry.d.ts +16 -0
  229. package/dist/database/listener-registry.d.ts.map +1 -0
  230. package/dist/database/listener-registry.js +68 -0
  231. package/dist/database/listener-registry.js.map +1 -0
  232. package/dist/database/modular.d.ts +632 -0
  233. package/dist/database/modular.d.ts.map +1 -0
  234. package/dist/database/modular.js +1080 -0
  235. package/dist/database/modular.js.map +1 -0
  236. package/dist/database/replay.d.ts +32 -0
  237. package/dist/database/replay.d.ts.map +1 -0
  238. package/dist/database/replay.js +124 -0
  239. package/dist/database/replay.js.map +1 -0
  240. package/dist/database/sandbox/backend-for.d.ts +10 -0
  241. package/dist/database/sandbox/backend-for.d.ts.map +1 -0
  242. package/dist/database/sandbox/backend-for.js +24 -0
  243. package/dist/database/sandbox/backend-for.js.map +1 -0
  244. package/dist/database/sandbox/backend.d.ts +434 -0
  245. package/dist/database/sandbox/backend.d.ts.map +1 -0
  246. package/dist/database/sandbox/backend.js +1533 -0
  247. package/dist/database/sandbox/backend.js.map +1 -0
  248. package/dist/database/sandbox/data-tree.d.ts +123 -0
  249. package/dist/database/sandbox/data-tree.d.ts.map +1 -0
  250. package/dist/database/sandbox/data-tree.js +310 -0
  251. package/dist/database/sandbox/data-tree.js.map +1 -0
  252. package/dist/database/sandbox/normalize.d.ts +77 -0
  253. package/dist/database/sandbox/normalize.d.ts.map +1 -0
  254. package/dist/database/sandbox/normalize.js +165 -0
  255. package/dist/database/sandbox/normalize.js.map +1 -0
  256. package/dist/database/sandbox/push-id.d.ts +32 -0
  257. package/dist/database/sandbox/push-id.d.ts.map +1 -0
  258. package/dist/database/sandbox/push-id.js +82 -0
  259. package/dist/database/sandbox/push-id.js.map +1 -0
  260. package/dist/database/sandbox/query.d.ts +175 -0
  261. package/dist/database/sandbox/query.d.ts.map +1 -0
  262. package/dist/database/sandbox/query.js +269 -0
  263. package/dist/database/sandbox/query.js.map +1 -0
  264. package/dist/database/sandbox/rules-eval.d.ts +87 -0
  265. package/dist/database/sandbox/rules-eval.d.ts.map +1 -0
  266. package/dist/database/sandbox/rules-eval.js +131 -0
  267. package/dist/database/sandbox/rules-eval.js.map +1 -0
  268. package/dist/database/sandbox/sentinels.d.ts +71 -0
  269. package/dist/database/sandbox/sentinels.d.ts.map +1 -0
  270. package/dist/database/sandbox/sentinels.js +92 -0
  271. package/dist/database/sandbox/sentinels.js.map +1 -0
  272. package/dist/database/sandbox-controls.d.ts +15 -0
  273. package/dist/database/sandbox-controls.d.ts.map +1 -0
  274. package/dist/database/sandbox-controls.js +18 -0
  275. package/dist/database/sandbox-controls.js.map +1 -0
  276. package/dist/firestore/aggregates.d.ts +50 -0
  277. package/dist/firestore/aggregates.d.ts.map +1 -0
  278. package/dist/firestore/aggregates.js +40 -0
  279. package/dist/firestore/aggregates.js.map +1 -0
  280. package/dist/firestore/equality.d.ts +5 -0
  281. package/dist/firestore/equality.d.ts.map +1 -0
  282. package/dist/firestore/equality.js +20 -0
  283. package/dist/firestore/equality.js.map +1 -0
  284. package/dist/firestore/field-values.d.ts +61 -0
  285. package/dist/firestore/field-values.d.ts.map +1 -0
  286. package/dist/firestore/field-values.js +170 -0
  287. package/dist/firestore/field-values.js.map +1 -0
  288. package/dist/firestore/index.d.ts +54 -0
  289. package/dist/firestore/index.d.ts.map +1 -0
  290. package/dist/firestore/index.js +54 -0
  291. package/dist/firestore/index.js.map +1 -0
  292. package/dist/firestore/instances.d.ts +123 -0
  293. package/dist/firestore/instances.d.ts.map +1 -0
  294. package/dist/firestore/instances.js +177 -0
  295. package/dist/firestore/instances.js.map +1 -0
  296. package/dist/firestore/internal/index.d.ts +5 -0
  297. package/dist/firestore/internal/index.d.ts.map +1 -0
  298. package/dist/firestore/internal/index.js +4 -0
  299. package/dist/firestore/internal/index.js.map +1 -0
  300. package/dist/firestore/internal/listener-routing.d.ts +4 -0
  301. package/dist/firestore/internal/listener-routing.d.ts.map +1 -0
  302. package/dist/firestore/internal/listener-routing.js +4 -0
  303. package/dist/firestore/internal/listener-routing.js.map +1 -0
  304. package/dist/firestore/listeners.d.ts +12 -0
  305. package/dist/firestore/listeners.d.ts.map +1 -0
  306. package/dist/firestore/listeners.js +200 -0
  307. package/dist/firestore/listeners.js.map +1 -0
  308. package/dist/firestore/persistence.d.ts +227 -0
  309. package/dist/firestore/persistence.d.ts.map +1 -0
  310. package/dist/firestore/persistence.js +245 -0
  311. package/dist/firestore/persistence.js.map +1 -0
  312. package/dist/firestore/query-constraints.d.ts +72 -0
  313. package/dist/firestore/query-constraints.d.ts.map +1 -0
  314. package/dist/firestore/query-constraints.js +168 -0
  315. package/dist/firestore/query-constraints.js.map +1 -0
  316. package/dist/firestore/reads.d.ts +12 -0
  317. package/dist/firestore/reads.d.ts.map +1 -0
  318. package/dist/firestore/reads.js +32 -0
  319. package/dist/firestore/reads.js.map +1 -0
  320. package/dist/firestore/refs.d.ts +27 -0
  321. package/dist/firestore/refs.d.ts.map +1 -0
  322. package/dist/firestore/refs.js +74 -0
  323. package/dist/firestore/refs.js.map +1 -0
  324. package/dist/firestore/sandbox/activity-bounded.d.ts +10 -0
  325. package/dist/firestore/sandbox/activity-bounded.d.ts.map +1 -0
  326. package/dist/firestore/sandbox/activity-bounded.js +11 -0
  327. package/dist/firestore/sandbox/activity-bounded.js.map +1 -0
  328. package/dist/firestore/sandbox/activity-contract.d.ts +17 -0
  329. package/dist/firestore/sandbox/activity-contract.d.ts.map +1 -0
  330. package/dist/firestore/sandbox/activity-contract.js +51 -0
  331. package/dist/firestore/sandbox/activity-contract.js.map +1 -0
  332. package/dist/firestore/sandbox/activity-listener-retention.d.ts +5 -0
  333. package/dist/firestore/sandbox/activity-listener-retention.d.ts.map +1 -0
  334. package/dist/firestore/sandbox/activity-listener-retention.js +16 -0
  335. package/dist/firestore/sandbox/activity-listener-retention.js.map +1 -0
  336. package/dist/firestore/sandbox/activity-monitor.d.ts +60 -0
  337. package/dist/firestore/sandbox/activity-monitor.d.ts.map +1 -0
  338. package/dist/firestore/sandbox/activity-monitor.js +387 -0
  339. package/dist/firestore/sandbox/activity-monitor.js.map +1 -0
  340. package/dist/firestore/sandbox/activity-public-identity.d.ts +11 -0
  341. package/dist/firestore/sandbox/activity-public-identity.d.ts.map +1 -0
  342. package/dist/firestore/sandbox/activity-public-identity.js +78 -0
  343. package/dist/firestore/sandbox/activity-public-identity.js.map +1 -0
  344. package/dist/firestore/sandbox/activity-query-value.d.ts +9 -0
  345. package/dist/firestore/sandbox/activity-query-value.d.ts.map +1 -0
  346. package/dist/firestore/sandbox/activity-query-value.js +60 -0
  347. package/dist/firestore/sandbox/activity-query-value.js.map +1 -0
  348. package/dist/firestore/sandbox/activity-structural-identity.d.ts +3 -0
  349. package/dist/firestore/sandbox/activity-structural-identity.d.ts.map +1 -0
  350. package/dist/firestore/sandbox/activity-structural-identity.js +11 -0
  351. package/dist/firestore/sandbox/activity-structural-identity.js.map +1 -0
  352. package/dist/firestore/sandbox/activity-value-registry.d.ts +14 -0
  353. package/dist/firestore/sandbox/activity-value-registry.d.ts.map +1 -0
  354. package/dist/firestore/sandbox/activity-value-registry.js +131 -0
  355. package/dist/firestore/sandbox/activity-value-registry.js.map +1 -0
  356. package/dist/firestore/sandbox/admin-compat/batch.d.ts +34 -0
  357. package/dist/firestore/sandbox/admin-compat/batch.d.ts.map +1 -0
  358. package/dist/firestore/sandbox/admin-compat/batch.js +73 -0
  359. package/dist/firestore/sandbox/admin-compat/batch.js.map +1 -0
  360. package/dist/firestore/sandbox/admin-compat/doc-ref.d.ts +38 -0
  361. package/dist/firestore/sandbox/admin-compat/doc-ref.d.ts.map +1 -0
  362. package/dist/firestore/sandbox/admin-compat/doc-ref.js +156 -0
  363. package/dist/firestore/sandbox/admin-compat/doc-ref.js.map +1 -0
  364. package/dist/firestore/sandbox/admin-compat/firestore.d.ts +47 -0
  365. package/dist/firestore/sandbox/admin-compat/firestore.d.ts.map +1 -0
  366. package/dist/firestore/sandbox/admin-compat/firestore.js +117 -0
  367. package/dist/firestore/sandbox/admin-compat/firestore.js.map +1 -0
  368. package/dist/firestore/sandbox/admin-compat/index.d.ts +49 -0
  369. package/dist/firestore/sandbox/admin-compat/index.d.ts.map +1 -0
  370. package/dist/firestore/sandbox/admin-compat/index.js +27 -0
  371. package/dist/firestore/sandbox/admin-compat/index.js.map +1 -0
  372. package/dist/firestore/sandbox/admin-compat/paths.d.ts +37 -0
  373. package/dist/firestore/sandbox/admin-compat/paths.d.ts.map +1 -0
  374. package/dist/firestore/sandbox/admin-compat/paths.js +49 -0
  375. package/dist/firestore/sandbox/admin-compat/paths.js.map +1 -0
  376. package/dist/firestore/sandbox/admin-compat/query.d.ts +269 -0
  377. package/dist/firestore/sandbox/admin-compat/query.d.ts.map +1 -0
  378. package/dist/firestore/sandbox/admin-compat/query.js +783 -0
  379. package/dist/firestore/sandbox/admin-compat/query.js.map +1 -0
  380. package/dist/firestore/sandbox/admin-compat/read-translation.d.ts +8 -0
  381. package/dist/firestore/sandbox/admin-compat/read-translation.d.ts.map +1 -0
  382. package/dist/firestore/sandbox/admin-compat/read-translation.js +59 -0
  383. package/dist/firestore/sandbox/admin-compat/read-translation.js.map +1 -0
  384. package/dist/firestore/sandbox/admin-compat/snapshots.d.ts +39 -0
  385. package/dist/firestore/sandbox/admin-compat/snapshots.d.ts.map +1 -0
  386. package/dist/firestore/sandbox/admin-compat/snapshots.js +50 -0
  387. package/dist/firestore/sandbox/admin-compat/snapshots.js.map +1 -0
  388. package/dist/firestore/sandbox/admin-compat/transaction.d.ts +35 -0
  389. package/dist/firestore/sandbox/admin-compat/transaction.d.ts.map +1 -0
  390. package/dist/firestore/sandbox/admin-compat/transaction.js +88 -0
  391. package/dist/firestore/sandbox/admin-compat/transaction.js.map +1 -0
  392. package/dist/firestore/sandbox/admin-compat/types.d.ts +297 -0
  393. package/dist/firestore/sandbox/admin-compat/types.d.ts.map +1 -0
  394. package/dist/firestore/sandbox/admin-compat/types.js +129 -0
  395. package/dist/firestore/sandbox/admin-compat/types.js.map +1 -0
  396. package/dist/firestore/sandbox/admin-compat/value-order.d.ts +49 -0
  397. package/dist/firestore/sandbox/admin-compat/value-order.d.ts.map +1 -0
  398. package/dist/firestore/sandbox/admin-compat/value-order.js +172 -0
  399. package/dist/firestore/sandbox/admin-compat/value-order.js.map +1 -0
  400. package/dist/firestore/sandbox/auto-id.d.ts +26 -0
  401. package/dist/firestore/sandbox/auto-id.d.ts.map +1 -0
  402. package/dist/firestore/sandbox/auto-id.js +36 -0
  403. package/dist/firestore/sandbox/auto-id.js.map +1 -0
  404. package/dist/firestore/sandbox/converters/bytes-geopoint.d.ts +48 -0
  405. package/dist/firestore/sandbox/converters/bytes-geopoint.d.ts.map +1 -0
  406. package/dist/firestore/sandbox/converters/bytes-geopoint.js +85 -0
  407. package/dist/firestore/sandbox/converters/bytes-geopoint.js.map +1 -0
  408. package/dist/firestore/sandbox/converters/fieldvalue.d.ts +69 -0
  409. package/dist/firestore/sandbox/converters/fieldvalue.d.ts.map +1 -0
  410. package/dist/firestore/sandbox/converters/fieldvalue.js +166 -0
  411. package/dist/firestore/sandbox/converters/fieldvalue.js.map +1 -0
  412. package/dist/firestore/sandbox/converters/reference.d.ts +31 -0
  413. package/dist/firestore/sandbox/converters/reference.d.ts.map +1 -0
  414. package/dist/firestore/sandbox/converters/reference.js +51 -0
  415. package/dist/firestore/sandbox/converters/reference.js.map +1 -0
  416. package/dist/firestore/sandbox/converters/timestamp.d.ts +32 -0
  417. package/dist/firestore/sandbox/converters/timestamp.d.ts.map +1 -0
  418. package/dist/firestore/sandbox/converters/timestamp.js +63 -0
  419. package/dist/firestore/sandbox/converters/timestamp.js.map +1 -0
  420. package/dist/firestore/sandbox/converters/user-timestamp.d.ts +46 -0
  421. package/dist/firestore/sandbox/converters/user-timestamp.d.ts.map +1 -0
  422. package/dist/firestore/sandbox/converters/user-timestamp.js +65 -0
  423. package/dist/firestore/sandbox/converters/user-timestamp.js.map +1 -0
  424. package/dist/firestore/sandbox/converters/vector.d.ts +24 -0
  425. package/dist/firestore/sandbox/converters/vector.d.ts.map +1 -0
  426. package/dist/firestore/sandbox/converters/vector.js +53 -0
  427. package/dist/firestore/sandbox/converters/vector.js.map +1 -0
  428. package/dist/firestore/sandbox/errors.d.ts +114 -0
  429. package/dist/firestore/sandbox/errors.d.ts.map +1 -0
  430. package/dist/firestore/sandbox/errors.js +58 -0
  431. package/dist/firestore/sandbox/errors.js.map +1 -0
  432. package/dist/firestore/sandbox/event-bus.d.ts +70 -0
  433. package/dist/firestore/sandbox/event-bus.d.ts.map +1 -0
  434. package/dist/firestore/sandbox/event-bus.js +74 -0
  435. package/dist/firestore/sandbox/event-bus.js.map +1 -0
  436. package/dist/firestore/sandbox/event-log.d.ts +99 -0
  437. package/dist/firestore/sandbox/event-log.d.ts.map +1 -0
  438. package/dist/firestore/sandbox/event-log.js +67 -0
  439. package/dist/firestore/sandbox/event-log.js.map +1 -0
  440. package/dist/firestore/sandbox/field-merge.d.ts +64 -0
  441. package/dist/firestore/sandbox/field-merge.d.ts.map +1 -0
  442. package/dist/firestore/sandbox/field-merge.js +221 -0
  443. package/dist/firestore/sandbox/field-merge.js.map +1 -0
  444. package/dist/firestore/sandbox/history-controls.d.ts +43 -0
  445. package/dist/firestore/sandbox/history-controls.d.ts.map +1 -0
  446. package/dist/firestore/sandbox/history-controls.js +68 -0
  447. package/dist/firestore/sandbox/history-controls.js.map +1 -0
  448. package/dist/firestore/sandbox/list-query-proof.d.ts +82 -0
  449. package/dist/firestore/sandbox/list-query-proof.d.ts.map +1 -0
  450. package/dist/firestore/sandbox/list-query-proof.js +144 -0
  451. package/dist/firestore/sandbox/list-query-proof.js.map +1 -0
  452. package/dist/firestore/sandbox/listener-delivery.d.ts +25 -0
  453. package/dist/firestore/sandbox/listener-delivery.d.ts.map +1 -0
  454. package/dist/firestore/sandbox/listener-delivery.js +35 -0
  455. package/dist/firestore/sandbox/listener-delivery.js.map +1 -0
  456. package/dist/firestore/sandbox/listener-dispatch.d.ts +278 -0
  457. package/dist/firestore/sandbox/listener-dispatch.d.ts.map +1 -0
  458. package/dist/firestore/sandbox/listener-dispatch.js +771 -0
  459. package/dist/firestore/sandbox/listener-dispatch.js.map +1 -0
  460. package/dist/firestore/sandbox/local-environment.d.ts +419 -0
  461. package/dist/firestore/sandbox/local-environment.d.ts.map +1 -0
  462. package/dist/firestore/sandbox/local-environment.js +1686 -0
  463. package/dist/firestore/sandbox/local-environment.js.map +1 -0
  464. package/dist/firestore/sandbox/local-state.d.ts +196 -0
  465. package/dist/firestore/sandbox/local-state.d.ts.map +1 -0
  466. package/dist/firestore/sandbox/local-state.js +413 -0
  467. package/dist/firestore/sandbox/local-state.js.map +1 -0
  468. package/dist/firestore/sandbox/overlay-backing.d.ts +44 -0
  469. package/dist/firestore/sandbox/overlay-backing.d.ts.map +1 -0
  470. package/dist/firestore/sandbox/overlay-backing.js +82 -0
  471. package/dist/firestore/sandbox/overlay-backing.js.map +1 -0
  472. package/dist/firestore/sandbox/reads.d.ts +9 -0
  473. package/dist/firestore/sandbox/reads.d.ts.map +1 -0
  474. package/dist/firestore/sandbox/reads.js +11 -0
  475. package/dist/firestore/sandbox/reads.js.map +1 -0
  476. package/dist/firestore/sandbox/request-events.d.ts +49 -0
  477. package/dist/firestore/sandbox/request-events.d.ts.map +1 -0
  478. package/dist/firestore/sandbox/request-events.js +83 -0
  479. package/dist/firestore/sandbox/request-events.js.map +1 -0
  480. package/dist/firestore/sandbox/rules-evaluation.d.ts +55 -0
  481. package/dist/firestore/sandbox/rules-evaluation.d.ts.map +1 -0
  482. package/dist/firestore/sandbox/rules-evaluation.js +82 -0
  483. package/dist/firestore/sandbox/rules-evaluation.js.map +1 -0
  484. package/dist/firestore/sandbox/rules-read-engine.d.ts +163 -0
  485. package/dist/firestore/sandbox/rules-read-engine.d.ts.map +1 -0
  486. package/dist/firestore/sandbox/rules-read-engine.js +425 -0
  487. package/dist/firestore/sandbox/rules-read-engine.js.map +1 -0
  488. package/dist/firestore/sandbox/rules-state.d.ts +42 -0
  489. package/dist/firestore/sandbox/rules-state.d.ts.map +1 -0
  490. package/dist/firestore/sandbox/rules-state.js +56 -0
  491. package/dist/firestore/sandbox/rules-state.js.map +1 -0
  492. package/dist/firestore/sandbox/sentinel-capture.d.ts +30 -0
  493. package/dist/firestore/sandbox/sentinel-capture.d.ts.map +1 -0
  494. package/dist/firestore/sandbox/sentinel-capture.js +61 -0
  495. package/dist/firestore/sandbox/sentinel-capture.js.map +1 -0
  496. package/dist/firestore/sandbox/snapshot-listeners.d.ts +293 -0
  497. package/dist/firestore/sandbox/snapshot-listeners.d.ts.map +1 -0
  498. package/dist/firestore/sandbox/snapshot-listeners.js +194 -0
  499. package/dist/firestore/sandbox/snapshot-listeners.js.map +1 -0
  500. package/dist/firestore/sandbox/topk.d.ts +12 -0
  501. package/dist/firestore/sandbox/topk.d.ts.map +1 -0
  502. package/dist/firestore/sandbox/topk.js +42 -0
  503. package/dist/firestore/sandbox/topk.js.map +1 -0
  504. package/dist/firestore/sandbox/transaction-merge.d.ts +55 -0
  505. package/dist/firestore/sandbox/transaction-merge.d.ts.map +1 -0
  506. package/dist/firestore/sandbox/transaction-merge.js +107 -0
  507. package/dist/firestore/sandbox/transaction-merge.js.map +1 -0
  508. package/dist/firestore/sandbox/transaction-types.d.ts +155 -0
  509. package/dist/firestore/sandbox/transaction-types.d.ts.map +1 -0
  510. package/dist/firestore/sandbox/transaction-types.js +10 -0
  511. package/dist/firestore/sandbox/transaction-types.js.map +1 -0
  512. package/dist/firestore/sandbox/transaction.d.ts +79 -0
  513. package/dist/firestore/sandbox/transaction.d.ts.map +1 -0
  514. package/dist/firestore/sandbox/transaction.js +95 -0
  515. package/dist/firestore/sandbox/transaction.js.map +1 -0
  516. package/dist/firestore/sandbox/trigger-scope.d.ts +39 -0
  517. package/dist/firestore/sandbox/trigger-scope.d.ts.map +1 -0
  518. package/dist/firestore/sandbox/trigger-scope.js +45 -0
  519. package/dist/firestore/sandbox/trigger-scope.js.map +1 -0
  520. package/dist/firestore/sandbox/value-equality.d.ts +2 -0
  521. package/dist/firestore/sandbox/value-equality.d.ts.map +1 -0
  522. package/dist/firestore/sandbox/value-equality.js +35 -0
  523. package/dist/firestore/sandbox/value-equality.js.map +1 -0
  524. package/dist/firestore/sandbox/value-resolver.d.ts +172 -0
  525. package/dist/firestore/sandbox/value-resolver.d.ts.map +1 -0
  526. package/dist/firestore/sandbox/value-resolver.js +221 -0
  527. package/dist/firestore/sandbox/value-resolver.js.map +1 -0
  528. package/dist/firestore/sandbox/wire-encoder.d.ts +14 -0
  529. package/dist/firestore/sandbox/wire-encoder.d.ts.map +1 -0
  530. package/dist/firestore/sandbox/wire-encoder.js +130 -0
  531. package/dist/firestore/sandbox/wire-encoder.js.map +1 -0
  532. package/dist/firestore/sandbox/writes.d.ts +93 -0
  533. package/dist/firestore/sandbox/writes.d.ts.map +1 -0
  534. package/dist/firestore/sandbox/writes.js +2 -0
  535. package/dist/firestore/sandbox/writes.js.map +1 -0
  536. package/dist/firestore/sandbox-controls.d.ts +60 -0
  537. package/dist/firestore/sandbox-controls.d.ts.map +1 -0
  538. package/dist/firestore/sandbox-controls.js +77 -0
  539. package/dist/firestore/sandbox-controls.js.map +1 -0
  540. package/dist/firestore/snapshots.d.ts +71 -0
  541. package/dist/firestore/snapshots.d.ts.map +1 -0
  542. package/dist/firestore/snapshots.js +160 -0
  543. package/dist/firestore/snapshots.js.map +1 -0
  544. package/dist/firestore/state.d.ts +168 -0
  545. package/dist/firestore/state.d.ts.map +1 -0
  546. package/dist/firestore/state.js +260 -0
  547. package/dist/firestore/state.js.map +1 -0
  548. package/dist/firestore/tools.d.ts +71 -0
  549. package/dist/firestore/tools.d.ts.map +1 -0
  550. package/dist/firestore/tools.js +320 -0
  551. package/dist/firestore/tools.js.map +1 -0
  552. package/dist/firestore/transactions.d.ts +4 -0
  553. package/dist/firestore/transactions.d.ts.map +1 -0
  554. package/dist/firestore/transactions.js +14 -0
  555. package/dist/firestore/transactions.js.map +1 -0
  556. package/dist/firestore/types.d.ts +82 -0
  557. package/dist/firestore/types.d.ts.map +1 -0
  558. package/dist/firestore/types.js +15 -0
  559. package/dist/firestore/types.js.map +1 -0
  560. package/dist/firestore/writes.d.ts +43 -0
  561. package/dist/firestore/writes.d.ts.map +1 -0
  562. package/dist/firestore/writes.js +40 -0
  563. package/dist/firestore/writes.js.map +1 -0
  564. package/dist/firestore-values/index.d.ts +63 -0
  565. package/dist/firestore-values/index.d.ts.map +1 -0
  566. package/dist/firestore-values/index.js +167 -0
  567. package/dist/firestore-values/index.js.map +1 -0
  568. package/dist/messaging/broker/broker.d.ts +171 -0
  569. package/dist/messaging/broker/broker.d.ts.map +1 -0
  570. package/dist/messaging/broker/broker.js +400 -0
  571. package/dist/messaging/broker/broker.js.map +1 -0
  572. package/dist/messaging/broker/envelopes.d.ts +96 -0
  573. package/dist/messaging/broker/envelopes.d.ts.map +1 -0
  574. package/dist/messaging/broker/envelopes.js +132 -0
  575. package/dist/messaging/broker/envelopes.js.map +1 -0
  576. package/dist/messaging/broker/index.d.ts +27 -0
  577. package/dist/messaging/broker/index.d.ts.map +1 -0
  578. package/dist/messaging/broker/index.js +21 -0
  579. package/dist/messaging/broker/index.js.map +1 -0
  580. package/dist/messaging/broker/tokens.d.ts +22 -0
  581. package/dist/messaging/broker/tokens.d.ts.map +1 -0
  582. package/dist/messaging/broker/tokens.js +37 -0
  583. package/dist/messaging/broker/tokens.js.map +1 -0
  584. package/dist/messaging/broker/types.d.ts +117 -0
  585. package/dist/messaging/broker/types.d.ts.map +1 -0
  586. package/dist/messaging/broker/types.js +12 -0
  587. package/dist/messaging/broker/types.js.map +1 -0
  588. package/dist/messaging/broker/validate.d.ts +58 -0
  589. package/dist/messaging/broker/validate.d.ts.map +1 -0
  590. package/dist/messaging/broker/validate.js +196 -0
  591. package/dist/messaging/broker/validate.js.map +1 -0
  592. package/dist/messaging/client.d.ts +108 -0
  593. package/dist/messaging/client.d.ts.map +1 -0
  594. package/dist/messaging/client.js +65 -0
  595. package/dist/messaging/client.js.map +1 -0
  596. package/dist/messaging/index.d.ts +3 -0
  597. package/dist/messaging/index.d.ts.map +1 -0
  598. package/dist/messaging/index.js +3 -0
  599. package/dist/messaging/index.js.map +1 -0
  600. package/dist/messaging/instance.d.ts +79 -0
  601. package/dist/messaging/instance.d.ts.map +1 -0
  602. package/dist/messaging/instance.js +112 -0
  603. package/dist/messaging/instance.js.map +1 -0
  604. package/dist/messaging/internal.d.ts +20 -0
  605. package/dist/messaging/internal.d.ts.map +1 -0
  606. package/dist/messaging/internal.js +19 -0
  607. package/dist/messaging/internal.js.map +1 -0
  608. package/dist/messaging/sw.d.ts +50 -0
  609. package/dist/messaging/sw.d.ts.map +1 -0
  610. package/dist/messaging/sw.js +50 -0
  611. package/dist/messaging/sw.js.map +1 -0
  612. package/dist/project-scope.d.ts +5 -0
  613. package/dist/project-scope.d.ts.map +1 -0
  614. package/dist/project-scope.js +2 -0
  615. package/dist/project-scope.js.map +1 -0
  616. package/dist/rules/api/assert.d.ts +39 -0
  617. package/dist/rules/api/assert.d.ts.map +1 -0
  618. package/dist/rules/api/assert.js +93 -0
  619. package/dist/rules/api/assert.js.map +1 -0
  620. package/dist/rules/api/case-types.d.ts +141 -0
  621. package/dist/rules/api/case-types.d.ts.map +1 -0
  622. package/dist/rules/api/case-types.js +13 -0
  623. package/dist/rules/api/case-types.js.map +1 -0
  624. package/dist/rules/api/errors.d.ts +38 -0
  625. package/dist/rules/api/errors.d.ts.map +1 -0
  626. package/dist/rules/api/errors.js +47 -0
  627. package/dist/rules/api/errors.js.map +1 -0
  628. package/dist/rules/api/firestore.d.ts +34 -0
  629. package/dist/rules/api/firestore.d.ts.map +1 -0
  630. package/dist/rules/api/firestore.js +137 -0
  631. package/dist/rules/api/firestore.js.map +1 -0
  632. package/dist/rules/api/issue.d.ts +50 -0
  633. package/dist/rules/api/issue.d.ts.map +1 -0
  634. package/dist/rules/api/issue.js +66 -0
  635. package/dist/rules/api/issue.js.map +1 -0
  636. package/dist/rules/api/lint.d.ts +16 -0
  637. package/dist/rules/api/lint.d.ts.map +1 -0
  638. package/dist/rules/api/lint.js +60 -0
  639. package/dist/rules/api/lint.js.map +1 -0
  640. package/dist/rules/api/rtdb.d.ts +33 -0
  641. package/dist/rules/api/rtdb.d.ts.map +1 -0
  642. package/dist/rules/api/rtdb.js +166 -0
  643. package/dist/rules/api/rtdb.js.map +1 -0
  644. package/dist/rules/api/values.d.ts +51 -0
  645. package/dist/rules/api/values.d.ts.map +1 -0
  646. package/dist/rules/api/values.js +66 -0
  647. package/dist/rules/api/values.js.map +1 -0
  648. package/dist/rules/generators/assembler.d.ts +19 -0
  649. package/dist/rules/generators/assembler.d.ts.map +1 -0
  650. package/dist/rules/generators/assembler.js +292 -0
  651. package/dist/rules/generators/assembler.js.map +1 -0
  652. package/dist/rules/generators/expressions.d.ts +52 -0
  653. package/dist/rules/generators/expressions.d.ts.map +1 -0
  654. package/dist/rules/generators/expressions.js +117 -0
  655. package/dist/rules/generators/expressions.js.map +1 -0
  656. package/dist/rules/generators/grid.d.ts +22 -0
  657. package/dist/rules/generators/grid.d.ts.map +1 -0
  658. package/dist/rules/generators/grid.js +52 -0
  659. package/dist/rules/generators/grid.js.map +1 -0
  660. package/dist/rules/grammar/FirestoreAST.d.ts +137 -0
  661. package/dist/rules/grammar/FirestoreAST.d.ts.map +1 -0
  662. package/dist/rules/grammar/FirestoreAST.js +3 -0
  663. package/dist/rules/grammar/FirestoreAST.js.map +1 -0
  664. package/dist/rules/grammar/FirestoreAssembler.d.ts +5 -0
  665. package/dist/rules/grammar/FirestoreAssembler.d.ts.map +1 -0
  666. package/dist/rules/grammar/FirestoreAssembler.js +158 -0
  667. package/dist/rules/grammar/FirestoreAssembler.js.map +1 -0
  668. package/dist/rules/grammar/FirestoreParser.d.ts +46 -0
  669. package/dist/rules/grammar/FirestoreParser.d.ts.map +1 -0
  670. package/dist/rules/grammar/FirestoreParser.js +423 -0
  671. package/dist/rules/grammar/FirestoreParser.js.map +1 -0
  672. package/dist/rules/grammar/FirestoreRules.ohm +236 -0
  673. package/dist/rules/grammar/FirestoreRules.ohm.generated.d.ts +2 -0
  674. package/dist/rules/grammar/FirestoreRules.ohm.generated.d.ts.map +1 -0
  675. package/dist/rules/grammar/FirestoreRules.ohm.generated.js +241 -0
  676. package/dist/rules/grammar/FirestoreRules.ohm.generated.js.map +1 -0
  677. package/dist/rules/grammar/FirestoreValidator.d.ts +10 -0
  678. package/dist/rules/grammar/FirestoreValidator.d.ts.map +1 -0
  679. package/dist/rules/grammar/FirestoreValidator.js +482 -0
  680. package/dist/rules/grammar/FirestoreValidator.js.map +1 -0
  681. package/dist/rules/index.d.ts +41 -0
  682. package/dist/rules/index.d.ts.map +1 -0
  683. package/dist/rules/index.js +40 -0
  684. package/dist/rules/index.js.map +1 -0
  685. package/dist/rules/indexes/extract/annotation-collect.d.ts +42 -0
  686. package/dist/rules/indexes/extract/annotation-collect.d.ts.map +1 -0
  687. package/dist/rules/indexes/extract/annotation-collect.js +69 -0
  688. package/dist/rules/indexes/extract/annotation-collect.js.map +1 -0
  689. package/dist/rules/indexes/extract/annotations.d.ts +50 -0
  690. package/dist/rules/indexes/extract/annotations.d.ts.map +1 -0
  691. package/dist/rules/indexes/extract/annotations.js +144 -0
  692. package/dist/rules/indexes/extract/annotations.js.map +1 -0
  693. package/dist/rules/indexes/extract/ast.d.ts +54 -0
  694. package/dist/rules/indexes/extract/ast.d.ts.map +1 -0
  695. package/dist/rules/indexes/extract/ast.js +119 -0
  696. package/dist/rules/indexes/extract/ast.js.map +1 -0
  697. package/dist/rules/indexes/extract/classify.d.ts +41 -0
  698. package/dist/rules/indexes/extract/classify.d.ts.map +1 -0
  699. package/dist/rules/indexes/extract/classify.js +138 -0
  700. package/dist/rules/indexes/extract/classify.js.map +1 -0
  701. package/dist/rules/indexes/extract/composite.d.ts +38 -0
  702. package/dist/rules/indexes/extract/composite.d.ts.map +1 -0
  703. package/dist/rules/indexes/extract/composite.js +85 -0
  704. package/dist/rules/indexes/extract/composite.js.map +1 -0
  705. package/dist/rules/indexes/extract/dataflow.d.ts +45 -0
  706. package/dist/rules/indexes/extract/dataflow.d.ts.map +1 -0
  707. package/dist/rules/indexes/extract/dataflow.js +200 -0
  708. package/dist/rules/indexes/extract/dataflow.js.map +1 -0
  709. package/dist/rules/indexes/extract/enumerate.d.ts +41 -0
  710. package/dist/rules/indexes/extract/enumerate.d.ts.map +1 -0
  711. package/dist/rules/indexes/extract/enumerate.js +163 -0
  712. package/dist/rules/indexes/extract/enumerate.js.map +1 -0
  713. package/dist/rules/indexes/extract/extractor.d.ts +3 -0
  714. package/dist/rules/indexes/extract/extractor.d.ts.map +1 -0
  715. package/dist/rules/indexes/extract/extractor.js +274 -0
  716. package/dist/rules/indexes/extract/extractor.js.map +1 -0
  717. package/dist/rules/indexes/extract/types.d.ts +211 -0
  718. package/dist/rules/indexes/extract/types.d.ts.map +1 -0
  719. package/dist/rules/indexes/extract/types.js +14 -0
  720. package/dist/rules/indexes/extract/types.js.map +1 -0
  721. package/dist/rules/indexes/extractHandler.d.ts +16 -0
  722. package/dist/rules/indexes/extractHandler.d.ts.map +1 -0
  723. package/dist/rules/indexes/extractHandler.js +100 -0
  724. package/dist/rules/indexes/extractHandler.js.map +1 -0
  725. package/dist/rules/indexes/extractTool.d.ts +15 -0
  726. package/dist/rules/indexes/extractTool.d.ts.map +1 -0
  727. package/dist/rules/indexes/extractTool.js +55 -0
  728. package/dist/rules/indexes/extractTool.js.map +1 -0
  729. package/dist/rules/indexes/types.d.ts +71 -0
  730. package/dist/rules/indexes/types.d.ts.map +1 -0
  731. package/dist/rules/indexes/types.js +15 -0
  732. package/dist/rules/indexes/types.js.map +1 -0
  733. package/dist/rules/inspect/handler.d.ts +6 -0
  734. package/dist/rules/inspect/handler.d.ts.map +1 -0
  735. package/dist/rules/inspect/handler.js +144 -0
  736. package/dist/rules/inspect/handler.js.map +1 -0
  737. package/dist/rules/inspect/spec.d.ts +37 -0
  738. package/dist/rules/inspect/spec.d.ts.map +1 -0
  739. package/dist/rules/inspect/spec.js +2 -0
  740. package/dist/rules/inspect/spec.js.map +1 -0
  741. package/dist/rules/inspect/tools.d.ts +21 -0
  742. package/dist/rules/inspect/tools.d.ts.map +1 -0
  743. package/dist/rules/inspect/tools.js +21 -0
  744. package/dist/rules/inspect/tools.js.map +1 -0
  745. package/dist/rules/internal/extract.d.ts +28 -0
  746. package/dist/rules/internal/extract.d.ts.map +1 -0
  747. package/dist/rules/internal/extract.js +25 -0
  748. package/dist/rules/internal/extract.js.map +1 -0
  749. package/dist/rules/internal/index.d.ts +82 -0
  750. package/dist/rules/internal/index.d.ts.map +1 -0
  751. package/dist/rules/internal/index.js +103 -0
  752. package/dist/rules/internal/index.js.map +1 -0
  753. package/dist/rules/internal/node.d.ts +18 -0
  754. package/dist/rules/internal/node.d.ts.map +1 -0
  755. package/dist/rules/internal/node.js +27 -0
  756. package/dist/rules/internal/node.js.map +1 -0
  757. package/dist/rules/internal/rtdb.d.ts +20 -0
  758. package/dist/rules/internal/rtdb.d.ts.map +1 -0
  759. package/dist/rules/internal/rtdb.js +15 -0
  760. package/dist/rules/internal/rtdb.js.map +1 -0
  761. package/dist/rules/linter/ast-utils.d.ts +97 -0
  762. package/dist/rules/linter/ast-utils.d.ts.map +1 -0
  763. package/dist/rules/linter/ast-utils.js +491 -0
  764. package/dist/rules/linter/ast-utils.js.map +1 -0
  765. package/dist/rules/linter/hallucinations.d.ts +34 -0
  766. package/dist/rules/linter/hallucinations.d.ts.map +1 -0
  767. package/dist/rules/linter/hallucinations.js +334 -0
  768. package/dist/rules/linter/hallucinations.js.map +1 -0
  769. package/dist/rules/linter/linter.d.ts +84 -0
  770. package/dist/rules/linter/linter.d.ts.map +1 -0
  771. package/dist/rules/linter/linter.js +783 -0
  772. package/dist/rules/linter/linter.js.map +1 -0
  773. package/dist/rules/modules/resolver-browser.d.ts +41 -0
  774. package/dist/rules/modules/resolver-browser.d.ts.map +1 -0
  775. package/dist/rules/modules/resolver-browser.js +63 -0
  776. package/dist/rules/modules/resolver-browser.js.map +1 -0
  777. package/dist/rules/modules/resolver-core.d.ts +51 -0
  778. package/dist/rules/modules/resolver-core.d.ts.map +1 -0
  779. package/dist/rules/modules/resolver-core.js +338 -0
  780. package/dist/rules/modules/resolver-core.js.map +1 -0
  781. package/dist/rules/modules/resolver.d.ts +17 -0
  782. package/dist/rules/modules/resolver.d.ts.map +1 -0
  783. package/dist/rules/modules/resolver.js +49 -0
  784. package/dist/rules/modules/resolver.js.map +1 -0
  785. package/dist/rules/modules/stdlib/atomic.rules +52 -0
  786. package/dist/rules/modules/stdlib/atomic.test.json +152 -0
  787. package/dist/rules/modules/stdlib/auth.rules +7 -0
  788. package/dist/rules/modules/stdlib/auth.test.json +53 -0
  789. package/dist/rules/modules/stdlib/content.rules +50 -0
  790. package/dist/rules/modules/stdlib/content.test.json +238 -0
  791. package/dist/rules/modules/stdlib/counters.rules +41 -0
  792. package/dist/rules/modules/stdlib/counters.test.json +254 -0
  793. package/dist/rules/modules/stdlib/geometry.rules +43 -0
  794. package/dist/rules/modules/stdlib/geometry.test.json +200 -0
  795. package/dist/rules/modules/stdlib/joining.rules +49 -0
  796. package/dist/rules/modules/stdlib/joining.test.json +287 -0
  797. package/dist/rules/modules/stdlib/lifecycle.rules +51 -0
  798. package/dist/rules/modules/stdlib/lifecycle.test.json +288 -0
  799. package/dist/rules/modules/stdlib/lobby.rules +44 -0
  800. package/dist/rules/modules/stdlib/lobby.test.json +32 -0
  801. package/dist/rules/modules/stdlib/membership.rules +40 -0
  802. package/dist/rules/modules/stdlib/membership.test.json +107 -0
  803. package/dist/rules/modules/stdlib/spaces.rules +46 -0
  804. package/dist/rules/modules/stdlib/spaces.test.json +392 -0
  805. package/dist/rules/modules/stdlib/state.rules +28 -0
  806. package/dist/rules/modules/stdlib/state.test.json +55 -0
  807. package/dist/rules/modules/stdlib/timing.rules +20 -0
  808. package/dist/rules/modules/stdlib/timing.test.json +106 -0
  809. package/dist/rules/modules/stdlib/transitions.rules +34 -0
  810. package/dist/rules/modules/stdlib/transitions.test.json +86 -0
  811. package/dist/rules/modules/stdlib/turns.rules +27 -0
  812. package/dist/rules/modules/stdlib/turns.test.json +64 -0
  813. package/dist/rules/modules/stdlib/validation.rules +31 -0
  814. package/dist/rules/modules/stdlib/validation.test.json +184 -0
  815. package/dist/rules/modules/stdlib-content.d.ts +11 -0
  816. package/dist/rules/modules/stdlib-content.d.ts.map +1 -0
  817. package/dist/rules/modules/stdlib-content.js +590 -0
  818. package/dist/rules/modules/stdlib-content.js.map +1 -0
  819. package/dist/rules/rtdb/compiled-rules.d.ts +11 -0
  820. package/dist/rules/rtdb/compiled-rules.d.ts.map +1 -0
  821. package/dist/rules/rtdb/compiled-rules.js +95 -0
  822. package/dist/rules/rtdb/compiled-rules.js.map +1 -0
  823. package/dist/rules/rtdb/constraints/atoms.d.ts +29 -0
  824. package/dist/rules/rtdb/constraints/atoms.d.ts.map +1 -0
  825. package/dist/rules/rtdb/constraints/atoms.js +43 -0
  826. package/dist/rules/rtdb/constraints/atoms.js.map +1 -0
  827. package/dist/rules/rtdb/constraints/compose.d.ts +16 -0
  828. package/dist/rules/rtdb/constraints/compose.d.ts.map +1 -0
  829. package/dist/rules/rtdb/constraints/compose.js +15 -0
  830. package/dist/rules/rtdb/constraints/compose.js.map +1 -0
  831. package/dist/rules/rtdb/constraints/data.d.ts +30 -0
  832. package/dist/rules/rtdb/constraints/data.d.ts.map +1 -0
  833. package/dist/rules/rtdb/constraints/data.js +46 -0
  834. package/dist/rules/rtdb/constraints/data.js.map +1 -0
  835. package/dist/rules/rtdb/constraints/document.d.ts +57 -0
  836. package/dist/rules/rtdb/constraints/document.d.ts.map +1 -0
  837. package/dist/rules/rtdb/constraints/document.js +85 -0
  838. package/dist/rules/rtdb/constraints/document.js.map +1 -0
  839. package/dist/rules/rtdb/constraints/game.d.ts +30 -0
  840. package/dist/rules/rtdb/constraints/game.d.ts.map +1 -0
  841. package/dist/rules/rtdb/constraints/game.js +49 -0
  842. package/dist/rules/rtdb/constraints/game.js.map +1 -0
  843. package/dist/rules/rtdb/constraints/index.d.ts +12 -0
  844. package/dist/rules/rtdb/constraints/index.d.ts.map +1 -0
  845. package/dist/rules/rtdb/constraints/index.js +9 -0
  846. package/dist/rules/rtdb/constraints/index.js.map +1 -0
  847. package/dist/rules/rtdb/constraints/policies.d.ts +16 -0
  848. package/dist/rules/rtdb/constraints/policies.d.ts.map +1 -0
  849. package/dist/rules/rtdb/constraints/policies.js +17 -0
  850. package/dist/rules/rtdb/constraints/policies.js.map +1 -0
  851. package/dist/rules/rtdb/constraints/ruleset.d.ts +5 -0
  852. package/dist/rules/rtdb/constraints/ruleset.d.ts.map +1 -0
  853. package/dist/rules/rtdb/constraints/ruleset.js +132 -0
  854. package/dist/rules/rtdb/constraints/ruleset.js.map +1 -0
  855. package/dist/rules/rtdb/constraints/schema.d.ts +17 -0
  856. package/dist/rules/rtdb/constraints/schema.d.ts.map +1 -0
  857. package/dist/rules/rtdb/constraints/schema.js +74 -0
  858. package/dist/rules/rtdb/constraints/schema.js.map +1 -0
  859. package/dist/rules/rtdb/constraints/types.d.ts +22 -0
  860. package/dist/rules/rtdb/constraints/types.d.ts.map +1 -0
  861. package/dist/rules/rtdb/constraints/types.js +2 -0
  862. package/dist/rules/rtdb/constraints/types.js.map +1 -0
  863. package/dist/rules/rtdb/constraints/write-rules-file.d.ts +24 -0
  864. package/dist/rules/rtdb/constraints/write-rules-file.d.ts.map +1 -0
  865. package/dist/rules/rtdb/constraints/write-rules-file.js +30 -0
  866. package/dist/rules/rtdb/constraints/write-rules-file.js.map +1 -0
  867. package/dist/rules/rtdb/expression-engine.d.ts +8 -0
  868. package/dist/rules/rtdb/expression-engine.d.ts.map +1 -0
  869. package/dist/rules/rtdb/expression-engine.js +20 -0
  870. package/dist/rules/rtdb/expression-engine.js.map +1 -0
  871. package/dist/rules/rtdb/grammar/RtdbExpr.ohm +98 -0
  872. package/dist/rules/rtdb/grammar/RtdbExpr.ohm.generated.d.ts +2 -0
  873. package/dist/rules/rtdb/grammar/RtdbExpr.ohm.generated.d.ts.map +1 -0
  874. package/dist/rules/rtdb/grammar/RtdbExpr.ohm.generated.js +103 -0
  875. package/dist/rules/rtdb/grammar/RtdbExpr.ohm.generated.js.map +1 -0
  876. package/dist/rules/rtdb/grammar/RtdbExprParser.d.ts +3 -0
  877. package/dist/rules/rtdb/grammar/RtdbExprParser.d.ts.map +1 -0
  878. package/dist/rules/rtdb/grammar/RtdbExprParser.js +56 -0
  879. package/dist/rules/rtdb/grammar/RtdbExprParser.js.map +1 -0
  880. package/dist/rules/rtdb/grammar/linter.d.ts +3 -0
  881. package/dist/rules/rtdb/grammar/linter.d.ts.map +1 -0
  882. package/dist/rules/rtdb/grammar/linter.js +73 -0
  883. package/dist/rules/rtdb/grammar/linter.js.map +1 -0
  884. package/dist/rules/rtdb/grammar/simulator.d.ts +30 -0
  885. package/dist/rules/rtdb/grammar/simulator.d.ts.map +1 -0
  886. package/dist/rules/rtdb/grammar/simulator.js +282 -0
  887. package/dist/rules/rtdb/grammar/simulator.js.map +1 -0
  888. package/dist/rules/rtdb/grammar/validator.d.ts +3 -0
  889. package/dist/rules/rtdb/grammar/validator.d.ts.map +1 -0
  890. package/dist/rules/rtdb/grammar/validator.js +91 -0
  891. package/dist/rules/rtdb/grammar/validator.js.map +1 -0
  892. package/dist/rules/rtdb/simulation/handler.d.ts +6 -0
  893. package/dist/rules/rtdb/simulation/handler.d.ts.map +1 -0
  894. package/dist/rules/rtdb/simulation/handler.js +325 -0
  895. package/dist/rules/rtdb/simulation/handler.js.map +1 -0
  896. package/dist/rules/rtdb/simulation/spec.d.ts +102 -0
  897. package/dist/rules/rtdb/simulation/spec.d.ts.map +1 -0
  898. package/dist/rules/rtdb/simulation/spec.js +40 -0
  899. package/dist/rules/rtdb/simulation/spec.js.map +1 -0
  900. package/dist/rules/rtdb/types.d.ts +166 -0
  901. package/dist/rules/rtdb/types.d.ts.map +1 -0
  902. package/dist/rules/rtdb/types.js +21 -0
  903. package/dist/rules/rtdb/types.js.map +1 -0
  904. package/dist/rules/simulator/evaluator.d.ts +206 -0
  905. package/dist/rules/simulator/evaluator.d.ts.map +1 -0
  906. package/dist/rules/simulator/evaluator.js +1251 -0
  907. package/dist/rules/simulator/evaluator.js.map +1 -0
  908. package/dist/rules/simulator/expression/eval-errors.d.ts +86 -0
  909. package/dist/rules/simulator/expression/eval-errors.d.ts.map +1 -0
  910. package/dist/rules/simulator/expression/eval-errors.js +68 -0
  911. package/dist/rules/simulator/expression/eval-errors.js.map +1 -0
  912. package/dist/rules/simulator/expression/evaluator.d.ts +43 -0
  913. package/dist/rules/simulator/expression/evaluator.d.ts.map +1 -0
  914. package/dist/rules/simulator/expression/evaluator.js +298 -0
  915. package/dist/rules/simulator/expression/evaluator.js.map +1 -0
  916. package/dist/rules/simulator/expression/lexer.d.ts +36 -0
  917. package/dist/rules/simulator/expression/lexer.d.ts.map +1 -0
  918. package/dist/rules/simulator/expression/lexer.js +318 -0
  919. package/dist/rules/simulator/expression/lexer.js.map +1 -0
  920. package/dist/rules/simulator/expression/parser.d.ts +39 -0
  921. package/dist/rules/simulator/expression/parser.d.ts.map +1 -0
  922. package/dist/rules/simulator/expression/parser.js +329 -0
  923. package/dist/rules/simulator/expression/parser.js.map +1 -0
  924. package/dist/rules/simulator/expression/types.d.ts +137 -0
  925. package/dist/rules/simulator/expression/types.d.ts.map +1 -0
  926. package/dist/rules/simulator/expression/types.js +90 -0
  927. package/dist/rules/simulator/expression/types.js.map +1 -0
  928. package/dist/rules/simulator/expression/walk-data.d.ts +52 -0
  929. package/dist/rules/simulator/expression/walk-data.d.ts.map +1 -0
  930. package/dist/rules/simulator/expression/walk-data.js +167 -0
  931. package/dist/rules/simulator/expression/walk-data.js.map +1 -0
  932. package/dist/rules/simulator/firestore-set.d.ts +25 -0
  933. package/dist/rules/simulator/firestore-set.d.ts.map +1 -0
  934. package/dist/rules/simulator/firestore-set.js +89 -0
  935. package/dist/rules/simulator/firestore-set.js.map +1 -0
  936. package/dist/rules/simulator/handler.d.ts +47 -0
  937. package/dist/rules/simulator/handler.d.ts.map +1 -0
  938. package/dist/rules/simulator/handler.js +653 -0
  939. package/dist/rules/simulator/handler.js.map +1 -0
  940. package/dist/rules/simulator/mapdiff.d.ts +29 -0
  941. package/dist/rules/simulator/mapdiff.d.ts.map +1 -0
  942. package/dist/rules/simulator/mapdiff.js +72 -0
  943. package/dist/rules/simulator/mapdiff.js.map +1 -0
  944. package/dist/rules/simulator/project-after-state.d.ts +33 -0
  945. package/dist/rules/simulator/project-after-state.d.ts.map +1 -0
  946. package/dist/rules/simulator/project-after-state.js +88 -0
  947. package/dist/rules/simulator/project-after-state.js.map +1 -0
  948. package/dist/rules/simulator/query-proof.d.ts +151 -0
  949. package/dist/rules/simulator/query-proof.d.ts.map +1 -0
  950. package/dist/rules/simulator/query-proof.js +367 -0
  951. package/dist/rules/simulator/query-proof.js.map +1 -0
  952. package/dist/rules/simulator/value-equality.d.ts +8 -0
  953. package/dist/rules/simulator/value-equality.d.ts.map +1 -0
  954. package/dist/rules/simulator/value-equality.js +40 -0
  955. package/dist/rules/simulator/value-equality.js.map +1 -0
  956. package/dist/rules/simulator/wrappers/base.d.ts +129 -0
  957. package/dist/rules/simulator/wrappers/base.d.ts.map +1 -0
  958. package/dist/rules/simulator/wrappers/base.js +90 -0
  959. package/dist/rules/simulator/wrappers/base.js.map +1 -0
  960. package/dist/rules/simulator/wrappers/bytes.d.ts +45 -0
  961. package/dist/rules/simulator/wrappers/bytes.d.ts.map +1 -0
  962. package/dist/rules/simulator/wrappers/bytes.js +130 -0
  963. package/dist/rules/simulator/wrappers/bytes.js.map +1 -0
  964. package/dist/rules/simulator/wrappers/duration.d.ts +76 -0
  965. package/dist/rules/simulator/wrappers/duration.d.ts.map +1 -0
  966. package/dist/rules/simulator/wrappers/duration.js +176 -0
  967. package/dist/rules/simulator/wrappers/duration.js.map +1 -0
  968. package/dist/rules/simulator/wrappers/float.d.ts +52 -0
  969. package/dist/rules/simulator/wrappers/float.d.ts.map +1 -0
  970. package/dist/rules/simulator/wrappers/float.js +88 -0
  971. package/dist/rules/simulator/wrappers/float.js.map +1 -0
  972. package/dist/rules/simulator/wrappers/latlng.d.ts +40 -0
  973. package/dist/rules/simulator/wrappers/latlng.d.ts.map +1 -0
  974. package/dist/rules/simulator/wrappers/latlng.js +100 -0
  975. package/dist/rules/simulator/wrappers/latlng.js.map +1 -0
  976. package/dist/rules/simulator/wrappers/path.d.ts +75 -0
  977. package/dist/rules/simulator/wrappers/path.d.ts.map +1 -0
  978. package/dist/rules/simulator/wrappers/path.js +158 -0
  979. package/dist/rules/simulator/wrappers/path.js.map +1 -0
  980. package/dist/rules/simulator/wrappers/reference.d.ts +82 -0
  981. package/dist/rules/simulator/wrappers/reference.d.ts.map +1 -0
  982. package/dist/rules/simulator/wrappers/reference.js +145 -0
  983. package/dist/rules/simulator/wrappers/reference.js.map +1 -0
  984. package/dist/rules/simulator/wrappers/timestamp.d.ts +86 -0
  985. package/dist/rules/simulator/wrappers/timestamp.d.ts.map +1 -0
  986. package/dist/rules/simulator/wrappers/timestamp.js +207 -0
  987. package/dist/rules/simulator/wrappers/timestamp.js.map +1 -0
  988. package/dist/rules/simulator/wrappers/vector.d.ts +43 -0
  989. package/dist/rules/simulator/wrappers/vector.d.ts.map +1 -0
  990. package/dist/rules/simulator/wrappers/vector.js +80 -0
  991. package/dist/rules/simulator/wrappers/vector.js.map +1 -0
  992. package/dist/rules/simulator-tools-impl.d.ts +64 -0
  993. package/dist/rules/simulator-tools-impl.d.ts.map +1 -0
  994. package/dist/rules/simulator-tools-impl.js +462 -0
  995. package/dist/rules/simulator-tools-impl.js.map +1 -0
  996. package/dist/rules/simulator.d.ts +20 -0
  997. package/dist/rules/simulator.d.ts.map +1 -0
  998. package/dist/rules/simulator.js +24 -0
  999. package/dist/rules/simulator.js.map +1 -0
  1000. package/dist/rules/stdlib-modules.d.ts +73 -0
  1001. package/dist/rules/stdlib-modules.d.ts.map +1 -0
  1002. package/dist/rules/stdlib-modules.js +837 -0
  1003. package/dist/rules/stdlib-modules.js.map +1 -0
  1004. package/dist/rules/stdlib-tools.d.ts +19 -0
  1005. package/dist/rules/stdlib-tools.d.ts.map +1 -0
  1006. package/dist/rules/stdlib-tools.js +164 -0
  1007. package/dist/rules/stdlib-tools.js.map +1 -0
  1008. package/dist/rules/test/handler.d.ts +21 -0
  1009. package/dist/rules/test/handler.d.ts.map +1 -0
  1010. package/dist/rules/test/handler.js +214 -0
  1011. package/dist/rules/test/handler.js.map +1 -0
  1012. package/dist/rules/test/spec.d.ts +677 -0
  1013. package/dist/rules/test/spec.d.ts.map +1 -0
  1014. package/dist/rules/test/spec.js +327 -0
  1015. package/dist/rules/test/spec.js.map +1 -0
  1016. package/dist/rules/tools.d.ts +41 -0
  1017. package/dist/rules/tools.d.ts.map +1 -0
  1018. package/dist/rules/tools.js +120 -0
  1019. package/dist/rules/tools.js.map +1 -0
  1020. package/dist/rules/write/handler.d.ts +6 -0
  1021. package/dist/rules/write/handler.d.ts.map +1 -0
  1022. package/dist/rules/write/handler.js +126 -0
  1023. package/dist/rules/write/handler.js.map +1 -0
  1024. package/dist/rules/write/spec.d.ts +28 -0
  1025. package/dist/rules/write/spec.d.ts.map +1 -0
  1026. package/dist/rules/write/spec.js +2 -0
  1027. package/dist/rules/write/spec.js.map +1 -0
  1028. package/dist/sandbox/admin-compat.d.ts +20 -0
  1029. package/dist/sandbox/admin-compat.d.ts.map +1 -0
  1030. package/dist/sandbox/admin-compat.js +19 -0
  1031. package/dist/sandbox/admin-compat.js.map +1 -0
  1032. package/dist/sandbox/admin-firestore/error-translation.d.ts +90 -0
  1033. package/dist/sandbox/admin-firestore/error-translation.d.ts.map +1 -0
  1034. package/dist/sandbox/admin-firestore/error-translation.js +222 -0
  1035. package/dist/sandbox/admin-firestore/error-translation.js.map +1 -0
  1036. package/dist/sandbox/admin-firestore/get-admin-firestore.d.ts +44 -0
  1037. package/dist/sandbox/admin-firestore/get-admin-firestore.d.ts.map +1 -0
  1038. package/dist/sandbox/admin-firestore/get-admin-firestore.js +62 -0
  1039. package/dist/sandbox/admin-firestore/get-admin-firestore.js.map +1 -0
  1040. package/dist/sandbox/admin-firestore/get-firestore.d.ts +34 -0
  1041. package/dist/sandbox/admin-firestore/get-firestore.d.ts.map +1 -0
  1042. package/dist/sandbox/admin-firestore/get-firestore.js +71 -0
  1043. package/dist/sandbox/admin-firestore/get-firestore.js.map +1 -0
  1044. package/dist/sandbox/admin-firestore/index.d.ts +36 -0
  1045. package/dist/sandbox/admin-firestore/index.d.ts.map +1 -0
  1046. package/dist/sandbox/admin-firestore/index.js +33 -0
  1047. package/dist/sandbox/admin-firestore/index.js.map +1 -0
  1048. package/dist/sandbox/admin-firestore/listeners.d.ts +46 -0
  1049. package/dist/sandbox/admin-firestore/listeners.d.ts.map +1 -0
  1050. package/dist/sandbox/admin-firestore/listeners.js +291 -0
  1051. package/dist/sandbox/admin-firestore/listeners.js.map +1 -0
  1052. package/dist/sandbox/admin-firestore/local-handle.d.ts +23 -0
  1053. package/dist/sandbox/admin-firestore/local-handle.d.ts.map +1 -0
  1054. package/dist/sandbox/admin-firestore/local-handle.js +74 -0
  1055. package/dist/sandbox/admin-firestore/local-handle.js.map +1 -0
  1056. package/dist/sandbox/admin-firestore/remote/batch.d.ts +6 -0
  1057. package/dist/sandbox/admin-firestore/remote/batch.d.ts.map +1 -0
  1058. package/dist/sandbox/admin-firestore/remote/batch.js +38 -0
  1059. package/dist/sandbox/admin-firestore/remote/batch.js.map +1 -0
  1060. package/dist/sandbox/admin-firestore/remote/channel.d.ts +22 -0
  1061. package/dist/sandbox/admin-firestore/remote/channel.d.ts.map +1 -0
  1062. package/dist/sandbox/admin-firestore/remote/channel.js +27 -0
  1063. package/dist/sandbox/admin-firestore/remote/channel.js.map +1 -0
  1064. package/dist/sandbox/admin-firestore/remote/doc-ref.d.ts +10 -0
  1065. package/dist/sandbox/admin-firestore/remote/doc-ref.d.ts.map +1 -0
  1066. package/dist/sandbox/admin-firestore/remote/doc-ref.js +88 -0
  1067. package/dist/sandbox/admin-firestore/remote/doc-ref.js.map +1 -0
  1068. package/dist/sandbox/admin-firestore/remote/errors.d.ts +17 -0
  1069. package/dist/sandbox/admin-firestore/remote/errors.d.ts.map +1 -0
  1070. package/dist/sandbox/admin-firestore/remote/errors.js +32 -0
  1071. package/dist/sandbox/admin-firestore/remote/errors.js.map +1 -0
  1072. package/dist/sandbox/admin-firestore/remote/listeners.d.ts +43 -0
  1073. package/dist/sandbox/admin-firestore/remote/listeners.d.ts.map +1 -0
  1074. package/dist/sandbox/admin-firestore/remote/listeners.js +89 -0
  1075. package/dist/sandbox/admin-firestore/remote/listeners.js.map +1 -0
  1076. package/dist/sandbox/admin-firestore/remote/query.d.ts +47 -0
  1077. package/dist/sandbox/admin-firestore/remote/query.d.ts.map +1 -0
  1078. package/dist/sandbox/admin-firestore/remote/query.js +186 -0
  1079. package/dist/sandbox/admin-firestore/remote/query.js.map +1 -0
  1080. package/dist/sandbox/admin-firestore/remote/remote-firestore.d.ts +55 -0
  1081. package/dist/sandbox/admin-firestore/remote/remote-firestore.d.ts.map +1 -0
  1082. package/dist/sandbox/admin-firestore/remote/remote-firestore.js +111 -0
  1083. package/dist/sandbox/admin-firestore/remote/remote-firestore.js.map +1 -0
  1084. package/dist/sandbox/admin-firestore/remote/snapshots.d.ts +10 -0
  1085. package/dist/sandbox/admin-firestore/remote/snapshots.d.ts.map +1 -0
  1086. package/dist/sandbox/admin-firestore/remote/snapshots.js +37 -0
  1087. package/dist/sandbox/admin-firestore/remote/snapshots.js.map +1 -0
  1088. package/dist/sandbox/admin-firestore/remote/transaction.d.ts +19 -0
  1089. package/dist/sandbox/admin-firestore/remote/transaction.d.ts.map +1 -0
  1090. package/dist/sandbox/admin-firestore/remote/transaction.js +105 -0
  1091. package/dist/sandbox/admin-firestore/remote/transaction.js.map +1 -0
  1092. package/dist/sandbox/admin-firestore/remote/value-codec.d.ts +52 -0
  1093. package/dist/sandbox/admin-firestore/remote/value-codec.d.ts.map +1 -0
  1094. package/dist/sandbox/admin-firestore/remote/value-codec.js +120 -0
  1095. package/dist/sandbox/admin-firestore/remote/value-codec.js.map +1 -0
  1096. package/dist/sandbox/admin-firestore/remote/wire-types.d.ts +111 -0
  1097. package/dist/sandbox/admin-firestore/remote/wire-types.d.ts.map +1 -0
  1098. package/dist/sandbox/admin-firestore/remote/wire-types.js +8 -0
  1099. package/dist/sandbox/admin-firestore/remote/wire-types.js.map +1 -0
  1100. package/dist/sandbox/admin-firestore/types.d.ts +59 -0
  1101. package/dist/sandbox/admin-firestore/types.d.ts.map +1 -0
  1102. package/dist/sandbox/admin-firestore/types.js +6 -0
  1103. package/dist/sandbox/admin-firestore/types.js.map +1 -0
  1104. package/dist/sandbox/branches/index.d.ts +141 -0
  1105. package/dist/sandbox/branches/index.d.ts.map +1 -0
  1106. package/dist/sandbox/branches/index.js +327 -0
  1107. package/dist/sandbox/branches/index.js.map +1 -0
  1108. package/dist/sandbox/index.d.ts +53 -0
  1109. package/dist/sandbox/index.d.ts.map +1 -0
  1110. package/dist/sandbox/index.js +65 -0
  1111. package/dist/sandbox/index.js.map +1 -0
  1112. package/dist/sandbox/internal/client-app.d.ts +29 -0
  1113. package/dist/sandbox/internal/client-app.d.ts.map +1 -0
  1114. package/dist/sandbox/internal/client-app.js +18 -0
  1115. package/dist/sandbox/internal/client-app.js.map +1 -0
  1116. package/dist/sandbox/internal/firebase-error.d.ts +14 -0
  1117. package/dist/sandbox/internal/firebase-error.d.ts.map +1 -0
  1118. package/dist/sandbox/internal/firebase-error.js +22 -0
  1119. package/dist/sandbox/internal/firebase-error.js.map +1 -0
  1120. package/dist/sandbox/internal/index.d.ts +39 -0
  1121. package/dist/sandbox/internal/index.d.ts.map +1 -0
  1122. package/dist/sandbox/internal/index.js +75 -0
  1123. package/dist/sandbox/internal/index.js.map +1 -0
  1124. package/dist/sandbox/internal/local-brand.d.ts +3 -0
  1125. package/dist/sandbox/internal/local-brand.d.ts.map +1 -0
  1126. package/dist/sandbox/internal/local-brand.js +3 -0
  1127. package/dist/sandbox/internal/local-brand.js.map +1 -0
  1128. package/dist/sandbox/internal/provenance.d.ts +16 -0
  1129. package/dist/sandbox/internal/provenance.d.ts.map +1 -0
  1130. package/dist/sandbox/internal/provenance.js +142 -0
  1131. package/dist/sandbox/internal/provenance.js.map +1 -0
  1132. package/dist/sandbox/internal/sandbox-impl.d.ts +331 -0
  1133. package/dist/sandbox/internal/sandbox-impl.d.ts.map +1 -0
  1134. package/dist/sandbox/internal/sandbox-impl.js +721 -0
  1135. package/dist/sandbox/internal/sandbox-impl.js.map +1 -0
  1136. package/dist/sandbox/operation-record.d.ts +48 -0
  1137. package/dist/sandbox/operation-record.d.ts.map +1 -0
  1138. package/dist/sandbox/operation-record.js +143 -0
  1139. package/dist/sandbox/operation-record.js.map +1 -0
  1140. package/dist/sandbox/persistence/backends.d.ts +37 -0
  1141. package/dist/sandbox/persistence/backends.d.ts.map +1 -0
  1142. package/dist/sandbox/persistence/backends.js +202 -0
  1143. package/dist/sandbox/persistence/backends.js.map +1 -0
  1144. package/dist/sandbox/persistence/chunk-format.d.ts +58 -0
  1145. package/dist/sandbox/persistence/chunk-format.d.ts.map +1 -0
  1146. package/dist/sandbox/persistence/chunk-format.js +163 -0
  1147. package/dist/sandbox/persistence/chunk-format.js.map +1 -0
  1148. package/dist/sandbox/persistence/controller.d.ts +39 -0
  1149. package/dist/sandbox/persistence/controller.d.ts.map +1 -0
  1150. package/dist/sandbox/persistence/controller.js +505 -0
  1151. package/dist/sandbox/persistence/controller.js.map +1 -0
  1152. package/dist/sandbox/persistence/index.d.ts +13 -0
  1153. package/dist/sandbox/persistence/index.d.ts.map +1 -0
  1154. package/dist/sandbox/persistence/index.js +5 -0
  1155. package/dist/sandbox/persistence/index.js.map +1 -0
  1156. package/dist/sandbox/persistence/serialize.d.ts +53 -0
  1157. package/dist/sandbox/persistence/serialize.d.ts.map +1 -0
  1158. package/dist/sandbox/persistence/serialize.js +98 -0
  1159. package/dist/sandbox/persistence/serialize.js.map +1 -0
  1160. package/dist/sandbox/persistence/types.d.ts +118 -0
  1161. package/dist/sandbox/persistence/types.d.ts.map +1 -0
  1162. package/dist/sandbox/persistence/types.js +15 -0
  1163. package/dist/sandbox/persistence/types.js.map +1 -0
  1164. package/dist/sandbox/remote.d.ts +118 -0
  1165. package/dist/sandbox/remote.d.ts.map +1 -0
  1166. package/dist/sandbox/remote.js +60 -0
  1167. package/dist/sandbox/remote.js.map +1 -0
  1168. package/dist/sandbox/replay/index.d.ts +106 -0
  1169. package/dist/sandbox/replay/index.d.ts.map +1 -0
  1170. package/dist/sandbox/replay/index.js +246 -0
  1171. package/dist/sandbox/replay/index.js.map +1 -0
  1172. package/dist/sandbox/sandbox-context.d.ts +48 -0
  1173. package/dist/sandbox/sandbox-context.d.ts.map +1 -0
  1174. package/dist/sandbox/sandbox-context.js +97 -0
  1175. package/dist/sandbox/sandbox-context.js.map +1 -0
  1176. package/dist/sandbox/tab-sync/index.d.ts +120 -0
  1177. package/dist/sandbox/tab-sync/index.d.ts.map +1 -0
  1178. package/dist/sandbox/tab-sync/index.js +273 -0
  1179. package/dist/sandbox/tab-sync/index.js.map +1 -0
  1180. package/dist/sandbox/types/auth-state.d.ts +23 -0
  1181. package/dist/sandbox/types/auth-state.d.ts.map +1 -0
  1182. package/dist/sandbox/types/auth-state.js +8 -0
  1183. package/dist/sandbox/types/auth-state.js.map +1 -0
  1184. package/dist/sandbox/types/context.d.ts +33 -0
  1185. package/dist/sandbox/types/context.d.ts.map +1 -0
  1186. package/dist/sandbox/types/context.js +5 -0
  1187. package/dist/sandbox/types/context.js.map +1 -0
  1188. package/dist/sandbox/types/errors.d.ts +126 -0
  1189. package/dist/sandbox/types/errors.d.ts.map +1 -0
  1190. package/dist/sandbox/types/errors.js +41 -0
  1191. package/dist/sandbox/types/errors.js.map +1 -0
  1192. package/dist/sandbox/types/events.d.ts +579 -0
  1193. package/dist/sandbox/types/events.d.ts.map +1 -0
  1194. package/dist/sandbox/types/events.js +7 -0
  1195. package/dist/sandbox/types/events.js.map +1 -0
  1196. package/dist/sandbox/types/index.d.ts +24 -0
  1197. package/dist/sandbox/types/index.d.ts.map +1 -0
  1198. package/dist/sandbox/types/index.js +17 -0
  1199. package/dist/sandbox/types/index.js.map +1 -0
  1200. package/dist/sandbox/types/operation.d.ts +74 -0
  1201. package/dist/sandbox/types/operation.d.ts.map +1 -0
  1202. package/dist/sandbox/types/operation.js +3 -0
  1203. package/dist/sandbox/types/operation.js.map +1 -0
  1204. package/dist/sandbox/types/persistence.d.ts +142 -0
  1205. package/dist/sandbox/types/persistence.d.ts.map +1 -0
  1206. package/dist/sandbox/types/persistence.js +7 -0
  1207. package/dist/sandbox/types/persistence.js.map +1 -0
  1208. package/dist/sandbox/types/service.d.ts +375 -0
  1209. package/dist/sandbox/types/service.d.ts.map +1 -0
  1210. package/dist/sandbox/types/service.js +6 -0
  1211. package/dist/sandbox/types/service.js.map +1 -0
  1212. package/dist/storage/admin/api.d.ts +206 -0
  1213. package/dist/storage/admin/api.d.ts.map +1 -0
  1214. package/dist/storage/admin/api.js +349 -0
  1215. package/dist/storage/admin/api.js.map +1 -0
  1216. package/dist/storage/admin/handler.d.ts +28 -0
  1217. package/dist/storage/admin/handler.d.ts.map +1 -0
  1218. package/dist/storage/admin/handler.js +82 -0
  1219. package/dist/storage/admin/handler.js.map +1 -0
  1220. package/dist/storage/admin/spec.d.ts +64 -0
  1221. package/dist/storage/admin/spec.d.ts.map +1 -0
  1222. package/dist/storage/admin/spec.js +8 -0
  1223. package/dist/storage/admin/spec.js.map +1 -0
  1224. package/dist/storage/admin/tools.d.ts +22 -0
  1225. package/dist/storage/admin/tools.d.ts.map +1 -0
  1226. package/dist/storage/admin/tools.js +90 -0
  1227. package/dist/storage/admin/tools.js.map +1 -0
  1228. package/dist/storage/download.d.ts +41 -0
  1229. package/dist/storage/download.d.ts.map +1 -0
  1230. package/dist/storage/download.js +137 -0
  1231. package/dist/storage/download.js.map +1 -0
  1232. package/dist/storage/enforce.d.ts +5 -0
  1233. package/dist/storage/enforce.d.ts.map +1 -0
  1234. package/dist/storage/enforce.js +147 -0
  1235. package/dist/storage/enforce.js.map +1 -0
  1236. package/dist/storage/errors.d.ts +44 -0
  1237. package/dist/storage/errors.d.ts.map +1 -0
  1238. package/dist/storage/errors.js +64 -0
  1239. package/dist/storage/errors.js.map +1 -0
  1240. package/dist/storage/index.d.ts +45 -0
  1241. package/dist/storage/index.d.ts.map +1 -0
  1242. package/dist/storage/index.js +39 -0
  1243. package/dist/storage/index.js.map +1 -0
  1244. package/dist/storage/instances.d.ts +9 -0
  1245. package/dist/storage/instances.d.ts.map +1 -0
  1246. package/dist/storage/instances.js +28 -0
  1247. package/dist/storage/instances.js.map +1 -0
  1248. package/dist/storage/internal.d.ts +18 -0
  1249. package/dist/storage/internal.d.ts.map +1 -0
  1250. package/dist/storage/internal.js +18 -0
  1251. package/dist/storage/internal.js.map +1 -0
  1252. package/dist/storage/list.d.ts +42 -0
  1253. package/dist/storage/list.d.ts.map +1 -0
  1254. package/dist/storage/list.js +83 -0
  1255. package/dist/storage/list.js.map +1 -0
  1256. package/dist/storage/metadata.d.ts +92 -0
  1257. package/dist/storage/metadata.d.ts.map +1 -0
  1258. package/dist/storage/metadata.js +164 -0
  1259. package/dist/storage/metadata.js.map +1 -0
  1260. package/dist/storage/persistence.d.ts +141 -0
  1261. package/dist/storage/persistence.d.ts.map +1 -0
  1262. package/dist/storage/persistence.js +156 -0
  1263. package/dist/storage/persistence.js.map +1 -0
  1264. package/dist/storage/reference.d.ts +57 -0
  1265. package/dist/storage/reference.d.ts.map +1 -0
  1266. package/dist/storage/reference.js +105 -0
  1267. package/dist/storage/reference.js.map +1 -0
  1268. package/dist/storage/rules.d.ts +376 -0
  1269. package/dist/storage/rules.d.ts.map +1 -0
  1270. package/dist/storage/rules.js +1243 -0
  1271. package/dist/storage/rules.js.map +1 -0
  1272. package/dist/storage/service.d.ts +132 -0
  1273. package/dist/storage/service.d.ts.map +1 -0
  1274. package/dist/storage/service.js +263 -0
  1275. package/dist/storage/service.js.map +1 -0
  1276. package/dist/storage/upload.d.ts +50 -0
  1277. package/dist/storage/upload.d.ts.map +1 -0
  1278. package/dist/storage/upload.js +246 -0
  1279. package/dist/storage/upload.js.map +1 -0
  1280. package/package.json +156 -3
package/LICENSE ADDED
@@ -0,0 +1,216 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
203
+
204
+ Copyright 2026 David East
205
+
206
+ Licensed under the Apache License, Version 2.0 (the "License");
207
+ you may not use this file except in compliance with the License.
208
+ You may obtain a copy of the License at
209
+
210
+ http://www.apache.org/licenses/LICENSE-2.0
211
+
212
+ Unless required by applicable law or agreed to in writing, software
213
+ distributed under the License is distributed on an "AS IS" BASIS,
214
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
215
+ See the License for the specific language governing permissions and
216
+ limitations under the License.
package/README.md CHANGED
@@ -1,3 +1,180 @@
1
- # pyric
1
+ <p align="center">
2
+ <img src="https://pyric.dev/pyric-logo.svg" alt="Pyric" width="180" />
3
+ </p>
2
4
 
3
- Reserved.
5
+ <h1 align="center">Build with Firebase without touching production</h1>
6
+
7
+ <p align="center">Keep the same <code>firebase/*</code> code. Pyric runs it against a local backend during development, then gets out of the way when the app ships to Firebase.</p>
8
+
9
+ <p align="center"><a href="https://pyric.dev">pyric.dev</a></p>
10
+
11
+ <br />
12
+
13
+ Pyric adds a development-only resolution layer to a Firebase application. Run the Vite development server and supported Firebase imports resolve to a browser-local backend. Run a normal production build and those imports resolve to Firebase again. The application source does not branch between the two.
14
+
15
+ The mirrored data services do not connect to a production Firebase project. Local writes cannot delete production data or create Firebase usage charges, and local rules changes do not deploy. Pyric owns the development sandbox and verification workflow. Firebase owns production, with `firebase-tools` or the Firebase Console handling deployment.
16
+
17
+ ## Start a new Firebase application locally
18
+
19
+ Create a Vite application with canonical Firebase imports, Firestore rules, and the Pyric development plugin already configured:
20
+
21
+ ```bash
22
+ npm create pyric my-app
23
+ cd my-app
24
+ npm install
25
+ npm run dev
26
+ ```
27
+
28
+ ## Run an existing Firebase application locally
29
+
30
+ Install the development plugin:
31
+
32
+ ```bash
33
+ npm install --save-dev @pyric/cli
34
+ ```
35
+
36
+ Add it to the existing Vite configuration:
37
+
38
+ ```ts
39
+ // vite.config.ts
40
+ import { defineConfig } from 'vite';
41
+ import { pyricSandbox } from '@pyric/cli/vite';
42
+
43
+ export default defineConfig({
44
+ plugins: [pyricSandbox()],
45
+ });
46
+ ```
47
+
48
+ Start the normal development server:
49
+
50
+ ```bash
51
+ npm run dev
52
+ ```
53
+
54
+ During `vite dev`, the plugin swaps supported `firebase/*` modules at resolution time. The backend runs in a SharedWorker, so tabs on the same development origin use one local backend. Browser-local persistence uses IndexedDB.
55
+
56
+ Pyric Studio is available on the Vite origin at `/__pyric/ui/`. It opens the same backend used by the application.
57
+
58
+ For a static application or a Node process, `pyric dev` provides the same development-only package swap without the Vite plugin. The [CLI reference](packages/cli/docs/reference/cli.md) documents those paths and every command.
59
+
60
+ ## Keep writing Firebase code
61
+
62
+ Application code continues to import Firebase:
63
+
64
+ ```ts
65
+ // src/firebase.ts
66
+ import { initializeApp } from 'firebase/app';
67
+ import { getAuth } from 'firebase/auth';
68
+ import { getFirestore } from 'firebase/firestore';
69
+
70
+ const app = initializeApp({
71
+ apiKey: import.meta.env.VITE_FIREBASE_API_KEY,
72
+ authDomain: import.meta.env.VITE_FIREBASE_AUTH_DOMAIN,
73
+ projectId: import.meta.env.VITE_FIREBASE_PROJECT_ID,
74
+ });
75
+
76
+ export const auth = getAuth(app);
77
+ export const db = getFirestore(app);
78
+ ```
79
+
80
+ The Firebase configuration is accepted by the local mirror during development. The production build passes that same configuration to Firebase. Normal Auth, Firestore, Realtime Database, Storage, Messaging, and Firebase AI Logic usage still belongs in the [Firebase documentation](https://firebase.google.com/docs).
81
+
82
+ Pyric documents the parts that differ locally, including supported behavior, Security Rules, persistence, inspection, verification, and known gaps. See [use the Vite plugin](packages/cli/docs/how-to/use-the-vite-plugin.md) for the complete plugin contract.
83
+
84
+ ## Inspect and correct a failed operation
85
+
86
+ Pyric Studio shows local data, requests, authentication state, Security Rules verdicts, and denied operations. Open `/__pyric/ui/` on the development server and reproduce the failure. A denied request includes the path and verdict needed to correct the rule or the application code.
87
+
88
+ The Vite plugin discovers the Firestore rules path from `firebase.json`, or falls back to `firestore.rules`. Saving that file replaces the active local ruleset without a production deploy. A parse failure leaves the last valid ruleset active and reports the error in the development server.
89
+
90
+ State and test identities stay browser-local by default. Add `persist: true` to write a committable `.pyric/state/state.json`, or use `seed` to start from a known scenario:
91
+
92
+ ```ts
93
+ pyricSandbox({
94
+ persist: true,
95
+ seed: 'seed.json',
96
+ });
97
+ ```
98
+
99
+ See [persistence and multi-tab behavior](packages/cli/docs/how-to/serve-persistence-and-multi-tab.md) for reset and seed precedence.
100
+
101
+ ## Give coding agents the same local Firebase target
102
+
103
+ An agent can keep writing the same Firebase code while inspecting and changing the backend that the application is already using. Agent access is opt-in. Enable the MCP bridge in the Vite plugin:
104
+
105
+ ```ts
106
+ pyricSandbox({ bridge: true });
107
+ ```
108
+
109
+ The bridge mounts on the Vite development origin and routes agent operations to the same SharedWorker backend used by the application and Studio. The included [Claude Code plugin](pyric-plugin/README.md) discovers that bridge, while other MCP clients can connect to its HTTP endpoint.
110
+
111
+ This protects the local workflow, not an independently credentialed process. A coding agent with production Firebase credentials or deployment access can still affect production outside Pyric.
112
+
113
+ ## Verify the rules boundary
114
+
115
+ Development sessions capture Firestore and Realtime Database operations in `.pyric/last-session.json` by default. Replay those requests against candidate rules before deployment:
116
+
117
+ ```bash
118
+ npx pyric verify
119
+ ```
120
+
121
+ The default engine runs locally. The optional Firestore Rules Test API engine sends derived rule cases to Google's hosted evaluator when production-authority verification is needed. It verifies rules and does not deploy them. See [verify against a captured session](packages/cli/docs/how-to/verify-against-a-captured-session.md).
122
+
123
+ ## Ship the same application code
124
+
125
+ A standard Vite production build leaves the development swap inactive:
126
+
127
+ ```bash
128
+ npm run build
129
+ ```
130
+
131
+ The built application contains the real Firebase SDK and uses the Firebase configuration already present in the source. Deploy the build, rules, and indexes with `firebase-tools` or the Firebase Console. Pyric has no production deployment path.
132
+
133
+ ## Check what Pyric mirrors
134
+
135
+ Pyric is an independent implementation of observable Firebase behavior. Conformance evidence records what has been compared with Firebase and keeps five outcomes distinct: conforms, documented divergence, bug, unsupported, and unverified. The evidence is a floor, not a claim that every Firebase behavior has been measured.
136
+
137
+ Ask about a developer-facing feature without nesting discovery under rules verification:
138
+
139
+ ```bash
140
+ npx pyric can-i-use getAfter
141
+ npx pyric can-i-use firestore-rules/request.query --json
142
+ ```
143
+
144
+ The result reports availability, Firebase fidelity, and assurance eligibility as separate axes. Exact names succeed; a name shared by multiple surfaces asks you to qualify it, and fuzzy input prints labeled suggestions and exits nonzero instead of presenting a guess as a trust answer.
145
+
146
+ Documentation and other Node consumers can bind the same feature name to the
147
+ published import that exposes it, without maintaining a second surface map:
148
+
149
+ ```ts
150
+ import { canIUse, canIUseImport } from '@pyric/cli/conformance';
151
+
152
+ const result = canIUse('getDownloadURL', { importPath: 'pyric/storage' });
153
+ const evidence = canIUseImport('pyric/storage');
154
+ const evidencePage = evidence && `/docs/${evidence.evidenceSlug}/`;
155
+ ```
156
+
157
+ Each support result carries only census-proven `importPaths`; registry ownership
158
+ cannot invent package exports. `canIUseImport()` supplies the separate canonical
159
+ import-to-evidence join used by generated API documentation. An unrelated
160
+ import path returns no exact match rather than borrowing another surface's trust
161
+ claim.
162
+
163
+ Read the generated [conformance scores](https://pyric.dev/docs/conformance-scores/) and the service matrices in the site's Conformance section. They are built from the same canonical registry used by assurance and `canIUse`, without committing duplicate Markdown. The [versioning and compatibility policy](packages/pyric/docs/explanation/versioning-and-compatibility.md) explains the release boundary.
164
+
165
+ ## Stability
166
+
167
+ Pyric is alpha software, currently `0.1.0-alpha.8`. Firebase-shaped surfaces are tracked through the compatibility matrices. Pyric-specific development APIs may change between alpha releases. All packages are ESM-only and require Node 22.15 or later.
168
+
169
+ ## Develop Pyric
170
+
171
+ The repository is a Bun workspace:
172
+
173
+ ```bash
174
+ bun install
175
+ bun run build
176
+ bun run test
177
+ bun run compat:check
178
+ ```
179
+
180
+ See [CONTRIBUTING.md](CONTRIBUTING.md), [CONTEXT.md](CONTEXT.md), and [AGENTS.md](AGENTS.md) before changing the codebase.
package/README.md.orig ADDED
@@ -0,0 +1,54 @@
1
+ # `pyric`
2
+
3
+ Firebase-shaped Web SDK mirrors backed by an in-process sandbox, plus Security
4
+ Rules tooling and explicit sandbox controls.
5
+
6
+ > **Alpha.** Mirrored subpaths are best-effort Firebase contracts. Read the
7
+ > generated conformance scores and service matrices for measured coverage,
8
+ > fidelity, and known gaps. Pyric-specific sandbox APIs are public alpha.
9
+
10
+ ## Public service fronts
11
+
12
+ | Subpath | Surface |
13
+ |---|---|
14
+ | `pyric/app` | Firebase-shaped default and named app registry |
15
+ | `pyric/firestore` | Firestore modular mirror and data/inspection tools |
16
+ | `pyric/auth` | Auth modular mirror and sandbox auth helpers |
17
+ | `pyric/database` | Realtime Database modular mirror |
18
+ | `pyric/storage` | Storage modular mirror and rules-aware sandbox tools |
19
+ | `pyric/rules` | Firestore and RTDB rules lint, simulation, explanation, constraints, and standard library |
20
+ | `pyric/firestore-values` | Firestore value helpers |
21
+ | `pyric/sandbox` | Sandbox lifecycle, identity, events, persistence, and replay |
22
+
23
+ The package manifest is the authority for public exports, including the
24
+ service-specific sandbox controls and adapter-only internal seams.
25
+
26
+ ## Explicit sandbox example
27
+
28
+ ```ts
29
+ import { initializeApp } from 'pyric/app';
30
+ import { collection, getDocs, getFirestore } from 'pyric/firestore';
31
+
32
+ const app = initializeApp({ projectId: 'demo-project' });
33
+ const db = getFirestore(app);
34
+ const snap = await getDocs(collection(db, 'posts'));
35
+ ```
36
+
37
+ Application code normally keeps canonical `firebase/*` imports.
38
+ `@pyric/cli/vite`, `pyric dev`, or `@pyric/cli/register` activates development
39
+ resolution to these mirrors. With activation absent, production loads Firebase
40
+ directly; `pyric` contains no production dispatch.
41
+
42
+ Pyric currently accepts one Firebase configuration per runtime. Default and
43
+ named apps with equal options are distinct service containers connected to the
44
+ same sandbox backend.
45
+
46
+ ## Documentation
47
+
48
+ - [Firestore](docs/firestore/)
49
+ - [Auth](docs/auth/)
50
+ - [Realtime Database](docs/database/)
51
+ - [Storage](docs/storage/)
52
+ - [Rules](docs/rules/)
53
+ - [Sandbox](docs/sandbox/)
54
+ - [Conformance scores](https://pyric.dev/docs/conformance-scores/)
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Backend configuration classes for `pyric/ai`, mirroring the installed
3
+ * `@firebase/ai@2.12.0`: an abstract {@link Backend} carrying
4
+ * `backendType`, with {@link GoogleAIBackend} (the default) and
5
+ * {@link VertexAIBackend} (location defaults to `us-central1`).
6
+ *
7
+ * In the sandbox mirror the backend is a pure configuration marker; the
8
+ * broker answers in-process either way. Production imports load Firebase's
9
+ * own backend classes before this package enters the graph.
10
+ */
11
+ /** Identifies which backend service the SDK communicates with. */
12
+ export declare const BackendType: {
13
+ readonly VERTEX_AI: "VERTEX_AI";
14
+ readonly GOOGLE_AI: "GOOGLE_AI";
15
+ };
16
+ export type BackendType = (typeof BackendType)[keyof typeof BackendType];
17
+ /**
18
+ * Abstract base class representing the configuration for an AI service
19
+ * backend. Do not instantiate directly — use {@link GoogleAIBackend} or
20
+ * {@link VertexAIBackend}.
21
+ */
22
+ export declare abstract class Backend {
23
+ readonly backendType: BackendType;
24
+ protected constructor(type: BackendType);
25
+ }
26
+ /** Configuration class for the Gemini Developer API backend (the default). */
27
+ export declare class GoogleAIBackend extends Backend {
28
+ constructor();
29
+ }
30
+ /** Configuration class for the Vertex AI Gemini API backend. */
31
+ export declare class VertexAIBackend extends Backend {
32
+ readonly location: string;
33
+ constructor(location?: string);
34
+ }
35
+ //# sourceMappingURL=backend.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"backend.d.ts","sourceRoot":"","sources":["../../src/ai/backend.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAIH,kEAAkE;AAClE,eAAO,MAAM,WAAW;;;CAGd,CAAC;AACX,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,OAAO,WAAW,CAAC,CAAC;AAEzE;;;;GAIG;AACH,8BAAsB,OAAO;IAC3B,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAElC,SAAS,aAAa,IAAI,EAAE,WAAW;CAGxC;AAED,8EAA8E;AAC9E,qBAAa,eAAgB,SAAQ,OAAO;;CAI3C;AAED,gEAAgE;AAChE,qBAAa,eAAgB,SAAQ,OAAO;IAC1C,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;gBAEd,QAAQ,GAAE,MAAyB;CAIhD"}
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Backend configuration classes for `pyric/ai`, mirroring the installed
3
+ * `@firebase/ai@2.12.0`: an abstract {@link Backend} carrying
4
+ * `backendType`, with {@link GoogleAIBackend} (the default) and
5
+ * {@link VertexAIBackend} (location defaults to `us-central1`).
6
+ *
7
+ * In the sandbox mirror the backend is a pure configuration marker; the
8
+ * broker answers in-process either way. Production imports load Firebase's
9
+ * own backend classes before this package enters the graph.
10
+ */
11
+ const DEFAULT_LOCATION = 'us-central1';
12
+ /** Identifies which backend service the SDK communicates with. */
13
+ export const BackendType = {
14
+ VERTEX_AI: 'VERTEX_AI',
15
+ GOOGLE_AI: 'GOOGLE_AI',
16
+ };
17
+ /**
18
+ * Abstract base class representing the configuration for an AI service
19
+ * backend. Do not instantiate directly — use {@link GoogleAIBackend} or
20
+ * {@link VertexAIBackend}.
21
+ */
22
+ export class Backend {
23
+ backendType;
24
+ constructor(type) {
25
+ this.backendType = type;
26
+ }
27
+ }
28
+ /** Configuration class for the Gemini Developer API backend (the default). */
29
+ export class GoogleAIBackend extends Backend {
30
+ constructor() {
31
+ super(BackendType.GOOGLE_AI);
32
+ }
33
+ }
34
+ /** Configuration class for the Vertex AI Gemini API backend. */
35
+ export class VertexAIBackend extends Backend {
36
+ location;
37
+ constructor(location = DEFAULT_LOCATION) {
38
+ super(BackendType.VERTEX_AI);
39
+ this.location = location || DEFAULT_LOCATION;
40
+ }
41
+ }
42
+ //# sourceMappingURL=backend.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"backend.js","sourceRoot":"","sources":["../../src/ai/backend.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,MAAM,gBAAgB,GAAG,aAAa,CAAC;AAEvC,kEAAkE;AAClE,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;CACd,CAAC;AAGX;;;;GAIG;AACH,MAAM,OAAgB,OAAO;IAClB,WAAW,CAAc;IAElC,YAAsB,IAAiB;QACrC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IAC1B,CAAC;CACF;AAED,8EAA8E;AAC9E,MAAM,OAAO,eAAgB,SAAQ,OAAO;IAC1C;QACE,KAAK,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;IAC/B,CAAC;CACF;AAED,gEAAgE;AAChE,MAAM,OAAO,eAAgB,SAAQ,OAAO;IACjC,QAAQ,CAAS;IAE1B,YAAY,WAAmB,gBAAgB;QAC7C,KAAK,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;QAC7B,IAAI,CAAC,QAAQ,GAAG,QAAQ,IAAI,gBAAgB,CAAC;IAC/C,CAAC;CACF"}
@@ -0,0 +1,72 @@
1
+ /**
2
+ * The sandbox AI broker — the ONE in-process Gemini-wire model every plane
3
+ * consumes (house pattern: the messaging broker):
4
+ *
5
+ * - the client mirror (`pyric/ai`, next stage) calls generateContent /
6
+ * streamGenerateContent / countTokens exactly like `rtdb.*` / `auth.*`
7
+ * will over the worker protocol (cdd-deltas #98.3);
8
+ * - Pyric Studio & tracing consume the typed `service_mutation` events the
9
+ * broker emits onto the sandbox's unified `onEvent` stream;
10
+ * - answering is delegated through ONE seam ({@link AnswerEngine},
11
+ * cdd-deltas #97): `scripted` (default, zero-I/O) or `openai`.
12
+ *
13
+ * The broker validates requests LIKE PRODUCTION does — before any engine
14
+ * runs — throwing {@link AiBrokerError} carrying the exact captured error
15
+ * envelope:
16
+ * - empty/missing `contents` → `ai-error-empty-contents`
17
+ * - a role outside the captured list → `ai-error-bad-role`
18
+ * - a model-turn functionCall part with no thoughtSignature
19
+ * → `ai-error-fncall-missing-thought-signature`
20
+ *
21
+ * Event emission is best-effort behind one small choke-point ({@link emit}):
22
+ * a throw from the emit path (or any event consumer downstream) must never
23
+ * poison the AI operation the caller just completed — handler errors are the
24
+ * consumer's problem, never the broker's (the sandbox's emit fan-out already
25
+ * isolates listener throws; this guard covers the emit path itself).
26
+ */
27
+ import type { Sandbox } from 'pyric/sandbox';
28
+ import type { AnswerEngine, CountTokensRequest, CountTokensResponse, EngineConfig, GenerateContentRequest, RawEnvelope, WireChunk, WireResponse } from './types.js';
29
+ export interface AiBrokerOptions {
30
+ /** Engine config, or a fully custom engine. Default: zero-config scripted. */
31
+ engine?: EngineConfig | AnswerEngine;
32
+ /** When present, ops land on the sandbox's unified event stream. */
33
+ sandbox?: Sandbox;
34
+ }
35
+ export declare class AiBroker {
36
+ readonly engine: AnswerEngine;
37
+ private readonly sandbox;
38
+ private readonly engineKind;
39
+ private readonly engineModel;
40
+ private readonly engineBaseUrl;
41
+ constructor(options?: AiBrokerOptions);
42
+ /** One-line construction-time summary of what this broker resolved to. */
43
+ private describeEngine;
44
+ /** Additive detail fields every emitted event carries so Studio can show the engine. */
45
+ private engineDetail;
46
+ generateContent(req: GenerateContentRequest, model: string): Promise<WireResponse>;
47
+ /**
48
+ * Chunk objects with the captured framing SEMANTICS (finishReason last
49
+ * chunk only, usageMetadata every chunk). Validation runs EAGERLY — a bad
50
+ * request throws here, before iteration, the way production answers with
51
+ * an HTTP error instead of a stream.
52
+ */
53
+ streamGenerateContent(req: GenerateContentRequest, model: string): AsyncIterable<WireChunk>;
54
+ countTokens(req: CountTokensRequest, model: string): Promise<CountTokensResponse>;
55
+ private validate;
56
+ private validateContents;
57
+ /** Emit the rejection onto the event stream, then throw the wire envelope. */
58
+ private reject;
59
+ /**
60
+ * Land a broker operation on the sandbox's unified event stream.
61
+ * Best-effort, storage-precedent: a throw from the emit path must never
62
+ * fail the AI operation the caller just completed.
63
+ */
64
+ private emit;
65
+ }
66
+ /**
67
+ * Fixture helper: extract `behavior.raw` from a parsed oracle observation
68
+ * JSON so a capture pastes straight into a script entry
69
+ * (`{ respond: loadObservationEnvelope(obs) }`). Captures are the corpus.
70
+ */
71
+ export declare function loadObservationEnvelope(obsJson: unknown): RawEnvelope;
72
+ //# sourceMappingURL=broker.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"broker.d.ts","sourceRoot":"","sources":["../../../src/ai/broker/broker.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAM7C,OAAO,KAAK,EACV,YAAY,EACZ,kBAAkB,EAClB,mBAAmB,EACnB,YAAY,EACZ,sBAAsB,EACtB,WAAW,EACX,SAAS,EACT,YAAY,EACb,MAAM,YAAY,CAAC;AAuBpB,MAAM,WAAW,eAAe;IAC9B,8EAA8E;IAC9E,MAAM,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC;IACrC,oEAAoE;IACpE,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AASD,qBAAa,QAAQ;IACnB,QAAQ,CAAC,MAAM,EAAE,YAAY,CAAC;IAC9B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAsB;IAC9C,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAqB;IACjD,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAqB;gBAEvC,OAAO,GAAE,eAAoB;IAkBzC,0EAA0E;IAC1E,OAAO,CAAC,cAAc;IAUtB,wFAAwF;IACxF,OAAO,CAAC,YAAY;IASd,eAAe,CAAC,GAAG,EAAE,sBAAsB,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC;IAYxF;;;;;OAKG;IACH,qBAAqB,CAAC,GAAG,EAAE,sBAAsB,EAAE,KAAK,EAAE,MAAM,GAAG,aAAa,CAAC,SAAS,CAAC;IAkBrF,WAAW,CAAC,GAAG,EAAE,kBAAkB,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;IASvF,OAAO,CAAC,QAAQ;IAgBhB,OAAO,CAAC,gBAAgB;IAaxB,8EAA8E;IAC9E,OAAO,CAAC,MAAM;IAWd;;;;OAIG;IACH,OAAO,CAAC,IAAI;CAkBb;AAED;;;;GAIG;AACH,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,OAAO,GAAG,WAAW,CAYrE"}